Searched refs:ETypes (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/Linker/ |
| H A D | IRMover.h | 30 ArrayRef<Type *> ETypes; member 60 LLVM_ABI StructType *findNonOpaque(ArrayRef<Type *> ETypes, bool IsPacked);
|
| /freebsd/contrib/llvm-project/llvm/lib/Linker/ |
| H A D | IRMover.cpp | 1572 : ETypes(E), IsPacked(P) {} in KeyTy() 1575 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy() 1578 return IsPacked == That.IsPacked && ETypes == That.ETypes; in operator ==() 1594 return hash_combine(hash_combine_range(Key.ETypes), Key.IsPacked); in getHashValue() 1634 IRMover::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes, in findNonOpaque() argument 1636 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) 122 return hash_combine(hash_combine_range(Key.ETypes), Key.isPacked);
|
| H A D | Type.cpp | 416 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, in get() argument 419 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get() 433 ST->setBody(ETypes, isPacked); in get()
|