aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
diff options
context:
space:
mode:
authorHao Liu <Hao.Liu@arm.com>2013-10-10 15:01:24 +0000
committerHao Liu <Hao.Liu@arm.com>2013-10-10 15:01:24 +0000
commitd622bef31d11a5a6429fe7fad557c9b111e96f69 (patch)
tree9717677e5d819174ae2e85d817161d320b55dc70 /lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
parent8ccf2b3c9e0f70220c88f3328ddebebd7866f92c (diff)
downloadexternal_llvm-d622bef31d11a5a6429fe7fad557c9b111e96f69.zip
external_llvm-d622bef31d11a5a6429fe7fad557c9b111e96f69.tar.gz
external_llvm-d622bef31d11a5a6429fe7fad557c9b111e96f69.tar.bz2
Implement AArch64 vector load/store multiple N-element structure class SIMD(lselem).
Including following 14 instructions: 4 ld1 insts: load multiple 1-element structure to sequential 1/2/3/4 registers. ld2/ld3/ld4: load multiple N-element structure to sequential N registers (N=2,3,4). 4 st1 insts: store multiple 1-element structure from sequential 1/2/3/4 registers. st2/st3/st4: store multiple N-element structure from sequential N registers (N = 2,3,4). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192352 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h')
-rw-r--r--lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h b/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
index 71c9f4a..28ebfc4 100644
--- a/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
+++ b/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
@@ -174,6 +174,9 @@ public:
raw_ostream &O);
void printNeonUImm64MaskOperand(const MCInst *MI, unsigned OpNum,
raw_ostream &O);
+
+ template <A64Layout::VectorLayout Layout, unsigned Count>
+ void printVectorList(const MCInst *MI, unsigned OpNum, raw_ostream &O);
};
}