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

Unified Diff: src/interpreter/bytecode-array-accessor.h

Issue 2519923002: [ignition] Refactor array iterator to separate out access (Closed)
Patch Set: Fix objects-inl.h include Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: src/interpreter/bytecode-array-accessor.h
diff --git a/src/interpreter/bytecode-array-iterator.h b/src/interpreter/bytecode-array-accessor.h
similarity index 80%
copy from src/interpreter/bytecode-array-iterator.h
copy to src/interpreter/bytecode-array-accessor.h
index 03279cbd431dcad7ed403d8193472204fc9150f5..3ac3ee3b45d8c6eb43ebd6fe95c658e48c80e0f1 100644
--- a/src/interpreter/bytecode-array-iterator.h
+++ b/src/interpreter/bytecode-array-accessor.h
@@ -1,9 +1,9 @@
-// Copyright 2015 the V8 project authors. All rights reserved.
+// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef V8_INTERPRETER_BYTECODE_ARRAY_ITERATOR_H_
-#define V8_INTERPRETER_BYTECODE_ARRAY_ITERATOR_H_
+#ifndef V8_INTERPRETER_BYTECODE_ARRAY_ACCESSOR_H_
+#define V8_INTERPRETER_BYTECODE_ARRAY_ACCESSOR_H_
#include "src/globals.h"
#include "src/handles.h"
@@ -16,12 +16,14 @@ namespace v8 {
namespace internal {
namespace interpreter {
-class V8_EXPORT_PRIVATE BytecodeArrayIterator {
+class V8_EXPORT_PRIVATE BytecodeArrayAccessor {
public:
- explicit BytecodeArrayIterator(Handle<BytecodeArray> bytecode_array);
+ BytecodeArrayAccessor(Handle<BytecodeArray> bytecode_array,
+ int initial_offset);
+
+ void SetOffset(int offset);
+ bool OffsetInBounds() const;
rmcilroy 2016/11/21 14:14:26 nit - make this private, and just OffsetIsValid()
Leszek Swirski 2016/11/21 16:49:03 yes to private, I want to keep OffsetInBounds thou
- void Advance();
- bool done() const;
Bytecode current_bytecode() const;
int current_bytecode_size() const;
int current_offset() const { return bytecode_offset_; }
@@ -59,11 +61,11 @@ class V8_EXPORT_PRIVATE BytecodeArrayIterator {
OperandScale operand_scale_;
int prefix_offset_;
- DISALLOW_COPY_AND_ASSIGN(BytecodeArrayIterator);
+ DISALLOW_COPY_AND_ASSIGN(BytecodeArrayAccessor);
};
} // namespace interpreter
} // namespace internal
} // namespace v8
-#endif // V8_INTERPRETER_BYTECODE_GRAPH_ITERATOR_H_
+#endif // V8_INTERPRETER_BYTECODE_GRAPH_ACCESSOR_H_

Powered by Google App Engine
This is Rietveld 408576698