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

Unified Diff: src/arm/constants-arm.h

Issue 322423003: ARM: add AArch32 support and new vcvt instructions (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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/arm/assembler-arm.cc ('k') | src/arm/disasm-arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm/constants-arm.h
diff --git a/src/arm/constants-arm.h b/src/arm/constants-arm.h
index 0847ea17cacaacc3bd27686186eb37df7bc9fe19..2f4ac16fc5b43d318315413b762692b5f34f7e38 100644
--- a/src/arm/constants-arm.h
+++ b/src/arm/constants-arm.h
@@ -356,6 +356,20 @@ enum VFPConversionMode {
kDefaultRoundToZero = 1
};
+enum VCVTRoundingMode {
+ kVcvtTiesToAway = 0,
+ kVcvtTiesToEven = 1,
+ kVcvtTowardPlusInfinity = 2,
+ kVcvtTowardMinusInfinity = 3
+};
+
+
+enum VCVTDataType {
+ kVcvtUnsigned = 0,
+ kVcvtSigned = 1
+};
+
+
// This mask does not include the "inexact" or "input denormal" cumulative
// exceptions flags, because we usually don't want to check for it.
const uint32_t kVFPExceptionMask = 0xf;
« no previous file with comments | « src/arm/assembler-arm.cc ('k') | src/arm/disasm-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698