Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:ISD

36     if (getOpcode() < ISD::BUILTIN_OP_END)
54 case ISD::DELETED_NODE: return "<<Deleted Node!>>";
56 case ISD::PREFETCH: return "Prefetch";
57 case ISD::MEMBARRIER: return "MemBarrier";
58 case ISD::ATOMIC_FENCE: return "AtomicFence";
59 case ISD::ATOMIC_CMP_SWAP: return "AtomicCmpSwap";
60 case ISD::ATOMIC_SWAP: return "AtomicSwap";
61 case ISD::ATOMIC_LOAD_ADD: return "AtomicLoadAdd";
62 case ISD::ATOMIC_LOAD_SUB: return "AtomicLoadSub";
63 case ISD::ATOMIC_LOAD_AND: return "AtomicLoadAnd";
64 case ISD::ATOMIC_LOAD_OR: return "AtomicLoadOr";
65 case ISD::ATOMIC_LOAD_XOR: return "AtomicLoadXor";
66 case ISD::ATOMIC_LOAD_NAND: return "AtomicLoadNand";
67 case ISD::ATOMIC_LOAD_MIN: return "AtomicLoadMin";
68 case ISD::ATOMIC_LOAD_MAX: return "AtomicLoadMax";
69 case ISD::ATOMIC_LOAD_UMIN: return "AtomicLoadUMin";
70 case ISD::ATOMIC_LOAD_UMAX: return "AtomicLoadUMax";
71 case ISD::ATOMIC_LOAD: return "AtomicLoad";
72 case ISD::ATOMIC_STORE: return "AtomicStore";
73 case ISD::PCMARKER: return "PCMarker";
74 case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
75 case ISD::SRCVALUE: return "SrcValue";
76 case ISD::MDNODE_SDNODE: return "MDNode";
77 case ISD::EntryToken: return "EntryToken";
78 case ISD::TokenFactor: return "TokenFactor";
79 case ISD::AssertSext: return "AssertSext";
80 case ISD::AssertZext: return "AssertZext";
82 case ISD::BasicBlock: return "BasicBlock";
83 case ISD::VALUETYPE: return "ValueType";
84 case ISD::Register: return "Register";
85 case ISD::RegisterMask: return "RegisterMask";
86 case ISD::Constant: return "Constant";
87 case ISD::ConstantFP: return "ConstantFP";
88 case ISD::GlobalAddress: return "GlobalAddress";
89 case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
90 case ISD::FrameIndex: return "FrameIndex";
91 case ISD::JumpTable: return "JumpTable";
92 case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
93 case ISD::RETURNADDR: return "RETURNADDR";
94 case ISD::FRAMEADDR: return "FRAMEADDR";
95 case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
96 case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
97 case ISD::LSDAADDR: return "LSDAADDR";
98 case ISD::EHSELECTION: return "EHSELECTION";
99 case ISD::EH_RETURN: return "EH_RETURN";
100 case ISD::EH_SJLJ_SETJMP: return "EH_SJLJ_SETJMP";
101 case ISD::EH_SJLJ_LONGJMP: return "EH_SJLJ_LONGJMP";
102 case ISD::ConstantPool: return "ConstantPool";
103 case ISD::TargetIndex: return "TargetIndex";
104 case ISD::ExternalSymbol: return "ExternalSymbol";
105 case ISD::BlockAddress: return "BlockAddress";
106 case ISD::INTRINSIC_WO_CHAIN:
107 case ISD::INTRINSIC_VOID:
108 case ISD::INTRINSIC_W_CHAIN: {
109 unsigned OpNo = getOpcode() == ISD::INTRINSIC_WO_CHAIN ? 0 : 1;
118 case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
119 case ISD::TargetConstant: return "TargetConstant";
120 case ISD::TargetConstantFP: return "TargetConstantFP";
121 case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
122 case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
123 case ISD::TargetFrameIndex: return "TargetFrameIndex";
124 case ISD::TargetJumpTable: return "TargetJumpTable";
125 case ISD::TargetConstantPool: return "TargetConstantPool";
126 case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
127 case ISD::TargetBlockAddress: return "TargetBlockAddress";
129 case ISD::CopyToReg: return "CopyToReg";
130 case ISD::CopyFromReg: return "CopyFromReg";
131 case ISD::UNDEF: return "undef";
132 case ISD::MERGE_VALUES: return "merge_values";
133 case ISD::INLINEASM: return "inlineasm";
134 case ISD::EH_LABEL: return "eh_label";
135 case ISD::HANDLENODE: return "handlenode";
138 case ISD::FABS: return "fabs";
139 case ISD::FNEG: return "fneg";
140 case ISD::FSQRT: return "fsqrt";
141 case ISD::FSIN: return "fsin";
142 case ISD::FCOS: return "fcos";
143 case ISD::FSINCOS: return "fsincos";
144 case ISD::FTRUNC: return "ftrunc";
145 case ISD::FFLOOR: return "ffloor";
146 case ISD::FCEIL: return "fceil";
147 case ISD::FRINT: return "frint";
148 case ISD::FNEARBYINT: return "fnearbyint";
149 case ISD::FEXP: return "fexp";
150 case ISD::FEXP2: return "fexp2";
151 case ISD::FLOG: return "flog";
152 case ISD::FLOG2: return "flog2";
153 case ISD::FLOG10: return "flog10";
156 case ISD::ADD: return "add";
157 case ISD::SUB: return "sub";
158 case ISD::MUL: return "mul";
159 case ISD::MULHU: return "mulhu";
160 case ISD::MULHS: return "mulhs";
161 case ISD::SDIV: return "sdiv";
162 case ISD::UDIV: return "udiv";
163 case ISD::SREM: return "srem";
164 case ISD::UREM: return "urem";
165 case ISD::SMUL_LOHI: return "smul_lohi";
166 case ISD::UMUL_LOHI: return "umul_lohi";
167 case ISD::SDIVREM: return "sdivrem";
168 case ISD::UDIVREM: return "udivrem";
169 case ISD::AND: return "and";
170 case ISD::OR: return "or";
171 case ISD::XOR: return "xor";
172 case ISD::SHL: return "shl";
173 case ISD::SRA: return "sra";
174 case ISD::SRL: return "srl";
175 case ISD::ROTL: return "rotl";
176 case ISD::ROTR: return "rotr";
177 case ISD::FADD: return "fadd";
178 case ISD::FSUB: return "fsub";
179 case ISD::FMUL: return "fmul";
180 case ISD::FDIV: return "fdiv";
181 case ISD::FMA: return "fma";
182 case ISD::FREM: return "frem";
183 case ISD::FCOPYSIGN: return "fcopysign";
184 case ISD::FGETSIGN: return "fgetsign";
185 case ISD::FPOW: return "fpow";
187 case ISD::FPOWI: return "fpowi";
188 case ISD::SETCC: return "setcc";
189 case ISD::SELECT: return "select";
190 case ISD::VSELECT: return "vselect";
191 case ISD::SELECT_CC: return "select_cc";
192 case ISD::INSERT_VECTOR_ELT: return "insert_vector_elt";
193 case ISD::EXTRACT_VECTOR_ELT: return "extract_vector_elt";
194 case ISD::CONCAT_VECTORS: return "concat_vectors";
195 case ISD::INSERT_SUBVECTOR: return "insert_subvector";
196 case ISD::EXTRACT_SUBVECTOR: return "extract_subvector";
197 case ISD::SCALAR_TO_VECTOR: return "scalar_to_vector";
198 case ISD::VECTOR_SHUFFLE: return "vector_shuffle";
199 case ISD::CARRY_FALSE: return "carry_false";
200 case ISD::ADDC: return "addc";
201 case ISD::ADDE: return "adde";
202 case ISD::SADDO: return "saddo";
203 case ISD::UADDO: return "uaddo";
204 case ISD::SSUBO: return "ssubo";
205 case ISD::USUBO: return "usubo";
206 case ISD::SMULO: return "smulo";
207 case ISD::UMULO: return "umulo";
208 case ISD::SUBC: return "subc";
209 case ISD::SUBE: return "sube";
210 case ISD::SHL_PARTS: return "shl_parts";
211 case ISD::SRA_PARTS: return "sra_parts";
212 case ISD::SRL_PARTS: return "srl_parts";
215 case ISD::SIGN_EXTEND: return "sign_extend";
216 case ISD::ZERO_EXTEND: return "zero_extend";
217 case ISD::ANY_EXTEND: return "any_extend";
218 case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
219 case ISD::TRUNCATE: return "truncate";
220 case ISD::FP_ROUND: return "fp_round";
221 case ISD::FLT_ROUNDS_: return "flt_rounds";
222 case ISD::FP_ROUND_INREG: return "fp_round_inreg";
223 case ISD::FP_EXTEND: return "fp_extend";
225 case ISD::SINT_TO_FP: return "sint_to_fp";
226 case ISD::UINT_TO_FP: return "uint_to_fp";
227 case ISD::FP_TO_SINT: return "fp_to_sint";
228 case ISD::FP_TO_UINT: return "fp_to_uint";
229 case ISD::BITCAST: return "bitcast";
230 case ISD::FP16_TO_FP32: return "fp16_to_fp32";
231 case ISD::FP32_TO_FP16: return "fp32_to_fp16";
233 case ISD::CONVERT_RNDSAT: {
236 case ISD::CVT_FF: return "cvt_ff";
237 case ISD::CVT_FS: return "cvt_fs";
238 case ISD::CVT_FU: return "cvt_fu";
239 case ISD::CVT_SF: return "cvt_sf";
240 case ISD::CVT_UF: return "cvt_uf";
241 case ISD::CVT_SS: return "cvt_ss";
242 case ISD::CVT_SU: return "cvt_su";
243 case ISD::CVT_US: return "cvt_us";
244 case ISD::CVT_UU: return "cvt_uu";
249 case ISD::BR: return "br";
250 case ISD::BRIND: return "brind";
251 case ISD::BR_JT: return "br_jt";
252 case ISD::BRCOND: return "brcond";
253 case ISD::BR_CC: return "br_cc";
254 case ISD::CALLSEQ_START: return "callseq_start";
255 case ISD::CALLSEQ_END: return "callseq_end";
258 case ISD::LOAD: return "load";
259 case ISD::STORE: return "store";
260 case ISD::VAARG: return "vaarg";
261 case ISD::VACOPY: return "vacopy";
262 case ISD::VAEND: return "vaend";
263 case ISD::VASTART: return "vastart";
264 case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
265 case ISD::EXTRACT_ELEMENT: return "extract_element";
266 case ISD::BUILD_PAIR: return "build_pair";
267 case ISD::STACKSAVE: return "stacksave";
268 case ISD::STACKRESTORE: return "stackrestore";
269 case ISD::TRAP: return "trap";
270 case ISD::DEBUGTRAP: return "debugtrap";
271 case ISD::LIFETIME_START: return "lifetime.start";
272 case ISD::LIFETIME_END: return "lifetime.end";
275 case ISD::BSWAP: return "bswap";
276 case ISD::CTPOP: return "ctpop";
277 case ISD::CTTZ: return "cttz";
278 case ISD::CTTZ_ZERO_UNDEF: return "cttz_zero_undef";
279 case ISD::CTLZ: return "ctlz";
280 case ISD::CTLZ_ZERO_UNDEF: return "ctlz_zero_undef";
283 case ISD::INIT_TRAMPOLINE: return "init_trampoline";
284 case ISD::ADJUST_TRAMPOLINE: return "adjust_trampoline";
286 case ISD::CONDCODE:
289 case ISD::SETOEQ: return "setoeq";
290 case ISD::SETOGT: return "setogt";
291 case ISD::SETOGE: return "setoge";
292 case ISD::SETOLT: return "setolt";
293 case ISD::SETOLE: return "setole";
294 case ISD::SETONE: return "setone";
296 case ISD::SETO: return "seto";
297 case ISD::SETUO: return "setuo";
298 case ISD::SETUEQ: return "setue";
299 case ISD::SETUGT: return "setugt";
300 case ISD::SETUGE: return "setuge";
301 case ISD::SETULT: return "setult";
302 case ISD::SETULE: return "setule";
303 case ISD::SETUNE: return "setune";
305 case ISD::SETEQ: return "seteq";
306 case ISD::SETGT: return "setgt";
307 case ISD::SETGE: return "setge";
308 case ISD::SETLT: return "setlt";
309 case ISD::SETLE: return "setle";
310 case ISD::SETNE: return "setne";
312 case ISD::SETTRUE: return "settrue";
313 case ISD::SETTRUE2: return "settrue2";
314 case ISD::SETFALSE: return "setfalse";
315 case ISD::SETFALSE2: return "setfalse2";
320 const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
323 case ISD::PRE_INC: return "<pre-inc>";
324 case ISD::PRE_DEC: return "<pre-dec>";
325 case ISD::POST_INC: return "<post-inc>";
326 case ISD::POST_DEC: return "<post-dec>";
452 case ISD::EXTLOAD: OS << ", anyext"; break;
453 case ISD::SEXTLOAD: OS << ", sext"; break;
454 case ISD::ZEXTLOAD: OS << ", zext"; break;