Searched refs:PtrWidth (Results 1 – 10 of 10) sorted by relevance
46 unsigned PtrWidth = CGM.getContext().getTargetInfo().getPointerWidth( in initializationPatternFor() local48 if (PtrWidth > 64) in initializationPatternFor()50 llvm::Type *IntTy = llvm::IntegerType::get(CGM.getLLVMContext(), PtrWidth); in initializationPatternFor()
2186 uint64_t PtrWidth = in CollectVTableInfo() local2192 unsigned VTableWidth = PtrWidth * VSlotCount; in CollectVTableInfo()2203 VPtrTy = DBuilder.createPointerType(VTableType, PtrWidth); in CollectVTableInfo()
8037 unsigned PtrWidth = getTarget().getPointerWidth(0); in EmitVAArg() local8041 (Ty->isPointerType() && PtrWidth < SlotSizeInBits)) { in EmitVAArg()
32 uint64_t PtrWidth; member in __anon07619bea0111::WalkAST40 return (ASTC.getTypeSize(T) == PtrWidth); in isPointerSize()75 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {} in WalkAST()
108 unsigned PtrWidth = 2 + 2 * sizeof(void *); in format_ptr() local109 return format_hex((uint64_t)PC, PtrWidth); in format_ptr()
731 uint32_t PtrWidth = DL.getTypeSizeInBits(Op0->getType()); in getConstantValue() local732 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() local741 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
1346 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType()); in ConstantFoldCastOperand() local1347 if (PtrWidth < InWidth) { in ConstantFoldCastOperand()1350 APInt::getLowBitsSet(InWidth, PtrWidth)); in ConstantFoldCastOperand()
1062 CharUnits PtrWidth = in LayoutNonVirtualBases() local1072 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
7030 uint64_t PtrWidth = S.Context.getTargetInfo().getPointerWidth(0); in handleMSPointerTypeQualifierAttr() local7031 if (PtrWidth == 32) { in handleMSPointerTypeQualifierAttr()7036 } else if (PtrWidth == 64 && Attrs[attr::Ptr32]) { in handleMSPointerTypeQualifierAttr()
10069 unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType()); in InferPtrAlign() local10070 KnownBits Known(PtrWidth); in InferPtrAlign()