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

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

Issue 2307903002: [Interpreter] Collect allocation site feedback in call bytecode handler. (Closed)
Patch Set: Fixed a bug in mips implementation. Created 4 years, 3 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/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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 \ 122 \
123 /* Interpreter */ \ 123 /* Interpreter */ \
124 ASM(InterpreterEntryTrampoline) \ 124 ASM(InterpreterEntryTrampoline) \
125 ASM(InterpreterMarkBaselineOnReturn) \ 125 ASM(InterpreterMarkBaselineOnReturn) \
126 ASM(InterpreterPushArgsAndCall) \ 126 ASM(InterpreterPushArgsAndCall) \
127 ASM(InterpreterPushArgsAndCallFunction) \ 127 ASM(InterpreterPushArgsAndCallFunction) \
128 ASM(InterpreterPushArgsAndTailCall) \ 128 ASM(InterpreterPushArgsAndTailCall) \
129 ASM(InterpreterPushArgsAndTailCallFunction) \ 129 ASM(InterpreterPushArgsAndTailCallFunction) \
130 ASM(InterpreterPushArgsAndConstruct) \ 130 ASM(InterpreterPushArgsAndConstruct) \
131 ASM(InterpreterPushArgsAndConstructFunction) \ 131 ASM(InterpreterPushArgsAndConstructFunction) \
132 ASM(InterpreterPushArgsAndConstructArray) \
132 ASM(InterpreterEnterBytecodeDispatch) \ 133 ASM(InterpreterEnterBytecodeDispatch) \
133 ASM(InterpreterOnStackReplacement) \ 134 ASM(InterpreterOnStackReplacement) \
134 \ 135 \
135 /* Code life-cycle */ \ 136 /* Code life-cycle */ \
136 ASM(CompileLazy) \ 137 ASM(CompileLazy) \
137 ASM(CompileBaseline) \ 138 ASM(CompileBaseline) \
138 ASM(CompileOptimized) \ 139 ASM(CompileOptimized) \
139 ASM(CompileOptimizedConcurrent) \ 140 ASM(CompileOptimizedConcurrent) \
140 ASM(InOptimizationQueue) \ 141 ASM(InOptimizationQueue) \
141 ASM(InstantiateAsmJs) \ 142 ASM(InstantiateAsmJs) \
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 692
692 friend class Isolate; 693 friend class Isolate;
693 694
694 DISALLOW_COPY_AND_ASSIGN(Builtins); 695 DISALLOW_COPY_AND_ASSIGN(Builtins);
695 }; 696 };
696 697
697 } // namespace internal 698 } // namespace internal
698 } // namespace v8 699 } // namespace v8
699 700
700 #endif // V8_BUILTINS_BUILTINS_H_ 701 #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