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

Side by Side Diff: src/heap.h

Issue 154283002: V8 Microtask Queue & API (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: heapconst Created 6 years, 10 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/execution.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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 V(Smi, setter_stub_deopt_pc_offset, SetterStubDeoptPCOffset) \ 196 V(Smi, setter_stub_deopt_pc_offset, SetterStubDeoptPCOffset) \
197 V(Cell, undefined_cell, UndefineCell) \ 197 V(Cell, undefined_cell, UndefineCell) \
198 V(JSObject, observation_state, ObservationState) \ 198 V(JSObject, observation_state, ObservationState) \
199 V(Map, external_map, ExternalMap) \ 199 V(Map, external_map, ExternalMap) \
200 V(Symbol, frozen_symbol, FrozenSymbol) \ 200 V(Symbol, frozen_symbol, FrozenSymbol) \
201 V(Symbol, elements_transition_symbol, ElementsTransitionSymbol) \ 201 V(Symbol, elements_transition_symbol, ElementsTransitionSymbol) \
202 V(SeededNumberDictionary, empty_slow_element_dictionary, \ 202 V(SeededNumberDictionary, empty_slow_element_dictionary, \
203 EmptySlowElementDictionary) \ 203 EmptySlowElementDictionary) \
204 V(Symbol, observed_symbol, ObservedSymbol) \ 204 V(Symbol, observed_symbol, ObservedSymbol) \
205 V(FixedArray, materialized_objects, MaterializedObjects) \ 205 V(FixedArray, materialized_objects, MaterializedObjects) \
206 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) 206 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \
207 V(JSObject, microtask_state, MicrotaskState)
207 208
208 #define ROOT_LIST(V) \ 209 #define ROOT_LIST(V) \
209 STRONG_ROOT_LIST(V) \ 210 STRONG_ROOT_LIST(V) \
210 V(StringTable, string_table, StringTable) 211 V(StringTable, string_table, StringTable)
211 212
212 // Heap roots that are known to be immortal immovable, for which we can safely 213 // Heap roots that are known to be immortal immovable, for which we can safely
213 // skip write barriers. 214 // skip write barriers.
214 #define IMMORTAL_IMMOVABLE_ROOT_LIST(V) \ 215 #define IMMORTAL_IMMOVABLE_ROOT_LIST(V) \
215 V(byte_array_map) \ 216 V(byte_array_map) \
216 V(free_space_map) \ 217 V(free_space_map) \
(...skipping 2873 matching lines...) Expand 10 before | Expand all | Expand 10 after
3090 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 3091 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
3091 3092
3092 private: 3093 private:
3093 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 3094 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
3094 }; 3095 };
3095 #endif // DEBUG 3096 #endif // DEBUG
3096 3097
3097 } } // namespace v8::internal 3098 } } // namespace v8::internal
3098 3099
3099 #endif // V8_HEAP_H_ 3100 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/execution.cc ('k') | src/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698