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

Unified Diff: src/code-stubs.cc

Issue 2393193002: Revert of [interpreter] Add string type feedback to add (Closed)
Patch Set: Created 4 years, 2 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 | src/globals.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.cc
diff --git a/src/code-stubs.cc b/src/code-stubs.cc
index 2dbe06b120392ee951325e715eb697bbfe4885fe..3cf3ab579d246dad867f20bbbe66998219962832 100644
--- a/src/code-stubs.cc
+++ b/src/code-stubs.cc
@@ -1032,7 +1032,7 @@
// Shared entry for floating point addition.
Label do_fadd(assembler), end(assembler),
- do_add_any(assembler, Label::kDeferred), call_add_stub(assembler);
+ call_add_stub(assembler, Label::kDeferred);
Variable var_fadd_lhs(assembler, MachineRepresentation::kFloat64),
var_fadd_rhs(assembler, MachineRepresentation::kFloat64),
var_type_feedback(assembler, MachineRepresentation::kWord32),
@@ -1080,7 +1080,8 @@
Node* rhs_map = assembler->LoadMap(rhs);
// Check if the {rhs} is a HeapNumber.
- assembler->GotoUnless(assembler->IsHeapNumberMap(rhs_map), &do_add_any);
+ assembler->GotoUnless(assembler->IsHeapNumberMap(rhs_map),
+ &call_add_stub);
var_fadd_lhs.Bind(assembler->SmiToFloat64(lhs));
var_fadd_rhs.Bind(assembler->LoadHeapNumberValue(rhs));
@@ -1090,14 +1091,12 @@
assembler->Bind(&if_lhsisnotsmi);
{
- Label check_string(assembler);
-
// Load the map of {lhs}.
Node* lhs_map = assembler->LoadMap(lhs);
// Check if {lhs} is a HeapNumber.
Label if_lhsisnumber(assembler), if_lhsisnotnumber(assembler);
- assembler->GotoUnless(assembler->IsHeapNumberMap(lhs_map), &check_string);
+ assembler->GotoUnless(assembler->IsHeapNumberMap(lhs_map), &call_add_stub);
// Check if the {rhs} is Smi.
Label if_rhsissmi(assembler), if_rhsisnotsmi(assembler);
@@ -1116,33 +1115,12 @@
Node* rhs_map = assembler->LoadMap(rhs);
// Check if the {rhs} is a HeapNumber.
- assembler->GotoUnless(assembler->IsHeapNumberMap(rhs_map), &do_add_any);
+ assembler->GotoUnless(assembler->IsHeapNumberMap(rhs_map),
+ &call_add_stub);
var_fadd_lhs.Bind(assembler->LoadHeapNumberValue(lhs));
var_fadd_rhs.Bind(assembler->LoadHeapNumberValue(rhs));
assembler->Goto(&do_fadd);
- }
-
- assembler->Bind(&check_string);
- {
- // Check if the {rhs} is a smi, and exit the string check early if it is.
- assembler->GotoIf(assembler->WordIsSmi(rhs), &do_add_any);
-
- Node* lhs_instance_type = assembler->LoadMapInstanceType(lhs_map);
-
- // Exit unless {lhs} is a string
- assembler->GotoUnless(assembler->IsStringInstanceType(lhs_instance_type),
- &do_add_any);
-
- Node* rhs_instance_type = assembler->LoadInstanceType(rhs);
-
- // Exit unless {rhs} is a string
- assembler->GotoUnless(assembler->IsStringInstanceType(rhs_instance_type),
- &do_add_any);
-
- var_type_feedback.Bind(
- assembler->Int32Constant(BinaryOperationFeedback::kString));
- assembler->Goto(&call_add_stub);
}
}
@@ -1157,15 +1135,10 @@
assembler->Goto(&end);
}
- assembler->Bind(&do_add_any);
+ assembler->Bind(&call_add_stub);
{
var_type_feedback.Bind(
assembler->Int32Constant(BinaryOperationFeedback::kAny));
- assembler->Goto(&call_add_stub);
- }
-
- assembler->Bind(&call_add_stub);
- {
Callable callable = CodeFactory::Add(assembler->isolate());
var_result.Bind(assembler->CallStub(callable, context, lhs, rhs));
assembler->Goto(&end);
« no previous file with comments | « no previous file | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698