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

Unified Diff: src/interpreter/bytecode-array-reverse-iterator.cc

Issue 2536653003: [ignition] Rewrite reverse iterator as random iterator (Closed)
Patch Set: Rebase Created 4 years 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
« no previous file with comments | « src/interpreter/bytecode-array-reverse-iterator.h ('k') | src/v8.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/interpreter/bytecode-array-reverse-iterator.cc
diff --git a/src/interpreter/bytecode-array-reverse-iterator.cc b/src/interpreter/bytecode-array-reverse-iterator.cc
deleted file mode 100644
index d4be64eaa11afb4733b7b531c8cb551c60b71659..0000000000000000000000000000000000000000
--- a/src/interpreter/bytecode-array-reverse-iterator.cc
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2015 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.
-
-#include "src/interpreter/bytecode-array-reverse-iterator.h"
-#include "src/objects-inl.h"
-
-namespace v8 {
-namespace internal {
-namespace interpreter {
-
-BytecodeArrayReverseIterator::BytecodeArrayReverseIterator(
- Handle<BytecodeArray> bytecode_array, Zone* zone)
- : BytecodeArrayAccessor(bytecode_array, 0), offsets_(zone) {
- // Run forwards through the bytecode array to determine the offset of each
- // bytecode.
- while (current_offset() < bytecode_array->length()) {
- offsets_.push_back(current_offset());
- SetOffset(current_offset() + current_bytecode_size());
- }
- Reset();
-}
-
-void BytecodeArrayReverseIterator::Advance() {
- it_offsets_++;
- UpdateOffsetFromIterator();
-}
-
-void BytecodeArrayReverseIterator::Reset() {
- it_offsets_ = offsets_.rbegin();
- UpdateOffsetFromIterator();
-}
-
-bool BytecodeArrayReverseIterator::done() const {
- return it_offsets_ == offsets_.rend();
-}
-
-void BytecodeArrayReverseIterator::UpdateOffsetFromIterator() {
- if (it_offsets_ != offsets_.rend()) {
- SetOffset(*it_offsets_);
- }
-}
-
-} // namespace interpreter
-} // namespace internal
-} // namespace v8
« no previous file with comments | « src/interpreter/bytecode-array-reverse-iterator.h ('k') | src/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698