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

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

Issue 895243002: MIPS: new classes: special construct stub for derived classs and TDZ for `this`. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 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/mips/full-codegen-mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips/builtins-mips.cc
diff --git a/src/mips/builtins-mips.cc b/src/mips/builtins-mips.cc
index d3c392607d89fc3561fd7902523264fc722e6001..e35b7097f1d1de35c564f2d439e80167c9b79a78 100644
--- a/src/mips/builtins-mips.cc
+++ b/src/mips/builtins-mips.cc
@@ -758,6 +758,73 @@ void Builtins::Generate_JSConstructStubApi(MacroAssembler* masm) {
}
+void Builtins::Generate_JSConstructStubForDerived(MacroAssembler* masm) {
+ // ----------- S t a t e -------------
+ // -- a0 : number of arguments
+ // -- a1 : constructor function
+ // -- a2 : allocation site or undefined
+ // -- a3 : original constructor
+ // -- ra : return address
+ // -- sp[...]: constructor arguments
+ // -----------------------------------
+
+ // TODO(dslomov): support pretenuring
+ CHECK(!FLAG_pretenuring_call_new);
+
+ {
+ FrameScope frame_scope(masm, StackFrame::CONSTRUCT);
+
+ __ mov(t0, a0);
+ __ SmiTag(t0);
+ __ push(t0); // Smi-tagged arguments count.
+
+ // receiver is the hole.
+ __ LoadRoot(at, Heap::kTheHoleValueRootIndex);
+ __ push(at);
+
+ // Set up pointer to last argument.
+ __ Addu(a2, fp, Operand(StandardFrameConstants::kCallerSPOffset));
+
+ // Copy arguments and receiver to the expression stack.
+ // a0: number of arguments
+ // a1: constructor function
+ // a2: address of last argument (caller sp)
+ // t0: number of arguments (smi-tagged)
+ // sp[0]: receiver
+ // sp[1]: number of arguments (smi-tagged)
+ Label loop, entry;
+ __ Branch(&entry);
+ __ bind(&loop);
+ __ sll(at, t0, kPointerSizeLog2 - 1);
+ __ Addu(at, a2, Operand(at));
+ __ lw(at, MemOperand(at));
+ __ push(at);
+ __ bind(&entry);
+ __ Subu(t0, t0, Operand(2));
+ __ Branch(&loop, ge, t0, Operand(zero_reg));
+
+ // Call the function.
+ // a0: number of arguments
+ // a1: constructor function
+ ParameterCount actual(a0);
+ __ InvokeFunction(a1, actual, CALL_FUNCTION, NullCallWrapper());
+
+ // Restore context from the frame.
+ // v0: result
+ // sp[0]: number of arguments (smi-tagged)
+ __ lw(cp, MemOperand(fp, StandardFrameConstants::kContextOffset));
+ __ lw(a1, MemOperand(sp, 0));
+
+ // Leave construct frame.
+ }
+
+ __ sll(at, a1, kPointerSizeLog2 - 1);
+ __ Addu(sp, sp, Operand(at));
+ __ Addu(sp, sp, Operand(kPointerSize));
+ __ Jump(ra);
+}
+
+
static void Generate_JSEntryTrampolineHelper(MacroAssembler* masm,
bool is_construct) {
// Called from JSEntryStub::GenerateBody
« no previous file with comments | « no previous file | src/mips/full-codegen-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698