Searched refs:getTypeID (Results 1 - 25 of 43) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DType.h138 TypeID getTypeID() const { return ID; } function in class:llvm::Type
141 bool isVoidTy() const { return getTypeID() == VoidTyID; }
144 bool isHalfTy() const { return getTypeID() == HalfTyID; }
147 bool isFloatTy() const { return getTypeID() == FloatTyID; }
150 bool isDoubleTy() const { return getTypeID() == DoubleTyID; }
153 bool isX86_FP80Ty() const { return getTypeID() == X86_FP80TyID; }
156 bool isFP128Ty() const { return getTypeID() == FP128TyID; }
159 bool isPPC_FP128Ty() const { return getTypeID() == PPC_FP128TyID; }
163 return getTypeID() == HalfTyID || getTypeID()
[all...]
H A DDerivedTypes.h98 return T->getTypeID() == IntegerTyID;
148 return T->getTypeID() == FunctionTyID;
212 return T->getTypeID() == ArrayTyID ||
213 T->getTypeID() == StructTyID ||
214 T->getTypeID() == VectorTyID;
358 return T->getTypeID() == StructTyID;
403 return T->getTypeID() == ArrayTyID || T->getTypeID() == VectorTyID;
423 return T->getTypeID() == ArrayTyID;
489 switch(VTy->getElementType()->getTypeID()) {
[all...]
H A DDataLayout.h626 switch (Ty->getTypeID()) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsOs16.cpp51 switch (RetType->getTypeID()) {
60 switch (Arg.getType()->getTypeID()) {
H A DMips16HardFloat.cpp71 switch (T->getTypeID()) {
111 TypeID ArgTypeID = F.getFunctionType()->getParamType(0)->getTypeID();
122 TypeID ArgTypeID0 = F.getFunctionType()->getParamType(0)->getTypeID();
123 TypeID ArgTypeID1 = F.getFunctionType()->getParamType(1)->getTypeID();
159 switch (ArgType->getTypeID()) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp73 static char getTypeID(Type *Ty) { function
74 switch (Ty->getTypeID()) {
105 ExtName += getTypeID(FT->getReturnType());
107 ExtName += getTypeID(T);
124 switch (Ty->getTypeID()) {
145 switch (Ty->getTypeID()) {
233 if (RetTy->getTypeID() != Type::VoidTyID)
236 switch (RetTy->getTypeID()) {
H A DExecution.cpp50 switch (Ty->getTypeID()) {
110 switch (Ty->getTypeID()) {
121 switch (Ty->getTypeID()) {
132 switch (Ty->getTypeID()) {
143 switch (Ty->getTypeID()) {
154 switch (Ty->getTypeID()) {
194 switch (Ty->getTypeID()) {
208 switch (Ty->getTypeID()) {
222 switch (Ty->getTypeID()) {
236 switch (Ty->getTypeID()) {
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWindowsResourceDumper.cpp62 printResourceTypeName(Ref.getTypeID(), OS);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DType.cpp76 if (Ty->getTypeID() == Type::X86_MMXTyID &&
81 if (this->getTypeID() == Type::X86_MMXTyID)
116 switch (getTypeID()) {
142 if (getTypeID() == HalfTyID) return 11;
143 if (getTypeID() == FloatTyID) return 24;
144 if (getTypeID() == DoubleTyID) return 53;
145 if (getTypeID() == X86_FP80TyID) return 64;
146 if (getTypeID() == FP128TyID) return 113;
147 assert(getTypeID() == PPC_FP128TyID && "unknown fp type");
H A DConstants.cpp319 switch (Ty->getTypeID()) {
1367 switch (Ty->getTypeID()) {
1738 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1739 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1752 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1753 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1766 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1767 bool toVec = Ty->getTypeID() == Type::VectorTyID;
1780 bool fromVec = C->getType()->getTypeID() == Type::VectorTyID;
1781 bool toVec = Ty->getTypeID()
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.cpp86 switch (RetTy->getTypeID()) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp143 if (ElemType->getTypeID() != Type::IntegerTyID)
412 (ArgType->getTypeID() != Type::VectorTyID)) {
434 } else if (ArgType->getTypeID() == Type::PointerTyID) {
481 } else if (ArgType->getTypeID() == Type::VectorTyID) {
H A DAMDGPUHSAMetadataStreamer.cpp131 switch (Ty->getTypeID()) {
163 switch (Ty->getTypeID()) {
577 switch (Ty->getTypeID()) {
609 switch (Ty->getTypeID()) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp777 Record.push_back(VE.getTypeID(Attr.getValueAsType()));
875 switch (T->getTypeID()) {
896 TypeVals.push_back(VE.getTypeID(PTy->getElementType()));
907 TypeVals.push_back(VE.getTypeID(FT->getReturnType()));
909 TypeVals.push_back(VE.getTypeID(FT->getParamType(i)));
920 TypeVals.push_back(VE.getTypeID(*I));
945 TypeVals.push_back(VE.getTypeID(AT->getElementType()));
955 TypeVals.push_back(VE.getTypeID(VT->getElementType()));
1173 MaxGlobalType = std::max(MaxGlobalType, VE.getTypeID(GV.getValueType()));
1272 Vals.push_back(VE.getTypeID(G
[all...]
H A DValueEnumerator.h167 unsigned getTypeID(Type *T) const { function in class:llvm::ValueEnumerator
H A DValueEnumerator.cpp530 return getTypeID(LHS.first->getType()) < getTypeID(RHS.first->getType());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp56 switch (unwrap(TyRef)->getTypeID()) {
87 switch (unwrap(TyRef)->getTypeID()) {
H A DExecutionEngine.cpp598 switch (C->getType()->getTypeID()) {
755 switch (Op0->getType()->getTypeID()) {
794 switch (CE->getOperand(0)->getType()->getTypeID()) {
889 switch (C->getType()->getTypeID()) {
1026 switch (Ty->getTypeID()) {
1076 switch (Ty->getTypeID()) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DValueTypes.cpp325 switch (Ty->getTypeID()) {
354 switch (Ty->getTypeID()) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp263 switch (Cnt->getType()->getTypeID()) {
340 if (Ty->getTypeID() == Type::VoidTyID)
1183 switch (ETy->getTypeID()) {
1283 switch (Ty->getTypeID()) {
1358 switch (ETy->getTypeID()) {
1696 if (Fp->getType()->getTypeID() == Type::FloatTyID) {
1700 } else if (Fp->getType()->getTypeID() == Type::DoubleTyID) {
1799 switch (CPV->getType()->getTypeID()) {
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DWindowsResource.h103 uint16_t getTypeID() const { return TypeID; } function in class:llvm::object::ResourceEntryRef
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionComparator.cpp419 if (int Res = cmpNumbers(TyL->getTypeID(), TyR->getTypeID()))
422 switch (TyL->getTypeID()) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp195 printResourceTypeName(Entry.getTypeID(), OS);
315 Entry.getTypeID() == /* RT_MANIFEST */ 24 &&
489 return addIDChild(Entry.getTypeID());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp297 switch (Ty->getTypeID()) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Linker/
H A DIRMover.cpp116 if (DstTy->getTypeID() != SrcTy->getTypeID())
300 switch (Ty->getTypeID()) {

Completed in 167 milliseconds

12