Searched refs:IITDescriptor (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/VMCore/ |
D | Function.cpp | 398 SmallVectorImpl<Intrinsic::IITDescriptor> &OutputTable) { in DecodeIITType() 405 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Void, 0)); in DecodeIITType() 408 OutputTable.push_back(IITDescriptor::get(IITDescriptor::MMX, 0)); in DecodeIITType() 411 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Metadata, 0)); in DecodeIITType() 414 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Float, 0)); in DecodeIITType() 417 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Double, 0)); in DecodeIITType() 420 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 1)); in DecodeIITType() 423 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 8)); in DecodeIITType() 426 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer,16)); in DecodeIITType() 429 OutputTable.push_back(IITDescriptor::get(IITDescriptor::Integer, 32)); in DecodeIITType() [all …]
|
D | Verifier.cpp | 298 ArrayRef<Intrinsic::IITDescriptor> &Infos, 1729 ArrayRef<Intrinsic::IITDescriptor> &Infos, in VerifyIntrinsicType() 1735 IITDescriptor D = Infos.front(); in VerifyIntrinsicType() 1739 case IITDescriptor::Void: return !Ty->isVoidTy(); in VerifyIntrinsicType() 1740 case IITDescriptor::MMX: return !Ty->isX86_MMXTy(); in VerifyIntrinsicType() 1741 case IITDescriptor::Metadata: return !Ty->isMetadataTy(); in VerifyIntrinsicType() 1742 case IITDescriptor::Float: return !Ty->isFloatTy(); in VerifyIntrinsicType() 1743 case IITDescriptor::Double: return !Ty->isDoubleTy(); in VerifyIntrinsicType() 1744 case IITDescriptor::Integer: return !Ty->isIntegerTy(D.Integer_Width); in VerifyIntrinsicType() 1745 case IITDescriptor::Vector: { in VerifyIntrinsicType() [all …]
|
/external/llvm/include/llvm/ |
D | Intrinsics.h | 80 struct IITDescriptor { struct 113 static IITDescriptor get(IITDescriptorKind K, unsigned Field) { in get() argument 114 IITDescriptor Result = { K, { Field } }; in get() 122 void getIntrinsicInfoTableEntries(ID id, SmallVectorImpl<IITDescriptor> &T);
|