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

Unified Diff: runtime/vm/constants_arm64.h

Issue 630093004: Fix 32-bit and 64-bit carry out calculation in arm64 simulator. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 2 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/assembler_arm64_test.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 40988)
+++ runtime/vm/constants_arm64.h (working copy)
@@ -420,6 +420,14 @@
SUB = AddSubShiftExtFixed | B30,
};
+// C3.5.3
+enum AddSubWithCarryOp {
+ AddSubWithCarryMask = 0x1fe00000,
+ AddSubWithCarryFixed = DPRegisterFixed | B28,
+ ADC = AddSubWithCarryFixed,
+ SBC = AddSubWithCarryFixed | B30,
+};
+
// C3.5.6
enum ConditionalSelectOp {
ConditionalSelectMask = 0x1fe00000,
@@ -596,6 +604,7 @@
_V(MoveWide) \
_V(PCRel) \
_V(AddSubShiftExt) \
+_V(AddSubWithCarry) \
_V(ConditionalSelect) \
_V(MiscDP2Source) \
_V(MiscDP3Source) \
« no previous file with comments | « runtime/vm/assembler_arm64_test.cc ('k') | runtime/vm/disassembler_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698