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

References

include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
   24 bool mi_match(Reg R, const MachineRegisterInfo &MRI, Pattern &&P) {
   81   Pred P;
   82   And(Pred &&p, Preds &&... preds)
   83       : And<Preds...>(std::forward<Preds>(preds)...), P(std::forward<Pred>(p)) {
  100   Pred P;
  101   Or(Pred &&p, Preds &&... preds)
  102       : Or<Preds...>(std::forward<Preds>(preds)...), P(std::forward<Pred>(p)) {}
  109 template <typename... Preds> And<Preds...> m_all_of(Preds &&... preds) {
  110   return And<Preds...>(std::forward<Preds>(preds)...);
  113 template <typename... Preds> Or<Preds...> m_any_of(Preds &&... preds) {
  114   return Or<Preds...>(std::forward<Preds>(preds)...);
  174   LHS_P L;
  177   BinaryOp_match(const LHS_P &LHS, const RHS_P &RHS) : L(LHS), R(RHS) {}
  194 inline BinaryOp_match<LHS, RHS, TargetOpcode::G_ADD, true>
  195 m_GAdd(const LHS &L, const RHS &R) {
  333 inline CheckType m_SpecificType(LLT Ty) { return Ty; }
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
usr/include/c++/7.4.0/type_traits
 1629     { typedef _Tp   type; };