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

Unified Diff: src/IceInstX8632.def

Issue 649463002: Handle "Mov" which is mov, movss, movsd, and used for nacl.read.tp. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: bounds check 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
Index: src/IceInstX8632.def
diff --git a/src/IceInstX8632.def b/src/IceInstX8632.def
index e48db41d4272af3cffeb1626c1286b67f39fc45b..fcd9e3a0a936cbe5aba4f063bb08c96f06f9568f 100644
--- a/src/IceInstX8632.def
+++ b/src/IceInstX8632.def
@@ -78,15 +78,15 @@
//#define X(val, encode)
// X86 segment registers.
-#define SEG_REGX8632_TABLE \
- /* enum value, name */ \
- X(SegReg_CS, "cs") \
- X(SegReg_DS, "ds") \
- X(SegReg_ES, "es") \
- X(SegReg_SS, "ss") \
- X(SegReg_FS, "fs") \
- X(SegReg_GS, "gs") \
-//#define X(val, name)
+#define SEG_REGX8632_TABLE \
+ /* enum value, name, prefix */ \
+ X(SegReg_CS, "cs", 0x2E) \
+ X(SegReg_DS, "ds", 0x3E) \
+ X(SegReg_ES, "es", 0x26) \
+ X(SegReg_SS, "ss", 0x36) \
+ X(SegReg_FS, "fs", 0x64) \
+ X(SegReg_GS, "gs", 0x65) \
+//#define X(val, name, prefix)
// X87 ST(n) registers.
#define X87ST_REGX8632_TABLE \

Powered by Google App Engine
This is Rietveld 408576698