Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A 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()
H A DCGDebugInfo.cpp2186 uint64_t PtrWidth = in CollectVTableInfo() local
2192 unsigned VTableWidth = PtrWidth * VSlotCount; in CollectVTableInfo()
2203 VPtrTy = DBuilder.createPointerType(VTableType, PtrWidth); in CollectVTableInfo()
H A DTargetInfo.cpp8037 unsigned PtrWidth = getTarget().getPointerWidth(0); in EmitVAArg() local
8041 (Ty->isPointerType() && PtrWidth < SlotSizeInBits)) { in EmitVAArg()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp32 uint64_t PtrWidth; member in __anon07619bea0111::WalkAST
40 return (ASTC.getTypeSize(T) == PtrWidth); in isPointerSize()
75 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {} in WalkAST()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DSignals.cpp108 unsigned PtrWidth = 2 + 2 * sizeof(void *); in format_ptr() local
109 return format_hex((uint64_t)PC, PtrWidth); in format_ptr()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DConstantFolding.cpp1346 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType()); in ConstantFoldCastOperand() local
1347 if (PtrWidth < InWidth) { in ConstantFoldCastOperand()
1350 APInt::getLowBitsSet(InWidth, PtrWidth)); in ConstantFoldCastOperand()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DRecordLayoutBuilder.cpp1062 CharUnits PtrWidth = in LayoutNonVirtualBases() local
1072 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaType.cpp7030 uint64_t PtrWidth = S.Context.getTargetInfo().getPointerWidth(0); in handleMSPointerTypeQualifierAttr() local
7031 if (PtrWidth == 32) { in handleMSPointerTypeQualifierAttr()
7036 } else if (PtrWidth == 64 && Attrs[attr::Ptr32]) { in handleMSPointerTypeQualifierAttr()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp10069 unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType()); in InferPtrAlign() local
10070 KnownBits Known(PtrWidth); in InferPtrAlign()