1 //===- NeonEmitter.h - Generate arm_neon.h for use with clang ---*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This tablegen backend is responsible for emitting arm_neon.h, which includes
11 // a declaration and definition of each function specified by the ARM NEON
12 // compiler interface. See ARM document DUI0348B.
14 //===----------------------------------------------------------------------===//
16 #ifndef NEON_EMITTER_H
17 #define NEON_EMITTER_H
20 #include "TableGenBackend.h"
21 #include "llvm/ADT/DenseMap.h"
22 #include "llvm/ADT/StringMap.h"
83 ClassI
, // generic integer instruction, e.g., "i8" suffix
84 ClassS
, // signed/unsigned/poly, e.g., "s8", "u8" or "p8" suffix
85 ClassW
, // width-specific instruction, e.g., "8" suffix
86 ClassB
// bitcast arguments with enum argument to specify type
91 class NeonEmitter
: public TableGenBackend
{
92 RecordKeeper
&Records
;
93 StringMap
<OpKind
> OpMap
;
94 DenseMap
<Record
*, ClassKind
> ClassMap
;
97 NeonEmitter(RecordKeeper
&R
) : Records(R
) {
98 OpMap
["OP_NONE"] = OpNone
;
99 OpMap
["OP_ADD"] = OpAdd
;
100 OpMap
["OP_ADDL"] = OpAddl
;
101 OpMap
["OP_ADDW"] = OpAddw
;
102 OpMap
["OP_SUB"] = OpSub
;
103 OpMap
["OP_SUBL"] = OpSubl
;
104 OpMap
["OP_SUBW"] = OpSubw
;
105 OpMap
["OP_MUL"] = OpMul
;
106 OpMap
["OP_MLA"] = OpMla
;
107 OpMap
["OP_MLAL"] = OpMlal
;
108 OpMap
["OP_MLS"] = OpMls
;
109 OpMap
["OP_MLSL"] = OpMlsl
;
110 OpMap
["OP_MUL_N"] = OpMulN
;
111 OpMap
["OP_MLA_N"] = OpMlaN
;
112 OpMap
["OP_MLS_N"] = OpMlsN
;
113 OpMap
["OP_MLAL_N"] = OpMlalN
;
114 OpMap
["OP_MLSL_N"] = OpMlslN
;
115 OpMap
["OP_MUL_LN"]= OpMulLane
;
116 OpMap
["OP_MULL_LN"] = OpMullLane
;
117 OpMap
["OP_MLA_LN"]= OpMlaLane
;
118 OpMap
["OP_MLS_LN"]= OpMlsLane
;
119 OpMap
["OP_MLAL_LN"] = OpMlalLane
;
120 OpMap
["OP_MLSL_LN"] = OpMlslLane
;
121 OpMap
["OP_QDMULL_LN"] = OpQDMullLane
;
122 OpMap
["OP_QDMLAL_LN"] = OpQDMlalLane
;
123 OpMap
["OP_QDMLSL_LN"] = OpQDMlslLane
;
124 OpMap
["OP_QDMULH_LN"] = OpQDMulhLane
;
125 OpMap
["OP_QRDMULH_LN"] = OpQRDMulhLane
;
126 OpMap
["OP_EQ"] = OpEq
;
127 OpMap
["OP_GE"] = OpGe
;
128 OpMap
["OP_LE"] = OpLe
;
129 OpMap
["OP_GT"] = OpGt
;
130 OpMap
["OP_LT"] = OpLt
;
131 OpMap
["OP_NEG"] = OpNeg
;
132 OpMap
["OP_NOT"] = OpNot
;
133 OpMap
["OP_AND"] = OpAnd
;
134 OpMap
["OP_OR"] = OpOr
;
135 OpMap
["OP_XOR"] = OpXor
;
136 OpMap
["OP_ANDN"] = OpAndNot
;
137 OpMap
["OP_ORN"] = OpOrNot
;
138 OpMap
["OP_CAST"] = OpCast
;
139 OpMap
["OP_CONC"] = OpConcat
;
140 OpMap
["OP_HI"] = OpHi
;
141 OpMap
["OP_LO"] = OpLo
;
142 OpMap
["OP_DUP"] = OpDup
;
143 OpMap
["OP_DUP_LN"] = OpDupLane
;
144 OpMap
["OP_SEL"] = OpSelect
;
145 OpMap
["OP_REV16"] = OpRev16
;
146 OpMap
["OP_REV32"] = OpRev32
;
147 OpMap
["OP_REV64"] = OpRev64
;
148 OpMap
["OP_REINT"] = OpReinterpret
;
149 OpMap
["OP_ABDL"] = OpAbdl
;
150 OpMap
["OP_ABA"] = OpAba
;
151 OpMap
["OP_ABAL"] = OpAbal
;
153 Record
*SI
= R
.getClass("SInst");
154 Record
*II
= R
.getClass("IInst");
155 Record
*WI
= R
.getClass("WInst");
156 ClassMap
[SI
] = ClassS
;
157 ClassMap
[II
] = ClassI
;
158 ClassMap
[WI
] = ClassW
;
161 // run - Emit arm_neon.h.inc
162 void run(raw_ostream
&o
);
164 // runHeader - Emit all the __builtin prototypes used in arm_neon.h
165 void runHeader(raw_ostream
&o
);
167 // runTests - Emit tests for all the Neon intrinsics.
168 void runTests(raw_ostream
&o
);
171 void emitIntrinsic(raw_ostream
&OS
, Record
*R
);
174 } // End llvm namespace