From e692c2171ead6cdd096e625d6e8a4dd33d8bffe2 Mon Sep 17 00:00:00 2001 From: Michael Eager Date: Wed, 14 Nov 2012 16:19:30 +0000 Subject: [PATCH] Add the endian reversing versions of load/store instructions; 2012-11-14 Edgar E. Iglesias * microblaze-opc.h: Increase MAX_OPCODES (op_code_struct): add lbur, lhur, lwr, sbr, shr, swr * microblaze-opcm.h (microblaze_instr): add lbur, lhur, lwr, sbr, shr, swr 2012-11-14 David Holsgrove * gas/microblaze/allinsn.exp: New file - test newly added opcodes * gas/microblaze/allinsn.s: Likewise * gas/microblaze/allinsn.d: Likewise --- gas/testsuite/ChangeLog | 6 ++++++ gas/testsuite/gas/microblaze/allinsn.d | 24 +++++++++++++++++++++ gas/testsuite/gas/microblaze/allinsn.exp | 5 +++++ gas/testsuite/gas/microblaze/allinsn.s | 27 ++++++++++++++++++++++++ opcodes/ChangeLog | 7 ++++++ opcodes/microblaze-opc.h | 8 ++++++- opcodes/microblaze-opcm.h | 3 ++- 7 files changed, 78 insertions(+), 2 deletions(-) create mode 100644 gas/testsuite/gas/microblaze/allinsn.d create mode 100644 gas/testsuite/gas/microblaze/allinsn.exp create mode 100644 gas/testsuite/gas/microblaze/allinsn.s diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index a7b4f42e5e..9387158d43 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2012-11-14 David Holsgrove + + * gas/microblaze/allinsn.exp: New file - test newly added opcodes + * gas/microblaze/allinsn.s: Likewise + * gas/microblaze/allinsn.d: Likewise + 2012-11-14 Ulrich Weigand * gas/ppc/astest.d: Update for fixup changes. diff --git a/gas/testsuite/gas/microblaze/allinsn.d b/gas/testsuite/gas/microblaze/allinsn.d new file mode 100644 index 0000000000..79064ba11e --- /dev/null +++ b/gas/testsuite/gas/microblaze/allinsn.d @@ -0,0 +1,24 @@ +#as: +#objdump: -d + +.*: +file format .* + +Disassembly of section .text: + +00000000 : + 0: c0000200 lbur r0, r0, r0 + +00000004 : + 4: c4000200 lhur r0, r0, r0 + +00000008 : + 8: c8000200 lwr r0, r0, r0 + +0000000c : + c: d0000200 sbr r0, r0, r0 + +00000010 : + 10: d4000200 shr r0, r0, r0 + +00000014 : + 14: d8000200 swr r0, r0, r0 diff --git a/gas/testsuite/gas/microblaze/allinsn.exp b/gas/testsuite/gas/microblaze/allinsn.exp new file mode 100644 index 0000000000..d1b1deac8b --- /dev/null +++ b/gas/testsuite/gas/microblaze/allinsn.exp @@ -0,0 +1,5 @@ +# MicroBlaze test for special register. + +if [istarget microblaze*-*-*] { + run_dump_test "allinsn" +} diff --git a/gas/testsuite/gas/microblaze/allinsn.s b/gas/testsuite/gas/microblaze/allinsn.s new file mode 100644 index 0000000000..8bb3ef5857 --- /dev/null +++ b/gas/testsuite/gas/microblaze/allinsn.s @@ -0,0 +1,27 @@ + .text +footext: + .text + .global lbur +lbur: + lbur r0,r0,r0 + .text + .global lhur +lhur: + lhur r0,r0,r0 + .text + .global lwr +lwr: + lwr r0,r0,r0 + .text + .global sbr +sbr: + sbr r0,r0,r0 + .text + .global shr +shr: + shr r0,r0,r0 + .text + .global swr +swr: + swr r0,r0,r0 + diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 466ae87e73..69248f8287 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,10 @@ +2012-11-14 Edgar E. Iglesias + + * microblaze-opc.h: Increase MAX_OPCODES (op_code_struct): add lbur, + lhur, lwr, sbr, shr, swr + * microblaze-opcm.h (microblaze_instr): add lbur, lhur, lwr, sbr, shr, + swr + 2012-11-09 Nick Clifton * configure.in: Add bfd_v850_rh850_arch. diff --git a/opcodes/microblaze-opc.h b/opcodes/microblaze-opc.h index 02ac83f569..44c9d38715 100644 --- a/opcodes/microblaze-opc.h +++ b/opcodes/microblaze-opc.h @@ -96,7 +96,7 @@ #define DELAY_SLOT 1 #define NO_DELAY_SLOT 0 -#define MAX_OPCODES 280 +#define MAX_OPCODES 284 struct op_code_struct { @@ -220,12 +220,18 @@ struct op_code_struct {"bgei", INST_TYPE_R1_IMM, INST_PC_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xBCA00000, OPCODE_MASK_H1, bgei, branch_inst }, {"bgeid", INST_TYPE_R1_IMM, INST_PC_OFFSET, DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xBEA00000, OPCODE_MASK_H1, bgeid, branch_inst }, {"lbu", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xC0000000, OPCODE_MASK_H4, lbu, memory_load_inst }, + {"lbur", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xC0000200, OPCODE_MASK_H4, lbur, memory_load_inst }, {"lhu", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xC4000000, OPCODE_MASK_H4, lhu, memory_load_inst }, + {"lhur", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xC4000200, OPCODE_MASK_H4, lhur, memory_load_inst }, {"lw", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xC8000000, OPCODE_MASK_H4, lw, memory_load_inst }, + {"lwr", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xC8000200, OPCODE_MASK_H4, lwr, memory_load_inst }, {"lwx", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xC8000400, OPCODE_MASK_H4, lwx, memory_load_inst }, {"sb", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xD0000000, OPCODE_MASK_H4, sb, memory_store_inst }, + {"sbr", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xD0000200, OPCODE_MASK_H4, sbr, memory_store_inst }, {"sh", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xD4000000, OPCODE_MASK_H4, sh, memory_store_inst }, + {"shr", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xD4000200, OPCODE_MASK_H4, shr, memory_store_inst }, {"sw", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xD8000000, OPCODE_MASK_H4, sw, memory_store_inst }, + {"swr", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xD8000200, OPCODE_MASK_H4, swr, memory_store_inst }, {"swx", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xD8000400, OPCODE_MASK_H4, swx, memory_store_inst }, {"lbui", INST_TYPE_RD_R1_IMM, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xE0000000, OPCODE_MASK_H, lbui, memory_load_inst }, {"lhui", INST_TYPE_RD_R1_IMM, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0xE4000000, OPCODE_MASK_H, lhui, memory_load_inst }, diff --git a/opcodes/microblaze-opcm.h b/opcodes/microblaze-opcm.h index 10acacfee2..a3bec497db 100644 --- a/opcodes/microblaze-opcm.h +++ b/opcodes/microblaze-opcm.h @@ -36,7 +36,8 @@ enum microblaze_instr bltd, ble, bled, bgt, bgtd, bge, bged, ori, andi, xori, andni, imm, rtsd, rtid, rtbd, rted, bri, brid, brlid, brai, braid, bralid, brki, beqi, beqid, bnei, bneid, blti, bltid, blei, bleid, bgti, - bgtid, bgei, bgeid, lbu, lhu, lw, lwx, sb, sh, sw, swx, lbui, lhui, lwi, + bgtid, bgei, bgeid, lbu, lbur, lhu, lhur, lw, lwr, lwx, sb, sbr, sh, + shr, sw, swr, swx, lbui, lhui, lwi, sbi, shi, swi, msrset, msrclr, tuqula, fadd, frsub, fmul, fdiv, fcmp_lt, fcmp_eq, fcmp_le, fcmp_gt, fcmp_ne, fcmp_ge, fcmp_un, flt, fint, fsqrt, -- 2.34.1