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

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

Issue 1925073002: Revert of [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
« no previous file with comments | « src/arm/interface-descriptors-arm.cc ('k') | src/arm64/interface-descriptors-arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm64/builtins-arm64.cc
diff --git a/src/arm64/builtins-arm64.cc b/src/arm64/builtins-arm64.cc
index 4b8e29917336657370de750bba82df327c354b1a..a12acb15203b2fa35b0d4ef63fb3df1bda897e68 100644
--- a/src/arm64/builtins-arm64.cc
+++ b/src/arm64/builtins-arm64.cc
@@ -2751,46 +2751,6 @@
__ 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");
« no previous file with comments | « src/arm/interface-descriptors-arm.cc ('k') | src/arm64/interface-descriptors-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698