summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2012-02-21 18:09:48 +0000
committerH.J. Lu <hjl.tools@gmail.com>2012-02-21 18:09:48 +0000
commit82c2def5ff08bb3f5a8c554d78d9a0ddc65dafe0 (patch)
tree3b023addbb4f75e12ec114365aa553fd58b11925
parent1bf10b0d9e810e0edf30c6887f19578b13745beb (diff)
downloadppe42-binutils-82c2def5ff08bb3f5a8c554d78d9a0ddc65dafe0.tar.gz
ppe42-binutils-82c2def5ff08bb3f5a8c554d78d9a0ddc65dafe0.zip
Add HLEPrefixNone/HLEPrefixLock/HLEPrefixAny/HLEPrefixRelease
gas/ 2012-02-21 H.J. Lu <hongjiu.lu@intel.com> * config/tc-i386.c (check_hle): Use HLEPrefixNone, HLEPrefixLock, HLEPrefixAny and HLEPrefixRelease. opcodes/ 2012-02-21 H.J. Lu <hongjiu.lu@intel.com> * i386-opc.h (HLEPrefixNone): New. (HLEPrefixLock): Likewise. (HLEPrefixAny): Likewise. (HLEPrefixRelease): Likewise.
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-i386.c8
-rw-r--r--opcodes/ChangeLog7
-rw-r--r--opcodes/i386-opc.h4
4 files changed, 20 insertions, 4 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 619c1f95f7..6293433edc 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2012-02-21 H.J. Lu <hongjiu.lu@intel.com>
+
+ * config/tc-i386.c (check_hle): Use HLEPrefixNone, HLEPrefixLock,
+ HLEPrefixAny and HLEPrefixRelease.
+
2012-02-21 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
* gas/config/tc-arm.h (DOUBLESLASH_LINE_COMMENTS): Define.
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c
index 97cb68e02a..144883e878 100644
--- a/gas/config/tc-i386.c
+++ b/gas/config/tc-i386.c
@@ -3015,7 +3015,7 @@ check_hle (void)
{
default:
abort ();
- case 0:
+ case HLEPrefixNone:
if (i.prefix[HLE_PREFIX] == XACQUIRE_PREFIX_OPCODE)
as_bad (_("invalid instruction `%s' after `xacquire'"),
i.tm.name);
@@ -3023,7 +3023,7 @@ check_hle (void)
as_bad (_("invalid instruction `%s' after `xrelease'"),
i.tm.name);
return 0;
- case 1:
+ case HLEPrefixLock:
if (i.prefix[LOCK_PREFIX])
return 1;
if (i.prefix[HLE_PREFIX] == XACQUIRE_PREFIX_OPCODE)
@@ -3031,9 +3031,9 @@ check_hle (void)
else
as_bad (_("missing `lock' with `xrelease'"));
return 0;
- case 2:
+ case HLEPrefixAny:
return 1;
- case 3:
+ case HLEPrefixRelease:
if (i.prefix[HLE_PREFIX] != XRELEASE_PREFIX_OPCODE)
{
as_bad (_("instruction `%s' after `xacquire' not allowed"),
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 4c8ad0161e..b3f5c76101 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,10 @@
+2012-02-21 H.J. Lu <hongjiu.lu@intel.com>
+
+ * i386-opc.h (HLEPrefixNone): New.
+ (HLEPrefixLock): Likewise.
+ (HLEPrefixAny): Likewise.
+ (HLEPrefixRelease): Likewise.
+
2012-02-08 H.J. Lu <hongjiu.lu@intel.com>
* i386-dis.c (HLE_Fixup1): New.
diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h
index 245060e840..f130a96ce8 100644
--- a/opcodes/i386-opc.h
+++ b/opcodes/i386-opc.h
@@ -304,6 +304,10 @@ enum
2. With or without a LOCK prefix.
3. With a RELEASE (0xf3) prefix.
*/
+#define HLEPrefixNone 0
+#define HLEPrefixLock 1
+#define HLEPrefixAny 2
+#define HLEPrefixRelease 3
HLEPrefixOk,
/* Convert to DWORD */
ToDword,
OpenPOWER on IntegriCloud