Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
HDObjCContainersASTChecker.cpp32 uint64_t PtrWidth; member in __anonea62cbe20111::WalkAST
40 return (ASTC.getTypeSize(T) == PtrWidth); in isPointerSize()
76 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {} in WalkAST()
/trueos/contrib/llvm/lib/ExecutionEngine/
HDExecutionEngine.cpp681 uint32_t PtrWidth = TD->getTypeSizeInBits(Op0->getType()); in getConstantValue() local
682 assert(PtrWidth <= 64 && "Bad pointer width"); in getConstantValue()
683 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue()
690 uint32_t PtrWidth = TD->getTypeSizeInBits(CE->getType()); in getConstantValue() local
691 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
/trueos/contrib/llvm/lib/Analysis/
HDConstantFolding.cpp984 unsigned PtrWidth = TD->getPointerTypeSizeInBits(CE->getType()); in ConstantFoldInstOperands() local
985 if (PtrWidth < InWidth) { in ConstantFoldInstOperands()
988 APInt::getLowBitsSet(InWidth, PtrWidth)); in ConstantFoldInstOperands()
/trueos/contrib/llvm/tools/clang/lib/AST/
HDRecordLayoutBuilder.cpp1025 CharUnits PtrWidth = in LayoutNonVirtualBases() local
1031 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
/trueos/contrib/llvm/lib/CodeGen/SelectionDAG/
HDSelectionDAG.cpp6386 unsigned PtrWidth = TLI->getPointerTypeSizeInBits(GV->getType()); in InferPtrAlignment() local
6387 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0); in InferPtrAlignment()
/trueos/contrib/llvm/tools/clang/lib/CodeGen/
HDTargetInfo.cpp5021 unsigned PtrWidth = getTarget().getPointerWidth(0); in EmitVAArg() local
5022 llvm::IntegerType *IntTy = (PtrWidth == 32) ? CGF.Int32Ty : CGF.Int64Ty; in EmitVAArg()