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

Side by Side Diff: src/heap.h

Issue 14721009: Track computed literal properties. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove PLACEHOLDER_VALUE Created 7 years, 6 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/flag-definitions.h ('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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 V(Map, free_space_map, FreeSpaceMap) \ 52 V(Map, free_space_map, FreeSpaceMap) \
53 V(Map, one_pointer_filler_map, OnePointerFillerMap) \ 53 V(Map, one_pointer_filler_map, OnePointerFillerMap) \
54 V(Map, two_pointer_filler_map, TwoPointerFillerMap) \ 54 V(Map, two_pointer_filler_map, TwoPointerFillerMap) \
55 /* Cluster the most popular ones in a few cache lines here at the top. */ \ 55 /* Cluster the most popular ones in a few cache lines here at the top. */ \
56 V(Smi, store_buffer_top, StoreBufferTop) \ 56 V(Smi, store_buffer_top, StoreBufferTop) \
57 V(Oddball, undefined_value, UndefinedValue) \ 57 V(Oddball, undefined_value, UndefinedValue) \
58 V(Oddball, the_hole_value, TheHoleValue) \ 58 V(Oddball, the_hole_value, TheHoleValue) \
59 V(Oddball, null_value, NullValue) \ 59 V(Oddball, null_value, NullValue) \
60 V(Oddball, true_value, TrueValue) \ 60 V(Oddball, true_value, TrueValue) \
61 V(Oddball, false_value, FalseValue) \ 61 V(Oddball, false_value, FalseValue) \
62 V(Oddball, uninitialized_value, UninitializedValue) \
62 V(Map, global_property_cell_map, GlobalPropertyCellMap) \ 63 V(Map, global_property_cell_map, GlobalPropertyCellMap) \
63 V(Map, shared_function_info_map, SharedFunctionInfoMap) \ 64 V(Map, shared_function_info_map, SharedFunctionInfoMap) \
64 V(Map, meta_map, MetaMap) \ 65 V(Map, meta_map, MetaMap) \
65 V(Map, heap_number_map, HeapNumberMap) \ 66 V(Map, heap_number_map, HeapNumberMap) \
66 V(Map, native_context_map, NativeContextMap) \ 67 V(Map, native_context_map, NativeContextMap) \
67 V(Map, fixed_array_map, FixedArrayMap) \ 68 V(Map, fixed_array_map, FixedArrayMap) \
68 V(Map, code_map, CodeMap) \ 69 V(Map, code_map, CodeMap) \
69 V(Map, scope_info_map, ScopeInfoMap) \ 70 V(Map, scope_info_map, ScopeInfoMap) \
70 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \ 71 V(Map, fixed_cow_array_map, FixedCOWArrayMap) \
71 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \ 72 V(Map, fixed_double_array_map, FixedDoubleArrayMap) \
(...skipping 2966 matching lines...) Expand 10 before | Expand all | Expand 10 after
3038 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3039 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3039 3040
3040 private: 3041 private:
3041 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3042 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3042 }; 3043 };
3043 #endif // DEBUG 3044 #endif // DEBUG
3044 3045
3045 } } // namespace v8::internal 3046 } } // namespace v8::internal
3046 3047
3047 #endif // V8_HEAP_H_ 3048 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698