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

  /external/llvm/lib/IR/
Metadata.cpp 125 UseMap.insert(std::make_pair(Ref, std::make_pair(Owner, NextIndex)))
135 bool WasErased = UseMap.erase(Ref);
142 auto I = UseMap.find(Ref);
143 assert(I != UseMap.end() && "Expected to move a reference");
145 UseMap.erase(I);
146 bool WasInserted = UseMap.insert(std::make_pair(New, OwnerAndIndex)).second;
162 if (UseMap.empty())
165 // Copy out uses since UseMap will get touched below.
167 SmallVector<UseTy, 8> Uses(UseMap.begin(), UseMap.end())
    [all...]
  /external/llvm/lib/Transforms/IPO/
DeadArgumentElimination.cpp 98 typedef std::multimap<RetOrArg, RetOrArg> UseMap;
113 UseMap Uses;
720 UseMap::iterator Begin = Uses.lower_bound(RA);
721 UseMap::iterator E = Uses.end();
722 UseMap::iterator I;
    [all...]
  /external/llvm/include/llvm/IR/
Metadata.h 213 SmallDenseMap<void *, std::pair<OwnerTy, uint64_t>, 4> UseMap;
219 assert(UseMap.empty() && "Cannot destroy in-use replaceable metadata");
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 60 milliseconds