Skip to content

Commit 92f41e5

Browse files
evanlucasMylesBorins
authored andcommitted
build: allow enabling the --trace-maps flag in V8
This can be useful for tracing map creation. PR-URL: #14018 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Refael Ackermann <[email protected]>
1 parent c18a450 commit 92f41e5

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

configure

+6
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,11 @@ parser.add_option('--enable-d8',
299299
dest='enable_d8',
300300
help=optparse.SUPPRESS_HELP) # Unsupported, undocumented.
301301

302+
parser.add_option('--enable-trace-maps',
303+
action='store_true',
304+
dest='trace_maps',
305+
help='Enable the --trace-maps flag in V8 (use at your own risk)')
306+
302307
parser.add_option('--v8-options',
303308
action='store',
304309
dest='v8_options',
@@ -964,6 +969,7 @@ def configure_v8(o):
964969
o['variables']['v8_optimized_debug'] = 0 # Compile with -O0 in debug builds.
965970
o['variables']['v8_random_seed'] = 0 # Use a random seed for hash tables.
966971
o['variables']['v8_use_snapshot'] = 'false' if options.without_snapshot else 'true'
972+
o['variables']['v8_trace_maps'] = 1 if options.trace_maps else 0
967973
o['variables']['node_use_v8_platform'] = b(not options.without_v8_platform)
968974
o['variables']['node_use_bundled_v8'] = b(not options.without_bundled_v8)
969975
o['variables']['force_dynamic_crt'] = 1 if options.shared else 0

node.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
'variables': {
33
'v8_use_snapshot%': 'false',
4+
'v8_trace_maps%': 0,
45
'node_use_dtrace%': 'false',
56
'node_use_lttng%': 'false',
67
'node_use_etw%': 'false',

0 commit comments

Comments
 (0)