Searched refs:OrigType (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGPointerAuth.cpp | 206 auto *OrigType = Value->getType(); in emitPointerAuthResignCall() local 223 Value = Builder.CreateIntToPtr(Value, OrigType); in emitPointerAuthResignCall()
|
H A D | CodeGenFunction.cpp | 3100 auto OrigType = Pointer->getType(); in EmitPointerAuthCommon() local 3108 Pointer = CGF.Builder.CreateIntToPtr(Pointer, OrigType); in EmitPointerAuthCommon() 3128 auto OrigType = Pointer->getType(); in EmitStrip() local 3131 return CGF.Builder.CreateIntToPtr(Pointer, OrigType); in EmitStrip()
|
H A D | CGOpenMPRuntime.cpp | 8644 const Type *OrigType = BaseType->getPointeeOrArrayElementType(); in generateInfoForCapture() local 8645 while (BaseType != OrigType) { in generateInfoForCapture() 8646 BaseType = OrigType->getCanonicalTypeInternal().getTypePtr(); in generateInfoForCapture() 8647 OrigType = BaseType->getPointeeOrArrayElementType(); in generateInfoForCapture()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXISelDAGToDAG.cpp | 1305 EVT OrigType = N->getValueType(0); in tryLDGLDU() local 1313 if ((EltVT == MVT::f16 && OrigType == MVT::v2f16) || in tryLDGLDU() 1314 (EltVT == MVT::bf16 && OrigType == MVT::v2bf16) || in tryLDGLDU() 1315 (EltVT == MVT::i16 && OrigType == MVT::v2i16)) { in tryLDGLDU() 1317 EltVT = OrigType; in tryLDGLDU() 1319 } else if (OrigType == MVT::v4i8) { in tryLDGLDU() 1320 EltVT = OrigType; in tryLDGLDU() 1658 if (OrigType != EltVT && in tryLDGLDU() 1659 (LdNode || (OrigType.isFloatingPoint() && EltVT.isFloatingPoint()))) { in tryLDGLDU() 1664 GetConvertOpcode(OrigType.getSimpleVT(), EltVT.getSimpleVT(), LdNode); in tryLDGLDU() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaAPINotes.cpp | 350 QualType OrigType, in checkAPINotesReplacementType() argument 352 if (S.Context.getTypeSize(OrigType) != in checkAPINotesReplacementType() 355 << ReplacementType << OrigType; in checkAPINotesReplacementType()
|
H A D | SemaTemplate.cpp | 3073 QualType OrigType = Converted[1].getAsType(); in checkBuiltinTemplateIdType() local 3076 if (!OrigType->isDependentType() && !OrigType->isIntegralType(Context)) { in checkBuiltinTemplateIdType() 3091 TemplateArgumentLoc(TemplateArgument(OrigType), in checkBuiltinTemplateIdType() 3093 OrigType, TemplateArgs[1].getLocation()))); in checkBuiltinTemplateIdType() 3099 TemplateArgument TA(Context, I, OrigType); in checkBuiltinTemplateIdType() 3101 TA, OrigType, TemplateArgs[2].getLocation())); in checkBuiltinTemplateIdType()
|
H A D | SemaOpenMP.cpp | 18619 QualType OrigType = Type; in actOnOMPReductionKindClause() local 18620 if (auto *ComplexTy = OrigType->getAs<ComplexType>()) in actOnOMPReductionKindClause() 18633 if (Init && OrigType->isAnyComplexType()) { in actOnOMPReductionKindClause() 18635 auto *Im = new (Context) ImaginaryLiteral(Init, OrigType); in actOnOMPReductionKindClause() 18638 Type = OrigType; in actOnOMPReductionKindClause()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineAndOrXor.cpp | 3200 Type *OrigType = A->getType(); in matchSelectFromAndOr() local 3223 return Builder.CreateBitCast(Select, OrigType); in matchSelectFromAndOr()
|