Home
last modified time | relevance | path

Searched refs:PtrWidth (Results 1 – 6 of 6) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DObjCContainersASTChecker.cpp33 uint64_t PtrWidth; member in __anondddf11580111::WalkAST
41 return (ASTC.getTypeSize(T) == PtrWidth); in isPointerSize()
77 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {} in WalkAST()
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp718 uint32_t PtrWidth = DL->getTypeSizeInBits(Op0->getType()); in getConstantValue() local
719 assert(PtrWidth <= 64 && "Bad pointer width"); in getConstantValue()
720 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue()
727 uint32_t PtrWidth = DL->getTypeSizeInBits(CE->getType()); in getConstantValue() local
728 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
/external/llvm/lib/Analysis/
DConstantFolding.cpp1039 unsigned PtrWidth = TD->getPointerTypeSizeInBits(CE->getType()); in ConstantFoldInstOperands() local
1040 if (PtrWidth < InWidth) { in ConstantFoldInstOperands()
1043 APInt::getLowBitsSet(InWidth, PtrWidth)); in ConstantFoldInstOperands()
/external/clang/lib/AST/
DRecordLayoutBuilder.cpp1003 CharUnits PtrWidth = in LayoutNonVirtualBases() local
1009 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp6527 unsigned PtrWidth = TLI->getPointerTypeSizeInBits(GV->getType()); in InferPtrAlignment() local
6528 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0); in InferPtrAlignment()
/external/clang/lib/CodeGen/
DTargetInfo.cpp5380 unsigned PtrWidth = getTarget().getPointerWidth(0); in EmitVAArg() local
5381 llvm::IntegerType *IntTy = (PtrWidth == 32) ? CGF.Int32Ty : CGF.Int64Ty; in EmitVAArg()