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

Unified Diff: src/interpreter/interpreter.cc

Issue 2208043002: [interpreter] Remove redundant code in ForInPrepare (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/interpreter/interpreter.cc
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc
index 046513700e56b48a381585499b6b54e4126fd7c9..f4bf57caf1199dc16b339beac99aac102e2ee971 100644
--- a/src/interpreter/interpreter.cc
+++ b/src/interpreter/interpreter.cc
@@ -1918,59 +1918,20 @@ void Interpreter::BuildForInPrepareResult(Node* output_register,
// and cache_length respectively.
void Interpreter::DoForInPrepare(InterpreterAssembler* assembler) {
Node* object_reg = __ BytecodeOperandReg(0);
- Node* object = __ LoadRegister(object_reg);
+ Node* receiver = __ LoadRegister(object_reg);
Node* context = __ GetContext();
Node* const zero_smi = __ SmiConstant(Smi::FromInt(0));
rmcilroy 2016/08/04 15:41:45 Could you add some debug code (with "if (FLAG_debu
klaasb 2016/08/05 16:08:34 Done.
- Label test_if_null(assembler), test_if_undefined(assembler),
- nothing_to_iterate(assembler, Label::kDeferred),
- convert_to_receiver(assembler, Label::kDeferred),
- already_receiver(assembler), check_enum_cache(assembler);
+ Label nothing_to_iterate(assembler, Label::kDeferred),
+ use_enum_cache(assembler), use_runtime(assembler, Label::kDeferred);
- Variable receiver(assembler, MachineRepresentation::kTagged);
-
- // Test if object is already a receiver, no conversion necessary if so.
- Node* instance_type = __ LoadInstanceType(object);
- Node* first_receiver_type = __ Int32Constant(FIRST_JS_RECEIVER_TYPE);
- __ BranchIfInt32GreaterThanOrEqual(instance_type, first_receiver_type,
- &already_receiver, &test_if_null);
-
- __ Bind(&test_if_null);
- {
- __ BranchIfWordEqual(object, assembler->NullConstant(), &nothing_to_iterate,
- &test_if_undefined);
- }
-
- __ Bind(&test_if_undefined);
- {
- __ BranchIfWordEqual(object, assembler->UndefinedConstant(),
- &nothing_to_iterate, &convert_to_receiver);
rmcilroy 2016/08/04 14:06:35 I think we still need the null and undefined check
klaasb 2016/08/04 15:20:54 Null/undefined are also handled in bytecode alread
- }
-
- __ Bind(&convert_to_receiver);
- {
- Callable callable = CodeFactory::ToObject(assembler->isolate());
- Node* target = __ HeapConstant(callable.code());
- Node* result = __ CallStub(callable.descriptor(), target, context, object);
- receiver.Bind(result);
- __ Goto(&check_enum_cache);
- }
-
- __ Bind(&already_receiver);
- {
- receiver.Bind(object);
- __ Goto(&check_enum_cache);
- }
-
- Label use_enum_cache(assembler), use_runtime(assembler, Label::kDeferred);
- __ Bind(&check_enum_cache);
- { __ CheckEnumCache(receiver.value(), &use_enum_cache, &use_runtime); }
+ __ CheckEnumCache(receiver, &use_enum_cache, &use_runtime);
__ Bind(&use_enum_cache);
{
// The enum cache is valid. Load the map of the object being
// iterated over and use the cache for the iteration.
- Node* cache_type = __ LoadMap(receiver.value());
+ Node* cache_type = __ LoadMap(receiver);
Node* cache_length = __ EnumLength(cache_type);
__ GotoIf(assembler->WordEqual(cache_length, zero_smi),
&nothing_to_iterate);
@@ -1988,7 +1949,7 @@ void Interpreter::DoForInPrepare(InterpreterAssembler* assembler) {
__ Bind(&use_runtime);
{
Node* result_triple =
- __ CallRuntime(Runtime::kForInPrepare, context, object);
+ __ CallRuntime(Runtime::kForInPrepare, context, receiver);
Node* cache_type = __ Projection(0, result_triple);
Node* cache_array = __ Projection(1, result_triple);
Node* cache_length = __ Projection(2, result_triple);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698