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

Unified Diff: src/ia32/builtins-ia32.cc

Issue 1416943005: Revert of [es6] Better support for built-ins subclassing. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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 | « src/heap/heap.cc ('k') | src/mips/builtins-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ia32/builtins-ia32.cc
diff --git a/src/ia32/builtins-ia32.cc b/src/ia32/builtins-ia32.cc
index dde101f04ca3d5b4bdf6d1679f8a054c11b5c5dd..70b2ad16d36e4498506648b6f1a8c17c4f5aa14e 100644
--- a/src/ia32/builtins-ia32.cc
+++ b/src/ia32/builtins-ia32.cc
@@ -280,8 +280,8 @@
// runtime.
__ mov(esi, Operand(ebp, StandardFrameConstants::kContextOffset));
__ mov(edi, Operand(esp, offset));
- __ push(edi); // constructor function
- __ push(edx); // original constructor
+ __ push(edi); // argument 2/1: constructor function
+ __ push(edx); // argument 3/2: original constructor
__ CallRuntime(Runtime::kNewObject, 2);
__ mov(ebx, eax); // store result in ebx
@@ -1361,7 +1361,6 @@
// ----------- S t a t e -------------
// -- eax : number of arguments
// -- edi : constructor function
- // -- edx : original constructor
// -- esp[0] : return address
// -- esp[(argc - n) * 4] : arg[n] (zero-based)
// -- esp[(argc + 1) * 4] : receiver
@@ -1387,18 +1386,16 @@
{
Label convert, done_convert;
__ JumpIfSmi(ebx, &convert, Label::kNear);
- __ CmpObjectType(ebx, FIRST_NONSTRING_TYPE, ecx);
+ __ CmpObjectType(ebx, FIRST_NONSTRING_TYPE, edx);
__ j(below, &done_convert);
__ bind(&convert);
{
FrameScope scope(masm, StackFrame::INTERNAL);
ToStringStub stub(masm->isolate());
__ Push(edi);
- __ Push(edx);
__ Move(eax, ebx);
__ CallStub(&stub);
__ Move(ebx, eax);
- __ Pop(edx);
__ Pop(edi);
}
__ bind(&done_convert);
@@ -1409,15 +1406,9 @@
// ----------- S t a t e -------------
// -- ebx : the first argument
// -- edi : constructor function
- // -- edx : original constructor
// -----------------------------------
- Label allocate, done_allocate, rt_call;
-
- // Fall back to runtime if the original constructor and constructor differ.
- __ cmp(edx, edi);
- __ j(not_equal, &rt_call);
-
+ Label allocate, done_allocate;
__ Allocate(JSValue::kSize, eax, ecx, no_reg, &allocate, TAG_OBJECT);
__ bind(&done_allocate);
@@ -1444,21 +1435,6 @@
__ Pop(ebx);
}
__ jmp(&done_allocate);
-
- // Fallback to the runtime to create new object.
- __ bind(&rt_call);
- {
- FrameScope scope(masm, StackFrame::INTERNAL);
- __ Push(ebx);
- __ Push(edi);
- __ Push(edi); // constructor function
- __ Push(edx); // original constructor
- __ CallRuntime(Runtime::kNewObject, 2);
- __ Pop(edi);
- __ Pop(ebx);
- }
- __ mov(FieldOperand(eax, JSValue::kValueOffset), ebx);
- __ Ret();
}
}
« no previous file with comments | « src/heap/heap.cc ('k') | src/mips/builtins-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698