Searched refs:ETypes (Results 1 – 4 of 4) sorted by relevance
/external/llvm/include/llvm/Linker/ |
D | IRMover.h | 27 ArrayRef<Type *> ETypes; member 54 StructType *findNonOpaque(ArrayRef<Type *> ETypes, bool IsPacked);
|
/external/llvm/lib/Linker/ |
D | IRMover.cpp | 65 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes); 210 ArrayRef<Type *> ETypes) { in finishType() argument 211 DTy->setBody(ETypes, STy->isPacked()); in finishType() 1547 : ETypes(E), IsPacked(P) {} in KeyTy() 1550 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy() 1555 if (ETypes != That.ETypes) in operator ==() 1573 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), in getHashValue() 1618 IRMover::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes, in findNonOpaque() argument 1620 IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); in findNonOpaque()
|
/external/llvm/lib/IR/ |
D | LLVMContextImpl.h | 81 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()
|
D | Type.cpp | 398 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, in get() argument 401 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get() 409 ST->setBody(ETypes, isPacked); in get()
|