Home
last modified time | relevance | path

Searched refs:getTypeSizeInChars (Results 1 – 25 of 67) sorted by relevance

123

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOSLog.cpp146 CharUnits Size = Ctx.getTypeSizeInChars((*Data.FieldWidth)->getType()); in computeLayout()
151 CharUnits Size = Ctx.getTypeSizeInChars((*Data.Precision)->getType()); in computeLayout()
157 CharUnits Size = Ctx.getTypeSizeInChars((*Data.Count)->getType()); in computeLayout()
169 Size = Ctx.getTypeSizeInChars(Data.E->getType()); in computeLayout()
172 auto Size = Ctx.getTypeSizeInChars(Data.E->getType()); in computeLayout()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCastSizeChecker.cpp68 FlexSize = Ctx.getTypeSizeInChars(ElemType); in evenFlexibleArraySize()
74 FlexSize = Ctx.getTypeSizeInChars(ElemType); in evenFlexibleArraySize()
121 CharUnits typeSize = C.getASTContext().getTypeSizeInChars(ToPointeeTy); in checkPreStmt()
H A DCheckPlacementNew.cpp77 CharUnits TypeSize = AstContext.getTypeSizeInChars(ElementType); in getExtentSizeOfNewTarget()
93 llvm::APInt I(AstContext.getTypeSizeInChars(SvalBuilder.getArrayIndexType()) in getExtentSizeOfNewTarget()
H A DArrayBoundCheckerV2.cpp63 return C.getASTContext().getTypeSizeInChars(*T).getQuantity(); in determineElementSize()
199 SVB.getContext().getTypeSizeInChars(ElemType).getQuantity()); in computeOffset()
417 int64_t ElemSize = ACtx.getTypeSizeInChars(ElemType).getQuantity(); in getExceedsMsgs()
H A DPaddingChecker.cpp205 CharUnits FieldSize = ASTContext.getTypeSizeInChars(FD->getType()); in calculateBaselinePad()
H A DVLASizeChecker.cpp102 CharUnits EleSize = Ctx.getTypeSizeInChars(VLALast->getElementType()); in checkVLA()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTBAA.cpp119 uint64_t Size = Context.getTypeSizeInChars(Ty).getQuantity(); in getTypeInfoHelper()
318 uint64_t Size = Context.getTypeSizeInChars(AccessType).getQuantity(); in getAccessInfo()
339 uint64_t Size = Context.getTypeSizeInChars(QTy).getQuantity(); in CollectFields()
400 uint64_t Size = Context.getTypeSizeInChars(QTy).getQuantity(); in CollectFields()
477 uint64_t Size = Context.getTypeSizeInChars(FieldQTy).getQuantity(); in getBaseTypeInfoHelper()
494 uint64_t Size = Context.getTypeSizeInChars(Ty).getQuantity(); in getBaseTypeInfoHelper()
H A DSwiftCallingConv.cpp80 auto eltSize = CGM.getContext().getTypeSizeInChars(eltType); in addTypedData()
88 auto eltSize = CGM.getContext().getTypeSizeInChars(eltType); in addTypedData()
96 addOpaqueData(begin, begin + CGM.getContext().getTypeSizeInChars(type)); in addTypedData()
101 auto atomicSize = CGM.getContext().getTypeSizeInChars(atomicType); in addTypedData()
102 auto valueSize = CGM.getContext().getTypeSizeInChars(valueType); in addTypedData()
H A DCodeGenTypes.cpp134 Context.getTypeSizeInChars(T).getQuantity()); in ConvertTypeForMem()
152 CharUnits ASTSize = Context.getTypeSizeInChars(ASTTy); in typeRequiresSplitIntoByteArray()
165 getLLVMContext(), Context.getTypeSizeInChars(T).getQuantity() * 8); in convertTypeForLoadStore()
H A DCGExprCXX.cpp713 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); in EmitCXXNewAllocSize()
755 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); in EmitCXXNewAllocSize()
1014 CharUnits ElementSize = getContext().getTypeSizeInChars(ElementType); in EmitNewArrayInitializer()
1034 getContext().getTypeSizeInChars(ElementType).getQuantity() * in EmitNewArrayInitializer()
1834 CharUnits DeleteTypeSize = getContext().getTypeSizeInChars(DeleteTy); in EmitDeleteCall()
2061 CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType); in EmitArrayDelete()
H A DCGNonTrivialStruct.cpp196 CharUnits EltSize = Ctx.getTypeSizeInChars(EltTy); in visitArray()
363 unsigned BaseEltSize = Ctx.getTypeSizeInChars(BaseEltQT).getQuantity(); in visitArray()
395 CharUnits EltSize = Ctx.getTypeSizeInChars(EltQT); in visitArray()
651 CharUnits Size = Ctx.getTypeSizeInChars(QualType(AT, 0)); in visitArray()
H A DCGExprAgg.cpp512 CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType); in EmitArrayInit()
783 CGF.getContext().getTypeSizeInChars(E->getType()).getQuantity()); in VisitCastExpr()
1824 CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType); in VisitArrayInitLoopExpr()
1923 return CGF.getContext().getTypeSizeInChars(E->getType()); in GetNumNonZeroBytesInInit()
H A DCGOpenMPRuntimeGPU.cpp1390 assert(!CGF.getContext().getTypeSizeInChars(CastTy).isZero() && in castValueToType()
1392 assert(!CGF.getContext().getTypeSizeInChars(ValTy).isZero() && in castValueToType()
1397 if (CGF.getContext().getTypeSizeInChars(ValTy) == in castValueToType()
1398 CGF.getContext().getTypeSizeInChars(CastTy)) in castValueToType()
H A DCGValue.h684 : Ctx.getTypeSizeInChars(Type);
H A DCGDecl.cpp366 CharUnits VarSize = CGM.getContext().getTypeSizeInChars(D.getType()) + in AddInitializerToStaticVarDecl()
1780 CharUnits Size = getContext().getTypeSizeInChars(type); in emitZeroOrPatternForAutoVarInit()
1822 CharUnits EltSize = getContext().getTypeSizeInChars(VlaSize.Type); in emitZeroOrPatternForAutoVarInit()
2334 .alignmentOfArrayElement(getContext().getTypeSizeInChars(type)); in emitDestroy()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOSLog.h91 Size(Ctx.getTypeSizeInChars(Ctx.IntTy)), Flags(flags) {} in OSLogBufferItem()
H A DASTContext.h2400 CharUnits getTypeSizeInChars(QualType T) const;
2401 CharUnits getTypeSizeInChars(const Type *T) const;
2406 return getTypeSizeInChars(Ty); in getTypeSizeInCharsIfKnown()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DLoongArch.cpp144 Field2Off = Field1Off + getContext().getTypeSizeInChars(EltTy); in detectFARsEligibleStructHelper()
158 CharUnits EltSize = getContext().getTypeSizeInChars(EltTy); in detectFARsEligibleStructHelper()
H A DARM.cpp394 getContext().getTypeSizeInChars(Ty) > CharUnits::fromQuantity(16)) { in classifyArgumentType()
415 if (getContext().getTypeSizeInChars(Ty) > CharUnits::fromQuantity(64)) { in classifyArgumentType()
768 CharUnits TySize = getContext().getTypeSizeInChars(Ty); in EmitVAArg()
H A DRISCV.cpp150 Field2Off = Field1Off + getContext().getTypeSizeInChars(EltTy); in detectFPCCEligibleStructHelper()
164 CharUnits EltSize = getContext().getTypeSizeInChars(EltTy); in detectFPCCEligibleStructHelper()
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DValue.cpp161 getASTContext().getTypeSizeInChars(getType()).getQuantity(); in Value()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInterfaceStubFunctionsConsumer.cpp315 << context.getTypeSizeInChars(VD).getQuantity(); in HandleTranslationUnit()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp766 unsigned Size = Context.getTypeSizeInChars(T).getQuantity(); in FillInlineAsmIdentifierInfo()
769 Type = Context.getTypeSizeInChars(ATy->getElementType()).getQuantity(); in FillInlineAsmIdentifierInfo()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp206 CharUnits pointeeTySize = Ctx.getTypeSizeInChars(PointeeTy); in castRegion()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DPointer.cpp179 Offset += (Index * ASTCtx.getTypeSizeInChars(Ptr.getType())); in toAPValue()

123