Searched defs:ISD (Results 1 - 13 of 13) sorted by relevance

/external/llvm/include/llvm/Target/
H A DCostTable.h23 int ISD; member in struct:llvm::CostTblEntry
30 int CostTableLookup(const CostTblEntry<TypeTy> *Tbl, unsigned len, int ISD, argument
33 if (ISD == Tbl[i].ISD && Ty == Tbl[i].Type)
42 int CostTableLookup(const CostTblEntry<TypeTy>(&Tbl)[N], int ISD, member in namespace:llvm
44 return CostTableLookup(Tbl, N, ISD, Ty);
50 int ISD; member in struct:llvm::TypeConversionCostTblEntry
60 unsigned len, int ISD, CompareTy Dst,
63 if (ISD == Tbl[i].ISD
59 ConvertCostTableLookup(const TypeConversionCostTblEntry<TypeTy> *Tbl, unsigned len, int ISD, CompareTy Dst, CompareTy Src) argument
74 int ISD, CompareTy Dst, CompareTy Src) { member in namespace:llvm
[all...]
H A DTargetCallingConv.h24 namespace ISD { namespace in namespace:llvm
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dexamples.cpp231 namespace ISD { namespace in namespace:spec_vs_expl_inst
233 template class BasicStringPiece<int>; // expected-error {{explicit instantiation of undefined template 'spec_vs_expl_inst::ISD::BasicStringPiece<int>'}}
/external/llvm/lib/MC/
H A DMCMachOStreamer.cpp245 IndirectSymbolData ISD; local
246 ISD.Symbol = Symbol;
247 ISD.SectionData = getCurrentSectionData();
248 getAssembler().getIndirectSymbols().push_back(ISD);
H A DMCELFStreamer.cpp130 IndirectSymbolData ISD; local
131 ISD.Symbol = Symbol;
132 ISD.SectionData = getCurrentSectionData();
133 getAssembler().getIndirectSymbols().push_back(ISD);
/external/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp297 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
298 assert(ISD && "Invalid opcode");
308 { ISD::SINT_TO_FP, MVT::v2f32, MVT::v2i32, 1 },
309 { ISD::SINT_TO_FP, MVT::v4f32, MVT::v4i32, 1 },
310 { ISD::SINT_TO_FP, MVT::v2f64, MVT::v2i64, 1 },
311 { ISD::UINT_TO_FP, MVT::v2f32, MVT::v2i32, 1 },
312 { ISD::UINT_TO_FP, MVT::v4f32, MVT::v4i32, 1 },
313 { ISD::UINT_TO_FP, MVT::v2f64, MVT::v2i64, 1 },
316 { ISD::SINT_TO_FP, MVT::v2f32, MVT::v2i8, 3 },
317 { ISD
409 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
444 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
[all...]
/external/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp185 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
186 assert(ISD && "Invalid opcode");
191 { ISD::FP_ROUND, MVT::v2f64, 2 },
192 { ISD::FP_EXTEND, MVT::v2f32, 2 },
193 { ISD::FP_EXTEND, MVT::v4f32, 4 }
196 if (Src->isVectorTy() && ST->hasNEON() && (ISD == ISD::FP_ROUND ||
197 ISD == ISD::FP_EXTEND)) {
199 int Idx = CostTableLookup(NEONFltDblTbl, ISD, L
398 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp351 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
352 assert(ISD && "Invalid opcode");
367 if (ISD == ISD::INSERT_VECTOR_ELT)
374 if (ISD == ISD::EXTRACT_VECTOR_ELT ||
375 ISD == ISD::INSERT_VECTOR_ELT)
/external/llvm/lib/CodeGen/
H A DBasicTargetTransformInfo.cpp190 (TLI->isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
191 TLI->isOperationLegalOrCustom(ISD::BRIND, MVT::Other));
197 return TLI->isTypeLegal(VT) && TLI->isOperationLegalOrCustom(ISD::FSQRT, VT);
294 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
295 assert(ISD && "Invalid opcode");
304 if (TLI->isOperationLegalOrPromote(ISD, LT.second)) {
314 if (!TLI->isOperationExpand(ISD, LT.second)) {
361 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
362 assert(ISD && "Invalid opcode");
386 TLI->isOperationLegalOrPromote(ISD, DstL
456 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
534 unsigned ISD = 0; local
[all...]
/external/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp187 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
188 assert(ISD && "Invalid opcode");
192 { ISD::SDIV, MVT::v16i16, 6 }, // vpmulhw sequence
193 { ISD::UDIV, MVT::v16i16, 6 }, // vpmulhuw sequence
194 { ISD::SDIV, MVT::v8i32, 15 }, // vpmuldq sequence
195 { ISD::UDIV, MVT::v8i32, 15 }, // vpmuludq sequence
200 int Idx = CostTableLookup(AVX2UniformConstCostTable, ISD, LT.second);
208 { ISD::SHL, MVT::v4i32, 1 },
209 { ISD::SRL, MVT::v4i32, 1 },
210 { ISD
523 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
689 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
844 int ISD = TLI->InstructionOpcodeToISD(Opcode); local
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp100 /// bits are known to be zero (ISD::AssertZext) or sign extended from ValueVT
101 /// (ISD::AssertSext).
106 ISD::NodeType AssertOp = ISD::DELETED_NODE) {
137 Lo = DAG.getNode(ISD::BITCAST, DL, HalfVT, Parts[0]);
138 Hi = DAG.getNode(ISD::BITCAST, DL, HalfVT, Parts[1]);
144 Val = DAG.getNode(ISD::BUILD_PAIR, DL, RoundVT, Lo, Hi);
158 Hi = DAG.getNode(ISD::ANY_EXTEND, DL, TotalVT, Hi);
159 Hi = DAG.getNode(ISD::SHL, DL, TotalVT, Hi,
162 Lo = DAG.getNode(ISD
102 getCopyFromParts(SelectionDAG &DAG, SDLoc DL, const SDValue *Parts, unsigned NumParts, MVT PartVT, EVT ValueVT, const Value *V, ISD::NodeType AssertOp = ISD::DELETED_NODE) argument
346 getCopyToParts(SelectionDAG &DAG, SDLoc DL, SDValue Val, SDValue *Parts, unsigned NumParts, MVT PartVT, const Value *V, ISD::NodeType ExtendKind = ISD::ANY_EXTEND) argument
[all...]
/external/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h19 /// ISD namespace - This namespace contains an enum which represents all of the
22 namespace ISD { namespace in namespace:llvm
25 /// ISD::NodeType enum - This enum defines the target-independent operators
472 /// 5) ISD::CvtCode indicating the type of conversion to do
750 /// ISD::CondCode enum - These are ordered carefully to make the bitfields
857 } // end llvm::ISD namespace
H A DSelectionDAGNodes.h57 case ISD::SDIV:
58 case ISD::UDIV:
59 case ISD::SRA:
60 case ISD::SRL:
61 case ISD::MUL:
62 case ISD::ADD:
63 case ISD::SUB:
64 case ISD::SHL:
83 namespace ISD { namespace in namespace:llvm
99 /// ISD
2002 namespace ISD { namespace
[all...]

Completed in 6603 milliseconds