Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp267 unsigned CommonLevels) in FullDependence() argument
268 : Dependence(Source, Destination), Levels(CommonLevels), in FullDependence()
271 if (CommonLevels) in FullDependence()
272 DV = std::make_unique<DVEntry[]>(CommonLevels); in FullDependence()
832 CommonLevels = SrcLevel; in establishNestingLevels()
833 MaxLevels -= CommonLevels; in establishNestingLevels()
848 if (D > CommonLevels) in mapDstLoop()
851 return D - CommonLevels + SrcLevels; in mapDstLoop()
881 if (Level <= CommonLevels && !SE->isLoopInvariant(Expression, LoopNest)) in collectCommonLoops()
1242 assert(0 < Level && Level <= CommonLevels && "level out of range"); in strongSIVtest()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h533 unsigned CommonLevels, SrcLevels, MaxLevels; variable