Home
last modified time | relevance | path

Searched refs:CommonLevels (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp258 unsigned CommonLevels) in FullDependence() argument
259 : Dependence(Source, Destination), Levels(CommonLevels), in FullDependence()
262 if (CommonLevels) in FullDependence()
263 DV = std::make_unique<DVEntry[]>(CommonLevels); in FullDependence()
767 CommonLevels = SrcLevel; in establishNestingLevels()
768 MaxLevels -= CommonLevels; in establishNestingLevels()
783 if (D > CommonLevels) in mapDstLoop()
784 return D - CommonLevels + SrcLevels; in mapDstLoop()
808 if (Level <= CommonLevels && !SE->isLoopInvariant(Expression, LoopNest)) in collectCommonLoops()
1157 assert(0 < Level && Level <= CommonLevels && "level out of range"); in strongSIVtest()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h512 unsigned CommonLevels, SrcLevels, MaxLevels; variable