Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Linker/
H A DIRMover.h28 ArrayRef<Type *> ETypes; member
58 StructType *findNonOpaque(ArrayRef<Type *> ETypes, bool IsPacked);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Linker/
H A DIRMover.cpp68 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes);
218 ArrayRef<Type *> ETypes) { in finishType() argument
219 DTy->setBody(ETypes, STy->isPacked()); in finishType()
1532 : ETypes(E), IsPacked(P) {} in KeyTy()
1535 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy()
1538 return IsPacked == That.IsPacked && ETypes == That.ETypes; in operator ==()
1554 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), in getHashValue()
1595 IRMover::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes, in findNonOpaque() argument
1597 IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); in findNonOpaque()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DLLVMContextImpl.h77 ArrayRef<Type*> ETypes; member
81 ETypes(E), isPacked(P) {} in KeyTy()
84 : ETypes(ST->elements()), isPacked(ST->isPacked()) {} in KeyTy()
89 if (ETypes != that.ETypes)
107 return hash_combine(hash_combine_range(Key.ETypes.begin(), in getHashValue()
108 Key.ETypes.end()), in getHashValue()
H A DType.cpp366 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, in get() argument
369 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get()
383 ST->setBody(ETypes, isPacked); in get()