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

References

include/llvm/MCA/HardwareUnits/LSUnit.h
  125     const Instruction &IS = *IR.getInstruction();
  127       const Instruction &OtherIS = *CriticalMemoryInstruction.getInstruction();
include/llvm/MCA/InstrBuilder.h
   71   Expected<std::unique_ptr<Instruction>> createInstruction(const MCInst &MCI);
include/llvm/MCA/Instruction.h
  563   std::pair<unsigned, Instruction *> Data;
  567   InstRef(unsigned Index, Instruction *I) : Data(std::make_pair(Index, I)) {}
  576   Instruction *getInstruction() { return Data.second; }
  577   const Instruction *getInstruction() const { return Data.second; }
include/llvm/MCA/SourceMgr.h
   26 typedef std::pair<unsigned, const Instruction &> SourceRef;
   29   using UniqueInst = std::unique_ptr<Instruction>;
include/llvm/MCA/Stages/EntryStage.h
   28   SmallVector<std::unique_ptr<Instruction>, 16> Instructions;
lib/MCA/HardwareUnits/LSUnit.cpp
  191   const Instruction &IS = *IR.getInstruction();
lib/MCA/HardwareUnits/RetireControlUnit.cpp
   42   const Instruction &Inst = *IR.getInstruction();
   58   const Instruction *Inst = Current.IR.getInstruction();
lib/MCA/HardwareUnits/Scheduler.cpp
   73   Instruction *IS = IR.getInstruction();
  104   const Instruction &Inst = *IR.getInstruction();
  129     Instruction &IS = *IR.getInstruction();
  166     Instruction &IS = *IR.getInstruction();
  198       Instruction &IS = *IR.getInstruction();
  224     Instruction &IS = *IR.getInstruction();
  252     const Instruction &IS = *IR.getInstruction();
  301   Instruction &IS = *IR.getInstruction();
lib/MCA/InstrBuilder.cpp
  609 Expected<std::unique_ptr<Instruction>>
  615   std::unique_ptr<Instruction> NewIS = std::make_unique<Instruction>(D);
  615   std::unique_ptr<Instruction> NewIS = std::make_unique<Instruction>(D);
lib/MCA/Stages/DispatchStage.cpp
   80   Instruction &IS = *IR.getInstruction();
  159   const Instruction &Inst = *IR.getInstruction();
lib/MCA/Stages/EntryStage.cpp
   36   std::unique_ptr<Instruction> Inst = std::make_unique<Instruction>(SR.second);
   36   std::unique_ptr<Instruction> Inst = std::make_unique<Instruction>(SR.second);
lib/MCA/Stages/ExecuteStage.cpp
   59   Instruction &IS = *IR.getInstruction();
  162   const Instruction &Inst = *IR.getInstruction();
  202   const Instruction &Inst = *IR.getInstruction();
lib/MCA/Stages/RetireStage.cpp
   53   const Instruction &Inst = *IR.getInstruction();
tools/llvm-mca/Views/BottleneckAnalysis.cpp
  120       const Instruction &IS = *IR.getInstruction();
  511   const Instruction &IS = *Event.IR.getInstruction();
tools/llvm-mca/Views/RegisterFileStatistics.cpp
   59 void RegisterFileStatistics::updateMoveElimInfo(const Instruction &Inst) {
tools/llvm-mca/Views/RegisterFileStatistics.h
   68   void updateMoveElimInfo(const Instruction &Inst);
tools/llvm-mca/Views/SchedulerStatistics.cpp
   46     const Instruction &Inst = *Event.IR.getInstruction();
   49     const Instruction &Inst = *Event.IR.getInstruction();
   62     const Instruction &Inst = *Event.IR.getInstruction();
tools/llvm-mca/Views/SummaryView.cpp
   54   const Instruction &Inst = *Event.IR.getInstruction();
tools/llvm-mca/llvm-mca.cpp
  466     std::vector<std::unique_ptr<mca::Instruction>> LoweredSequence;
  468       Expected<std::unique_ptr<mca::Instruction>> Inst =
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   83     constexpr _Tp&&
usr/include/c++/7.4.0/bits/stl_pair.h
  101 		      is_constructible<_T2, const _U2&>>::value;
  108 		      is_convertible<const _U2&, _T2>>::value;
  115 		      is_constructible<_T2, _U2&&>>::value;
  122 		      is_convertible<_U2&&, _T2>>::value;
  129 				  is_convertible<_U2&&, _T2>>;
  134 		      is_constructible<_T2, _U2&&>,
  143 				  is_convertible<const _U2&, _T2>>;
  148 		      is_constructible<_T2, const _U2&&>,
  260       constexpr pair(const _T1& __a, const _T2& __b)
  269       explicit constexpr pair(const _T1& __a, const _T2& __b)
  311        constexpr pair(_U1&& __x, const _T2& __y)
  318        explicit constexpr pair(_U1&& __x, const _T2& __y)
  325        constexpr pair(const _T1& __x, _U2&& __y)
  341 	constexpr pair(_U1&& __x, _U2&& __y)
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
  811     { typedef unique_ptr<_Tp> __single_object; };
  823     inline typename _MakeUniq<_Tp>::__single_object
  824     make_unique(_Args&&... __args)
  825     { return unique_ptr<_Tp>(new _Tp(std::forward<_Args>(__args)...)); }
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
 1286     : public is_assignable<_Tp&, const _Tp&>
 1286     : public is_assignable<_Tp&, const _Tp&>
 1304     : public is_assignable<_Tp&, _Tp&&>
 1304     : public is_assignable<_Tp&, _Tp&&>
 1554     { typedef _Tp     type; };
 1558     { 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; };