forked from OSchip/llvm-project
Fix single word and unsigned byte data transfer instruction encodings so that
Inst{4} = 0. rdar://problem/9213022 llvm-svn: 128662
This commit is contained in:
parent
5901ea7e67
commit
7b203f9cae
|
@ -991,6 +991,7 @@ multiclass AI_ldr1<bit isByte, string opc, InstrItinClass iii,
|
||||||
[(set GPR:$Rt, (opnode ldst_so_reg:$shift))]> {
|
[(set GPR:$Rt, (opnode ldst_so_reg:$shift))]> {
|
||||||
bits<4> Rt;
|
bits<4> Rt;
|
||||||
bits<17> shift;
|
bits<17> shift;
|
||||||
|
let shift{4} = 0; // Inst{4} = 0
|
||||||
let Inst{23} = shift{12}; // U (add = ('U' == 1))
|
let Inst{23} = shift{12}; // U (add = ('U' == 1))
|
||||||
let Inst{19-16} = shift{16-13}; // Rn
|
let Inst{19-16} = shift{16-13}; // Rn
|
||||||
let Inst{15-12} = Rt;
|
let Inst{15-12} = Rt;
|
||||||
|
@ -1020,6 +1021,7 @@ multiclass AI_str1<bit isByte, string opc, InstrItinClass iii,
|
||||||
[(opnode GPR:$Rt, ldst_so_reg:$shift)]> {
|
[(opnode GPR:$Rt, ldst_so_reg:$shift)]> {
|
||||||
bits<4> Rt;
|
bits<4> Rt;
|
||||||
bits<17> shift;
|
bits<17> shift;
|
||||||
|
let shift{4} = 0; // Inst{4} = 0
|
||||||
let Inst{23} = shift{12}; // U (add = ('U' == 1))
|
let Inst{23} = shift{12}; // U (add = ('U' == 1))
|
||||||
let Inst{19-16} = shift{16-13}; // Rn
|
let Inst{19-16} = shift{16-13}; // Rn
|
||||||
let Inst{15-12} = Rt;
|
let Inst{15-12} = Rt;
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
# RUN: llvm-mc --disassemble %s -triple=arm-apple-darwin9 |& grep {invalid instruction encoding}
|
||||||
|
|
||||||
|
# LDR (register) has encoding Inst{4} = 0.
|
||||||
|
0xba 0xae 0x9f 0x57
|
Loading…
Reference in New Issue