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

References

include/llvm/Analysis/DependenceAnalysis.h
  157     virtual unsigned getDirection(unsigned Level) const { return DVEntry::ALL; }
  265     std::unique_ptr<DVEntry[]> DV;
  924     void updateDirection(Dependence::DVEntry &Level,
lib/Analysis/DependenceAnalysis.cpp
  257     DV = std::make_unique<DVEntry[]>(CommonLevels);
  614         if (Direction == DVEntry::ALL)
  617           if (Direction & DVEntry::LT)
  619           if (Direction & DVEntry::EQ)
  621           if (Direction & DVEntry::GT)
 1201       Result.DV[Level].Direction &= Dependence::DVEntry::LT;
 1203       Result.DV[Level].Direction &= Dependence::DVEntry::GT;
 1205       Result.DV[Level].Direction &= Dependence::DVEntry::EQ;
 1212     Result.DV[Level].Direction &= Dependence::DVEntry::EQ;
 1237     unsigned NewDirection = Dependence::DVEntry::NONE;
 1240       NewDirection = Dependence::DVEntry::LT;
 1242       NewDirection |= Dependence::DVEntry::EQ;
 1245       NewDirection |= Dependence::DVEntry::GT;
 1298     Result.DV[Level].Direction &= unsigned(~Dependence::DVEntry::LT);
 1299     Result.DV[Level].Direction &= unsigned(~Dependence::DVEntry::GT);
 1358       Result.DV[Level].Direction &= unsigned(~Dependence::DVEntry::LT);
 1359       Result.DV[Level].Direction &= unsigned(~Dependence::DVEntry::GT);
 1392     Result.DV[Level].Direction &= unsigned(~Dependence::DVEntry::EQ);
 1589   unsigned NewDirection = Dependence::DVEntry::NONE;
 1605     NewDirection |= Dependence::DVEntry::LT;
 1631     NewDirection |= Dependence::DVEntry::EQ;
 1648     NewDirection |= Dependence::DVEntry::GT;
 1654   if (Result.DV[Level].Direction == Dependence::DVEntry::NONE)
 1656   return Result.DV[Level].Direction == Dependence::DVEntry::NONE;
 1725       Result.DV[Level].Direction &= Dependence::DVEntry::GE;
 1753         Result.DV[Level].Direction &= Dependence::DVEntry::LE;
 1834       Result.DV[Level].Direction &= Dependence::DVEntry::LE;
 1862         Result.DV[Level].Direction &= Dependence::DVEntry::GE;
 2487         Result.DV[Level - 1].Direction &= unsigned(~Dependence::DVEntry::EQ);
 2551     Bound[K].Direction = Dependence::DVEntry::ALL;
 2552     Bound[K].DirSet = Dependence::DVEntry::NONE;
 2556     if (Bound[K].Lower[Dependence::DVEntry::ALL])
 2560     if (Bound[K].Upper[Dependence::DVEntry::ALL])
 2569   if (testBounds(Dependence::DVEntry::ALL, 0, Bound, Delta)) {
 2625         case Dependence::DVEntry::LT:
 2628         case Dependence::DVEntry::EQ:
 2631         case Dependence::DVEntry::GT:
 2634         case Dependence::DVEntry::ALL:
 2656       if (Bound[Level].Lower[Dependence::DVEntry::LT])
 2661       if (Bound[Level].Upper[Dependence::DVEntry::LT])
 2667       if (Bound[Level].Lower[Dependence::DVEntry::EQ])
 2672       if (Bound[Level].Upper[Dependence::DVEntry::EQ])
 2678       if (Bound[Level].Lower[Dependence::DVEntry::GT])
 2683       if (Bound[Level].Upper[Dependence::DVEntry::GT])
 2694     if (testBounds(Dependence::DVEntry::LT, Level, Bound, Delta))
 2699     if (testBounds(Dependence::DVEntry::EQ, Level, Bound, Delta))
 2704     if (testBounds(Dependence::DVEntry::GT, Level, Bound, Delta))
 2708     Bound[Level].Direction = Dependence::DVEntry::ALL;
 2747   Bound[K].Lower[Dependence::DVEntry::ALL] = nullptr; // Default value = -infinity.
 2748   Bound[K].Upper[Dependence::DVEntry::ALL] = nullptr; // Default value = +infinity.
 2750     Bound[K].Lower[Dependence::DVEntry::ALL] =
 2753     Bound[K].Upper[Dependence::DVEntry::ALL] =
 2760       Bound[K].Lower[Dependence::DVEntry::ALL] =
 2763       Bound[K].Upper[Dependence::DVEntry::ALL] =
 2786   Bound[K].Lower[Dependence::DVEntry::EQ] = nullptr; // Default value = -infinity.
 2787   Bound[K].Upper[Dependence::DVEntry::EQ] = nullptr; // Default value = +infinity.
 2791     Bound[K].Lower[Dependence::DVEntry::EQ] =
 2794     Bound[K].Upper[Dependence::DVEntry::EQ] =
 2803       Bound[K].Lower[Dependence::DVEntry::EQ] = NegativePart; // Zero
 2806       Bound[K].Upper[Dependence::DVEntry::EQ] = PositivePart; // Zero
 2826   Bound[K].Lower[Dependence::DVEntry::LT] = nullptr; // Default value = -infinity.
 2827   Bound[K].Upper[Dependence::DVEntry::LT] = nullptr; // Default value = +infinity.
 2833     Bound[K].Lower[Dependence::DVEntry::LT] =
 2837     Bound[K].Upper[Dependence::DVEntry::LT] =
 2846       Bound[K].Lower[Dependence::DVEntry::LT] = SE->getNegativeSCEV(B[K].Coeff);
 2850       Bound[K].Upper[Dependence::DVEntry::LT] = SE->getNegativeSCEV(B[K].Coeff);
 2870   Bound[K].Lower[Dependence::DVEntry::GT] = nullptr; // Default value = -infinity.
 2871   Bound[K].Upper[Dependence::DVEntry::GT] = nullptr; // Default value = +infinity.
 2877     Bound[K].Lower[Dependence::DVEntry::GT] =
 2881     Bound[K].Upper[Dependence::DVEntry::GT] =
 2889       Bound[K].Lower[Dependence::DVEntry::GT] = A[K].Coeff;
 2892       Bound[K].Upper[Dependence::DVEntry::GT] = A[K].Coeff;
 3211 void DependenceInfo::updateDirection(Dependence::DVEntry &Level,
 3221     unsigned NewDirection = Dependence::DVEntry::NONE;
 3223       NewDirection = Dependence::DVEntry::EQ;
 3225       NewDirection |= Dependence::DVEntry::LT;
 3227       NewDirection |= Dependence::DVEntry::GT;
 3238     unsigned NewDirection = Dependence::DVEntry::NONE;
 3243       NewDirection |= Dependence::DVEntry::EQ;
 3248       NewDirection |= Dependence::DVEntry::LT;
 3253       NewDirection |= Dependence::DVEntry::GT;
 3741         if (Result.DV[SJ - 1].Direction == Dependence::DVEntry::NONE)
 3760       if (!(Result.getDirection(II) & Dependence::DVEntry::EQ)) {
 3771       if (Result.getDirection(II) != Dependence::DVEntry::EQ) {
lib/Analysis/DependenceGraphBuilder.cpp
  193               if (D->getDirection(Level) == Dependence::DVEntry::EQ)
  195               else if (D->getDirection(Level) == Dependence::DVEntry::GT) {
  200               } else if (D->getDirection(Level) == Dependence::DVEntry::LT)
lib/Transforms/Scalar/LoopInterchange.cpp
  152             if (Dir == Dependence::DVEntry::LT ||
  153                 Dir == Dependence::DVEntry::LE)
  155             else if (Dir == Dependence::DVEntry::GT ||
  156                      Dir == Dependence::DVEntry::GE)
  158             else if (Dir == Dependence::DVEntry::EQ)
lib/Transforms/Utils/LoopUnrollAndJam.cpp
  642           if (D->getDirection(LoopDepth) & Dependence::DVEntry::GT) {
  650           if (D->getDirection(LoopDepth) & Dependence::DVEntry::GT &&
  651               D->getDirection(LoopDepth + 1) & Dependence::DVEntry::LT) {
usr/include/c++/7.4.0/bits/unique_ptr.h
  103         default_delete(const default_delete<_Up[]>&) noexcept { }
  107       typename enable_if<is_convertible<_Up(*)[], _Tp(*)[]>::value>::type
  107       typename enable_if<is_convertible<_Up(*)[], _Tp(*)[]>::value>::type
  108 	operator()(_Up* __ptr) const
  110 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  401 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  403       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  411 	  = __and_< is_base_of<_Tp, _Up>,
  412 		    __not_<is_same<__remove_cv<_Tp>, __remove_cv<_Up>>> >;
  412 		    __not_<is_same<__remove_cv<_Tp>, __remove_cv<_Up>>> >;
  412 		    __not_<is_same<__remove_cv<_Tp>, __remove_cv<_Up>>> >;
  415       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  416       using element_type  = _Tp;
  815     { typedef unique_ptr<_Tp[]> __array; };
  831     { return unique_ptr<_Tp>(new remove_extent_t<_Tp>[__num]()); }
  831     { return unique_ptr<_Tp>(new remove_extent_t<_Tp>[__num]()); }
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
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>
 1950     { typedef _Tp     type; };
 1983     { typedef _Up     type; };