Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(371)

Side by Side Diff: build/features.gypi

Issue 890663005: Introduce a flag for tracing retaining path in GC. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | src/heap/heap.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 21 matching lines...) Expand all
32 'v8_enable_disassembler%': 0, 32 'v8_enable_disassembler%': 0,
33 33
34 'v8_enable_gdbjit%': 0, 34 'v8_enable_gdbjit%': 0,
35 35
36 'v8_object_print%': 0, 36 'v8_object_print%': 0,
37 37
38 'v8_enable_verify_heap%': 0, 38 'v8_enable_verify_heap%': 0,
39 39
40 'v8_trace_maps%': 0, 40 'v8_trace_maps%': 0,
41 41
42 'v8_trace_retaining_path%': 0,
43
42 'v8_use_snapshot%': 'true', 44 'v8_use_snapshot%': 'true',
43 45
44 'v8_enable_verify_predictable%': 0, 46 'v8_enable_verify_predictable%': 0,
45 47
46 # With post mortem support enabled, metadata is embedded into libv8 that 48 # With post mortem support enabled, metadata is embedded into libv8 that
47 # describes various parameters of the VM for use by debuggers. See 49 # describes various parameters of the VM for use by debuggers. See
48 # tools/gen-postmortem-metadata.py for details. 50 # tools/gen-postmortem-metadata.py for details.
49 'v8_postmortem_support%': 'false', 51 'v8_postmortem_support%': 'false',
50 52
51 # Interpreted regexp engine exists as platform-independent alternative 53 # Interpreted regexp engine exists as platform-independent alternative
(...skipping 20 matching lines...) Expand all
72 }], 74 }],
73 ['v8_object_print==1', { 75 ['v8_object_print==1', {
74 'defines': ['OBJECT_PRINT',], 76 'defines': ['OBJECT_PRINT',],
75 }], 77 }],
76 ['v8_enable_verify_heap==1', { 78 ['v8_enable_verify_heap==1', {
77 'defines': ['VERIFY_HEAP',], 79 'defines': ['VERIFY_HEAP',],
78 }], 80 }],
79 ['v8_trace_maps==1', { 81 ['v8_trace_maps==1', {
80 'defines': ['TRACE_MAPS',], 82 'defines': ['TRACE_MAPS',],
81 }], 83 }],
84 ['v8_trace_retaining_path==1', {
85 'defines': ['TRACE_RETAINING_PATH',],
86 }],
82 ['v8_enable_verify_predictable==1', { 87 ['v8_enable_verify_predictable==1', {
83 'defines': ['VERIFY_PREDICTABLE',], 88 'defines': ['VERIFY_PREDICTABLE',],
84 }], 89 }],
85 ['v8_interpreted_regexp==1', { 90 ['v8_interpreted_regexp==1', {
86 'defines': ['V8_INTERPRETED_REGEXP',], 91 'defines': ['V8_INTERPRETED_REGEXP',],
87 }], 92 }],
88 ['v8_deprecation_warnings==1', { 93 ['v8_deprecation_warnings==1', {
89 'defines': ['V8_DEPRECATION_WARNINGS',], 94 'defines': ['V8_DEPRECATION_WARNINGS',],
90 }], 95 }],
91 ['v8_enable_i18n_support==1', { 96 ['v8_enable_i18n_support==1', {
(...skipping 24 matching lines...) Expand all
116 }, 121 },
117 'conditions': [ 122 'conditions': [
118 ['v8_enable_handle_zapping==1', { 123 ['v8_enable_handle_zapping==1', {
119 'defines': ['ENABLE_HANDLE_ZAPPING',], 124 'defines': ['ENABLE_HANDLE_ZAPPING',],
120 }], 125 }],
121 ], # conditions 126 ], # conditions
122 }, # Release 127 }, # Release
123 }, # configurations 128 }, # configurations
124 }, # target_defaults 129 }, # target_defaults
125 } 130 }
OLDNEW
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | src/heap/heap.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698