diff options
author | Tim Northover <tnorthover@apple.com> | 2014-08-15 10:47:12 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2014-08-15 10:47:12 +0000 |
commit | ee843ef0fa305bc2451a7e8c9b962b64108fc348 (patch) | |
tree | a2047b967a07f80f7d9fc452b5df5396507faca0 /llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h | |
parent | ccc517c47f9bae58c8bb194f467c9120d3935338 (diff) | |
download | bcm5719-llvm-ee843ef0fa305bc2451a7e8c9b962b64108fc348.tar.gz bcm5719-llvm-ee843ef0fa305bc2451a7e8c9b962b64108fc348.zip |
ARM: implement MRS/MSR (banked reg) system instructions.
These are system-only instructions for CPUs with virtualization
extensions, allowing a hypervisor easy access to all of the various
different AArch32 registers.
rdar://problem/17861345
llvm-svn: 215700
Diffstat (limited to 'llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h')
-rw-r--r-- | llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h b/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h index 45b92adae92..451eaa51ef2 100644 --- a/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h +++ b/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h @@ -117,6 +117,7 @@ public: void printCPSIMod(const MCInst *MI, unsigned OpNum, raw_ostream &O); void printCPSIFlag(const MCInst *MI, unsigned OpNum, raw_ostream &O); void printMSRMaskOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O); + void printBankedRegOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O); void printPredicateOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O); void printMandatoryPredicateOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O); |