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

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

Issue 1010883002: Switch full-codegen from StackHandlers to handler table. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_cleanup-isolate-dead-code
Patch Set: Fix debugger-pause-on-promise-rejection. Created 5 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
« no previous file with comments | « src/promise.js ('k') | src/runtime/runtime-debug.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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/zone.h" 10 #include "src/zone.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 F(GetOptimizationStatus, -1, 1) \ 68 F(GetOptimizationStatus, -1, 1) \
69 F(GetOptimizationCount, 1, 1) \ 69 F(GetOptimizationCount, 1, 1) \
70 F(UnblockConcurrentRecompilation, 0, 1) \ 70 F(UnblockConcurrentRecompilation, 0, 1) \
71 F(CompileForOnStackReplacement, 1, 1) \ 71 F(CompileForOnStackReplacement, 1, 1) \
72 F(SetAllocationTimeout, -1 /* 2 || 3 */, 1) \ 72 F(SetAllocationTimeout, -1 /* 2 || 3 */, 1) \
73 F(SetNativeFlag, 1, 1) \ 73 F(SetNativeFlag, 1, 1) \
74 F(IsConstructor, 1, 1) \ 74 F(IsConstructor, 1, 1) \
75 F(SetInlineBuiltinFlag, 1, 1) \ 75 F(SetInlineBuiltinFlag, 1, 1) \
76 F(StoreArrayLiteralElement, 5, 1) \ 76 F(StoreArrayLiteralElement, 5, 1) \
77 F(DebugPrepareStepInIfStepping, 1, 1) \ 77 F(DebugPrepareStepInIfStepping, 1, 1) \
78 F(DebugPushPromise, 1, 1) \ 78 F(DebugPushPromise, 2, 1) \
79 F(DebugPopPromise, 0, 1) \ 79 F(DebugPopPromise, 0, 1) \
80 F(DebugPromiseEvent, 1, 1) \ 80 F(DebugPromiseEvent, 1, 1) \
81 F(DebugAsyncTaskEvent, 1, 1) \ 81 F(DebugAsyncTaskEvent, 1, 1) \
82 F(PromiseRejectEvent, 3, 1) \ 82 F(PromiseRejectEvent, 3, 1) \
83 F(PromiseRevokeReject, 1, 1) \ 83 F(PromiseRevokeReject, 1, 1) \
84 F(PromiseHasHandlerSymbol, 0, 1) \ 84 F(PromiseHasHandlerSymbol, 0, 1) \
85 F(FlattenString, 1, 1) \ 85 F(FlattenString, 1, 1) \
86 F(LoadMutableDouble, 2, 1) \ 86 F(LoadMutableDouble, 2, 1) \
87 F(TryMigrateInstance, 1, 1) \ 87 F(TryMigrateInstance, 1, 1) \
88 F(NotifyContextDisposed, 0, 1) \ 88 F(NotifyContextDisposed, 0, 1) \
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 F(NumberToStringSkipCache, 1, 1) \ 450 F(NumberToStringSkipCache, 1, 1) \
451 \ 451 \
452 F(NewArguments, 1, 1) /* TODO(turbofan): Only temporary */ \ 452 F(NewArguments, 1, 1) /* TODO(turbofan): Only temporary */ \
453 F(NewSloppyArguments, 3, 1) \ 453 F(NewSloppyArguments, 3, 1) \
454 F(NewStrictArguments, 3, 1) \ 454 F(NewStrictArguments, 3, 1) \
455 F(NewRestParam, 3, 1) \ 455 F(NewRestParam, 3, 1) \
456 F(NewRestParamSlow, 1, 1) \ 456 F(NewRestParamSlow, 1, 1) \
457 \ 457 \
458 /* Harmony generators */ \ 458 /* Harmony generators */ \
459 F(CreateJSGeneratorObject, 0, 1) \ 459 F(CreateJSGeneratorObject, 0, 1) \
460 F(SuspendJSGeneratorObject, 1, 1) \ 460 F(SuspendJSGeneratorObject, -1, 1) \
461 F(ResumeJSGeneratorObject, 3, 1) \ 461 F(ResumeJSGeneratorObject, 3, 1) \
462 F(GeneratorClose, 1, 1) \ 462 F(GeneratorClose, 1, 1) \
463 \ 463 \
464 /* Arrays */ \ 464 /* Arrays */ \
465 F(ArrayConstructor, -1, 1) \ 465 F(ArrayConstructor, -1, 1) \
466 F(ArrayConstructorWithSubclassing, -1, 1) \ 466 F(ArrayConstructorWithSubclassing, -1, 1) \
467 F(InternalArrayConstructor, -1, 1) \ 467 F(InternalArrayConstructor, -1, 1) \
468 \ 468 \
469 /* Literals */ \ 469 /* Literals */ \
470 F(MaterializeRegExpLiteral, 4, 1) \ 470 F(MaterializeRegExpLiteral, 4, 1) \
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 898
899 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 899 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
900 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 900 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
901 STATIC_ASSERT(LANGUAGE_END == 3); 901 STATIC_ASSERT(LANGUAGE_END == 3);
902 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 902 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
903 903
904 } // namespace internal 904 } // namespace internal
905 } // namespace v8 905 } // namespace v8
906 906
907 #endif // V8_RUNTIME_RUNTIME_H_ 907 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/promise.js ('k') | src/runtime/runtime-debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698