34
34
#if JERRY_SNAPSHOT_SAVE || JERRY_SNAPSHOT_EXEC
35
35
36
36
/**
37
- * Get snapshot configuration flags.
37
+ * Get snapshot feature configuration flags.
38
38
*
39
- * @return configuration flags
39
+ * @return feature configuration flags
40
40
*/
41
- static inline uint32_t JERRY_ATTR_ALWAYS_INLINE
42
- snapshot_get_global_flags (bool has_regex , /**< regex literal is present */
43
- bool has_class ) /**< class literal is present */
41
+ static inline jerry_snapshot_feature_flags_t
42
+ snapshot_get_feature_flags (void )
44
43
{
45
- JERRY_UNUSED (has_regex );
46
- JERRY_UNUSED (has_class );
47
-
48
- uint32_t flags = 0 ;
44
+ jerry_snapshot_feature_flags_t flags = JERRY_SNAPSHOT_FEATURE_NONE ;
49
45
50
46
#if JERRY_BUILTIN_REGEXP
51
- flags |= ( has_regex ? JERRY_SNAPSHOT_HAS_REGEX_LITERAL : 0 ) ;
47
+ flags |= JERRY_SNAPSHOT_FEATURE_REGEXP ;
52
48
#endif /* JERRY_BUILTIN_REGEXP */
49
+ #if JERRY_MODULE_SYSTEM
50
+ flags |= JERRY_SNAPSHOT_FEATURE_MODULE ;
51
+ #endif /* JERRY_MODULE_SYSTEM */
52
+ #if JERRY_DEBUGGER
53
+ flags |= JERRY_SNAPSHOT_FEATURE_DEBUGGER ;
54
+ #endif /* JERRY_DEBUGGER */
53
55
#if JERRY_ESNEXT
54
- flags |= ( has_class ? JERRY_SNAPSHOT_HAS_CLASS_LITERAL : 0 ) ;
56
+ flags |= JERRY_SNAPSHOT_FEATURE_ESNEXT ;
55
57
#endif /* JERRY_ESNEXT */
56
58
57
59
return flags ;
58
- } /* snapshot_get_global_flags */
60
+ } /* snapshot_get_feature_flags */
59
61
60
62
/**
61
- * Checks whether the global_flags argument matches to the current feature set.
63
+ * Validate snapshot header
62
64
*
63
- * @return true if global_flags accepted, false otherwise
65
+ * @return true - if the header is valid
66
+ * false - otherwise
64
67
*/
65
- static inline bool JERRY_ATTR_ALWAYS_INLINE
66
- snapshot_check_global_flags ( uint32_t global_flags ) /**< global flags */
68
+ static bool
69
+ snapshot_validate_header ( const jerry_snapshot_header_t * header_p )
67
70
{
68
- #if JERRY_BUILTIN_REGEXP
69
- global_flags &= (uint32_t ) ~JERRY_SNAPSHOT_HAS_REGEX_LITERAL ;
70
- #endif /* JERRY_BUILTIN_REGEXP */
71
- #if JERRY_ESNEXT
72
- global_flags &= (uint32_t ) ~JERRY_SNAPSHOT_HAS_CLASS_LITERAL ;
73
- #endif /* JERRY_ESNEXT */
74
-
75
- return global_flags == snapshot_get_global_flags (false, false);
76
- } /* snapshot_check_global_flags */
71
+ return (header_p -> magic == JERRY_SNAPSHOT_MAGIC && header_p -> version == JERRY_SNAPSHOT_VERSION
72
+ && (header_p -> feature_flags & snapshot_get_feature_flags ()) == header_p -> feature_flags );
73
+ } /* snapshot_validate_header */
77
74
78
75
#endif /* JERRY_SNAPSHOT_SAVE || JERRY_SNAPSHOT_EXEC */
79
76
@@ -86,8 +83,6 @@ typedef struct
86
83
{
87
84
size_t snapshot_buffer_write_offset ;
88
85
ecma_value_t snapshot_error ;
89
- bool regex_found ;
90
- bool class_found ;
91
86
} snapshot_globals_t ;
92
87
93
88
/** \addtogroup jerrysnapshot Jerry snapshot operations
@@ -171,11 +166,6 @@ snapshot_add_compiled_code (const ecma_compiled_code_t *compiled_code_p, /**< co
171
166
jerry_throw_sz (JERRY_ERROR_RANGE , ecma_get_error_msg (ECMA_ERR_TAGGED_TEMPLATE_LITERALS ));
172
167
return 0 ;
173
168
}
174
-
175
- if (CBC_FUNCTION_GET_TYPE (compiled_code_p -> status_flags ) == CBC_FUNCTION_CONSTRUCTOR )
176
- {
177
- globals_p -> class_found = true;
178
- }
179
169
#endif /* JERRY_ESNEXT */
180
170
181
171
#if JERRY_BUILTIN_REGEXP
@@ -216,7 +206,6 @@ snapshot_add_compiled_code (const ecma_compiled_code_t *compiled_code_p, /**< co
216
206
return 0 ;
217
207
}
218
208
219
- globals_p -> regex_found = true;
220
209
globals_p -> snapshot_buffer_write_offset = JERRY_ALIGNUP (globals_p -> snapshot_buffer_write_offset , JMEM_ALIGNMENT );
221
210
222
211
/* Regexp character size is stored in refs. */
@@ -788,8 +777,6 @@ jerry_generate_snapshot (jerry_value_t compiled_code, /**< parsed script or func
788
777
789
778
globals .snapshot_buffer_write_offset = aligned_header_size ;
790
779
globals .snapshot_error = ECMA_VALUE_EMPTY ;
791
- globals .regex_found = false;
792
- globals .class_found = false;
793
780
794
781
if (generate_snapshot_opts & JERRY_SNAPSHOT_SAVE_STATIC )
795
782
{
@@ -808,7 +795,7 @@ jerry_generate_snapshot (jerry_value_t compiled_code, /**< parsed script or func
808
795
jerry_snapshot_header_t header ;
809
796
header .magic = JERRY_SNAPSHOT_MAGIC ;
810
797
header .version = JERRY_SNAPSHOT_VERSION ;
811
- header .global_flags = snapshot_get_global_flags ( globals . regex_found , globals . class_found );
798
+ header .feature_flags = ( uint32_t ) snapshot_get_feature_flags ( );
812
799
header .lit_table_offset = (uint32_t ) globals .snapshot_buffer_write_offset ;
813
800
header .number_of_funcs = 1 ;
814
801
header .func_offsets [0 ] = aligned_header_size ;
@@ -897,8 +884,7 @@ jerry_exec_snapshot (const uint32_t *snapshot_p, /**< snapshot */
897
884
898
885
const jerry_snapshot_header_t * header_p = (const jerry_snapshot_header_t * ) snapshot_data_p ;
899
886
900
- if (header_p -> magic != JERRY_SNAPSHOT_MAGIC || header_p -> version != JERRY_SNAPSHOT_VERSION
901
- || !snapshot_check_global_flags (header_p -> global_flags ))
887
+ if (!snapshot_validate_header (header_p ))
902
888
{
903
889
return jerry_throw_sz (JERRY_ERROR_TYPE , ecma_get_error_msg (ECMA_ERR_INVALID_SNAPSHOT_VERSION_OR_FEATURES ));
904
890
}
@@ -1219,7 +1205,6 @@ jerry_merge_snapshots (const uint32_t **inp_buffers_p, /**< array of (pointers t
1219
1205
{
1220
1206
#if JERRY_SNAPSHOT_SAVE
1221
1207
uint32_t number_of_funcs = 0 ;
1222
- uint32_t merged_global_flags = 0 ;
1223
1208
size_t functions_size = sizeof (jerry_snapshot_header_t );
1224
1209
1225
1210
if (number_of_snapshots < 2 )
@@ -1241,16 +1226,13 @@ jerry_merge_snapshots (const uint32_t **inp_buffers_p, /**< array of (pointers t
1241
1226
1242
1227
const jerry_snapshot_header_t * header_p = (const jerry_snapshot_header_t * ) inp_buffers_p [i ];
1243
1228
1244
- if (header_p -> magic != JERRY_SNAPSHOT_MAGIC || header_p -> version != JERRY_SNAPSHOT_VERSION
1245
- || !snapshot_check_global_flags (header_p -> global_flags ))
1229
+ if (!snapshot_validate_header (header_p ))
1246
1230
{
1247
1231
* error_p = "invalid snapshot version or unsupported features present" ;
1248
1232
ecma_collection_destroy (lit_pool_p );
1249
1233
return 0 ;
1250
1234
}
1251
1235
1252
- merged_global_flags |= header_p -> global_flags ;
1253
-
1254
1236
uint32_t start_offset = header_p -> func_offsets [0 ];
1255
1237
const uint8_t * data_p = (const uint8_t * ) inp_buffers_p [i ];
1256
1238
const uint8_t * literal_base_p = data_p + header_p -> lit_table_offset ;
@@ -1278,7 +1260,7 @@ jerry_merge_snapshots (const uint32_t **inp_buffers_p, /**< array of (pointers t
1278
1260
1279
1261
header_p -> magic = JERRY_SNAPSHOT_MAGIC ;
1280
1262
header_p -> version = JERRY_SNAPSHOT_VERSION ;
1281
- header_p -> global_flags = merged_global_flags ;
1263
+ header_p -> feature_flags = snapshot_get_feature_flags () ;
1282
1264
header_p -> lit_table_offset = (uint32_t ) functions_size ;
1283
1265
header_p -> number_of_funcs = number_of_funcs ;
1284
1266
@@ -1555,8 +1537,7 @@ jerry_get_literals_from_snapshot (const uint32_t *snapshot_p, /**< input snapsho
1555
1537
const uint8_t * snapshot_data_p = (uint8_t * ) snapshot_p ;
1556
1538
const jerry_snapshot_header_t * header_p = (const jerry_snapshot_header_t * ) snapshot_data_p ;
1557
1539
1558
- if (snapshot_size <= sizeof (jerry_snapshot_header_t ) || header_p -> magic != JERRY_SNAPSHOT_MAGIC
1559
- || header_p -> version != JERRY_SNAPSHOT_VERSION || !snapshot_check_global_flags (header_p -> global_flags ))
1540
+ if (snapshot_size <= sizeof (jerry_snapshot_header_t ) || !snapshot_validate_header (header_p ))
1560
1541
{
1561
1542
/* Invalid snapshot format */
1562
1543
return 0 ;
0 commit comments