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

Side by Side Diff: src/heap/heap.h

Issue 2337123003: [turbofan] Collect invocation counts and compute relative call frequencies. (Closed)
Patch Set: Address feedback. Created 4 years, 3 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 | « src/full-codegen/x64/full-codegen-x64.cc ('k') | src/heap/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 // 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 V(Map, shared_function_info_map, SharedFunctionInfoMap) \ 54 V(Map, shared_function_info_map, SharedFunctionInfoMap) \
55 V(Map, code_map, CodeMap) \ 55 V(Map, code_map, CodeMap) \
56 V(Map, function_context_map, FunctionContextMap) \ 56 V(Map, function_context_map, FunctionContextMap) \
57 V(Map, cell_map, CellMap) \ 57 V(Map, cell_map, CellMap) \
58 V(Map, weak_cell_map, WeakCellMap) \ 58 V(Map, weak_cell_map, WeakCellMap) \
59 V(Map, global_property_cell_map, GlobalPropertyCellMap) \ 59 V(Map, global_property_cell_map, GlobalPropertyCellMap) \
60 V(Map, foreign_map, ForeignMap) \ 60 V(Map, foreign_map, ForeignMap) \
61 V(Map, heap_number_map, HeapNumberMap) \ 61 V(Map, heap_number_map, HeapNumberMap) \
62 V(Map, transition_array_map, TransitionArrayMap) \ 62 V(Map, transition_array_map, TransitionArrayMap) \
63 V(FixedArray, empty_literals_array, EmptyLiteralsArray) \ 63 V(FixedArray, empty_literals_array, EmptyLiteralsArray) \
64 V(FixedArray, empty_type_feedback_vector, EmptyTypeFeedbackVector) \
64 V(FixedArray, empty_fixed_array, EmptyFixedArray) \ 65 V(FixedArray, empty_fixed_array, EmptyFixedArray) \
65 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \ 66 V(FixedArray, cleared_optimized_code_map, ClearedOptimizedCodeMap) \
66 V(DescriptorArray, empty_descriptor_array, EmptyDescriptorArray) \ 67 V(DescriptorArray, empty_descriptor_array, EmptyDescriptorArray) \
67 /* Entries beyond the first 32 */ \ 68 /* Entries beyond the first 32 */ \
68 /* The roots above this line should be boring from a GC point of view. */ \ 69 /* The roots above this line should be boring from a GC point of view. */ \
69 /* This means they are never in new space and never on a page that is */ \ 70 /* This means they are never in new space and never on a page that is */ \
70 /* being compacted. */ \ 71 /* being compacted. */ \
71 /* Oddballs */ \ 72 /* Oddballs */ \
72 V(Oddball, no_interceptor_result_sentinel, NoInterceptorResultSentinel) \ 73 V(Oddball, no_interceptor_result_sentinel, NoInterceptorResultSentinel) \
73 V(Oddball, arguments_marker, ArgumentsMarker) \ 74 V(Oddball, arguments_marker, ArgumentsMarker) \
(...skipping 2553 matching lines...) Expand 10 before | Expand all | Expand 10 after
2627 friend class LargeObjectSpace; 2628 friend class LargeObjectSpace;
2628 friend class NewSpace; 2629 friend class NewSpace;
2629 friend class PagedSpace; 2630 friend class PagedSpace;
2630 DISALLOW_COPY_AND_ASSIGN(AllocationObserver); 2631 DISALLOW_COPY_AND_ASSIGN(AllocationObserver);
2631 }; 2632 };
2632 2633
2633 } // namespace internal 2634 } // namespace internal
2634 } // namespace v8 2635 } // namespace v8
2635 2636
2636 #endif // V8_HEAP_HEAP_H_ 2637 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/full-codegen/x64/full-codegen-x64.cc ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698