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 __anon9624e1610111::WalkAST
41 return (ASTC.getTypeSize(T) == PtrWidth); in isPointerSize()
77 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {} in WalkAST()
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp717 uint32_t PtrWidth = DL->getTypeSizeInBits(Op0->getType()); in getConstantValue() local
718 assert(PtrWidth <= 64 && "Bad pointer width"); in getConstantValue()
719 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue()
726 uint32_t PtrWidth = DL->getTypeSizeInBits(CE->getType()); in getConstantValue() local
727 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
/external/llvm/lib/Analysis/
DConstantFolding.cpp1036 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType()); in ConstantFoldInstOperands() local
1037 if (PtrWidth < InWidth) { in ConstantFoldInstOperands()
1040 APInt::getLowBitsSet(InWidth, PtrWidth)); in ConstantFoldInstOperands()
/external/clang/lib/AST/
DRecordLayoutBuilder.cpp1024 CharUnits PtrWidth = in LayoutNonVirtualBases() local
1030 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
/external/clang/lib/CodeGen/
DTargetInfo.cpp5745 unsigned PtrWidth = getTarget().getPointerWidth(0); in EmitVAArg() local
5748 (Ty->isPointerType() && PtrWidth < SlotSizeInBits)) { in EmitVAArg()
5760 llvm::IntegerType *IntTy = (PtrWidth == 32) ? CGF.Int32Ty : CGF.Int64Ty; in EmitVAArg()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp6701 unsigned PtrWidth = TLI->getPointerTypeSizeInBits(GV->getType()); in InferPtrAlignment() local
6702 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0); in InferPtrAlignment()