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

/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DPatternInit.cpp46 unsigned PtrWidth = CGM.getContext().getTargetInfo().getPointerWidth(
48 if (PtrWidth > 64)
50 llvm::Type *IntTy = llvm::IntegerType::get(CGM.getLLVMContext(), PtrWidth);
H A DCGDebugInfo.cpp2108 uint64_t PtrWidth = local
2114 unsigned VTableWidth = PtrWidth * VSlotCount;
2125 VPtrTy = DBuilder.createPointerType(VTableType, PtrWidth);
H A DTargetInfo.cpp7909 unsigned PtrWidth = getTarget().getPointerWidth(0);
7913 (Ty->isPointerType() && PtrWidth < SlotSizeInBits)) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp32 uint64_t PtrWidth; member in class:__anon2277::WalkAST
40 return (ASTC.getTypeSize(T) == PtrWidth);
75 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {}
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DSignals.cpp100 unsigned PtrWidth = 2 + 2 * sizeof(void *); local
101 return format_hex((uint64_t)PC, PtrWidth);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp742 uint32_t PtrWidth = DL.getTypeSizeInBits(Op0->getType()); local
743 assert(PtrWidth <= 64 && "Bad pointer width");
744 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
751 uint32_t PtrWidth = DL.getTypeSizeInBits(CE->getType()); local
752 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DRecordLayoutBuilder.cpp1041 CharUnits PtrWidth = local
1047 setSize(getSize() + PtrWidth);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp1341 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType()); local
1342 if (PtrWidth < InWidth) {
1345 APInt::getLowBitsSet(InWidth, PtrWidth));
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp6915 uint64_t PtrWidth = S.Context.getTargetInfo().getPointerWidth(0); local
6916 if (PtrWidth == 32) {
6921 } else if (PtrWidth == 64 && Attrs.count(attr::Ptr32)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp9570 unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType());
9571 KnownBits Known(PtrWidth);

Completed in 317 milliseconds