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

Side by Side Diff: src/interpreter/interpreter-assembler.h

Issue 1887493004: [Interpreter] No longer require context machine register in bytecode handlers (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@int_dispatch
Patch Set: Fix x87 Created 4 years, 8 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/ia32/macro-assembler-ia32.h ('k') | src/interpreter/interpreter-assembler.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_INTERPRETER_INTERPRETER_ASSEMBLER_H_ 5 #ifndef V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_
6 #define V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_ 6 #define V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/base/smart-pointers.h" 9 #include "src/base/smart-pointers.h"
10 #include "src/builtins.h" 10 #include "src/builtins.h"
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 // Abort operations for debug code. 226 // Abort operations for debug code.
227 void AbortIfWordNotEqual(compiler::Node* lhs, compiler::Node* rhs, 227 void AbortIfWordNotEqual(compiler::Node* lhs, compiler::Node* rhs,
228 BailoutReason bailout_reason); 228 BailoutReason bailout_reason);
229 229
230 OperandScale operand_scale() const { return operand_scale_; } 230 OperandScale operand_scale() const { return operand_scale_; }
231 231
232 Bytecode bytecode_; 232 Bytecode bytecode_;
233 OperandScale operand_scale_; 233 OperandScale operand_scale_;
234 CodeStubAssembler::Variable accumulator_; 234 CodeStubAssembler::Variable accumulator_;
235 AccumulatorUse accumulator_use_; 235 AccumulatorUse accumulator_use_;
236 CodeStubAssembler::Variable context_;
237 CodeStubAssembler::Variable bytecode_array_; 236 CodeStubAssembler::Variable bytecode_array_;
238 237
239 bool disable_stack_check_across_call_; 238 bool disable_stack_check_across_call_;
240 compiler::Node* stack_pointer_before_call_; 239 compiler::Node* stack_pointer_before_call_;
241 240
242 DISALLOW_COPY_AND_ASSIGN(InterpreterAssembler); 241 DISALLOW_COPY_AND_ASSIGN(InterpreterAssembler);
243 }; 242 };
244 243
245 } // namespace interpreter 244 } // namespace interpreter
246 } // namespace internal 245 } // namespace internal
247 } // namespace v8 246 } // namespace v8
248 247
249 #endif // V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_ 248 #endif // V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/ia32/macro-assembler-ia32.h ('k') | src/interpreter/interpreter-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698