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

References

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/Error.h
  437   static const bool isRef = std::is_reference<T>::value;
  439   using wrap = std::reference_wrapper<typename std::remove_reference<T>::type>;
  444   using storage_type = typename std::conditional<isRef, wrap, T>::type;
  445   using value_type = T;
  448   using reference = typename std::remove_reference<T>::type &;
  449   using const_reference = const typename std::remove_reference<T>::type &;
  450   using pointer = typename std::remove_reference<T>::type *;
  451   using const_pointer = const typename std::remove_reference<T>::type *;
  474   Expected(OtherT &&Val,
  475            typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  475            typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  483     new (getStorage()) storage_type(std::forward<OtherT>(Val));
  492   Expected(Expected<OtherT> &&Other,
  493            typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  493            typename std::enable_if<std::is_convertible<OtherT, T>::value>::type
  594   template <class OtherT> void moveConstruct(Expected<OtherT> &&Other) {
tools/llvm-xray/xray-graph-diff.cpp
  112 static cl::opt<GraphRenderer::StatType> GraphDiffEdgeLabel(
  115     cl::init(GraphRenderer::StatType::NONE),
  136 static cl::opt<GraphRenderer::StatType> GraphDiffEdgeColor(
  139     cl::init(GraphRenderer::StatType::NONE),
  160 static cl::opt<GraphRenderer::StatType> GraphDiffVertexLabel(
  164     cl::init(GraphRenderer::StatType::NONE),
  185 static cl::opt<GraphRenderer::StatType> GraphDiffVertexColor(
  189     cl::init(GraphRenderer::StatType::NONE),
  428   std::array<GraphRenderer::Factory, 2> Factories{
  444   std::array<GraphRenderer::GraphT, 2> Graphs;
  459     auto GraphRenderer = *GraphRendererOrErr;
tools/llvm-xray/xray-graph-diff.h
   31   using StatType = GraphRenderer::StatType;
   32   using TimeStat = GraphRenderer::TimeStat;
   34   using GREdgeValueType = GraphRenderer::GraphT::EdgeValueType;
   35   using GRVertexValueType = GraphRenderer::GraphT::VertexValueType;
   48     std::array<std::reference_wrapper<const GraphRenderer::GraphT>, N> G;
tools/llvm-xray/xray-graph.cpp
   61 static cl::opt<GraphRenderer::StatType>
   65                    cl::init(GraphRenderer::StatType::NONE),
   86 static cl::opt<GraphRenderer::StatType> GraphVertexLabel(
   90     cl::init(GraphRenderer::StatType::NONE),
  111 static cl::opt<GraphRenderer::StatType> GraphEdgeColorType(
  115     cl::init(GraphRenderer::StatType::NONE),
  136 static cl::opt<GraphRenderer::StatType> GraphVertexColorType(
  140     cl::init(GraphRenderer::StatType::NONE),
  164 static void updateStat(GraphRenderer::TimeStat &S, int64_t L) {
  258 void GraphRenderer::getStats(U begin, U end, GraphRenderer::TimeStat &S) {
  271 void GraphRenderer::updateMaxStats(const GraphRenderer::TimeStat &S,
  272                                    GraphRenderer::TimeStat &M) {
  310 static void normalizeTimeStat(GraphRenderer::TimeStat &S,
  334 GraphRenderer::TimeStat::getString(GraphRenderer::StatType T) const {
  341   case GraphRenderer::StatType::NONE:
  343   case GraphRenderer::StatType::COUNT:
  349                             static_cast<int>(GraphRenderer::StatType::MIN)];
  363   case GraphRenderer::StatType::NONE:
  366   case GraphRenderer::StatType::COUNT:
  372                                 static_cast<int>(GraphRenderer::StatType::MIN)];
  424 Expected<GraphRenderer> GraphRenderer::Factory::getGraphRenderer() {
  445   xray::GraphRenderer GR(FuncIdHelper, DeduceSiblingCalls);
  489   GraphRenderer::Factory F;
  506   auto &GR = *GROrError;
tools/llvm-xray/xray-graph.h
  106   void getStats(U begin, U end, GraphRenderer::TimeStat &S);
  151     Expected<GraphRenderer> getGraphRenderer();
  166 inline GraphRenderer::TimeStat operator+(const GraphRenderer::TimeStat &A,
  166 inline GraphRenderer::TimeStat operator+(const GraphRenderer::TimeStat &A,
  167                                          const GraphRenderer::TimeStat &B) {
  174 inline GraphRenderer::TimeStat operator-(const GraphRenderer::TimeStat &A,
  174 inline GraphRenderer::TimeStat operator-(const GraphRenderer::TimeStat &A,
  175                                          const GraphRenderer::TimeStat &B) {
  183 inline GraphRenderer::TimeStat operator/(const GraphRenderer::TimeStat &A,
  183 inline GraphRenderer::TimeStat operator/(const GraphRenderer::TimeStat &A,
  196 inline GraphRenderer::TimeStat operator*(const GraphRenderer::TimeStat &A,
  196 inline GraphRenderer::TimeStat operator*(const GraphRenderer::TimeStat &A,
  208 inline GraphRenderer::TimeStat operator*(double A,
  209                                          const GraphRenderer::TimeStat &B) {
  214 inline GraphRenderer::TimeStat operator*(const GraphRenderer::TimeStat &A,
  214 inline GraphRenderer::TimeStat operator*(const GraphRenderer::TimeStat &A,
  215                                          const GraphRenderer::TimeStat &B) {
  222 inline GraphRenderer::TimeStat operator/(const GraphRenderer::TimeStat &A,
  222 inline GraphRenderer::TimeStat operator/(const GraphRenderer::TimeStat &A,
  223                                          const GraphRenderer::TimeStat &B) {
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
   98     move(_Tp&& __t) 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;
 1526 	static void __test_aux(_To1);
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1538       typedef decltype(__test<_From, _To>(0)) type;
 1545     : public __is_convertible_helper<_From, _To>::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;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1659     { typedef _Tp&&   type; };
 1664     : public __add_rvalue_reference_helper<_Tp>
 2171     { typedef _Iffalse type; };