Home
last modified time | relevance | path

Searched refs:ETypes (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Linker/
H A DIRMover.h29 ArrayRef<Type *> ETypes; member
59 StructType *findNonOpaque(ArrayRef<Type *> ETypes, bool IsPacked);
/llvm-project-15.0.7/llvm/lib/Linker/
H A DIRMover.cpp75 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes);
225 ArrayRef<Type *> ETypes) { in finishType() argument
226 DTy->setBody(ETypes, STy->isPacked()); in finishType()
1648 : ETypes(E), IsPacked(P) {} in KeyTy()
1651 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy()
1654 return IsPacked == That.IsPacked && ETypes == That.ETypes; in operator ==()
1670 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), in getHashValue()
1711 IRMover::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes, in findNonOpaque() argument
1713 IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); in findNonOpaque()
/llvm-project-15.0.7/llvm/lib/IR/
H A DLLVMContextImpl.h94 ArrayRef<Type *> ETypes; member
97 KeyTy(const ArrayRef<Type *> &E, bool P) : ETypes(E), isPacked(P) {} in KeyTy()
100 : ETypes(ST->elements()), isPacked(ST->isPacked()) {} in KeyTy()
105 if (ETypes != that.ETypes)
122 hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), Key.isPacked); in getHashValue()
H A DType.cpp406 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, in get() argument
409 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get()
423 ST->setBody(ETypes, isPacked); in get()