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

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

Issue 2487173002: [turbofan] Advance bytecode offset after lazy deopt. (Closed)
Patch Set: Properly restore context. Created 4 years, 1 month 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/builtins/arm64/builtins-arm64.cc ('k') | src/builtins/ia32/builtins-ia32.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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_BUILTINS_BUILTINS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 \ 109 \
110 /* Interpreter */ \ 110 /* Interpreter */ \
111 ASM(InterpreterEntryTrampoline) \ 111 ASM(InterpreterEntryTrampoline) \
112 ASM(InterpreterPushArgsAndCall) \ 112 ASM(InterpreterPushArgsAndCall) \
113 ASM(InterpreterPushArgsAndCallFunction) \ 113 ASM(InterpreterPushArgsAndCallFunction) \
114 ASM(InterpreterPushArgsAndTailCall) \ 114 ASM(InterpreterPushArgsAndTailCall) \
115 ASM(InterpreterPushArgsAndTailCallFunction) \ 115 ASM(InterpreterPushArgsAndTailCallFunction) \
116 ASM(InterpreterPushArgsAndConstruct) \ 116 ASM(InterpreterPushArgsAndConstruct) \
117 ASM(InterpreterPushArgsAndConstructFunction) \ 117 ASM(InterpreterPushArgsAndConstructFunction) \
118 ASM(InterpreterPushArgsAndConstructArray) \ 118 ASM(InterpreterPushArgsAndConstructArray) \
119 ASM(InterpreterEnterBytecodeAdvance) \
119 ASM(InterpreterEnterBytecodeDispatch) \ 120 ASM(InterpreterEnterBytecodeDispatch) \
120 ASM(InterpreterOnStackReplacement) \ 121 ASM(InterpreterOnStackReplacement) \
121 \ 122 \
122 /* Code life-cycle */ \ 123 /* Code life-cycle */ \
123 ASM(CompileLazy) \ 124 ASM(CompileLazy) \
124 ASM(CompileBaseline) \ 125 ASM(CompileBaseline) \
125 ASM(CompileOptimized) \ 126 ASM(CompileOptimized) \
126 ASM(CompileOptimizedConcurrent) \ 127 ASM(CompileOptimizedConcurrent) \
127 ASM(InOptimizationQueue) \ 128 ASM(InOptimizationQueue) \
128 ASM(InstantiateAsmJs) \ 129 ASM(InstantiateAsmJs) \
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 832
832 friend class Isolate; 833 friend class Isolate;
833 834
834 DISALLOW_COPY_AND_ASSIGN(Builtins); 835 DISALLOW_COPY_AND_ASSIGN(Builtins);
835 }; 836 };
836 837
837 } // namespace internal 838 } // namespace internal
838 } // namespace v8 839 } // namespace v8
839 840
840 #endif // V8_BUILTINS_BUILTINS_H_ 841 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/builtins/arm64/builtins-arm64.cc ('k') | src/builtins/ia32/builtins-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698