gas/testsuite/
authorYufeng Zhang <yufeng.zhang@arm.com>
Wed, 20 Nov 2013 11:22:40 +0000 (11:22 +0000)
committerYufeng Zhang <yufeng.zhang@arm.com>
Wed, 20 Nov 2013 11:22:53 +0000 (11:22 +0000)
* gas/aarch64/msr.s: Add tests.
* gas/aarch64/msr.d: Update.

include/opcode

* aarch64.h (aarch64_pstatefields): Change element type to
aarch64_sys_reg.

opcodes/

* aarch64-opc.c (aarch64_pstatefields): Update.

gas/testsuite/ChangeLog
gas/testsuite/gas/aarch64/msr.d
gas/testsuite/gas/aarch64/msr.s
include/opcode/ChangeLog
include/opcode/aarch64.h
opcodes/ChangeLog
opcodes/aarch64-opc.c

index 4d8e7de..be53157 100644 (file)
@@ -1,3 +1,8 @@
+2013-11-20  Yufeng Zhang  <yufeng.zhang@arm.com>
+
+       * gas/aarch64/msr.s: Add tests.
+       * gas/aarch64/msr.d: Update.
+
 2013-11-19  Catherine Moore  <clm@codesourcery.com>
 
        * gas/mips/fix-pmc-rm7000-1.d: New.
index c6c3220..750cae1 100644 (file)
@@ -13,3 +13,5 @@ Disassembly of section \.text:
   14:  d5034fff        msr     daifclr, #0xf
   18:  d51b4220        msr     daif, x0
   1c:  d53b4220        mrs     x0, daif
+  20:  d50040bf        msr     spsel, #0x0
+  24:  d50041bf        msr     spsel, #0x1
index 9f67d98..01018c2 100644 (file)
@@ -1,5 +1,5 @@
 /*
-   Copyright 2011, 2012 Free Software Foundation, Inc.
+   Copyright 2011-2013 Free Software Foundation, Inc.
    Contributed by ARM Ltd.
 
    This file is part of GAS.
@@ -31,3 +31,6 @@ func:
 
        msr daif, x0
        mrs x0, daif
+
+       msr spsel, #0
+       msr spsel, #1
index f4d1b06..216736d 100644 (file)
@@ -1,3 +1,8 @@
+2013-11-20  Yufeng Zhang  <yufeng.zhang@arm.com>
+
+       * aarch64.h (aarch64_pstatefields): Change element type to
+       aarch64_sys_reg.
+
 2013-11-18  Renlin Li  <Renlin.Li@arm.com>
 
        * arm.h (ARM_AEXT_V7VE): New define.
index 4a3a312..053294e 100644 (file)
@@ -611,7 +611,6 @@ struct aarch64_name_value_pair
 };
 
 extern const struct aarch64_name_value_pair aarch64_operand_modifiers [];
-extern const struct aarch64_name_value_pair aarch64_pstatefields [];
 extern const struct aarch64_name_value_pair aarch64_barrier_options [16];
 extern const struct aarch64_name_value_pair aarch64_prfops [32];
 
@@ -623,6 +622,7 @@ typedef struct
 } aarch64_sys_reg;
 
 extern const aarch64_sys_reg aarch64_sys_regs [];
+extern const aarch64_sys_reg aarch64_pstatefields [];
 extern bfd_boolean aarch64_sys_reg_deprecated_p (const aarch64_sys_reg *);
 
 typedef struct
index 8ed5de9..8557c6d 100644 (file)
@@ -1,3 +1,7 @@
+2013-11-20  Yufeng Zhang  <yufeng.zhang@arm.com>
+
+       * aarch64-opc.c (aarch64_pstatefields): Update.
+
 2013-11-19  Catherine Moore  <clm@codesourcery.com>
 
        * micromips-opc.c (LM): Define.
index af1472a..4313327 100644 (file)
@@ -3019,12 +3019,12 @@ aarch64_sys_reg_deprecated_p (const aarch64_sys_reg *reg)
   return (reg->flags & F_DEPRECATED) != 0;
 }
 
-const struct aarch64_name_value_pair aarch64_pstatefields [] =
+const aarch64_sys_reg aarch64_pstatefields [] =
 {
-  { "spsel",            0x05  },
-  { "daifset",          0x1e  },
-  { "daifclr",          0x1f  },
-  { 0,          CPENC(0,0,0,0,0)  },
+  { "spsel",            0x05,  0 },
+  { "daifset",          0x1e,  0 },
+  { "daifclr",          0x1f,  0 },
+  { 0,          CPENC(0,0,0,0,0), 0 },
 };
 
 const aarch64_sys_ins_reg aarch64_sys_regs_ic[] =