reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/Hexagon/HexagonFrameLowering.cpp
 2054     std::map<int,IndexType> LastStore, LastLoad;
 2128         IndexType Index = IndexMap.getIndex(&In);
 2130           if (LastStore[FI] == IndexType::None)
 2131             LastStore[FI] = IndexType::Entry;
 2135           if (LastStore[FI] != IndexType::None)
 2137           else if (LastLoad[FI] != IndexType::None)
 2138             RL.add(IndexType::Entry, LastLoad[FI], false, false);
 2139           LastLoad[FI] = IndexType::None;
 2148       IndexType LL = I.second;
 2149       if (LL == IndexType::None)
 2152       IndexType &LS = LastStore[I.first];
 2153       if (LS != IndexType::None)
 2156         RL.add(IndexType::Entry, LL, false, false);
 2157       LS = IndexType::None;
 2160       IndexType LS = I.second;
 2161       if (LS == IndexType::None)
 2164       RL.add(LS, IndexType::None, false, false);
 2201       if (IR.start() == IndexType::Entry)
 2244         if (!IndexType::isInstr(Range.start()) ||
 2245             !IndexType::isInstr(Range.end()))