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

Side by Side Diff: src/heap.h

Issue 9716028: Merge r11075 from bleeding_edge to 3.8 branch: Revert dynamic frame alignment. (Closed) Base URL: http://v8.googlecode.com/svn/branches/3.8/
Patch Set: Created 8 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « src/deoptimizer.cc ('k') | src/heap.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \ 77 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \
78 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \ 78 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \
79 V(Object, no_interceptor_result_sentinel, NoInterceptorResultSentinel) \ 79 V(Object, no_interceptor_result_sentinel, NoInterceptorResultSentinel) \
80 V(Map, hash_table_map, HashTableMap) \ 80 V(Map, hash_table_map, HashTableMap) \
81 V(FixedArray, empty_fixed_array, EmptyFixedArray) \ 81 V(FixedArray, empty_fixed_array, EmptyFixedArray) \
82 V(ByteArray, empty_byte_array, EmptyByteArray) \ 82 V(ByteArray, empty_byte_array, EmptyByteArray) \
83 V(FixedDoubleArray, empty_fixed_double_array, EmptyFixedDoubleArray) \ 83 V(FixedDoubleArray, empty_fixed_double_array, EmptyFixedDoubleArray) \
84 V(String, empty_string, EmptyString) \ 84 V(String, empty_string, EmptyString) \
85 V(DescriptorArray, empty_descriptor_array, EmptyDescriptorArray) \ 85 V(DescriptorArray, empty_descriptor_array, EmptyDescriptorArray) \
86 V(Smi, stack_limit, StackLimit) \ 86 V(Smi, stack_limit, StackLimit) \
87 V(Oddball, frame_alignment_marker, FrameAlignmentMarker) \
88 V(Oddball, arguments_marker, ArgumentsMarker) \ 87 V(Oddball, arguments_marker, ArgumentsMarker) \
89 /* The first 32 roots above this line should be boring from a GC point of */ \ 88 /* The first 32 roots above this line should be boring from a GC point of */ \
90 /* view. This means they are never in new space and never on a page that */ \ 89 /* view. This means they are never in new space and never on a page that */ \
91 /* is being compacted. */ \ 90 /* is being compacted. */ \
92 V(FixedArray, number_string_cache, NumberStringCache) \ 91 V(FixedArray, number_string_cache, NumberStringCache) \
93 V(Object, instanceof_cache_function, InstanceofCacheFunction) \ 92 V(Object, instanceof_cache_function, InstanceofCacheFunction) \
94 V(Object, instanceof_cache_map, InstanceofCacheMap) \ 93 V(Object, instanceof_cache_map, InstanceofCacheMap) \
95 V(Object, instanceof_cache_answer, InstanceofCacheAnswer) \ 94 V(Object, instanceof_cache_answer, InstanceofCacheAnswer) \
96 V(FixedArray, single_character_string_cache, SingleCharacterStringCache) \ 95 V(FixedArray, single_character_string_cache, SingleCharacterStringCache) \
97 V(FixedArray, string_split_cache, StringSplitCache) \ 96 V(FixedArray, string_split_cache, StringSplitCache) \
(...skipping 2552 matching lines...) Expand 10 before | Expand all | Expand 10 after
2650 private: 2649 private:
2651 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2650 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2652 }; 2651 };
2653 #endif // DEBUG || LIVE_OBJECT_LIST 2652 #endif // DEBUG || LIVE_OBJECT_LIST
2654 2653
2655 } } // namespace v8::internal 2654 } } // namespace v8::internal
2656 2655
2657 #undef HEAP 2656 #undef HEAP
2658 2657
2659 #endif // V8_HEAP_H_ 2658 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/deoptimizer.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698