Home
last modified time | relevance | path

Searched refs:DVEntry (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/Analysis/
DDependenceAnalysis.cpp243 DV = make_unique<DVEntry[]>(CommonLevels); in FullDependence()
599 if (Direction == DVEntry::ALL) in dump()
602 if (Direction & DVEntry::LT) in dump()
604 if (Direction & DVEntry::EQ) in dump()
606 if (Direction & DVEntry::GT) in dump()
1121 Result.DV[Level].Direction &= Dependence::DVEntry::LT; in strongSIVtest()
1123 Result.DV[Level].Direction &= Dependence::DVEntry::GT; in strongSIVtest()
1125 Result.DV[Level].Direction &= Dependence::DVEntry::EQ; in strongSIVtest()
1132 Result.DV[Level].Direction &= Dependence::DVEntry::EQ; in strongSIVtest()
1157 unsigned NewDirection = Dependence::DVEntry::NONE; in strongSIVtest()
[all …]
/external/llvm/include/llvm/Analysis/
DDependenceAnalysis.h93 struct DVEntry { struct
108 DVEntry() : Direction(ALL), Scalar(true), PeelFirst(false), in DVEntry() function
163 virtual unsigned getDirection(unsigned Level) const { return DVEntry::ALL; } in getDirection()
276 std::unique_ptr<DVEntry[]> DV;
920 void updateDirection(Dependence::DVEntry &Level,
/external/llvm/lib/Transforms/Scalar/
DLoopInterchange.cpp150 if (Dir == Dependence::DVEntry::LT || in populateDependencyMatrix()
151 Dir == Dependence::DVEntry::LE) in populateDependencyMatrix()
153 else if (Dir == Dependence::DVEntry::GT || in populateDependencyMatrix()
154 Dir == Dependence::DVEntry::GE) in populateDependencyMatrix()
156 else if (Dir == Dependence::DVEntry::EQ) in populateDependencyMatrix()