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

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

Issue 2084623002: Reland: [Interpreter] Map runtime id's to intrinsic id's in InvokeIntrinsic bytecode. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Reland Created 4 years, 6 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/interpreter/bytecode-array-builder.cc ('k') | src/interpreter/bytecode-array-iterator.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_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 #include "src/runtime/runtime.h"
11 12
12 namespace v8 { 13 namespace v8 {
13 namespace internal { 14 namespace internal {
14 namespace interpreter { 15 namespace interpreter {
15 16
16 class BytecodeArrayIterator { 17 class BytecodeArrayIterator {
17 public: 18 public:
18 explicit BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array); 19 explicit BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array);
19 20
20 void Advance(); 21 void Advance();
21 bool done() const; 22 bool done() const;
22 Bytecode current_bytecode() const; 23 Bytecode current_bytecode() const;
23 int current_bytecode_size() const; 24 int current_bytecode_size() const;
24 int current_offset() const { return bytecode_offset_; } 25 int current_offset() const { return bytecode_offset_; }
25 OperandScale current_operand_scale() const { return operand_scale_; } 26 OperandScale current_operand_scale() const { return operand_scale_; }
26 int current_prefix_offset() const { return prefix_offset_; } 27 int current_prefix_offset() const { return prefix_offset_; }
27 const Handle<BytecodeArray>& bytecode_array() const { 28 const Handle<BytecodeArray>& bytecode_array() const {
28 return bytecode_array_; 29 return bytecode_array_;
29 } 30 }
30 31
31 uint32_t GetFlagOperand(int operand_index) const; 32 uint32_t GetFlagOperand(int operand_index) const;
32 int32_t GetImmediateOperand(int operand_index) const; 33 int32_t GetImmediateOperand(int operand_index) const;
33 uint32_t GetIndexOperand(int operand_index) const; 34 uint32_t GetIndexOperand(int operand_index) const;
34 uint32_t GetRegisterCountOperand(int operand_index) const; 35 uint32_t GetRegisterCountOperand(int operand_index) const;
35 Register GetRegisterOperand(int operand_index) const; 36 Register GetRegisterOperand(int operand_index) const;
36 int GetRegisterOperandRange(int operand_index) const; 37 int GetRegisterOperandRange(int operand_index) const;
37 uint32_t GetRuntimeIdOperand(int operand_index) const; 38 Runtime::FunctionId GetRuntimeIdOperand(int operand_index) const;
39 Runtime::FunctionId GetIntrinsicIdOperand(int operand_index) const;
38 Handle<Object> GetConstantForIndexOperand(int operand_index) const; 40 Handle<Object> GetConstantForIndexOperand(int operand_index) const;
39 41
40 // Returns the absolute offset of the branch target at the current 42 // Returns the absolute offset of the branch target at the current
41 // bytecode. It is an error to call this method if the bytecode is 43 // bytecode. It is an error to call this method if the bytecode is
42 // not for a jump or conditional jump. 44 // not for a jump or conditional jump.
43 int GetJumpTargetOffset() const; 45 int GetJumpTargetOffset() const;
44 46
45 private: 47 private:
46 uint32_t GetUnsignedOperand(int operand_index, 48 uint32_t GetUnsignedOperand(int operand_index,
47 OperandType operand_type) const; 49 OperandType operand_type) const;
48 int32_t GetSignedOperand(int operand_index, OperandType operand_type) const; 50 int32_t GetSignedOperand(int operand_index, OperandType operand_type) const;
49 51
50 void UpdateOperandScale(); 52 void UpdateOperandScale();
51 53
52 Handle<BytecodeArray> bytecode_array_; 54 Handle<BytecodeArray> bytecode_array_;
53 int bytecode_offset_; 55 int bytecode_offset_;
54 OperandScale operand_scale_; 56 OperandScale operand_scale_;
55 int prefix_offset_; 57 int prefix_offset_;
56 58
57 DISALLOW_COPY_AND_ASSIGN(BytecodeArrayIterator); 59 DISALLOW_COPY_AND_ASSIGN(BytecodeArrayIterator);
58 }; 60 };
59 61
60 } // namespace interpreter 62 } // namespace interpreter
61 } // namespace internal 63 } // namespace internal
62 } // namespace v8 64 } // namespace v8
63 65
64 #endif // V8_INTERPRETER_BYTECODE_GRAPH_ITERATOR_H_ 66 #endif // V8_INTERPRETER_BYTECODE_GRAPH_ITERATOR_H_
OLDNEW
« no previous file with comments | « src/interpreter/bytecode-array-builder.cc ('k') | src/interpreter/bytecode-array-iterator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698