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

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

Issue 1926023002: [turbofan] Run everything after representation selection concurrently. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 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
Index: src/arm64/builtins-arm64.cc
diff --git a/src/arm64/builtins-arm64.cc b/src/arm64/builtins-arm64.cc
index a12acb15203b2fa35b0d4ef63fb3df1bda897e68..4b8e29917336657370de750bba82df327c354b1a 100644
--- a/src/arm64/builtins-arm64.cc
+++ b/src/arm64/builtins-arm64.cc
@@ -2751,6 +2751,46 @@ void Builtins::Generate_InterpreterPushArgsAndConstruct(MacroAssembler* masm) {
__ Jump(masm->isolate()->builtins()->Construct(), RelocInfo::CODE_TARGET);
}
+// static
+void Builtins::Generate_AllocateInNewSpace(MacroAssembler* masm) {
+ ASM_LOCATION("Builtins::Generate_AllocateInNewSpace");
+ // ----------- S t a t e -------------
+ // -- x1 : requested object size (tagged)
+ // -- cp : context
+ // -----------------------------------
+ __ AssertSmi(x1);
+
+ Label runtime;
+ __ SmiUntag(x1);
+ __ Allocate(x1, x0, x2, x3, &runtime, NO_ALLOCATION_FLAGS);
+ __ Ret();
+
+ __ Bind(&runtime);
+ __ SmiTag(x1);
+ __ Push(x1);
+ __ TailCallRuntime(Runtime::kAllocateInNewSpace);
+}
+
+// static
+void Builtins::Generate_AllocateInOldSpace(MacroAssembler* masm) {
+ ASM_LOCATION("Builtins::Generate_AllocateInOldSpace");
+ // ----------- S t a t e -------------
+ // -- x1 : requested object size (tagged)
+ // -- cp : context
+ // -----------------------------------
+ __ AssertSmi(x1);
+
+ Label runtime;
+ __ SmiUntag(x1);
+ __ Allocate(x1, x0, x2, x3, &runtime, PRETENURE);
+ __ Ret();
+
+ __ Bind(&runtime);
+ __ SmiTag(x1);
+ __ Push(x1);
+ __ Push(Smi::FromInt(AllocateTargetSpace::encode(OLD_SPACE)));
+ __ TailCallRuntime(Runtime::kAllocateInTargetSpace);
+}
void Builtins::Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm) {
ASM_LOCATION("Builtins::Generate_ArgumentsAdaptorTrampoline");

Powered by Google App Engine
This is Rietveld 408576698