Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Checkers/
DObjCContainersASTChecker.cpp32 uint64_t PtrWidth; member in __anon016c0e870111::WalkAST
40 return (ASTC.getTypeSize(T) == PtrWidth); in isPointerSize()
76 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {} in WalkAST()
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp647 uint32_t PtrWidth = TD->getTypeSizeInBits(Op0->getType()); in getConstantValue() local
648 assert(PtrWidth <= 64 && "Bad pointer width"); in getConstantValue()
649 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue()
656 uint32_t PtrWidth = TD->getTypeSizeInBits(CE->getType()); in getConstantValue() local
657 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
/external/clang/lib/AST/
DRecordLayoutBuilder.cpp1048 CharUnits PtrWidth = in LayoutNonVirtualBases() local
1054 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
1096 CharUnits PtrWidth = in LayoutNonVirtualBases() local
1118 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
/external/clang/lib/CodeGen/
DTargetInfo.cpp4561 unsigned PtrWidth = getContext().getTargetInfo().getPointerWidth(0); in EmitVAArg() local
4562 llvm::IntegerType *IntTy = (PtrWidth == 32) ? CGF.Int32Ty : CGF.Int64Ty; in EmitVAArg()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp6215 unsigned PtrWidth = TLI.getPointerTy().getSizeInBits(); in InferPtrAlignment() local
6216 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0); in InferPtrAlignment()