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

Unified Diff: src/IceInstARM32.def

Issue 1136793002: Handle ARM "ret void" and function alignment with proper padding. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: rename param Created 5 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/IceInstARM32.def
diff --git a/src/IceInstARM32.def b/src/IceInstARM32.def
index ea7032abe51f136aab69c3470cb2fbc85133eae4..03ec11d31fe538cc714b1f01f24ee1569ef9a0cd 100644
--- a/src/IceInstARM32.def
+++ b/src/IceInstARM32.def
@@ -61,5 +61,24 @@
// TODO(jvoung): add condition code tables, etc.
+// Load/Store instruction width suffixes.
+#define ICETYPEARM32_TABLE \
+ /* tag, element type, width */ \
+ X(IceType_void, IceType_void, "") \
+ X(IceType_i1, IceType_void, "b") \
+ X(IceType_i8, IceType_void, "b") \
+ X(IceType_i16, IceType_void, "h") \
+ X(IceType_i32, IceType_void, "") \
+ X(IceType_i64, IceType_void, "d") \
+ X(IceType_f32, IceType_void, "") \
+ X(IceType_f64, IceType_void, "") \
+ X(IceType_v4i1, IceType_i32 , "") \
+ X(IceType_v8i1, IceType_i16 , "") \
+ X(IceType_v16i1, IceType_i8 , "") \
+ X(IceType_v16i8, IceType_i8 , "") \
+ X(IceType_v8i16, IceType_i16 , "") \
+ X(IceType_v4i32, IceType_i32 , "") \
+ X(IceType_v4f32, IceType_f32 , "") \
+//#define X(tag, elementty, width)
#endif // SUBZERO_SRC_ICEINSTARM32_DEF

Powered by Google App Engine
This is Rietveld 408576698