Home
last modified time | relevance | path

Searched refs:LoopNestDepth (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/subzero/tests_lit/llvm2ice_tests/
Dloop-nest-depth.ll25 ; CHECK-NEXT: LoopNestDepth = 0
27 ; CHECK-NEXT: LoopNestDepth = 1
29 ; CHECK-NEXT: LoopNestDepth = 1
31 ; CHECK-NEXT: LoopNestDepth = 0
53 ; CHECK-NEXT: LoopNestDepth = 0
55 ; CHECK-NEXT: LoopNestDepth = 1
57 ; CHECK-NEXT: LoopNestDepth = 1
59 ; CHECK-NEXT: LoopNestDepth = 1
61 ; CHECK-NEXT: LoopNestDepth = 0
83 ; CHECK-NEXT: LoopNestDepth = 0
[all …]
/external/swiftshader/third_party/subzero/src/
DIceCfgNode.h54 void incrementLoopNestDepth() { ++LoopNestDepth; } in incrementLoopNestDepth()
55 void setLoopNestDepth(SizeT NewDepth) { LoopNestDepth = NewDepth; } in setLoopNestDepth()
56 SizeT getLoopNestDepth() const { return LoopNestDepth; } in getLoopNestDepth()
142 SizeT LoopNestDepth = 0; /// the loop nest depth of this node variable
DIceOperand.cpp235 const uint32_t LoopNestDepth = in markUse() local
238 << LoopNestDepth * LogLoopTripCountEstimate; in markUse()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLoopInterchange.cpp517 unsigned LoopNestDepth = LoopList.size(); in processLoopList() local
518 if (LoopNestDepth < 2) { in processLoopList()
522 if (LoopNestDepth > MaxLoopNestDepth) { in processLoopList()
532 LLVM_DEBUG(dbgs() << "Processing LoopList of size = " << LoopNestDepth in processLoopList()
537 if (!populateDependencyMatrix(DependencyMatrix, LoopNestDepth, in processLoopList()