| OLD | NEW |
| 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" |
| 11 | 11 |
| 12 namespace v8 { | 12 namespace v8 { |
| 13 namespace internal { | 13 namespace internal { |
| 14 namespace interpreter { | 14 namespace interpreter { |
| 15 | 15 |
| 16 class BytecodeArrayIterator { | 16 class BytecodeArrayIterator { |
| 17 public: | 17 public: |
| 18 explicit BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array); | 18 explicit BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array); |
| 19 | 19 |
| 20 void Advance(); | 20 void Advance(); |
| 21 bool done() const; | 21 bool done() const; |
| 22 Bytecode current_bytecode() const; | 22 Bytecode current_bytecode() const; |
| 23 int current_bytecode_size() const; | 23 int current_bytecode_size() const; |
| 24 void set_current_offset(int offset) { bytecode_offset_ = offset; } | |
| 25 int current_offset() const { return bytecode_offset_; } | 24 int current_offset() const { return bytecode_offset_; } |
| 25 OperandScale current_operand_scale() const { return operand_scale_; } |
| 26 int current_prefix_offset() const { return prefix_offset_; } |
| 26 const Handle<BytecodeArray>& bytecode_array() const { | 27 const Handle<BytecodeArray>& bytecode_array() const { |
| 27 return bytecode_array_; | 28 return bytecode_array_; |
| 28 } | 29 } |
| 29 | 30 |
| 30 int8_t GetImmediateOperand(int operand_index) const; | 31 uint32_t GetFlagOperand(int operand_index) const; |
| 31 int GetIndexOperand(int operand_index) const; | 32 int32_t GetImmediateOperand(int operand_index) const; |
| 32 int GetRegisterCountOperand(int operand_index) const; | 33 uint32_t GetIndexOperand(int operand_index) const; |
| 34 uint32_t GetRegisterCountOperand(int operand_index) const; |
| 33 Register GetRegisterOperand(int operand_index) const; | 35 Register GetRegisterOperand(int operand_index) const; |
| 34 int GetRegisterOperandRange(int operand_index) const; | 36 int GetRegisterOperandRange(int operand_index) const; |
| 37 uint32_t GetRuntimeIdOperand(int operand_index) const; |
| 35 Handle<Object> GetConstantForIndexOperand(int operand_index) const; | 38 Handle<Object> GetConstantForIndexOperand(int operand_index) const; |
| 36 | 39 |
| 37 // Get the raw byte for the given operand. Note: you should prefer using the | |
| 38 // typed versions above which cast the return to an appropriate type. | |
| 39 uint32_t GetRawOperand(int operand_index, OperandType operand_type) const; | |
| 40 | |
| 41 // Returns the absolute offset of the branch target at the current | 40 // Returns the absolute offset of the branch target at the current |
| 42 // bytecode. It is an error to call this method if the bytecode is | 41 // bytecode. It is an error to call this method if the bytecode is |
| 43 // not for a jump or conditional jump. | 42 // not for a jump or conditional jump. |
| 44 int GetJumpTargetOffset() const; | 43 int GetJumpTargetOffset() const; |
| 45 | 44 |
| 46 private: | 45 private: |
| 46 uint32_t GetUnsignedOperand(int operand_index, |
| 47 OperandType operand_type) const; |
| 48 int32_t GetSignedOperand(int operand_index, OperandType operand_type) const; |
| 49 |
| 50 void UpdateOperandScale(); |
| 51 |
| 47 Handle<BytecodeArray> bytecode_array_; | 52 Handle<BytecodeArray> bytecode_array_; |
| 48 int bytecode_offset_; | 53 int bytecode_offset_; |
| 54 OperandScale operand_scale_; |
| 55 int prefix_offset_; |
| 49 | 56 |
| 50 DISALLOW_COPY_AND_ASSIGN(BytecodeArrayIterator); | 57 DISALLOW_COPY_AND_ASSIGN(BytecodeArrayIterator); |
| 51 }; | 58 }; |
| 52 | 59 |
| 53 } // namespace interpreter | 60 } // namespace interpreter |
| 54 } // namespace internal | 61 } // namespace internal |
| 55 } // namespace v8 | 62 } // namespace v8 |
| 56 | 63 |
| 57 #endif // V8_INTERPRETER_BYTECODE_GRAPH_ITERATOR_H_ | 64 #endif // V8_INTERPRETER_BYTECODE_GRAPH_ITERATOR_H_ |
| OLD | NEW |