Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DPatternInit.cpp46 unsigned PtrWidth = CGM.getContext().getTargetInfo().getPointerWidth( in initializationPatternFor() local
48 if (PtrWidth > 64) in initializationPatternFor()
50 llvm::Type *IntTy = llvm::IntegerType::get(CGM.getLLVMContext(), PtrWidth); in initializationPatternFor()
DCGDebugInfo.cpp2167 uint64_t PtrWidth = in CollectVTableInfo() local
2173 unsigned VTableWidth = PtrWidth * VSlotCount; in CollectVTableInfo()
2184 VPtrTy = DBuilder.createPointerType(VTableType, PtrWidth); in CollectVTableInfo()
DTargetInfo.cpp8056 unsigned PtrWidth = getTarget().getPointerWidth(0); in EmitVAArg() local
8060 (Ty->isPointerType() && PtrWidth < SlotSizeInBits)) { in EmitVAArg()
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DObjCContainersASTChecker.cpp32 uint64_t PtrWidth; member in __anonee1fc1570111::WalkAST
40 return (ASTC.getTypeSize(T) == PtrWidth); in isPointerSize()
75 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {} in WalkAST()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
DSignals.cpp129 unsigned PtrWidth = 2 + 2 * sizeof(void *); in format_ptr() local
130 return format_hex((uint64_t)PC, PtrWidth); in format_ptr()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp731 uint32_t PtrWidth = DL.getTypeSizeInBits(Op0->getType()); in getConstantValue() local
732 assert(PtrWidth <= 64 && "Bad pointer width"); in getConstantValue()
733 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue()
740 uint32_t PtrWidth = DL.getTypeSizeInBits(CE->getType()); in getConstantValue() local
741 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DConstantFolding.cpp1384 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType()); in ConstantFoldCastOperand() local
1385 if (PtrWidth < InWidth) { in ConstantFoldCastOperand()
1388 APInt::getLowBitsSet(InWidth, PtrWidth)); in ConstantFoldCastOperand()
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DRecordLayoutBuilder.cpp1062 CharUnits PtrWidth = in LayoutNonVirtualBases() local
1072 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaType.cpp7063 uint64_t PtrWidth = S.Context.getTargetInfo().getPointerWidth(0); in handleMSPointerTypeQualifierAttr() local
7064 if (PtrWidth == 32) { in handleMSPointerTypeQualifierAttr()
7069 } else if (PtrWidth == 64 && Attrs[attr::Ptr32]) { in handleMSPointerTypeQualifierAttr()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp10155 unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType()); in InferPtrAlign() local
10156 KnownBits Known(PtrWidth); in InferPtrAlign()