Searched refs:eltTy (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp239 auto eltTy = split.first;
243 assert(eltSize == getTypeStoreSize(CGM, eltTy));
245 addLegalTypedData(eltTy, begin, begin + eltSize);
322 auto eltTy = vecTy->getElementType();
324 assert(eltSize == getTypeStoreSize(CGM, eltTy));
326 addEntry(eltTy, begin, begin + eltSize);
387 auto eltTy = split.first; local
388 CharUnits eltSize = getTypeStoreSize(CGM, eltTy);
394 Entries[index].Type = eltTy;
682 llvm::Type *eltTy, unsigne
681 isLegalVectorType(CodeGenModule &CGM, CharUnits vectorSize, llvm::Type *eltTy, unsigned numElts) argument
692 auto eltTy = vectorTy->getElementType(); local
714 auto eltTy = origVectorTy->getElementType(); local
[all...]
H A DConstantInitBuilder.cpp244 llvm::Constant *ConstantAggregateBuilderBase::finishArray(llvm::Type *eltTy) { argument
249 (Begin == buffer.size() && eltTy))
252 if (!eltTy) eltTy = elts[0]->getType();
253 auto type = llvm::ArrayType::get(eltTy, elts.size());
H A DCGCXXABI.cpp203 const CXXDeleteExpr *expr, QualType eltTy,
210 if (!requiresArrayCookie(expr, eltTy)) {
217 cookieSize = getArrayCookieSizeImpl(eltTy);
202 ReadArrayCookie(CodeGenFunction &CGF, Address ptr, const CXXDeleteExpr *expr, QualType eltTy, llvm::Value *&numElements, llvm::Value *&allocPtr, CharUnits &cookieSize) argument
H A DABIInfo.h133 llvm::Type *eltTy,
H A DTargetInfo.cpp134 llvm::Type *eltTy,
5096 bool isLegalVectorTypeForSwift(CharUnits totalSize, llvm::Type *eltTy,
5356 llvm::Type *eltTy,
5761 bool isLegalVectorTypeForSwift(CharUnits totalSize, llvm::Type *eltTy,
6330 llvm::Type *eltTy,
6334 unsigned size = getDataLayout().getTypeStoreSizeInBits(eltTy);
133 isLegalVectorTypeForSwift(CharUnits vectorSize, llvm::Type *eltTy, unsigned numElts) const argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/CodeGen/
H A DConstantInitBuilder.h312 llvm::Constant *finishArray(llvm::Type *eltTy);
343 ArrayBuilder beginArray(llvm::Type *eltTy = nullptr) {
344 return ArrayBuilder(static_cast<InitBuilder&>(this->Builder), this, eltTy);
417 llvm::Type *eltTy)
418 : super(builder, parent), EltTy(eltTy) {}
495 ArrayBuilder beginArray(llvm::Type *eltTy = nullptr) {
496 return ArrayBuilder(static_cast<InitBuilder&>(*this), nullptr, eltTy);
536 llvm::Type *eltTy)
537 : ConstantArrayBuilderTemplateBase(builder, parent, eltTy) {}
415 ConstantArrayBuilderTemplateBase(InitBuilder &builder, AggregateBuilderBase *parent, llvm::Type *eltTy) argument
534 ConstantArrayBuilder(ConstantInitBuilder &builder, ConstantAggregateBuilderBase *parent, llvm::Type *eltTy) argument
H A DSwiftCallingConv.h142 llvm::Type *eltTy, unsigned numElts);

Completed in 139 milliseconds