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

Unified Diff: src/compiler/x87/linkage-x87.cc

Issue 1179763004: X87: enable the X87 turbofan support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 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/compiler/x87/instruction-selector-x87.cc ('k') | src/globals.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/x87/linkage-x87.cc
diff --git a/src/compiler/ia32/linkage-ia32.cc b/src/compiler/x87/linkage-x87.cc
similarity index 96%
copy from src/compiler/ia32/linkage-ia32.cc
copy to src/compiler/x87/linkage-x87.cc
index bfe201bf6fcbdbd6a963a28113a2a2b02e7f1910..ec702ccbf05b86f2937022261e564d519f88f6ab 100644
--- a/src/compiler/ia32/linkage-ia32.cc
+++ b/src/compiler/x87/linkage-x87.cc
@@ -12,7 +12,7 @@ namespace v8 {
namespace internal {
namespace compiler {
-struct IA32LinkageHelperTraits {
+struct X87LinkageHelperTraits {
static Register ReturnValueReg() { return eax; }
static Register ReturnValue2Reg() { return edx; }
static Register JSCallFunctionReg() { return edi; }
@@ -26,7 +26,7 @@ struct IA32LinkageHelperTraits {
static int CRegisterParametersLength() { return 0; }
};
-typedef LinkageHelper<IA32LinkageHelperTraits> LH;
+typedef LinkageHelper<X87LinkageHelperTraits> LH;
CallDescriptor* Linkage::GetJSCallDescriptor(Zone* zone, bool is_osr,
int parameter_count,
« no previous file with comments | « src/compiler/x87/instruction-selector-x87.cc ('k') | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698