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() &&
1087 Diags.Report(Msg->getExprLoc(), diagID) << OrigTy << FinalTy
1117 QualType OrigTy = OrigArg->getType(); local
1118 if (OrigTy->isArrayType())
1119 OrigTy = Ctx.getArrayDecayedType(OrigTy);
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp573 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType(); local
574 assert(OrigTy->isSized());
575 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
H A DMemorySanitizer.cpp584 Type *getShadowTy(Type *OrigTy) { argument
585 if (!OrigTy->isSized()) {
590 if (IntegerType *IT = dyn_cast<IntegerType>(OrigTy))
592 if (VectorType *VT = dyn_cast<VectorType>(OrigTy)) {
597 if (StructType *ST = dyn_cast<StructType>(OrigTy)) {
605 uint32_t TypeSize = MS.TD->getTypeSizeInBits(OrigTy);
H A DAddressSanitizer.cpp664 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType(); local
666 assert(OrigTy->isSized());
667 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.h313 MVT getRegVT(MVT VT, const Type *OrigTy, const SDNode *CallNode,
H A DMipsISelLowering.cpp3328 MVT MipsTargetLowering::MipsCC::getRegVT(MVT VT, const Type *OrigTy, argument
3335 if (originalTypeIsF128(OrigTy, CallNode)) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp641 EVT OrigTy = cast<VTSDNode>(Op->getOperand(1))->getVT(); local
644 unsigned OrigBW = OrigTy.getScalarType().getSizeInBits();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp343 Type *OrigTy = V->getType();
370 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
396 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
H A DInstCombineShifts.cpp90 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits();
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp5395 const EVT &OrigTy,
5398 // The vector originally had a size of OrigTy. It was then extended to ExtTy.
5399 // We expect the ExtTy to be 128-bits total. If the OrigTy is less than
5402 if (OrigTy.getSizeInBits() >= 64)
5406 EVT NewVT = getExtensionTo64Bits(OrigTy);
5394 AddRequiredExtensionForVMULL(SDValue N, SelectionDAG &DAG, const EVT &OrigTy, const EVT &ExtTy, unsigned ExtOpcode) argument
/external/clang/lib/Sema/
H A DSemaExpr.cpp4221 QualType OrigTy = Param->getOriginalType();
4223 const ArrayType *AT = Context.getAsArrayType(OrigTy);

Completed in 515 milliseconds