Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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.cpp2304 uint64_t PtrWidth = in CollectVTableInfo() local
2310 unsigned VTableWidth = PtrWidth * VSlotCount; in CollectVTableInfo()
2321 VPtrTy = DBuilder.createPointerType(VTableType, PtrWidth); in CollectVTableInfo()
H A DTargetInfo.cpp8329 unsigned PtrWidth = getTarget().getPointerWidth(LangAS::Default); in EmitVAArg() local
8333 (Ty->isPointerType() && PtrWidth < SlotSizeInBits)) { in EmitVAArg()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp32 uint64_t PtrWidth; member in __anon01ea2c360111::WalkAST
40 return (ASTC.getTypeSize(T) == PtrWidth); in isPointerSize()
75 PtrWidth(ASTC.getTargetInfo().getPointerWidth(LangAS::Default)) {} in WalkAST()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/
H A 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()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DRecordLayoutBuilder.cpp1062 CharUnits PtrWidth = Context.toCharUnitsFromBits( in LayoutNonVirtualBases() local
1072 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaType.cpp7312 uint64_t PtrWidth = in handleMSPointerTypeQualifierAttr() local
7314 if (PtrWidth == 32) { in handleMSPointerTypeQualifierAttr()
7319 } else if (PtrWidth == 64 && Attrs[attr::Ptr32]) { in handleMSPointerTypeQualifierAttr()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp11547 unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType()); in InferPtrAlign() local
11548 KnownBits Known(PtrWidth); in InferPtrAlign()