Searched refs:MaxUsesToExplore (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | CaptureTracking.cpp | 205 bool StoreCaptures, unsigned MaxUsesToExplore) { in PointerMayBeCaptured() argument 218 PointerMayBeCaptured(V, &SCT, MaxUsesToExplore); in PointerMayBeCaptured() 240 unsigned MaxUsesToExplore, in PointerMayBeCapturedBefore() argument 247 MaxUsesToExplore); in PointerMayBeCapturedBefore() 253 PointerMayBeCaptured(V, &CB, MaxUsesToExplore); in PointerMayBeCapturedBefore() 264 unsigned MaxUsesToExplore) { in FindEarliestCapture() argument 269 PointerMayBeCaptured(V, &CB, MaxUsesToExplore); in FindEarliestCapture() 408 unsigned MaxUsesToExplore) { in PointerMayBeCaptured() argument 410 if (MaxUsesToExplore == 0) in PointerMayBeCaptured() 411 MaxUsesToExplore = DefaultMaxUsesToExplore; in PointerMayBeCaptured() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | CaptureTracking.h | 41 /// MaxUsesToExplore specifies how many uses the analysis should explore for 42 /// one value before giving up due too "too many uses". If MaxUsesToExplore 45 bool StoreCaptures, unsigned MaxUsesToExplore = 0); 57 /// MaxUsesToExplore specifies how many uses the analysis should explore for 58 /// one value before giving up due too "too many uses". If MaxUsesToExplore 64 unsigned MaxUsesToExplore = 0, 78 unsigned MaxUsesToExplore = 0); 129 /// MaxUsesToExplore specifies how many uses the analysis should explore for 130 /// one value before giving up due too "too many uses". If MaxUsesToExplore 133 unsigned MaxUsesToExplore [all...] |
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | MemCpyOptimizer.cpp | 1552 unsigned MaxUsesToExplore = getDefaultMaxUsesToExploreForCaptureTracking(); in performStackMoveOptzn() local 1553 Worklist.reserve(MaxUsesToExplore); in performStackMoveOptzn() 1565 if (Visited.size() >= MaxUsesToExplore) { in performStackMoveOptzn()
|