| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_HEAP_HEAP_H_ | 5 #ifndef V8_HEAP_HEAP_H_ |
| 6 #define V8_HEAP_HEAP_H_ | 6 #define V8_HEAP_HEAP_H_ |
| 7 | 7 |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 STRONG_ROOT_LIST(V) \ | 208 STRONG_ROOT_LIST(V) \ |
| 209 SMI_ROOT_LIST(V) \ | 209 SMI_ROOT_LIST(V) \ |
| 210 V(StringTable, string_table, StringTable) | 210 V(StringTable, string_table, StringTable) |
| 211 | 211 |
| 212 #define INTERNALIZED_STRING_LIST(V) \ | 212 #define INTERNALIZED_STRING_LIST(V) \ |
| 213 V(anonymous_string, "anonymous") \ | 213 V(anonymous_string, "anonymous") \ |
| 214 V(apply_string, "apply") \ | 214 V(apply_string, "apply") \ |
| 215 V(arguments_string, "arguments") \ | 215 V(arguments_string, "arguments") \ |
| 216 V(Arguments_string, "Arguments") \ | 216 V(Arguments_string, "Arguments") \ |
| 217 V(Array_string, "Array") \ | 217 V(Array_string, "Array") \ |
| 218 V(bind_string, "bind") \ | |
| 219 V(bool16x8_string, "bool16x8") \ | 218 V(bool16x8_string, "bool16x8") \ |
| 220 V(Bool16x8_string, "Bool16x8") \ | 219 V(Bool16x8_string, "Bool16x8") \ |
| 221 V(bool32x4_string, "bool32x4") \ | 220 V(bool32x4_string, "bool32x4") \ |
| 222 V(Bool32x4_string, "Bool32x4") \ | 221 V(Bool32x4_string, "Bool32x4") \ |
| 223 V(bool8x16_string, "bool8x16") \ | 222 V(bool8x16_string, "bool8x16") \ |
| 224 V(Bool8x16_string, "Bool8x16") \ | 223 V(Bool8x16_string, "Bool8x16") \ |
| 225 V(boolean_string, "boolean") \ | 224 V(boolean_string, "boolean") \ |
| 226 V(Boolean_string, "Boolean") \ | 225 V(Boolean_string, "Boolean") \ |
| 227 V(bound__string, "bound ") \ | |
| 228 V(byte_length_string, "byteLength") \ | 226 V(byte_length_string, "byteLength") \ |
| 229 V(byte_offset_string, "byteOffset") \ | 227 V(byte_offset_string, "byteOffset") \ |
| 230 V(call_string, "call") \ | 228 V(call_string, "call") \ |
| 231 V(callee_string, "callee") \ | 229 V(callee_string, "callee") \ |
| 232 V(caller_string, "caller") \ | 230 V(caller_string, "caller") \ |
| 233 V(cell_value_string, "%cell_value") \ | 231 V(cell_value_string, "%cell_value") \ |
| 234 V(char_at_string, "CharAt") \ | 232 V(char_at_string, "CharAt") \ |
| 235 V(closure_string, "(closure)") \ | 233 V(closure_string, "(closure)") \ |
| 236 V(compare_ic_string, "==") \ | 234 V(compare_ic_string, "==") \ |
| 237 V(configurable_string, "configurable") \ | 235 V(configurable_string, "configurable") \ |
| (...skipping 2514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2752 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. | 2750 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. |
| 2753 | 2751 |
| 2754 private: | 2752 private: |
| 2755 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2753 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2756 }; | 2754 }; |
| 2757 #endif // DEBUG | 2755 #endif // DEBUG |
| 2758 } // namespace internal | 2756 } // namespace internal |
| 2759 } // namespace v8 | 2757 } // namespace v8 |
| 2760 | 2758 |
| 2761 #endif // V8_HEAP_HEAP_H_ | 2759 #endif // V8_HEAP_HEAP_H_ |
| OLD | NEW |