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

Side by Side Diff: src/interpreter/bytecode-array-iterator.h

Issue 1361113002: [Interpreter] Add support for loading globals in the interpreter. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix BytecodeArrayBuilderTest Created 5 years, 2 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_BYTECODE_ARRAY_ITERATOR_H_ 5 #ifndef V8_INTERPRETER_BYTECODE_ARRAY_ITERATOR_H_
6 #define V8_INTERPRETER_BYTECODE_ARRAY_ITERATOR_H_ 6 #define V8_INTERPRETER_BYTECODE_ARRAY_ITERATOR_H_
7 7
8 #include "src/handles.h" 8 #include "src/handles.h"
9 #include "src/interpreter/bytecodes.h" 9 #include "src/interpreter/bytecodes.h"
10 #include "src/objects.h" 10 #include "src/objects.h"
(...skipping 11 matching lines...) Expand all
22 Bytecode current_bytecode() const; 22 Bytecode current_bytecode() const;
23 const Handle<BytecodeArray>& bytecode_array() const { 23 const Handle<BytecodeArray>& bytecode_array() const {
24 return bytecode_array_; 24 return bytecode_array_;
25 } 25 }
26 26
27 int8_t GetSmi8Operand(int operand_index) const; 27 int8_t GetSmi8Operand(int operand_index) const;
28 int GetIndexOperand(int operand_index) const; 28 int GetIndexOperand(int operand_index) const;
29 Register GetRegisterOperand(int operand_index) const; 29 Register GetRegisterOperand(int operand_index) const;
30 Handle<Object> GetConstantForIndexOperand(int operand_index) const; 30 Handle<Object> GetConstantForIndexOperand(int operand_index) const;
31 31
32 uint8_t GetRawOperand(int operand_index) const;
Michael Starzinger 2015/09/24 08:54:54 nit: IIUC this is only exposed for testing. Can we
rmcilroy 2015/09/24 11:20:12 Changed to add an OperandType and add checking as
33
32 private: 34 private:
33 uint8_t GetOperand(int operand_index, OperandType operand_type) const;
34
35 Handle<BytecodeArray> bytecode_array_; 35 Handle<BytecodeArray> bytecode_array_;
36 int bytecode_offset_; 36 int bytecode_offset_;
37 37
38 DISALLOW_COPY_AND_ASSIGN(BytecodeArrayIterator); 38 DISALLOW_COPY_AND_ASSIGN(BytecodeArrayIterator);
39 }; 39 };
40 40
41 } // namespace interpreter 41 } // namespace interpreter
42 } // namespace internal 42 } // namespace internal
43 } // namespace v8 43 } // namespace v8
44 44
45 #endif // V8_INTERPRETER_BYTECODE_GRAPH_ITERATOR_H_ 45 #endif // V8_INTERPRETER_BYTECODE_GRAPH_ITERATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698