Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Linker/
DLinker.h31 ArrayRef<Type *> ETypes; member
59 StructType *findNonOpaque(ArrayRef<Type *> ETypes, bool IsPacked);
/external/llvm/lib/Linker/
DLinkModules.cpp80 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes);
236 ArrayRef<Type *> ETypes) { in finishType() argument
237 DTy->setBody(ETypes, STy->isPacked()); in finishType()
1620 : ETypes(E), IsPacked(P) {} in KeyTy()
1623 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy()
1628 if (ETypes != That.ETypes) in operator ==()
1646 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), in getHashValue()
1691 Linker::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes, in findNonOpaque() argument
1693 Linker::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); in findNonOpaque()
/external/llvm/lib/IR/
DLLVMContextImpl.h81 ArrayRef<Type*> ETypes; member
84 ETypes(E), isPacked(P) {} in KeyTy()
86 : ETypes(ST->elements()), isPacked(ST->isPacked()) {} in KeyTy()
90 if (ETypes != that.ETypes)
105 return hash_combine(hash_combine_range(Key.ETypes.begin(), in getHashValue()
106 Key.ETypes.end()), in getHashValue()
DType.cpp402 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, in get() argument
405 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get()
413 ST->setBody(ETypes, isPacked); in get()