mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-22 23:31:32 +00:00
Added 32-bit Thumb instruction CLREX (Clear-Exclusive) for disassembly only.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97595 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d5e9e5f221
commit
10a77e14a0
@ -2098,6 +2098,16 @@ def t2STREXD : T2I_strex<0b11, (outs GPR:$success),
|
|||||||
{?, ?, ?, ?}>;
|
{?, ?, ?, ?}>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Clear-Exclusive is for disassembly only.
|
||||||
|
def t2CLREX : T2I<(outs), (ins), NoItinerary, "clrex", "",
|
||||||
|
[/* For disassembly only; pattern left blank */]>,
|
||||||
|
Requires<[IsARM, HasV7]> {
|
||||||
|
let Inst{31-20} = 0xf3b;
|
||||||
|
let Inst{15-14} = 0b10;
|
||||||
|
let Inst{12} = 0;
|
||||||
|
let Inst{7-4} = 0b0010;
|
||||||
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// TLS Instructions
|
// TLS Instructions
|
||||||
//
|
//
|
||||||
|
Loading…
Reference in New Issue
Block a user