gas/testsuite/

* 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.
This commit is contained in:
Yufeng Zhang 2013-11-20 11:22:40 +00:00
parent 9a73e520da
commit 87b8eed7fb
7 changed files with 26 additions and 7 deletions

View 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.

View 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

View 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

View 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.

View 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

View 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.

View 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[] =