| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 V(Map, scope_info_map, ScopeInfoMap) \ | 70 V(Map, scope_info_map, ScopeInfoMap) \ |
| 71 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \ | 71 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \ |
| 72 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \ | 72 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \ |
| 73 V(Object, no_interceptor_result_sentinel, NoInterceptorResultSentinel) \ | 73 V(Object, no_interceptor_result_sentinel, NoInterceptorResultSentinel) \ |
| 74 V(Map, hash_table_map, HashTableMap) \ | 74 V(Map, hash_table_map, HashTableMap) \ |
| 75 V(FixedArray, empty_fixed_array, EmptyFixedArray) \ | 75 V(FixedArray, empty_fixed_array, EmptyFixedArray) \ |
| 76 V(ByteArray, empty_byte_array, EmptyByteArray) \ | 76 V(ByteArray, empty_byte_array, EmptyByteArray) \ |
| 77 V(String, empty_string, EmptyString) \ | 77 V(String, empty_string, EmptyString) \ |
| 78 V(DescriptorArray, empty_descriptor_array, EmptyDescriptorArray) \ | 78 V(DescriptorArray, empty_descriptor_array, EmptyDescriptorArray) \ |
| 79 V(Smi, stack_limit, StackLimit) \ | 79 V(Smi, stack_limit, StackLimit) \ |
| 80 V(Oddball, frame_alignment_marker, FrameAlignmentMarker) \ | |
| 81 V(Oddball, arguments_marker, ArgumentsMarker) \ | 80 V(Oddball, arguments_marker, ArgumentsMarker) \ |
| 82 /* The first 32 roots above this line should be boring from a GC point of */ \ | 81 /* The first 32 roots above this line should be boring from a GC point of */ \ |
| 83 /* view. This means they are never in new space and never on a page that */ \ | 82 /* view. This means they are never in new space and never on a page that */ \ |
| 84 /* is being compacted. */ \ | 83 /* is being compacted. */ \ |
| 85 V(FixedArray, number_string_cache, NumberStringCache) \ | 84 V(FixedArray, number_string_cache, NumberStringCache) \ |
| 86 V(Object, instanceof_cache_function, InstanceofCacheFunction) \ | 85 V(Object, instanceof_cache_function, InstanceofCacheFunction) \ |
| 87 V(Object, instanceof_cache_map, InstanceofCacheMap) \ | 86 V(Object, instanceof_cache_map, InstanceofCacheMap) \ |
| 88 V(Object, instanceof_cache_answer, InstanceofCacheAnswer) \ | 87 V(Object, instanceof_cache_answer, InstanceofCacheAnswer) \ |
| 89 V(FixedArray, single_character_string_cache, SingleCharacterStringCache) \ | 88 V(FixedArray, single_character_string_cache, SingleCharacterStringCache) \ |
| 90 V(FixedArray, string_split_cache, StringSplitCache) \ | 89 V(FixedArray, string_split_cache, StringSplitCache) \ |
| (...skipping 2580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2671 AssertNoAllocation no_alloc; // i.e. no gc allowed. | 2670 AssertNoAllocation no_alloc; // i.e. no gc allowed. |
| 2672 | 2671 |
| 2673 private: | 2672 private: |
| 2674 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); | 2673 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); |
| 2675 }; | 2674 }; |
| 2676 #endif // DEBUG || LIVE_OBJECT_LIST | 2675 #endif // DEBUG || LIVE_OBJECT_LIST |
| 2677 | 2676 |
| 2678 } } // namespace v8::internal | 2677 } } // namespace v8::internal |
| 2679 | 2678 |
| 2680 #endif // V8_HEAP_H_ | 2679 #endif // V8_HEAP_H_ |
| OLD | NEW |