Searched refs:ETypes (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Linker/ |
H A D | IRMover.h | 29 ArrayRef<Type *> ETypes; member 59 StructType *findNonOpaque(ArrayRef<Type *> ETypes, bool IsPacked);
|
/freebsd/contrib/llvm-project/llvm/lib/Linker/ |
H A D | IRMover.cpp | 79 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes); 229 ArrayRef<Type *> ETypes) { in finishType() argument 230 DTy->setBody(ETypes, STy->isPacked()); in finishType() 1682 : ETypes(E), IsPacked(P) {} in KeyTy() 1685 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy() 1688 return IsPacked == That.IsPacked && ETypes == That.ETypes; in operator ==() 1704 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), in getHashValue() 1745 IRMover::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes, in findNonOpaque() argument 1747 IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); in findNonOpaque()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | LLVMContextImpl.h | 95 ArrayRef<Type *> ETypes; 98 KeyTy(const ArrayRef<Type *> &E, bool P) : ETypes(E), isPacked(P) {} 101 : ETypes(ST->elements()), isPacked(ST->isPacked()) {} 106 if (ETypes != that.ETypes) 123 hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), Key.isPacked);
|
H A D | Type.cpp | 373 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, in get() argument 376 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get() 390 ST->setBody(ETypes, isPacked); in get()
|