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

Unified Diff: src/x87/assembler-x87-inl.h

Issue 293743005: Introduce x87 port (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Created 6 years, 7 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/x87/assembler-x87-inl.h
diff --git a/src/ia32/assembler-ia32-inl.h b/src/x87/assembler-x87-inl.h
similarity index 98%
copy from src/ia32/assembler-ia32-inl.h
copy to src/x87/assembler-x87-inl.h
index 32ed3d81f17adf588d1f465984817df48a9ac944..ad2626e2a279c66d8858fe8f2fa9f7e8bcc441a1 100644
--- a/src/ia32/assembler-ia32-inl.h
+++ b/src/x87/assembler-x87-inl.h
@@ -34,10 +34,10 @@
// A light-weight IA32 Assembler.
-#ifndef V8_IA32_ASSEMBLER_IA32_INL_H_
-#define V8_IA32_ASSEMBLER_IA32_INL_H_
+#ifndef V8_X87_ASSEMBLER_X87_INL_H_
+#define V8_X87_ASSEMBLER_X87_INL_H_
-#include "ia32/assembler-ia32.h"
+#include "x87/assembler-x87.h"
#include "cpu.h"
#include "debug.h"
@@ -45,7 +45,7 @@
namespace v8 {
namespace internal {
-bool CpuFeatures::SupportsCrankshaft() { return true; }
+bool CpuFeatures::SupportsCrankshaft() { return false; }
static const byte kCallOpcode = 0xE8;
@@ -529,12 +529,6 @@ Operand::Operand(Register reg) {
}
-Operand::Operand(XMMRegister xmm_reg) {
- Register reg = { xmm_reg.code() };
- set_modrm(3, reg);
-}
-
-
Operand::Operand(int32_t disp, RelocInfo::Mode rmode) {
// [disp/r]
set_modrm(0, ebp);
@@ -543,4 +537,4 @@ Operand::Operand(int32_t disp, RelocInfo::Mode rmode) {
} } // namespace v8::internal
-#endif // V8_IA32_ASSEMBLER_IA32_INL_H_
+#endif // V8_X87_ASSEMBLER_X87_INL_H_
« src/x87/OWNERS ('K') | « src/x87/assembler-x87.cc ('k') | src/x87/builtins-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698