Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Checkers/
DCastToStructChecker.cpp38 QualType OrigTy = Ctx.getCanonicalType(E->getType()); in checkPreStmt() local
41 const PointerType *OrigPTy = dyn_cast<PointerType>(OrigTy.getTypePtr()); in checkPreStmt()
/external/clang/lib/Edit/
DRewriteObjCFoundationAPI.cpp992 QualType OrigTy = OrigArg->getType(); in rewriteToNumericBoxedExpression() local
994 uint64_t OrigTySize = Ctx.getTypeSize(OrigTy); in rewriteToNumericBoxedExpression()
1007 if (MK == NSAPI::NSNumberWithBool && OrigTy->isBooleanType()) in rewriteToNumericBoxedExpression()
1014 if (OrigTy->getAs<EnumType>() || isEnumConstant(OrigArg)) in rewriteToNumericBoxedExpression()
1016 if ((MK==NSAPI::NSNumberWithInteger) == OrigTy->isSignedIntegerType() && in rewriteToNumericBoxedExpression()
1087 Diags.Report(Msg->getExprLoc(), diagID) << OrigTy << FinalTy in rewriteToNumericBoxedExpression()
1117 QualType OrigTy = OrigArg->getType(); in doRewriteToUTF8StringBoxedExpressionHelper() local
1118 if (OrigTy->isArrayType()) in doRewriteToUTF8StringBoxedExpressionHelper()
1119 OrigTy = Ctx.getArrayDecayedType(OrigTy); in doRewriteToUTF8StringBoxedExpressionHelper()
1128 if (const PointerType *PT = OrigTy->getAs<PointerType>()) { in doRewriteToUTF8StringBoxedExpressionHelper()
/external/llvm/lib/Transforms/Instrumentation/
DThreadSanitizer.cpp511 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType(); in getMemoryAccessFuncIndex() local
512 assert(OrigTy->isSized()); in getMemoryAccessFuncIndex()
513 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy); in getMemoryAccessFuncIndex()
DMemorySanitizer.cpp573 Type *getShadowTy(Type *OrigTy) { in getShadowTy()
574 if (!OrigTy->isSized()) { in getShadowTy()
579 if (IntegerType *IT = dyn_cast<IntegerType>(OrigTy)) in getShadowTy()
581 if (VectorType *VT = dyn_cast<VectorType>(OrigTy)) { in getShadowTy()
586 if (StructType *ST = dyn_cast<StructType>(OrigTy)) { in getShadowTy()
594 uint32_t TypeSize = MS.TD->getTypeSizeInBits(OrigTy); in getShadowTy()
DAddressSanitizer.cpp645 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType(); in instrumentMop() local
647 assert(OrigTy->isSized()); in instrumentMop()
648 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy); in instrumentMop()
/external/llvm/lib/Target/Mips/
DMipsISelLowering.h285 MVT getRegVT(MVT VT, const Type *OrigTy, const SDNode *CallNode,
DMipsISelLowering.cpp3562 MVT MipsTargetLowering::MipsCC::getRegVT(MVT VT, const Type *OrigTy, in getRegVT() argument
3569 if (originalTypeIsF128(OrigTy, CallNode)) { in getRegVT()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorOps.cpp641 EVT OrigTy = cast<VTSDNode>(Op->getOperand(1))->getVT(); in ExpandSEXTINREG() local
644 unsigned OrigBW = OrigTy.getScalarType().getSizeInBits(); in ExpandSEXTINREG()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp343 Type *OrigTy = V->getType(); in CanEvaluateTruncated() local
370 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits(); in CanEvaluateTruncated()
396 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits(); in CanEvaluateTruncated()
DInstCombineShifts.cpp90 uint32_t OrigBitWidth = OrigTy->getScalarSizeInBits(); in CanEvaluateShifted()
/external/llvm/lib/Target/ARM/
DARMISelLowering.cpp5123 const EVT &OrigTy, in AddRequiredExtensionForVMULL() argument
5130 if (OrigTy.getSizeInBits() >= 64) in AddRequiredExtensionForVMULL()
5134 MVT::SimpleValueType OrigSimpleTy = OrigTy.getSimpleVT().SimpleTy; in AddRequiredExtensionForVMULL()
/external/clang/lib/Sema/
DSemaExpr.cpp3885 QualType OrigTy = Param->getOriginalType(); in CheckStaticArrayArgument() local
3887 const ArrayType *AT = Context.getAsArrayType(OrigTy); in CheckStaticArrayArgument()