OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:getLoopDepth
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/CodeGen/
MachineLoopInfo.h
97
///
getLoopDepth
- Return the loop nesting level of the specified block...
99
inline unsigned
getLoopDepth
(const MachineBasicBlock *BB) const {
100
return LI.
getLoopDepth
(BB);
/external/llvm/include/llvm/Analysis/
LoopInfo.h
87
///
getLoopDepth
- Return the nesting level of this loop. An outer-most
90
unsigned
getLoopDepth
() const {
491
OS.indent(Depth*2) << "Loop at depth " <<
getLoopDepth
()
677
///
getLoopDepth
- Return the loop nesting level of the specified block. A
680
unsigned
getLoopDepth
(const BlockT *BB) const {
682
return L ? L->
getLoopDepth
() : 0;
[
all
...]
Completed in 404 milliseconds