Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Linker/
H A DIRMover.h29 ArrayRef<Type *> ETypes; member
59 StructType *findNonOpaque(ArrayRef<Type *> ETypes, bool IsPacked);
/openbsd-src/gnu/llvm/llvm/lib/Linker/
H A DIRMover.cpp78 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes);
228 ArrayRef<Type *> ETypes) { in finishType() argument
229 DTy->setBody(ETypes, STy->isPacked()); in finishType()
1691 : ETypes(E), IsPacked(P) {} in KeyTy()
1694 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy()
1697 return IsPacked == That.IsPacked && ETypes == That.ETypes; in operator ==()
1713 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), in getHashValue()
1754 IRMover::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes, in findNonOpaque() argument
1756 IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); in findNonOpaque()
/openbsd-src/gnu/llvm/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.cpp408 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, in get() argument
411 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get()
425 ST->setBody(ETypes, isPacked); in get()