Searched defs:OrderMap (Results 1 – 3 of 3) sorted by relevance
51 struct OrderMap { struct52 DenseMap<const Value *, std::pair<unsigned, bool>> IDs;53 unsigned LastGlobalConstantID = 0;54 unsigned LastGlobalValueID = 0;58 bool isGlobalConstant(unsigned ID) const { in isGlobalConstant()62 bool isGlobalValue(unsigned ID) const { in isGlobalValue()66 unsigned size() const { return IDs.size(); } in size()67 std::pair<unsigned, bool> &operator[](const Value *V) { return IDs[V]; } in operator []()69 std::pair<unsigned, bool> lookup(const Value *V) const { in lookup()73 void index(const Value *V) { in index()
249 DenseMap<Instruction *, unsigned> OrderMap; in generateInstructionOrderMap() local
97 using OrderMap = MapVector<const Value *, unsigned>; typedef