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

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

Issue 1343363002: [Interpreter] Basic flow control. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase to fix patch failure with git cl try. Created 5 years, 3 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"
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_offset() const { return bytecode_offset_; }
23 const Handle<BytecodeArray>& bytecode_array() const { 24 const Handle<BytecodeArray>& bytecode_array() const {
24 return bytecode_array_; 25 return bytecode_array_;
25 } 26 }
26 27
27 int8_t GetSmi8Operand(int operand_index) const; 28 int8_t GetSmi8Operand(int operand_index) const;
rmcilroy 2015/09/23 14:00:28 Just noticed, this should really be GetImm8Operand
oth 2015/09/24 11:15:27 Done.
28 int GetIndexOperand(int operand_index) const; 29 int GetIndexOperand(int operand_index) const;
29 Register GetRegisterOperand(int operand_index) const; 30 Register GetRegisterOperand(int operand_index) const;
30 Handle<Object> GetConstantForIndexOperand(int operand_index) const; 31 Handle<Object> GetConstantForIndexOperand(int operand_index) const;
31 32
32 private: 33 private:
33 uint8_t GetOperand(int operand_index, OperandType operand_type) const; 34 uint8_t GetOperand(int operand_index, OperandType operand_type) const;
34 35
35 Handle<BytecodeArray> bytecode_array_; 36 Handle<BytecodeArray> bytecode_array_;
36 int bytecode_offset_; 37 int bytecode_offset_;
37 38
38 DISALLOW_COPY_AND_ASSIGN(BytecodeArrayIterator); 39 DISALLOW_COPY_AND_ASSIGN(BytecodeArrayIterator);
39 }; 40 };
40 41
41 } // namespace interpreter 42 } // namespace interpreter
42 } // namespace internal 43 } // namespace internal
43 } // namespace v8 44 } // namespace v8
44 45
45 #endif // V8_INTERPRETER_BYTECODE_GRAPH_ITERATOR_H_ 46 #endif // V8_INTERPRETER_BYTECODE_GRAPH_ITERATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698