diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-06-22 23:27:02 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-06-22 23:27:02 +0000 |
commit | 2e076c4e02fb99c791277d55f1325a4fa31c9ef9 (patch) | |
tree | 46bed1371887bc701a06ad8921a8b318704eda98 /llvm/lib/Target/ARM/ARMInstrInfo.h | |
parent | 71a5718f2d977e45c0356c0417f01223d60886d9 (diff) | |
download | bcm5719-llvm-2e076c4e02fb99c791277d55f1325a4fa31c9ef9.tar.gz bcm5719-llvm-2e076c4e02fb99c791277d55f1325a4fa31c9ef9.zip |
Add support for ARM's Advanced SIMD (NEON) instruction set.
This is still a work in progress but most of the NEON instruction set
is supported.
llvm-svn: 73919
Diffstat (limited to 'llvm/lib/Target/ARM/ARMInstrInfo.h')
-rw-r--r-- | llvm/lib/Target/ARM/ARMInstrInfo.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.h b/llvm/lib/Target/ARM/ARMInstrInfo.h index 13ff3fea84b..9658f3bcba8 100644 --- a/llvm/lib/Target/ARM/ARMInstrInfo.h +++ b/llvm/lib/Target/ARM/ARMInstrInfo.h @@ -114,6 +114,12 @@ namespace ARMII { // Thumb format ThumbFrm = 23 << FormShift, + // NEON format + NEONFrm = 24 << FormShift, + NEONGetLnFrm = 25 << FormShift, + NEONSetLnFrm = 26 << FormShift, + NEONDupFrm = 27 << FormShift, + //===------------------------------------------------------------------===// // Field shifts - such shifts are used to set field while generating // machine instructions. |