Searched defs:PtrWidth (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/Support/
H A DSignals.cpp61 unsigned PtrWidth = 2 + 2 * sizeof(void *); local
62 return format_hex((uint64_t)PC, PtrWidth);
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DSignals.cpp61 unsigned PtrWidth = 2 + 2 * sizeof(void *); local
62 return format_hex((uint64_t)PC, PtrWidth);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp33 uint64_t PtrWidth; member in class:__anon2010::WalkAST
41 return (ASTC.getTypeSize(T) == PtrWidth);
76 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {}
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp735 uint32_t PtrWidth = DL.getTypeSizeInBits(Op0->getType()); local
736 assert(PtrWidth <= 64 && "Bad pointer width");
737 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
744 uint32_t PtrWidth = DL.getTypeSizeInBits(CE->getType()); local
745 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DExecutionEngine.cpp637 uint32_t PtrWidth = TD->getPointerSizeInBits(); local
638 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
643 uint32_t PtrWidth = TD->getPointerSizeInBits(); local
644 if (PtrWidth != GV.IntVal.getBitWidth())
645 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp1194 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType()); local
1195 if (PtrWidth < InWidth) {
1198 APInt::getLowBitsSet(InWidth, PtrWidth));
/external/clang/lib/AST/
H A DRecordLayoutBuilder.cpp1020 CharUnits PtrWidth = local
1026 setSize(getSize() + PtrWidth);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp7025 unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType()); local
7026 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0);

Completed in 1273 milliseconds