MIPS: Refine '[stubs] Simplify the non-function case of CallConstructStub.'
authorbalazs.kilvady <balazs.kilvady@imgtec.com>
Fri, 11 Sep 2015 15:12:37 +0000 (08:12 -0700)
committerCommit bot <commit-bot@chromium.org>
Fri, 11 Sep 2015 15:12:47 +0000 (15:12 +0000)
commitd1ca012157b5d1a1201d7c96e24bdfc86fb5ea41
tree810c8001555ec93ad9254dd67c8afafc1a4ec8ad
parent31026cd5a0e192b6b1f79f4b27bcbadca60c265e
MIPS: Refine '[stubs] Simplify the non-function case of CallConstructStub.'

Port 622fa0ea21b3517b1feaed447c87e580bafac865

Original commit message:
Currently we do this dance between the CallConstructStub, the
CALL_* builtins and the %GetConstructorDelegate, %GetProxyTrap,
and %Apply runtime functions for every [[Construct]] operation on
non-function callables. This is complexity is unnecessary, and can
be simplified to work without any JS builtin. This will also make it
a lot easier to implement ES6 compliant [[Construct]] for proxies.

Also sanitize the invariant for CallConstructStub, which up until now
always restored the context itself, but that force us to always create
another copy of all arguments in case of proxies and other callables,
so we can relax that constraint by making the caller restore the context
(this only affects fullcodegen, since the optimizing compilers already
properly restore the context anyway).

BUG=

Review URL: https://codereview.chromium.org/1340553002

Cr-Commit-Position: refs/heads/master@{#30699}
src/mips/code-stubs-mips.cc