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

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp32 uint64_t PtrWidth; member in class:__anon3446::WalkAST
40 return (ASTC.getTypeSize(T) == PtrWidth);
76 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {}
/freebsd-9.3-release/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp681 uint32_t PtrWidth = TD->getTypeSizeInBits(Op0->getType()); local
682 assert(PtrWidth <= 64 && "Bad pointer width");
683 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
690 uint32_t PtrWidth = TD->getTypeSizeInBits(CE->getType()); local
691 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DConstantFolding.cpp984 unsigned PtrWidth = TD->getPointerTypeSizeInBits(CE->getType()); local
985 if (PtrWidth < InWidth) {
988 APInt::getLowBitsSet(InWidth, PtrWidth));
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DRecordLayoutBuilder.cpp1025 CharUnits PtrWidth = local
1031 setSize(getSize() + PtrWidth);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DTargetInfo.cpp4923 unsigned PtrWidth = getTarget().getPointerWidth(0);
4924 llvm::IntegerType *IntTy = (PtrWidth == 32) ? CGF.Int32Ty : CGF.Int64Ty;
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6378 unsigned PtrWidth = TLI->getPointerTypeSizeInBits(GV->getType()); local
6379 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0);

Completed in 114 milliseconds