Searched refs:OrigTy (Results 1 - 14 of 14) 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.cpp554 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType(); local
555 assert(OrigTy->isSized());
556 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
H A DAddressSanitizer.cpp754 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType(); local
756 assert(OrigTy->isSized());
757 uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy);
H A DMemorySanitizer.cpp753 Type *getShadowTy(Type *OrigTy) { argument
754 if (!OrigTy->isSized()) {
759 if (IntegerType *IT = dyn_cast<IntegerType>(OrigTy))
761 if (VectorType *VT = dyn_cast<VectorType>(OrigTy)) {
766 if (StructType *ST = dyn_cast<StructType>(OrigTy)) {
774 uint32_t TypeSize = MS.DL->getTypeSizeInBits(OrigTy);
/external/clang/lib/CodeGen/
H A DCGExpr.cpp1364 llvm::Type *OrigTy = CGM.getTypes().ConvertType(LV.getType()); local
1365 llvm::Type *Ty = OrigTy;
1366 if (OrigTy->isPointerTy())
1367 Ty = CGM.getTypes().getDataLayout().getIntPtrType(OrigTy);
1372 if (OrigTy->isPointerTy())
1373 Call = Builder.CreateIntToPtr(Call, OrigTy);
1625 llvm::Type *OrigTy = CGM.getTypes().ConvertType(Dst.getType()); local
1626 llvm::Type *Ty = OrigTy;
1627 if (OrigTy->isPointerTy())
1628 Ty = CGM.getTypes().getDataLayout().getIntPtrType(OrigTy);
[all...]
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp1299 Type *OrigTy; member in class:__anon25735::TypePromotionTransaction::TypeMutator
1304 : TypePromotionAction(Inst), OrigTy(Inst->getType()) {
1312 DEBUG(dbgs() << "Undo: MutateType: " << *Inst << " with " << *OrigTy variable
1314 Inst->mutateType(OrigTy);
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.h421 MVT getRegVT(MVT VT, const Type *OrigTy, const SDNode *CallNode,
H A DMipsISelLowering.cpp3517 MVT MipsTargetLowering::MipsCC::getRegVT(MVT VT, const Type *OrigTy, argument
3524 if (originalTypeIsF128(OrigTy, CallNode)) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp729 EVT OrigTy = cast<VTSDNode>(Op->getOperand(1))->getVT(); local
732 unsigned OrigBW = OrigTy.getScalarType().getSizeInBits();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp346 Type *OrigTy = V->getType();
373 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
399 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
H A DInstCombineShifts.cpp92 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp5700 const EVT &OrigTy,
5703 // The vector originally had a size of OrigTy. It was then extended to ExtTy.
5704 // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
5707 if (OrigTy.getSizeInBits() >= 64)
5711 EVT NewVT = getExtensionTo64Bits(OrigTy);
5699 AddRequiredExtensionForVMULL(SDValue N, SelectionDAG &DAG, const EVT &OrigTy, const EVT &ExtTy, unsigned ExtOpcode) argument
/external/clang/lib/Sema/
H A DSemaExpr.cpp4370 QualType OrigTy = Param->getOriginalType();
4372 const ArrayType *AT = Context.getAsArrayType(OrigTy);

Completed in 3702 milliseconds