Searched refs:ETypes (Results 1 – 4 of 4) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Linker/ |
D | IRMover.h | 28 ArrayRef<Type *> ETypes; member 58 StructType *findNonOpaque(ArrayRef<Type *> ETypes, bool IsPacked);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Linker/ |
D | IRMover.cpp | 67 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes); 215 ArrayRef<Type *> ETypes) { in finishType() argument 216 DTy->setBody(ETypes, STy->isPacked()); in finishType() 1486 : ETypes(E), IsPacked(P) {} in KeyTy() 1489 : ETypes(ST->elements()), IsPacked(ST->isPacked()) {} in KeyTy() 1492 return IsPacked == That.IsPacked && ETypes == That.ETypes; in operator ==() 1508 return hash_combine(hash_combine_range(Key.ETypes.begin(), Key.ETypes.end()), in getHashValue() 1549 IRMover::IdentifiedStructTypeSet::findNonOpaque(ArrayRef<Type *> ETypes, in findNonOpaque() argument 1551 IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); in findNonOpaque()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | LLVMContextImpl.h | 99 ArrayRef<Type*> ETypes; member 103 ETypes(E), isPacked(P) {} in KeyTy() 106 : ETypes(ST->elements()), isPacked(ST->isPacked()) {} in KeyTy() 111 if (ETypes != that.ETypes) 129 return hash_combine(hash_combine_range(Key.ETypes.begin(), in getHashValue() 130 Key.ETypes.end()), in getHashValue()
|
D | Type.cpp | 346 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, in get() argument 349 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get() 363 ST->setBody(ETypes, isPacked); in get()
|