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

Unified Diff: src/IceInstARM32.def

Issue 1359193003: Subzero. Enables (most) crosstests for ARM32. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. Created 5 years, 3 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/IceInstARM32.cpp ('k') | src/IceTargetLoweringARM32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInstARM32.def
diff --git a/src/IceInstARM32.def b/src/IceInstARM32.def
index 4e34cbf42f7a2971d46bcfed5ff8bc6517c7d87b..3fb6898b272776388bf37a893e26b3a7f0ca62c9 100644
--- a/src/IceInstARM32.def
+++ b/src/IceInstARM32.def
@@ -350,23 +350,24 @@
// the # of offset bits allowed as part of an addressing mode (for sign or zero
// extending load/stores).
#define ICETYPEARM32_TABLE \
- /* tag, element type, int_width, vec_width, addr bits sext, zext */ \
- X(IceType_void, IceType_void, "" , "" , 0 , 0) \
- X(IceType_i1, IceType_void, "b", "" , 8 , 12) \
- X(IceType_i8, IceType_void, "b", "" , 8 , 12) \
- X(IceType_i16, IceType_void, "h", "" , 8 , 8) \
- X(IceType_i32, IceType_void, "" , "" , 12, 12) \
- X(IceType_i64, IceType_void, "d", "" , 8 , 8) \
- X(IceType_f32, IceType_void, "" , ".f32", 10, 10) \
- X(IceType_f64, IceType_void, "" , ".f64", 10, 10) \
- X(IceType_v4i1, IceType_i32 , "" , ".i32", 0 , 0) \
- X(IceType_v8i1, IceType_i16 , "" , ".i16", 0 , 0) \
- X(IceType_v16i1, IceType_i8 , "" , ".i8" , 0 , 0) \
- X(IceType_v16i8, IceType_i8 , "" , ".i8" , 0 , 0) \
- X(IceType_v8i16, IceType_i16 , "" , ".i16", 0 , 0) \
- X(IceType_v4i32, IceType_i32 , "" , ".i32", 0 , 0) \
- X(IceType_v4f32, IceType_f32 , "" , ".f32", 0 , 0)
-//#define X(tag, elementty, int_width, vec_width, sbits, ubits)
+ /* tag, element type, int_width, vec_width, addr bits sext, zext, \
+ reg-reg addr allowed */ \
+ X(IceType_void, IceType_void, "" , "" , 0 , 0 , 0) \
+ X(IceType_i1, IceType_void, "b", "" , 8 , 12, 1) \
+ X(IceType_i8, IceType_void, "b", "" , 8 , 12, 1) \
+ X(IceType_i16, IceType_void, "h", "" , 8 , 8 , 1) \
+ X(IceType_i32, IceType_void, "" , "" , 12, 12, 1) \
+ X(IceType_i64, IceType_void, "d", "" , 8 , 8 , 1) \
+ X(IceType_f32, IceType_void, "" , ".f32", 8, 8 , 0) \
+ X(IceType_f64, IceType_void, "" , ".f64", 8, 8 , 0) \
+ X(IceType_v4i1, IceType_i32 , "" , ".i32", 0 , 0 , 1) \
+ X(IceType_v8i1, IceType_i16 , "" , ".i16", 0 , 0 , 1) \
+ X(IceType_v16i1, IceType_i8 , "" , ".i8" , 0 , 0 , 1) \
+ X(IceType_v16i8, IceType_i8 , "" , ".i8" , 0 , 0 , 1) \
+ X(IceType_v8i16, IceType_i16 , "" , ".i16", 0 , 0 , 1) \
+ X(IceType_v4i32, IceType_i32 , "" , ".i32", 0 , 0 , 1) \
+ X(IceType_v4f32, IceType_f32 , "" , ".f32", 0 , 0 , 1)
+//#define X(tag, elementty, int_width, vec_width, sbits, ubits, rraddr)
// Shifter types for Data-processing operands as defined in section A5.1.2.
#define ICEINSTARM32SHIFT_TABLE \
« no previous file with comments | « src/IceInstARM32.cpp ('k') | src/IceTargetLoweringARM32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698