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

Declarations

include/llvm/MCA/Stages/Stage.h
   25 class InstRef;

References

include/llvm/ADT/ArrayRef.h
   43     using iterator = const T *;
   44     using const_iterator = const T *;
   50     const T *Data = nullptr;
   66     /*implicit*/ ArrayRef(const T &OneElt)
   70     /*implicit*/ ArrayRef(const T *data, size_t length)
   74     ArrayRef(const T *begin, const T *end)
   74     ArrayRef(const T *begin, const T *end)
   81     /*implicit*/ ArrayRef(const SmallVectorTemplateCommon<T, U> &Vec)
   87     /*implicit*/ ArrayRef(const std::vector<T, A> &Vec)
   92     /*implicit*/ constexpr ArrayRef(const std::array<T, N> &Arr)
   97     /*implicit*/ constexpr ArrayRef(const T (&Arr)[N]) : Data(Arr), Length(N) {}
  100     /*implicit*/ ArrayRef(const std::initializer_list<T> &Vec)
  145     const T *data() const { return Data; }
  151     const T &front() const {
  157     const T &back() const {
  163     template <typename Allocator> ArrayRef<T> copy(Allocator &A) {
  178     ArrayRef<T> slice(size_t N, size_t M) const {
  184     ArrayRef<T> slice(size_t N) const { return slice(N, size() - N); }
  187     ArrayRef<T> drop_front(size_t N = 1) const {
  193     ArrayRef<T> drop_back(size_t N = 1) const {
  200     template <class PredicateT> ArrayRef<T> drop_while(PredicateT Pred) const {
  206     template <class PredicateT> ArrayRef<T> drop_until(PredicateT Pred) const {
  211     ArrayRef<T> take_front(size_t N = 1) const {
  218     ArrayRef<T> take_back(size_t N = 1) const {
  226     template <class PredicateT> ArrayRef<T> take_while(PredicateT Pred) const {
  232     template <class PredicateT> ArrayRef<T> take_until(PredicateT Pred) const {
  239     const T &operator[](size_t Index) const {
  249     typename std::enable_if<std::is_same<U, T>::value, ArrayRef<T>>::type &
  257     typename std::enable_if<std::is_same<U, T>::value, ArrayRef<T>>::type &
  263     std::vector<T> vec() const {
  270     operator std::vector<T>() const {
include/llvm/ADT/STLExtras.h
 1186 auto find(R &&Range, const T &Val) -> decltype(adl_begin(Range)) {
include/llvm/ADT/SmallVector.h
   75   AlignedCharArrayUnion<T> FirstEl;
  114   using value_type = T;
  115   using iterator = T *;
  116   using const_iterator = const T *;
  121   using reference = T &;
  122   using const_reference = const T &;
  123   using pointer = T *;
  124   using const_pointer = const T *;
  179 class SmallVectorTemplateBase : public SmallVectorTemplateCommon<T> {
  183   static void destroy_range(T *S, T *E) {
  183   static void destroy_range(T *S, T *E) {
  211   void push_back(const T &Elt) {
  218   void push_back(T &&Elt) {
  240   T *NewElts = static_cast<T*>(llvm::safe_malloc(NewCapacity*sizeof(T)));
  240   T *NewElts = static_cast<T*>(llvm::safe_malloc(NewCapacity*sizeof(T)));
  315 class SmallVectorImpl : public SmallVectorTemplateBase<T> {
  316   using SuperClass = SmallVectorTemplateBase<T>;
  352         new (&*I) T();
  357   void resize(size_type N, const T &NV) {
  374   LLVM_NODISCARD T pop_back_val() {
  397   void append(size_type NumInputs, const T &Elt) {
  405   void append(std::initializer_list<T> IL) {
  412   void assign(size_type NumElts, const T &Elt) {
  429   void assign(std::initializer_list<T> IL) {
  467   iterator insert(iterator I, T &&Elt) {
  497   iterator insert(iterator I, const T &Elt) {
  526   iterator insert(iterator I, size_type NumToInsert, const T &Elt) {
  606       T *OldEnd = this->end();
  621     T *OldEnd = this->end();
  627     for (T *J = I; NumOverwritten > 0; --NumOverwritten) {
  637   void insert(iterator I, std::initializer_list<T> IL) {
  641   template <typename... ArgTypes> reference emplace_back(ArgTypes &&... Args) {
  644     ::new ((void *)this->end()) T(std::forward<ArgTypes>(Args)...);
  820   AlignedCharArrayUnion<T> InlineElts[N];
  837 class SmallVector : public SmallVectorImpl<T>, SmallVectorStorage<T, N> {
  837 class SmallVector : public SmallVectorImpl<T>, SmallVectorStorage<T, N> {
  846   explicit SmallVector(size_t Size, const T &Value = T())
  865   SmallVector(std::initializer_list<T> IL) : SmallVectorImpl<T>(N) {
  884   SmallVector(SmallVectorImpl<T> &&RHS) : SmallVectorImpl<T>(N) {
include/llvm/MCA/HWEventListener.h
   52   HWInstructionEvent(unsigned type, const InstRef &Inst)
   59   const InstRef &IR;
   65   HWInstructionIssuedEvent(const InstRef &IR,
   74   HWInstructionDispatchedEvent(const InstRef &IR, ArrayRef<unsigned> Regs,
   95   HWInstructionRetiredEvent(const InstRef &IR, ArrayRef<unsigned> Regs)
  120   HWStallEvent(unsigned type, const InstRef &Inst) : Type(type), IR(Inst) {}
  126   const InstRef &IR;
  144   HWPressureEvent(GenericReason reason, ArrayRef<InstRef> Insts,
  152   ArrayRef<InstRef> AffectedInstructions;
  173   virtual void onReservedBuffers(const InstRef &Inst,
  175   virtual void onReleasedBuffers(const InstRef &Inst,
include/llvm/MCA/HardwareUnits/LSUnit.h
   48   InstRef CriticalMemoryInstruction;
   73   const InstRef &getCriticalMemoryInstruction() const {
  103   void onGroupIssued(const InstRef &IR) {
  120   void onInstructionIssued(const InstRef &IR) {
  230   virtual Status isAvailable(const InstRef &IR) const = 0;
  238   virtual unsigned dispatch(const InstRef &IR) = 0;
  250   bool isReady(const InstRef &IR) const {
  258   bool isPending(const InstRef &IR) const {
  266   bool isWaiting(const InstRef &IR) const {
  272   bool hasDependentUsers(const InstRef &IR) const {
  294   virtual void onInstructionExecuted(const InstRef &IR);
  300   virtual void onInstructionRetired(const InstRef &IR);
  302   virtual void onInstructionIssued(const InstRef &IR) {
  429   Status isAvailable(const InstRef &IR) const override;
  444   unsigned dispatch(const InstRef &IR) override;
  446   void onInstructionExecuted(const InstRef &IR) override;
include/llvm/MCA/HardwareUnits/RetireControlUnit.h
   52     InstRef IR;
   91   unsigned dispatch(const InstRef &IS);
include/llvm/MCA/HardwareUnits/Scheduler.h
   36   virtual bool compare(const InstRef &Lhs, const InstRef &Rhs) const = 0;
   36   virtual bool compare(const InstRef &Lhs, const InstRef &Rhs) const = 0;
   43   int computeRank(const InstRef &Lhs) const {
   51   bool compare(const InstRef &Lhs, const InstRef &Rhs) const override {
   51   bool compare(const InstRef &Lhs, const InstRef &Rhs) const override {
  111   std::vector<InstRef> WaitSet;
  112   std::vector<InstRef> PendingSet;
  113   std::vector<InstRef> ReadySet;
  114   std::vector<InstRef> IssuedSet;
  138       InstRef &IR,
  144   void updateIssuedSet(SmallVectorImpl<InstRef> &Executed);
  149   bool promoteToReadySet(SmallVectorImpl<InstRef> &Ready);
  154   bool promoteToPendingSet(SmallVectorImpl<InstRef> &Pending);
  186   Status isAvailable(const InstRef &IR);
  198   bool dispatch(InstRef &IR);
  204       InstRef &IR,
  206       SmallVectorImpl<InstRef> &Pending,
  207       SmallVectorImpl<InstRef> &Ready);
  211   bool mustIssueImmediately(const InstRef &IR) const;
  226                   SmallVectorImpl<InstRef> &Executed,
  227                   SmallVectorImpl<InstRef> &Pending,
  228                   SmallVectorImpl<InstRef> &Ready);
  241   InstRef select();
  251   void analyzeDataDependencies(SmallVectorImpl<InstRef> &RegDeps,
  252                                SmallVectorImpl<InstRef> &MemDeps);
  257   uint64_t analyzeResourcePressure(SmallVectorImpl<InstRef> &Insts);
  269   void sanityCheck(const InstRef &IR) const {
include/llvm/MCA/Instruction.h
  569   bool operator==(const InstRef &Other) const { return Data == Other.Data; }
  570   bool operator!=(const InstRef &Other) const { return Data != Other.Data; }
  571   bool operator<(const InstRef &Other) const {
  591 inline raw_ostream &operator<<(raw_ostream &OS, const InstRef &IR) {
include/llvm/MCA/Stages/DispatchStage.h
   54   InstRef CarriedOver;
   59   bool checkRCU(const InstRef &IR) const;
   60   bool checkPRF(const InstRef &IR) const;
   61   bool canDispatch(const InstRef &IR) const;
   62   Error dispatch(InstRef IR);
   64   void notifyInstructionDispatched(const InstRef &IR,
   73   bool isAvailable(const InstRef &IR) const override;
   79   Error execute(InstRef &IR) override;
include/llvm/MCA/Stages/EntryStage.h
   27   InstRef CurrentInstruction;
   41   bool isAvailable(const InstRef &IR) const override;
   43   Error execute(InstRef &IR) override;
include/llvm/MCA/Stages/ExecuteStage.h
   37   Error issueInstruction(InstRef &IR);
   44   Error handleInstructionEliminated(InstRef &IR);
   62   bool isAvailable(const InstRef &IR) const override;
   73   Error execute(InstRef &IR) override;
   76       const InstRef &IR,
   78   void notifyInstructionExecuted(const InstRef &IR) const;
   79   void notifyInstructionPending(const InstRef &IR) const;
   80   void notifyInstructionReady(const InstRef &IR) const;
   84   void notifyReservedOrReleasedBuffers(const InstRef &IR, bool Reserved) const;
include/llvm/MCA/Stages/InstructionTables.h
   40   Error execute(InstRef &IR) override;
include/llvm/MCA/Stages/MicroOpQueueStage.h
   27   SmallVector<InstRef, 8> Buffer;
   54   unsigned getNormalizedOpcodes(const InstRef &IR) const {
   67   bool isAvailable(const InstRef &IR) const override {
   80   Error execute(InstRef &IR) override;
include/llvm/MCA/Stages/RetireStage.h
   42   Error execute(InstRef &IR) override;
   43   void notifyInstructionRetired(const InstRef &IR) const;
include/llvm/MCA/Stages/Stage.h
   42   virtual bool isAvailable(const InstRef &IR) const { return true; }
   55   virtual Error execute(InstRef &IR) = 0;
   62   bool checkNextStage(const InstRef &IR) const {
   70   Error moveToTheNextStage(InstRef &IR) {
include/llvm/Support/AlignOf.h
   30   T t;
   39 template <typename T> union SizerImpl<T> { char arr[sizeof(T)]; };
   50       llvm::detail::SizerImpl<T, Ts...>)];
include/llvm/Support/type_traits.h
   91     T t;
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
  145       std::is_copy_constructible<detail::trivial_helper<T>>::value;
  147       !std::is_copy_constructible<T>::value;
  151       std::is_move_constructible<detail::trivial_helper<T>>::value;
  153       !std::is_move_constructible<T>::value;
  157       is_copy_assignable<detail::trivial_helper<T>>::value;
  159       !is_copy_assignable<T>::value;
  163       is_move_assignable<detail::trivial_helper<T>>::value;
  165       !is_move_assignable<T>::value;
  169       std::is_destructible<detail::trivial_helper<T>>::value;
lib/MCA/HardwareUnits/LSUnit.cpp
   69 unsigned LSUnit::dispatch(const InstRef &IR) {
  153 LSUnit::Status LSUnit::isAvailable(const InstRef &IR) const {
  162 void LSUnitBase::onInstructionExecuted(const InstRef &IR) {
  171 void LSUnitBase::onInstructionRetired(const InstRef &IR) {
  190 void LSUnit::onInstructionExecuted(const InstRef &IR) {
lib/MCA/HardwareUnits/RetireControlUnit.cpp
   41 unsigned RetireControlUnit::dispatch(const InstRef &IR) {
lib/MCA/HardwareUnits/Scheduler.cpp
   40 Scheduler::Status Scheduler::isAvailable(const InstRef &IR) {
   71     InstRef &IR,
  100     InstRef &IR,
  102     SmallVectorImpl<InstRef> &PendingInstructions,
  103     SmallVectorImpl<InstRef> &ReadyInstructions) {
  119 bool Scheduler::promoteToReadySet(SmallVectorImpl<InstRef> &Ready) {
  124     InstRef &IR = *I;
  155 bool Scheduler::promoteToPendingSet(SmallVectorImpl<InstRef> &Pending) {
  160     InstRef &IR = *I;
  192 InstRef Scheduler::select() {
  195     InstRef &IR = ReadySet[I];
  212   InstRef IR = ReadySet[QueueIndex];
  218 void Scheduler::updateIssuedSet(SmallVectorImpl<InstRef> &Executed) {
  221     InstRef &IR = *I;
  243 uint64_t Scheduler::analyzeResourcePressure(SmallVectorImpl<InstRef> &Insts) {
  248 void Scheduler::analyzeDataDependencies(SmallVectorImpl<InstRef> &RegDeps,
  249                                         SmallVectorImpl<InstRef> &MemDeps) {
  251   for (const InstRef &IR : make_range(PendingSet.begin(), EndIt)) {
  265                            SmallVectorImpl<InstRef> &Executed,
  266                            SmallVectorImpl<InstRef> &Pending,
  267                            SmallVectorImpl<InstRef> &Ready) {
  273   for (InstRef &IR : IssuedSet)
  277   for (InstRef &IR : PendingSet)
  280   for (InstRef &IR : WaitSet)
  290 bool Scheduler::mustIssueImmediately(const InstRef &IR) const {
  300 bool Scheduler::dispatch(InstRef &IR) {
lib/MCA/Pipeline.cpp
   60   InstRef IR;
lib/MCA/Stages/DispatchStage.cpp
   38 void DispatchStage::notifyInstructionDispatched(const InstRef &IR,
   46 bool DispatchStage::checkPRF(const InstRef &IR) const {
   62 bool DispatchStage::checkRCU(const InstRef &IR) const {
   71 bool DispatchStage::canDispatch(const InstRef &IR) const {
   78 Error DispatchStage::dispatch(InstRef IR) {
  158 bool DispatchStage::isAvailable(const InstRef &IR) const {
  175 Error DispatchStage::execute(InstRef &IR) {
lib/MCA/Stages/EntryStage.cpp
   25 bool EntryStage::isAvailable(const InstRef & /* unused */) const {
   42 llvm::Error EntryStage::execute(InstRef & /*unused */) {
lib/MCA/Stages/ExecuteStage.cpp
   43 bool ExecuteStage::isAvailable(const InstRef &IR) const {
   53 Error ExecuteStage::issueInstruction(InstRef &IR) {
   55   SmallVector<InstRef, 4> Pending;
   56   SmallVector<InstRef, 4> Ready;
   72   for (const InstRef &I : Pending)
   75   for (const InstRef &I : Ready)
   81   InstRef IR = HWS.select();
   95   SmallVector<InstRef, 4> Executed;
   96   SmallVector<InstRef, 4> Pending;
   97   SmallVector<InstRef, 4> Ready;
  106   for (InstRef &IR : Executed) {
  113   for (const InstRef &IR : Pending)
  116   for (const InstRef &IR : Ready)
  131   SmallVector<InstRef, 8> Insts;
  141   SmallVector<InstRef, 8> RegDeps;
  142   SmallVector<InstRef, 8> MemDeps;
  161 static void verifyInstructionEliminated(const InstRef &IR) {
  173 Error ExecuteStage::handleInstructionEliminated(InstRef &IR) {
  186 Error ExecuteStage::execute(InstRef &IR) {
  227 void ExecuteStage::notifyInstructionExecuted(const InstRef &IR) const {
  233 void ExecuteStage::notifyInstructionPending(const InstRef &IR) const {
  239 void ExecuteStage::notifyInstructionReady(const InstRef &IR) const {
  253     const InstRef &IR,
  272 void ExecuteStage::notifyReservedOrReleasedBuffers(const InstRef &IR,
lib/MCA/Stages/InstructionTables.cpp
   22 Error InstructionTables::execute(InstRef &IR) {
lib/MCA/Stages/MicroOpQueueStage.cpp
   22   InstRef IR = Buffer[CurrentInstructionSlotIdx];
   46 Error MicroOpQueueStage::execute(InstRef &IR) {
lib/MCA/Stages/RetireStage.cpp
   45 llvm::Error RetireStage::execute(InstRef &IR) {
   50 void RetireStage::notifyInstructionRetired(const InstRef &IR) const {
tools/llvm-mca/Views/BottleneckAnalysis.cpp
  119     for (const InstRef &IR : Event.AffectedInstructions) {
  132     for (const InstRef &IR : Event.AffectedInstructions) {
  139     for (const InstRef &IR : Event.AffectedInstructions) {
tools/llvm-mca/Views/SchedulerStatistics.cpp
   74 void SchedulerStatistics::onReservedBuffers(const InstRef & /* unused */,
   83 void SchedulerStatistics::onReleasedBuffers(const InstRef & /* unused */,
tools/llvm-mca/Views/SchedulerStatistics.h
   82   void onReservedBuffers(const InstRef &IR,
   87   void onReleasedBuffers(const InstRef &IR,
tools/llvm-mca/Views/TimelineView.cpp
   41 void TimelineView::onReservedBuffers(const InstRef &IR,
tools/llvm-mca/Views/TimelineView.h
  175   void onReservedBuffers(const InstRef &IR,
usr/include/c++/7.4.0/bits/alloc_traits.h
  387       using allocator_type = allocator<_Tp>;
  389       using value_type = _Tp;
  392       using pointer = _Tp*;
  395       using const_pointer = const _Tp*;
  474 	construct(allocator_type& __a, _Up* __p, _Args&&... __args)
  474 	construct(allocator_type& __a, _Up* __p, _Args&&... __args)
  486 	destroy(allocator_type& __a, _Up* __p)
usr/include/c++/7.4.0/bits/allocator.h
  108     class allocator: public __allocator_base<_Tp>
  113       typedef _Tp*       pointer;
  114       typedef const _Tp* const_pointer;
  115       typedef _Tp&       reference;
  116       typedef const _Tp& const_reference;
  117       typedef _Tp        value_type;
  137 	allocator(const allocator<_Tp1>&) throw() { }
usr/include/c++/7.4.0/bits/move.h
   46     inline _GLIBCXX_CONSTEXPR _Tp*
   47     __addressof(_Tp& __r) _GLIBCXX_NOEXCEPT
   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
   98     move(_Tp&& __t) noexcept
  104     : public __and_<__not_<is_nothrow_move_constructible<_Tp>>,
  105                     is_copy_constructible<_Tp>>::type { };
  184     typename enable_if<__and_<__not_<__is_tuple_like<_Tp>>,
  185 			      is_move_constructible<_Tp>,
  186 			      is_move_assignable<_Tp>>::value>::type
  187     swap(_Tp& __a, _Tp& __b)
  187     swap(_Tp& __a, _Tp& __b)
  198       _Tp __tmp = _GLIBCXX_MOVE(__a);
usr/include/c++/7.4.0/bits/stl_algo.h
 3900 	 const _Tp& __val)
usr/include/c++/7.4.0/bits/stl_construct.h
   74     _Construct(_T1* __p, _Args&&... __args)
   74     _Construct(_T1* __p, _Args&&... __args)
   75     { ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(__args)...); }
   75     { ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(__args)...); }
  204 	     allocator<_Tp>&)
usr/include/c++/7.4.0/bits/stl_iterator.h
 1224     __make_move_if_noexcept_iterator(_Tp* __i)
usr/include/c++/7.4.0/bits/stl_iterator_base_types.h
  181       typedef _Tp                         value_type;
  183       typedef _Tp*                        pointer;
  184       typedef _Tp&                        reference;
  192       typedef _Tp                         value_type;
  194       typedef const _Tp*                  pointer;
  195       typedef const _Tp&                  reference;
usr/include/c++/7.4.0/bits/stl_uninitialized.h
  288 			   _ForwardIterator __result, allocator<_Tp>&)
  644 				allocator<_Tp>&)
usr/include/c++/7.4.0/bits/stl_vector.h
   77 	rebind<_Tp>::other _Tp_alloc_type;
  216     class vector : protected _Vector_base<_Tp, _Alloc>
  227       typedef _Vector_base<_Tp, _Alloc>			_Base;
  232       typedef _Tp					value_type;
  919       _Tp*
  923       const _Tp*
  962 	emplace_back(_Args&&... __args);
 1483 	_M_realloc_insert(iterator __position, _Args&&... __args);
usr/include/c++/7.4.0/ext/alloc_traits.h
  117       { typedef typename _Base_type::template rebind_alloc<_Tp> other; };
usr/include/c++/7.4.0/ext/new_allocator.h
   63       typedef _Tp*       pointer;
   64       typedef const _Tp* const_pointer;
   65       typedef _Tp&       reference;
   66       typedef const _Tp& const_reference;
   67       typedef _Tp        value_type;
  111 	return static_cast<_Tp*>(::operator new(__n * sizeof(_Tp)));
  130       { return size_t(-1) / sizeof(_Tp); }
  135 	construct(_Up* __p, _Args&&... __args)
  135 	construct(_Up* __p, _Args&&... __args)
  136 	{ ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
  140 	destroy(_Up* __p) { __p->~_Up(); }
usr/include/c++/7.4.0/initializer_list
   50       typedef _E 		value_type;
   51       typedef const _E& 	reference;
   52       typedef const _E& 	const_reference;
   54       typedef const _E* 	iterator;
   55       typedef const _E* 	const_iterator;
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  381     : public __is_pointer_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_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
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  631     : public __is_member_pointer_helper<typename remove_cv<_Tp>::type>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  798       typedef decltype(__test<_Tp>(0)) type;
  811                remove_all_extents<_Tp>::type>::type
  825     : public __is_destructible_safe<_Tp>::type
  984       typedef decltype(__test<_Tp, _Arg>(0)) type;
  989     : public __and_<is_destructible<_Tp>,
  990                     __is_direct_constructible_impl<_Tp, _Arg>>
 1072 			 __is_direct_constructible_ref_cast<_Tp, _Arg>,
 1073 			 __is_direct_constructible_new_safe<_Tp, _Arg>
 1079     : public __is_direct_constructible_new<_Tp, _Arg>::type
 1119     : public __is_direct_constructible<_Tp, _Arg>
 1130     : public __is_constructible_impl<_Tp, _Args...>::type
 1142     : public is_constructible<_Tp, const _Tp&>
 1142     : public is_constructible<_Tp, const _Tp&>
 1148     : public __is_copy_constructible_impl<_Tp>
 1160     : public is_constructible<_Tp, _Tp&&>
 1160     : public is_constructible<_Tp, _Tp&&>
 1166     : public __is_move_constructible_impl<_Tp>
 1215     : public __and_<is_constructible<_Tp, _Args...>,
 1216 		    __is_nt_constructible_impl<_Tp, _Args...>>
 1246     : public is_nothrow_constructible<_Tp, _Tp&&>
 1246     : public is_nothrow_constructible<_Tp, _Tp&&>
 1252     : public __is_nothrow_move_constructible_impl<_Tp>
 1286     : public is_assignable<_Tp&, const _Tp&>
 1286     : public is_assignable<_Tp&, const _Tp&>
 1292     : public __is_copy_assignable_impl<_Tp>
 1304     : public is_assignable<_Tp&, _Tp&&>
 1304     : public is_assignable<_Tp&, _Tp&&>
 1310     : public __is_move_assignable_impl<_Tp>
 1352     : public is_nothrow_assignable<_Tp&, _Tp&&>
 1352     : public is_nothrow_assignable<_Tp&, _Tp&&>
 1358     : public __is_nt_move_assignable_impl<_Tp>
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1659     { typedef _Tp&&   type; };
 1955     { typedef _Tp     type; };
 2574       typename remove_reference<_Tp>::type>::type>::type