Home
last modified time | relevance | path

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

/src/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.cpp2542 uint64_t PtrWidth = in CollectVTableInfo() local
2548 unsigned VTableWidth = PtrWidth * VSlotCount; in CollectVTableInfo()
2559 VPtrTy = DBuilder.createPointerType(VTableType, PtrWidth); in CollectVTableInfo()
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ !
H A DObjCContainersASTChecker.cpp32 uint64_t PtrWidth; member in __anon1e53d3740111::WalkAST
40 return (ASTC.getTypeSize(T) == PtrWidth); in isPointerSize()
75 PtrWidth(ASTC.getTargetInfo().getPointerWidth(LangAS::Default)) {} in WalkAST()
/src/contrib/llvm-project/llvm/lib/Support/ !
H A DSignals.cpp136 unsigned PtrWidth = 2 + 2 * sizeof(void *); in format_ptr() local
137 return format_hex((uint64_t)PC, PtrWidth); in format_ptr()
/src/contrib/llvm-project/clang/lib/CodeGen/Targets/ !
H A DMips.cpp356 unsigned PtrWidth = getTarget().getPointerWidth(LangAS::Default); in EmitVAArg() local
360 (Ty->isPointerType() && PtrWidth < SlotSizeInBits)) { in EmitVAArg()
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/ !
H A DExecutionEngine.cpp743 uint32_t PtrWidth = DL.getTypeSizeInBits(Op0->getType()); in getConstantValue() local
744 assert(PtrWidth <= 64 && "Bad pointer width"); in getConstantValue()
745 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue()
752 uint32_t PtrWidth = DL.getTypeSizeInBits(CE->getType()); in getConstantValue() local
753 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
/src/contrib/llvm-project/clang/lib/AST/ !
H A DRecordLayoutBuilder.cpp1069 CharUnits PtrWidth = Context.toCharUnitsFromBits( in LayoutNonVirtualBases() local
1079 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
/src/contrib/llvm-project/clang/lib/Sema/ !
H A DSemaType.cpp7054 uint64_t PtrWidth = in handleMSPointerTypeQualifierAttr() local
7056 if (PtrWidth == 32) { in handleMSPointerTypeQualifierAttr()
7061 } else if (PtrWidth == 64 && Attrs[attr::Ptr32]) { in handleMSPointerTypeQualifierAttr()
/src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ !
H A DSelectionDAG.cpp12560 unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType()); in InferPtrAlign() local
12561 KnownBits Known(PtrWidth); in InferPtrAlign()