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

References

include/llvm/ADT/DenseMap.h
  176   const_iterator find_as(const LookupKeyT &Val) const {
  419   static unsigned getHashValue(const LookupKeyT &Val) {
  578   bool LookupBucketFor(const LookupKeyT &Val,
  629   bool LookupBucketFor(const LookupKeyT &Val, BucketT *&FoundBucket) {
include/llvm/ADT/DenseSet.h
  176   iterator find_as(const LookupKeyT &Val) {
  180   const_iterator find_as(const LookupKeyT &Val) const {
include/llvm/CodeGen/PBQP/CostAllocator.h
   30   using PoolRef = std::shared_ptr<const ValueT>;
   36     PoolEntry(ValuePool &Pool, ValueKeyT Value)
   41     const ValueT &getValue() const { return Value; }
   45     ValueT Value;
   57     static unsigned getHashValue(const ValueKeyT &C) {
   70     static bool isEqual(const ValueKeyT1 &C1, const ValueKeyT2 &C2) {
   70     static bool isEqual(const ValueKeyT1 &C1, const ValueKeyT2 &C2) {
   75     static bool isEqual(const ValueKeyT &C, PoolEntry *P) {
   95   template <typename ValueKeyT> PoolRef getValue(ValueKeyT ValueKey) {
  109   using VectorCostPool = ValuePool<VectorT>;
  113   using Vector = VectorT;
  118   template <typename VectorKeyT> VectorPtr getVector(VectorKeyT v) {
include/llvm/CodeGen/PBQP/Graph.h
  375     NodeId addNode(OtherVectorT Costs) {
  466     void setNodeCosts(NodeId NId, OtherVectorT Costs) {
include/llvm/CodeGen/PBQP/Math.h
   26   friend hash_code hash_value(const Vector &);
   40   Vector(const Vector &V)
   46   Vector(Vector &&V)
   52   bool operator==(const Vector &V) const {
   80   Vector& operator+=(const Vector &V) {
   80   Vector& operator+=(const Vector &V) {
  100 inline hash_code hash_value(const Vector &V) {
  109 OStream& operator<<(OStream &OS, const Vector &V) {
  187   Vector getRowAsVector(unsigned R) const {
  189     Vector V(Cols);
  196   Vector getColAsVector(unsigned C) const {
  198     Vector V(Rows);
  255 class MDVector : public Vector {
  257   MDVector(const Vector &v) : Vector(v), md(*this) {}
  258   MDVector(Vector &&v) : Vector(std::move(v)), md(*this) { }
include/llvm/CodeGen/PBQP/ReductionRules.h
  151   bool hasRegisterOptions(const VectorT &V) {
include/llvm/CodeGen/RegAllocPBQP.h
  208   void setup(const Vector& Costs) {
  272   using RawVector = PBQP::Vector;
  274   using Vector = PBQP::Vector;
include/llvm/Support/type_traits.h
   31   using UnderlyingT = typename std::remove_reference<T>::type;
usr/include/c++/7.4.0/bits/alloc_traits.h
  474 	construct(allocator_type& __a, _Up* __p, _Args&&... __args)
  475 	{ __a.construct(__p, std::forward<_Args>(__args)...); }
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/bits/shared_ptr.h
  343 		   _Args&&... __args)
  344 	: __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
  688     allocate_shared(const _Alloc& __a, _Args&&... __args)
  691 			     std::forward<_Args>(__args)...);
  703     make_shared(_Args&&... __args)
  707 				       std::forward<_Args>(__args)...);
usr/include/c++/7.4.0/bits/shared_ptr_base.h
 1317 		     _Args&&... __args)
 1328 			      std::forward<_Args>(__args)...);
usr/include/c++/7.4.0/ext/new_allocator.h
  135 	construct(_Up* __p, _Args&&... __args)
  136 	{ ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_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
  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; };
 1558     { 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>