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

Declarations

utils/TableGen/GlobalISelEmitter.cpp
  184 class InstructionMatcher;

References

include/llvm/Support/Error.h
  474   Expected(OtherT &&Val,
include/llvm/Support/PointerLikeTypeTraits.h
   56   static inline void *getAsVoidPointer(T *P) { return P; }
   57   static inline T *getFromVoidPointer(void *P) { return static_cast<T *>(P); }
   59   enum { NumLowBitsAvailable = detail::ConstantLog2<alignof(T)>::value };
usr/include/c++/7.4.0/bits/move.h
   46     inline _GLIBCXX_CONSTEXPR _Tp*
   47     __addressof(_Tp& __r) _GLIBCXX_NOEXCEPT
   72     constexpr _Tp&&
   83     constexpr _Tp&&
usr/include/c++/7.4.0/bits/refwrap.h
   63     : _Maybe_get_result_type<_Functor>
  176     : _Weak_result_type_impl<typename remove_cv<_Functor>::type>
  215     : _Weak_result_type<_Tp>, _Refwrap_base_arg1<_Tp>, _Refwrap_base_arg2<_Tp>
  215     : _Weak_result_type<_Tp>, _Refwrap_base_arg1<_Tp>, _Refwrap_base_arg2<_Tp>
  215     : _Weak_result_type<_Tp>, _Refwrap_base_arg1<_Tp>, _Refwrap_base_arg2<_Tp>
  327     : public _Reference_wrapper_base<typename remove_cv<_Tp>::type>
  329       _Tp* _M_data;
  332       typedef _Tp type;
  334       reference_wrapper(_Tp& __indata) noexcept
  338       reference_wrapper(_Tp&&) = delete;
  345       operator _Tp&() const noexcept
  348       _Tp&
  353 	typename result_of<_Tp&(_Args&&...)>::type
usr/include/c++/7.4.0/bits/unique_ptr.h
   68         default_delete(const default_delete<_Up>&) noexcept { }
   72       operator()(_Tp* __ptr) const
   74 	static_assert(!is_void<_Tp>::value,
   76 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  161 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  163       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  166       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  167       using element_type  = _Tp;
  252 	unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
  297           __safe_conversion_up<_Up, _Ep>,
  301 	operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  762     typename add_rvalue_reference<_Tp>::type declval() noexcept;
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1545     : public __is_convertible_helper<_From, _To>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1633     { typedef _Tp   type; };
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>
 1659     { typedef _Tp&&   type; };
 1664     : public __add_rvalue_reference_helper<_Tp>
 1983     { typedef _Up     type; };
utils/TableGen/GlobalISelEmitter.cpp
  810   using MatchersTy = std::vector<std::unique_ptr<InstructionMatcher>> ;
  817   using DefinedInsnVariablesMap = std::map<InstructionMatcher *, unsigned>;
  822   using MutatableInsnSet = SmallPtrSet<InstructionMatcher *, 4>;
  871   InstructionMatcher &addInstructionMatcher(StringRef SymbolicName);
  880   unsigned implicitlyDefineInsnVar(InstructionMatcher &Matcher);
  882   unsigned getInsnVarID(InstructionMatcher &InsnMatcher) const;
  904   void reserveInsnMatcherForMutation(InstructionMatcher *InsnMatcher) {
  941   InstructionMatcher &getInstructionMatcher(StringRef SymbolicName) const;
  965   InstructionMatcher &insnmatchers_front() const { return *Matchers.front(); }
 1481   InstructionMatcher &Insn;
 1491   OperandMatcher(InstructionMatcher &Insn, unsigned OpIdx,
 1522   InstructionMatcher &getInstructionMatcher() const { return Insn; }
 2140   bool isHigherPriorityThan(InstructionMatcher &B) {
 2205   InstructionMatcher &InsnMatcher = *Matchers.front();
 2225   std::unique_ptr<InstructionMatcher> InsnMatcher;
 2231         InsnMatcher(new InstructionMatcher(Rule, SymbolicName)) {}
 2237   InstructionMatcher &getInsnMatcher() const { return *InsnMatcher; }
 2463     InstructionMatcher &InsnMatcher = Rule.getInstructionMatcher(SymbolicName);
 2494     InstructionMatcher &InsnMatcher = Rule.getInstructionMatcher(SymbolicName);
 2716     InstructionMatcher &InsnMatcher = Rule.getInstructionMatcher(SymbolicName);
 2762   InstructionMatcher *Matched;
 2766   bool canMutate(RuleMatcher &Rule, const InstructionMatcher *Insn) const {
 2794     for (auto *MutateCandidate : Rule.mutatable_insns()) {
 2947 InstructionMatcher &RuleMatcher::addInstructionMatcher(StringRef SymbolicName) {
 2948   Matchers.emplace_back(new InstructionMatcher(*this, SymbolicName));
 2988 unsigned RuleMatcher::implicitlyDefineInsnVar(InstructionMatcher &Matcher) {
 2994 unsigned RuleMatcher::getInsnVarID(InstructionMatcher &InsnMatcher) const {
 3019 InstructionMatcher &
 3276   Expected<InstructionMatcher &>
 3278                                InstructionMatcher &InsnMatcher,
 3282   Error importChildMatcher(RuleMatcher &Rule, InstructionMatcher &InsnMatcher,
 3288       RuleMatcher &M, InstructionMatcher &InsnMatcher,
 3464 Expected<InstructionMatcher &> GlobalISelEmitter::createAndImportSelDAGMatcher(
 3465     RuleMatcher &Rule, InstructionMatcher &InsnMatcher,
 3788                                             InstructionMatcher &InsnMatcher,
 4075     RuleMatcher &M, InstructionMatcher &InsnMatcher, const TreePatternNode *Src,
 4571   InstructionMatcher &InsnMatcherTemp = M.addInstructionMatcher(Src->getName());
 4577   InstructionMatcher &InsnMatcher = InsnMatcherOrError.get();
 5331     InstructionMatcher &InsnMatcher = *Item.first;
 5356   InstructionMatcher &Matcher = insnmatchers_front();
 5370   InstructionMatcher &Matcher = insnmatchers_front();
 5388   InstructionMatcher &Matcher = insnmatchers_front();