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

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

Issue 1291693004: [Interpreter] Bytecode graph builder (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: More fixes for bots (tests w/ ASAN and tests w/ slow asserts enabled). 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef V8_INTERPRETER_BYTECODE_ARRAY_ITERATOR_H_
6 #define V8_INTERPRETER_BYTECODE_ARRAY_ITERATOR_H_
7
8 #include "src/handles.h"
9 #include "src/interpreter/bytecodes.h"
10 #include "src/objects.h"
11
12 namespace v8 {
13 namespace internal {
14 namespace interpreter {
15
16 class BytecodeArrayIterator {
17 public:
18 explicit BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array);
19
20 void Advance();
21 bool done() const;
22 Bytecode current_bytecode() const;
23 const Handle<BytecodeArray>& bytecode_array() const {
24 return bytecode_array_;
25 }
26
27 int8_t GetSmi8Operand(int operand_index) const;
28 int GetIndexOperand(int operand_index) const;
29 Register GetRegisterOperand(int operand_index) const;
30 Handle<Object> GetConstantForIndexOperand(int operand_index) const;
31
32 private:
33 uint8_t GetOperand(int operand_index, OperandType operand_type) const;
34
35 Handle<BytecodeArray> bytecode_array_;
36 int bytecode_offset_;
37
38 DISALLOW_COPY_AND_ASSIGN(BytecodeArrayIterator);
39 };
40
41 } // namespace interpreter
42 } // namespace internal
43 } // namespace v8
44
45 #endif // V8_INTERPRETER_BYTECODE_GRAPH_ITERATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698