Searched refs:OrigTy (Results 1 - 14 of 14) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCastToStructChecker.cpp38 QualType OrigTy = Ctx.getCanonicalType(E->getType()); local
41 const PointerType *OrigPTy = dyn_cast<PointerType>(OrigTy.getTypePtr());
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Edit/
H A DRewriteObjCFoundationAPI.cpp992 QualType OrigTy = OrigArg->getType(); local
994 uint64_t OrigTySize = Ctx.getTypeSize(OrigTy);
1007 if (MK == NSAPI::NSNumberWithBool && OrigTy->isBooleanType())
1014 if (OrigTy->getAs<EnumType>() || isEnumConstant(OrigArg))
1016 if ((MK==NSAPI::NSNumberWithInteger) == OrigTy->isSignedIntegerType() &&
1091 Diags.Report(Msg->getExprLoc(), diagID) << OrigTy << FinalTy
1121 QualType OrigTy = OrigArg->getType(); local
1122 if (OrigTy->isArrayType())
1123 OrigTy = Ctx.getArrayDecayedType(OrigTy);
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp443 Type *OrigTy = cast<PointerType>(Addr->getType())->getElementType(); local
444 const uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy);
589 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType(); local
590 assert(OrigTy->isSized());
591 uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy);
H A DMemorySanitizer.cpp870 Type *getShadowTy(Type *OrigTy) { argument
871 if (!OrigTy->isSized()) {
876 if (IntegerType *IT = dyn_cast<IntegerType>(OrigTy))
879 if (VectorType *VT = dyn_cast<VectorType>(OrigTy)) {
884 if (ArrayType *AT = dyn_cast<ArrayType>(OrigTy)) {
888 if (StructType *ST = dyn_cast<StructType>(OrigTy)) {
896 uint32_t TypeSize = DL.getTypeSizeInBits(OrigTy);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExpr.cpp1550 llvm::Type *OrigTy = CGM.getTypes().ConvertType(LV.getType()); local
1551 llvm::Type *Ty = OrigTy;
1552 if (OrigTy->isPointerTy())
1553 Ty = CGM.getTypes().getDataLayout().getIntPtrType(OrigTy);
1559 if (OrigTy->isPointerTy())
1560 Call = Builder.CreateIntToPtr(Call, OrigTy);
1804 llvm::Type *OrigTy = CGM.getTypes().ConvertType(Dst.getType()); local
1805 llvm::Type *Ty = OrigTy;
1806 if (OrigTy->isPointerTy())
1807 Ty = CGM.getTypes().getDataLayout().getIntPtrType(OrigTy);
[all...]
H A DTargetInfo.cpp6198 QualType OrigTy) const {
6199 QualType Ty = OrigTy;
6231 Address Temp = CGF.CreateMemTemp(OrigTy, "vaarg.promotion-temp");
6235 llvm::Type *IntTy = (OrigTy->isIntegerType() ? Temp.getElementType()
6238 if (OrigTy->isPointerType())
H A DMicrosoftCXXABI.cpp2093 auto OrigTy = Ret.getType();
2111 return CGF.Builder.CreateBitCast(V, OrigTy);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp798 EVT OrigTy = cast<VTSDNode>(Op->getOperand(1))->getVT(); local
801 unsigned OrigBW = OrigTy.getScalarType().getSizeInBits();
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp340 Type *OrigTy = V->getType();
367 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
393 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
H A DInstCombineShifts.cpp92 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp2315 Type *OrigTy; member in class:__anon2445::TypePromotionTransaction::TypeMutator
2320 : TypePromotionAction(Inst), OrigTy(Inst->getType()) {
2328 DEBUG(dbgs() << "Undo: MutateType: " << *Inst << " with " << *OrigTy variable
2330 Inst->mutateType(OrigTy);
/freebsd-11.0-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp2036 const EVT &OrigTy,
2039 // The vector originally had a size of OrigTy. It was then extended to ExtTy.
2040 // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
2043 if (OrigTy.getSizeInBits() >= 64)
2047 EVT NewVT = getExtensionTo64Bits(OrigTy);
2035 addRequiredExtensionForVectorMULL(SDValue N, SelectionDAG &DAG, const EVT &OrigTy, const EVT &ExtTy, unsigned ExtOpcode) argument
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp6327 const EVT &OrigTy,
6330 // The vector originally had a size of OrigTy. It was then extended to ExtTy.
6331 // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
6334 if (OrigTy.getSizeInBits() >= 64)
6338 EVT NewVT = getExtensionTo64Bits(OrigTy);
6326 AddRequiredExtensionForVMULL(SDValue N, SelectionDAG &DAG, const EVT &OrigTy, const EVT &ExtTy, unsigned ExtOpcode) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp4825 QualType OrigTy = Param->getOriginalType();
4827 const ArrayType *AT = Context.getAsArrayType(OrigTy);

Completed in 304 milliseconds