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

/external/clang/lib/StaticAnalyzer/Checkers/
H A DCastToStructChecker.cpp38 QualType OrigTy = Ctx.getCanonicalType(E->getType()); local
41 const PointerType *OrigPTy = dyn_cast<PointerType>(OrigTy.getTypePtr());
/external/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() &&
1088 Diags.Report(Msg->getExprLoc(), diagID) << OrigTy << FinalTy
1118 QualType OrigTy = OrigArg->getType(); local
1119 if (OrigTy->isArrayType())
1120 OrigTy = Ctx.getArrayDecayedType(OrigTy);
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp438 Type *OrigTy = cast<PointerType>(Addr->getType())->getElementType(); local
439 const uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy);
582 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType(); local
583 assert(OrigTy->isSized());
584 uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy);
H A DMemorySanitizer.cpp822 Type *getShadowTy(Type *OrigTy) { argument
823 if (!OrigTy->isSized()) {
828 if (IntegerType *IT = dyn_cast<IntegerType>(OrigTy))
831 if (VectorType *VT = dyn_cast<VectorType>(OrigTy)) {
836 if (ArrayType *AT = dyn_cast<ArrayType>(OrigTy)) {
840 if (StructType *ST = dyn_cast<StructType>(OrigTy)) {
848 uint32_t TypeSize = DL.getTypeSizeInBits(OrigTy);
/external/clang/lib/CodeGen/
H A DCGExpr.cpp1449 llvm::Type *OrigTy = CGM.getTypes().ConvertType(LV.getType()); local
1450 llvm::Type *Ty = OrigTy;
1451 if (OrigTy->isPointerTy())
1452 Ty = CGM.getTypes().getDataLayout().getIntPtrType(OrigTy);
1458 if (OrigTy->isPointerTy())
1459 Call = Builder.CreateIntToPtr(Call, OrigTy);
1712 llvm::Type *OrigTy = CGM.getTypes().ConvertType(Dst.getType()); local
1713 llvm::Type *Ty = OrigTy;
1714 if (OrigTy->isPointerTy())
1715 Ty = CGM.getTypes().getDataLayout().getIntPtrType(OrigTy);
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp769 EVT OrigTy = cast<VTSDNode>(Op->getOperand(1))->getVT(); local
772 unsigned OrigBW = OrigTy.getScalarType().getSizeInBits();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp341 Type *OrigTy = V->getType();
368 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
394 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
H A DInstCombineShifts.cpp92 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp1834 Type *OrigTy; member in class:__anon10409::TypePromotionTransaction::TypeMutator
1839 : TypePromotionAction(Inst), OrigTy(Inst->getType()) {
1847 DEBUG(dbgs() << "Undo: MutateType: " << *Inst << " with " << *OrigTy variable
1849 Inst->mutateType(OrigTy);
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1744 const EVT &OrigTy,
1747 // The vector originally had a size of OrigTy. It was then extended to ExtTy.
1748 // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
1751 if (OrigTy.getSizeInBits() >= 64)
1755 EVT NewVT = getExtensionTo64Bits(OrigTy);
1743 addRequiredExtensionForVectorMULL(SDValue N, SelectionDAG &DAG, const EVT &OrigTy, const EVT &ExtTy, unsigned ExtOpcode) argument
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp5773 const EVT &OrigTy,
5776 // The vector originally had a size of OrigTy. It was then extended to ExtTy.
5777 // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
5780 if (OrigTy.getSizeInBits() >= 64)
5784 EVT NewVT = getExtensionTo64Bits(OrigTy);
5772 AddRequiredExtensionForVMULL(SDValue N, SelectionDAG &DAG, const EVT &OrigTy, const EVT &ExtTy, unsigned ExtOpcode) argument
/external/clang/lib/Sema/
H A DSemaExpr.cpp4517 QualType OrigTy = Param->getOriginalType();
4519 const ArrayType *AT = Context.getAsArrayType(OrigTy);

Completed in 1021 milliseconds