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

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

Issue 607913002: Report promise reject with no handler (behind a flag). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: more comments Created 6 years, 2 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/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 9
10 #include "src/allocation.h" 10 #include "src/allocation.h"
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 EmptySlowElementDictionary) \ 182 EmptySlowElementDictionary) \
183 V(Symbol, observed_symbol, ObservedSymbol) \ 183 V(Symbol, observed_symbol, ObservedSymbol) \
184 V(Symbol, uninitialized_symbol, UninitializedSymbol) \ 184 V(Symbol, uninitialized_symbol, UninitializedSymbol) \
185 V(Symbol, megamorphic_symbol, MegamorphicSymbol) \ 185 V(Symbol, megamorphic_symbol, MegamorphicSymbol) \
186 V(Symbol, premonomorphic_symbol, PremonomorphicSymbol) \ 186 V(Symbol, premonomorphic_symbol, PremonomorphicSymbol) \
187 V(Symbol, generic_symbol, GenericSymbol) \ 187 V(Symbol, generic_symbol, GenericSymbol) \
188 V(Symbol, stack_trace_symbol, StackTraceSymbol) \ 188 V(Symbol, stack_trace_symbol, StackTraceSymbol) \
189 V(Symbol, detailed_stack_trace_symbol, DetailedStackTraceSymbol) \ 189 V(Symbol, detailed_stack_trace_symbol, DetailedStackTraceSymbol) \
190 V(Symbol, normal_ic_symbol, NormalICSymbol) \ 190 V(Symbol, normal_ic_symbol, NormalICSymbol) \
191 V(Symbol, home_object_symbol, HomeObjectSymbol) \ 191 V(Symbol, home_object_symbol, HomeObjectSymbol) \
192 V(Symbol, promise_debug_symbol, PromiseDebugSymbol) \
192 V(FixedArray, materialized_objects, MaterializedObjects) \ 193 V(FixedArray, materialized_objects, MaterializedObjects) \
193 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \ 194 V(FixedArray, allocation_sites_scratchpad, AllocationSitesScratchpad) \
194 V(FixedArray, microtask_queue, MicrotaskQueue) 195 V(FixedArray, microtask_queue, MicrotaskQueue)
195 196
196 // Entries in this list are limited to Smis and are not visited during GC. 197 // Entries in this list are limited to Smis and are not visited during GC.
197 #define SMI_ROOT_LIST(V) \ 198 #define SMI_ROOT_LIST(V) \
198 V(Smi, stack_limit, StackLimit) \ 199 V(Smi, stack_limit, StackLimit) \
199 V(Smi, real_stack_limit, RealStackLimit) \ 200 V(Smi, real_stack_limit, RealStackLimit) \
200 V(Smi, last_script_id, LastScriptId) \ 201 V(Smi, last_script_id, LastScriptId) \
201 V(Smi, arguments_adaptor_deopt_pc_offset, ArgumentsAdaptorDeoptPCOffset) \ 202 V(Smi, arguments_adaptor_deopt_pc_offset, ArgumentsAdaptorDeoptPCOffset) \
(...skipping 2291 matching lines...) Expand 10 before | Expand all | Expand 10 after
2493 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2494 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2494 2495
2495 private: 2496 private:
2496 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2497 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2497 }; 2498 };
2498 #endif // DEBUG 2499 #endif // DEBUG
2499 } 2500 }
2500 } // namespace v8::internal 2501 } // namespace v8::internal
2501 2502
2502 #endif // V8_HEAP_HEAP_H_ 2503 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/heap/heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698