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

Unified Diff: runtime/vm/constants_arm64.h

Issue 263243002: Enables many language tests for arm64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
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
« no previous file with comments | « runtime/vm/code_patcher_arm64.cc ('k') | runtime/vm/disassembler_arm64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/constants_arm64.h
===================================================================
--- runtime/vm/constants_arm64.h (revision 35723)
+++ runtime/vm/constants_arm64.h (working copy)
@@ -97,12 +97,11 @@
};
// Register alias for floating point scratch register.
-const VRegister VTMP0 = V30;
-const VRegister VTMP1 = V31;
+const VRegister VTMP = V31;
// Architecture independent aliases.
typedef VRegister FpuRegister;
-const FpuRegister FpuTMP = VTMP0;
+const FpuRegister FpuTMP = VTMP;
const int kNumberOfFpuRegisters = kNumberOfVRegisters;
const FpuRegister kNoFpuRegister = kNoVRegister;
@@ -403,6 +402,8 @@
MiscDP3SourceMask = 0x1f000000,
MiscDP3SourceFixed = DPRegisterFixed | B28 | B24,
MADD = MiscDP3SourceFixed,
+ MSUB = MiscDP3SourceFixed | B15,
+ SMULH = MiscDP3SourceFixed | B31 | B22,
};
// C3.5.10
@@ -419,6 +420,13 @@
BICS = LogicalShiftFixed | B30 | B29 | B21,
};
+// C3.6.25
+enum FPOneSourceOp {
+ FPOneSourceMask = 0x5f207c00,
+ FPOneSourceFixed = FPFixed | B21 | B14,
+ FMOVDD = FPOneSourceFixed | B22,
+};
+
// C3.6.28
enum FPImmOp {
FPImmMask = 0x5f201c00,
@@ -462,6 +470,7 @@
_V(MiscDP2Source) \
_V(MiscDP3Source) \
_V(LogicalShift) \
+_V(FPOneSource) \
_V(FPImm) \
_V(FPIntCvt) \
« no previous file with comments | « runtime/vm/code_patcher_arm64.cc ('k') | runtime/vm/disassembler_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698