Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DPatternInit.cpp46 unsigned PtrWidth = in initializationPatternFor() local
48 if (PtrWidth > 64) in initializationPatternFor()
50 llvm::Type *IntTy = llvm::IntegerType::get(CGM.getLLVMContext(), PtrWidth); in initializationPatternFor()
H A DCGDebugInfo.cpp2766 uint64_t PtrWidth = in CollectVTableInfo() local
2772 unsigned VTableWidth = PtrWidth * VSlotCount; in CollectVTableInfo()
2783 VPtrTy = DBuilder.createPointerType(VTableType, PtrWidth); in CollectVTableInfo()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp32 uint64_t PtrWidth; member in __anon92c36e3f0111::WalkAST
40 return (ASTC.getTypeSize(T) == PtrWidth); in isPointerSize()
75 PtrWidth(ASTC.getTargetInfo().getPointerWidth(LangAS::Default)) {} in WalkAST()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSignals.cpp135 unsigned PtrWidth = 2 + 2 * sizeof(void *); in format_ptr() local
136 return format_hex((uint64_t)PC, PtrWidth); in format_ptr()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DMips.cpp375 unsigned PtrWidth = getTarget().getPointerWidth(LangAS::Default); in EmitVAArg() local
379 (Ty->isPointerType() && PtrWidth < SlotSizeInBits)) { in EmitVAArg()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp742 uint32_t PtrWidth = DL.getTypeSizeInBits(Op0->getType()); in getConstantValue() local
743 assert(PtrWidth <= 64 && "Bad pointer width"); in getConstantValue()
744 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue()
751 uint32_t PtrWidth = DL.getTypeSizeInBits(CE->getType()); in getConstantValue() local
752 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DRecordLayoutBuilder.cpp1057 CharUnits PtrWidth = Context.toCharUnitsFromBits( in LayoutNonVirtualBases() local
1067 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp7082 uint64_t PtrWidth = in handleMSPointerTypeQualifierAttr() local
7084 if (PtrWidth == 32) { in handleMSPointerTypeQualifierAttr()
7089 } else if (PtrWidth == 64 && Attrs[attr::Ptr32]) { in handleMSPointerTypeQualifierAttr()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp13138 unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType()); in InferPtrAlign() local
13139 KnownBits Known(PtrWidth); in InferPtrAlign()