Searched refs:ETypes (Results 1 - 4 of 4) sorted by relevance
/external/llvm/include/llvm/Linker/ |
H A D | IRMover.h | 27 ArrayRef<Type *> ETypes; member in struct:llvm::IRMover::StructTypeKeyInfo::KeyTy 54 StructType *findNonOpaque(ArrayRef<Type *> ETypes, bool IsPacked);
|
/external/llvm/lib/Linker/ |
H A D | IRMover.cpp | 65 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes); 210 ArrayRef<Type *> ETypes) { 211 DTy->setBody(ETypes, STy->isPacked()); 1547 : ETypes(E), IsPacked(P) {} 1550 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} 1555 if (ETypes != That.ETypes) 1573 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), 1618 IRMover::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes, argument 209 finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes) argument [all...] |
/external/llvm/lib/IR/ |
H A D | LLVMContextImpl.h | 81 ArrayRef<Type*> ETypes; member in struct:llvm::AnonStructTypeKeyInfo::KeyTy 84 ETypes(E), isPacked(P) {} 86 : ETypes(ST->elements()), isPacked(ST->isPacked()) {} 90 if (ETypes != that.ETypes) 105 return hash_combine(hash_combine_range(Key.ETypes.begin(), 106 Key.ETypes.end()),
|
H A D | Type.cpp | 398 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, argument 401 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); 409 ST->setBody(ETypes, isPacked);
|
Completed in 113 milliseconds