1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Added the 32-bit Thumb instructions (BXJ) for disassembly only.

llvm-svn: 97163
This commit is contained in:
Johnny Chen 2010-02-25 19:05:29 +00:00
parent e4b5559cf8
commit 8737e46553

View File

@ -1939,6 +1939,17 @@ def t2IT : Thumb2XI<(outs), (ins it_pred:$cc, it_mask:$mask),
let Inst{15-8} = 0b10111111;
}
// Branch and Exchange Jazelle -- for disassembly only
// Rm = Inst{19-16}
def t2BXJ : T2I<(outs), (ins GPR:$func), NoItinerary, "bxj", "\t$func",
[/* For disassembly only; pattern left blank */]> {
let Inst{31-27} = 0b11110;
let Inst{26} = 0;
let Inst{25-20} = 0b111100;
let Inst{15-14} = 0b10;
let Inst{12} = 0;
}
//===----------------------------------------------------------------------===//
// Non-Instruction Patterns
//