Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Checkers/
DObjCContainersASTChecker.cpp33 uint64_t PtrWidth; member in __anon8b1e948a0111::WalkAST
41 return (ASTC.getTypeSize(T) == PtrWidth); in isPointerSize()
76 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {} in WalkAST()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DSignals.cpp61 unsigned PtrWidth = 2 + 2 * sizeof(void *); in format_ptr() local
62 return format_hex((uint64_t)PC, PtrWidth); in format_ptr()
/external/llvm/lib/Support/
DSignals.cpp61 unsigned PtrWidth = 2 + 2 * sizeof(void *); in format_ptr() local
62 return format_hex((uint64_t)PC, PtrWidth); in format_ptr()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DSignals.cpp99 unsigned PtrWidth = 2 + 2 * sizeof(void *); in format_ptr() local
100 return format_hex((uint64_t)PC, PtrWidth); in format_ptr()
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
DExecutionEngine.cpp637 uint32_t PtrWidth = TD->getPointerSizeInBits(); in getConstantValue() local
638 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue()
643 uint32_t PtrWidth = TD->getPointerSizeInBits(); in getConstantValue() local
644 if (PtrWidth != GV.IntVal.getBitWidth()) in getConstantValue()
645 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp735 uint32_t PtrWidth = DL.getTypeSizeInBits(Op0->getType()); in getConstantValue() local
736 assert(PtrWidth <= 64 && "Bad pointer width"); in getConstantValue()
737 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue()
744 uint32_t PtrWidth = DL.getTypeSizeInBits(CE->getType()); in getConstantValue() local
745 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp738 uint32_t PtrWidth = DL.getTypeSizeInBits(Op0->getType()); in getConstantValue() local
739 assert(PtrWidth <= 64 && "Bad pointer width"); in getConstantValue()
740 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue()
747 uint32_t PtrWidth = DL.getTypeSizeInBits(CE->getType()); in getConstantValue() local
748 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
/external/llvm/lib/Analysis/
DConstantFolding.cpp1194 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType()); in ConstantFoldCastOperand() local
1195 if (PtrWidth < InWidth) { in ConstantFoldCastOperand()
1198 APInt::getLowBitsSet(InWidth, PtrWidth)); in ConstantFoldCastOperand()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DConstantFolding.cpp1286 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType()); in ConstantFoldCastOperand() local
1287 if (PtrWidth < InWidth) { in ConstantFoldCastOperand()
1290 APInt::getLowBitsSet(InWidth, PtrWidth)); in ConstantFoldCastOperand()
/external/clang/lib/AST/
DRecordLayoutBuilder.cpp1020 CharUnits PtrWidth = in LayoutNonVirtualBases() local
1026 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp7025 unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType()); in InferPtrAlignment() local
7026 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0); in InferPtrAlignment()
/external/clang/lib/CodeGen/
DTargetInfo.cpp6482 unsigned PtrWidth = getTarget().getPointerWidth(0); in EmitVAArg() local
6486 (Ty->isPointerType() && PtrWidth < SlotSizeInBits)) { in EmitVAArg()