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

Derived Classes

tools/clang/unittests/CodeGen/IRMatchers.h
  121 class EntityMatcher : public Matcher {
  176 class SameAsMatcher : public Matcher {
  209 class ConstantIntMatcher : public Matcher {

References

tools/clang/unittests/CodeGen/IRMatchers.h
  121 class EntityMatcher : public Matcher {
  161   std::shared_ptr<Matcher> Next;
  163   SavingMatcher(const T *&V, std::shared_ptr<Matcher> N) : Var(V), Next(N) {}
  176 class SameAsMatcher : public Matcher {
  209 class ConstantIntMatcher : public Matcher {
  234   SmallVector<std::shared_ptr<Matcher>, 8> OperandMatchers;
  244   void push(std::shared_ptr<Matcher> V) { OperandMatchers.push_back(V); }
  246   void push(std::shared_ptr<Matcher> V, Args... A) {
  329   SmallVector<std::shared_ptr<Matcher>, 4> Operands;
  331   void push(std::shared_ptr<Matcher> M) { Operands.push_back(M); }
  333   void push(std::shared_ptr<Matcher> M, Args... A) {
  359 inline std::shared_ptr<Matcher> MSameAs(unsigned N) {
  370 inline std::shared_ptr<Matcher> MConstInt(uint64_t V, unsigned W = 0) {
  416                                 std::shared_ptr<Matcher> M) {
  433 inline const Instruction *matchNext(const Instruction *I, std::shared_ptr<Matcher> M) {
usr/include/c++/7.4.0/bits/shared_ptr.h
   93     class shared_ptr : public __shared_ptr<_Tp>
  107       using element_type = typename __shared_ptr<_Tp>::element_type;
  236 	shared_ptr(const shared_ptr<_Yp>& __r) noexcept
  253 	shared_ptr(shared_ptr<_Yp>&& __r) noexcept
  299 	_Assignable<const shared_ptr<_Yp>&>
  300 	operator=(const shared_ptr<_Yp>& __r) noexcept
  324 	_Assignable<shared_ptr<_Yp>>
  325 	operator=(shared_ptr<_Yp>&& __r) noexcept
  352       shared_ptr(const weak_ptr<_Tp>& __r, std::nothrow_t)
usr/include/c++/7.4.0/bits/shared_ptr_base.h
  882     : is_convertible<_Yp*, _Tp*>::type
  882     : is_convertible<_Yp*, _Tp*>::type
  946     : is_convertible<_Yp*, _Tp*>::type
  956       using element_type = _Tp;
 1035     : public __shared_ptr_access<_Tp, _Lp>
 1038       using element_type = typename remove_extent<_Tp>::type;
 1126 	__shared_ptr(const __shared_ptr<_Yp, _Lp>& __r) noexcept
 1138 	__shared_ptr(__shared_ptr<_Yp, _Lp>&& __r) noexcept
 1192 	_Assignable<_Yp>
 1193 	operator=(const __shared_ptr<_Yp, _Lp>& __r) noexcept
 1218 	_Assignable<_Yp>
 1219 	operator=(__shared_ptr<_Yp, _Lp>&& __r) noexcept
 1272       swap(__shared_ptr<_Tp, _Lp>& __other) noexcept
 1344       __shared_ptr(const __weak_ptr<_Tp, _Lp>& __r, std::nothrow_t)
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1942     { typedef _Tp     type; };