HomeSort by relevance Sort by last modified time
    Searched refs:KeyTy (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/IR/
LLVMContextImpl.h 48 struct KeyTy {
51 KeyTy(const APInt& V, Type* Ty) : val(V), type(Ty) {}
52 bool operator==(const KeyTy& that) const {
55 bool operator!=(const KeyTy& that) const {
58 friend hash_code hash_value(const KeyTy &Key) {
62 static inline KeyTy getEmptyKey() { return KeyTy(APInt(1,0), nullptr); }
63 static inline KeyTy getTombstoneKey() { return KeyTy(APInt(1,1), nullptr); }
64 static unsigned getHashValue(const KeyTy &Key)
    [all...]
Type.cpp 358 FunctionTypeKeyInfo::KeyTy Key(ReturnType, Params, isVarArg);
402 AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked);
Constants.cpp 514 // as the key, is a DenseMapAPIntKeyInfo::KeyTy which has provided the
523 ConstantInt *&Slot = pImpl->IntConstants[DenseMapAPIntKeyInfo::KeyTy(V, ITy)];
647 ConstantFP *&Slot = pImpl->FPConstants[DenseMapAPFloatKeyInfo::KeyTy(V)];
    [all...]
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 103 template <typename KeyTy>
105 SmallPtrSet<KeyTy, 4> > &ReverseMap,
106 Instruction *Inst, KeyTy Val) {
107 typename DenseMap<Instruction*, SmallPtrSet<KeyTy, 4> >::iterator
    [all...]

Completed in 92 milliseconds