Searched refs:KeyTy (Results 1 - 4 of 4) sorted by relevance

/freebsd-10-stable/contrib/llvm/lib/IR/
H A DLLVMContextImpl.h45 struct KeyTy { struct in struct:llvm::DenseMapAPIntKeyInfo
48 KeyTy(const APInt& V, Type* Ty) : val(V), type(Ty) {} function in struct:llvm::DenseMapAPIntKeyInfo::KeyTy
49 bool operator==(const KeyTy& that) const {
52 bool operator!=(const KeyTy& that) const {
55 friend hash_code hash_value(const KeyTy &Key) {
59 static inline KeyTy getEmptyKey() { return KeyTy(APInt(1,0), 0); }
60 static inline KeyTy getTombstoneKey() { return KeyTy(APInt(1,1), 0); }
61 static unsigned getHashValue(const KeyTy
70 struct KeyTy { struct in struct:llvm::DenseMapAPFloatKeyInfo
72 KeyTy(const APFloat& V) : val(V){} function in struct:llvm::DenseMapAPFloatKeyInfo::KeyTy
98 struct KeyTy { struct in struct:llvm::AnonStructTypeKeyInfo
101 KeyTy(const ArrayRef<Type*>& E, bool P) : function in struct:llvm::AnonStructTypeKeyInfo::KeyTy
103 KeyTy(const StructType* ST) : function in struct:llvm::AnonStructTypeKeyInfo::KeyTy
142 struct KeyTy { struct in struct:llvm::FunctionTypeKeyInfo
146 KeyTy(const Type* R, const ArrayRef<Type*>& P, bool V) : function in struct:llvm::FunctionTypeKeyInfo::KeyTy
148 KeyTy(const FunctionType* FT) : function in struct:llvm::FunctionTypeKeyInfo::KeyTy
[all...]
H A DType.cpp364 FunctionTypeKeyInfo::KeyTy Key(ReturnType, Params, isVarArg);
408 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked);
H A DConstants.cpp478 // as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
487 ConstantInt *&Slot = pImpl->IntConstants[DenseMapAPIntKeyInfo::KeyTy(V, ITy)];
613 ConstantFP *&Slot = pImpl->FPConstants[DenseMapAPFloatKeyInfo::KeyTy(V)];
/freebsd-10-stable/contrib/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp99 template <typename KeyTy>
101 SmallPtrSet<KeyTy, 4> > &ReverseMap,
102 Instruction *Inst, KeyTy Val) {
103 typename DenseMap<Instruction*, SmallPtrSet<KeyTy, 4> >::iterator

Completed in 334 milliseconds