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

  /external/llvm/lib/Target/Hexagon/
HexagonRDF.cpp 37 bool HexagonRegisterAliasInfo::covers(const RegisterSet &RRs, RegisterRef RR)
39 if (RRs.count(RR))
45 bool HasLo = RRs.count({RR.Reg, Hexagon::subreg_loreg});
46 bool HasHi = RRs.count({RR.Reg, Hexagon::subreg_hireg});
55 if (RRs.count({Lo, 0}) && RRs.count({Hi, 0}))
59 return RegisterAliasInfo::covers(RRs, RR);
HexagonRDF.h 22 bool covers(const RegisterSet &RRs, RegisterRef RR) const override;
RDFCopy.cpp 93 RegisterSet RRs;
95 RRs.insert(RA.Addr->getRegRef());
98 if (!RRs.count(R.first))
107 if (!RRs.count(R.first))
RDFLiveness.cpp 193 RegisterSet RRs = DefRRs;
200 if (!FullChain && RAI.covers(RRs, RefRR))
215 if (FullChain || IsPhi || !RAI.covers(RRs, QR))
225 RRs.insert(DA.Addr->getRegRef());
870 RegisterSet RRs;
876 RRs.insert(TA.Addr->getRegRef());
879 if (RAI.covers(RRs, DRR))
    [all...]
HexagonOptAddrMode.cpp 576 RegisterSet RRs;
578 RRs.insert(RA.Addr->getRegRef());
581 if (!RRs.count(R.first))
RDFGraph.cpp 592 // Determine whether RR is covered by the set of references RRs.
593 bool RegisterAliasInfo::covers(const RegisterSet &RRs, RegisterRef RR) const {
594 if (RRs.count(RR))
598 // on subregisters. If RR itself is not present in RRs, but it has a sub-
603 return RRs.count({RR.Reg, 0});
610 if (RRs.count({*SR, 0}))
    [all...]
RDFGraph.h 395 virtual bool covers(const RegisterSet &RRs, RegisterRef RR) const;

Completed in 227 milliseconds