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

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

Issue 1895063002: [Interpreter] Avoid binding bytecode_array to a variable in CallEpilogue (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
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 bytecode_array_; 236 bool made_call_;
237 237
238 bool disable_stack_check_across_call_; 238 bool disable_stack_check_across_call_;
239 compiler::Node* stack_pointer_before_call_; 239 compiler::Node* stack_pointer_before_call_;
240 240
241 DISALLOW_COPY_AND_ASSIGN(InterpreterAssembler); 241 DISALLOW_COPY_AND_ASSIGN(InterpreterAssembler);
242 }; 242 };
243 243
244 } // namespace interpreter 244 } // namespace interpreter
245 } // namespace internal 245 } // namespace internal
246 } // namespace v8 246 } // namespace v8
247 247
248 #endif // V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_ 248 #endif // V8_INTERPRETER_INTERPRETER_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/interpreter/interpreter-assembler.cc » ('j') | src/interpreter/interpreter-assembler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698