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

Unified Diff: src/interpreter/interpreter.cc

Issue 1531693002: [Interpreter] Implement ForIn in bytecode graph builder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@oth-0009-phi
Patch Set: Rebase after de-opt landed. Created 5 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
Index: src/interpreter/interpreter.cc
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc
index 74c23bb91a9f106b7d2269ed464eb70b66edfd3f..367bee98ec3591bb8ee6edea167fffb3ffc0a5ad 100644
--- a/src/interpreter/interpreter.cc
+++ b/src/interpreter/interpreter.cc
@@ -1167,7 +1167,8 @@ void Interpreter::DoToNumber(compiler::InterpreterAssembler* assembler) {
// Cast the object referenced by the accumulator to a JSObject.
void Interpreter::DoToObject(compiler::InterpreterAssembler* assembler) {
Node* accumulator = __ GetAccumulator();
- Node* result = __ CallRuntime(Runtime::kToObject, accumulator);
+ Node* result =
+ __ CallRuntime(Runtime::kInterpreterToObjectOrNull, accumulator);
__ SetAccumulator(result);
__ Dispatch();
}
@@ -1516,33 +1517,39 @@ void Interpreter::DoReturn(compiler::InterpreterAssembler* assembler) {
}
-// ForInPrepare <receiver>
+// ForInPrepare <receiver> <cache_type> <cache_array> <cache_length>
//
-// Returns state for for..in loop execution based on the |receiver| and
-// the property names in the accumulator.
+// Returns state for for..in loop execution based on the object in the
+// accumulator.
+// The |receiver| is an input parameter.
+// |cache_type|, |cache_array|, and |cache_length| are all output parameters.
void Interpreter::DoForInPrepare(compiler::InterpreterAssembler* assembler) {
- Node* receiver_reg = __ BytecodeOperandReg(0);
- Node* receiver = __ LoadRegister(receiver_reg);
- Node* property_names = __ GetAccumulator();
- Node* result = __ CallRuntime(Runtime::kInterpreterForInPrepare, receiver,
- property_names);
+ // Call runtime to set-up ForInPrepareState
+ Node* object = __ GetAccumulator();
rmcilroy 2015/12/18 16:01:55 nit - could you change this to get the receiver fr
oth 2015/12/21 10:05:53 Removed the receiver argument. This cleans up the
+ Node* result = __ CallRuntime(Runtime::kInterpreterForInPrepare, object);
+
+ for (int i = 0; i < 3; i++) {
+ // 0 == receiver, 1 == cache_type, 2 == cache_array, 3 == cache_length
+ Node* cache_info = __ LoadFixedArrayElement(result, i);
+ Node* cache_info_reg = __ BytecodeOperandReg(i + 1);
+ __ StoreRegister(cache_info, cache_info_reg);
+ }
__ SetAccumulator(result);
__ Dispatch();
}
-// ForInNext <for_in_state> <index>
+// ForInNext <receiver> <cache_type> <cache_array> <index>
//
-// Returns the next key in a for..in loop. The state associated with the
-// iteration is contained in |for_in_state| and |index| is the current
-// zero-based iteration count.
+// Returns the next key in a for..in loop.
void Interpreter::DoForInNext(compiler::InterpreterAssembler* assembler) {
- Node* for_in_state_reg = __ BytecodeOperandReg(0);
- Node* for_in_state = __ LoadRegister(for_in_state_reg);
- Node* receiver = __ LoadFixedArrayElement(for_in_state, 0);
- Node* cache_array = __ LoadFixedArrayElement(for_in_state, 1);
- Node* cache_type = __ LoadFixedArrayElement(for_in_state, 2);
- Node* index_reg = __ BytecodeOperandReg(1);
+ Node* receiver_reg = __ BytecodeOperandReg(0);
+ Node* receiver = __ LoadRegister(receiver_reg);
+ Node* cache_type_reg = __ BytecodeOperandReg(1);
+ Node* cache_type = __ LoadRegister(cache_type_reg);
+ Node* cache_array_reg = __ BytecodeOperandReg(2);
+ Node* cache_array = __ LoadRegister(cache_array_reg);
+ Node* index_reg = __ BytecodeOperandReg(3);
Node* index = __ LoadRegister(index_reg);
Node* result = __ CallRuntime(Runtime::kForInNext, receiver, cache_array,
cache_type, index);
@@ -1551,22 +1558,34 @@ void Interpreter::DoForInNext(compiler::InterpreterAssembler* assembler) {
}
-// ForInDone <for_in_state>
+// ForInDone <index> <cache_length>
//
-// Returns the next key in a for..in loop. The accumulator contains the current
-// zero-based iteration count and |for_in_state| is the state returned by an
-// earlier invocation of ForInPrepare.
+// Returns the next key in a for..in loop.
void Interpreter::DoForInDone(compiler::InterpreterAssembler* assembler) {
- Node* index = __ GetAccumulator();
- Node* for_in_state_reg = __ BytecodeOperandReg(0);
- Node* for_in_state = __ LoadRegister(for_in_state_reg);
- Node* cache_length = __ LoadFixedArrayElement(for_in_state, 3);
+ // TODO(oth): Implement directly rather than runtime call.
+ Node* index_reg = __ BytecodeOperandReg(0);
+ Node* index = __ LoadRegister(index_reg);
+ Node* cache_length_reg = __ BytecodeOperandReg(1);
+ Node* cache_length = __ LoadRegister(cache_length_reg);
Node* result = __ CallRuntime(Runtime::kForInDone, index, cache_length);
__ SetAccumulator(result);
__ Dispatch();
}
+// ForInStep <index>
+//
+// Increments the loop counter |index|.
+void Interpreter::DoForInStep(compiler::InterpreterAssembler* assembler) {
+ // TODO(oth): Implement directly rather than runtime call.
+ Node* index_reg = __ BytecodeOperandReg(0);
+ Node* index = __ LoadRegister(index_reg);
+ Node* result = __ CallRuntime(Runtime::kForInStep, index);
+ __ StoreRegister(result, index_reg);
+ __ Dispatch();
+}
+
+
} // namespace interpreter
} // namespace internal
} // namespace v8

Powered by Google App Engine
This is Rietveld 408576698