HomeSort by relevance Sort by last modified time
    Searched refs:DVEntry (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp 237 DV = make_unique<DVEntry[]>(CommonLevels);
604 if (Direction == DVEntry::ALL)
607 if (Direction & DVEntry::LT)
609 if (Direction & DVEntry::EQ)
611 if (Direction & DVEntry::GT)
    [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 90 /// Dependence::DVEntry - Each level in the distance/direction vector
93 struct DVEntry {
108 DVEntry() : Direction(ALL), Scalar(true), PeelFirst(false),
163 virtual unsigned getDirection(unsigned Level) const { return DVEntry::ALL; }
276 std::unique_ptr<DVEntry[]> DV;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopInterchange.cpp 151 if (Dir == Dependence::DVEntry::LT ||
152 Dir == Dependence::DVEntry::LE)
154 else if (Dir == Dependence::DVEntry::GT ||
155 Dir == Dependence::DVEntry::GE)
157 else if (Dir == Dependence::DVEntry::EQ)
    [all...]

Completed in 367 milliseconds