OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SubLoops
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Analysis/
LoopInfo.h
66
//
SubLoops
- Loops contained entirely within this one.
67
std::vector<LoopT *>
SubLoops
;
79
for (size_t i = 0, e =
SubLoops
.size(); i != e; ++i)
80
delete
SubLoops
[i];
123
const std::vector<LoopT *> &getSubLoops() const { return
SubLoops
; }
124
std::vector<LoopT *> &getSubLoopsVector() { return
SubLoops
; }
128
iterator begin() const { return
SubLoops
.begin(); }
129
iterator end() const { return
SubLoops
.end(); }
130
reverse_iterator rbegin() const { return
SubLoops
.rbegin(); }
131
reverse_iterator rend() const { return
SubLoops
.rend();
[
all
...]
/external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp
233
// Must be exactly this loop: no
subloops
, parent loops, or non-loop preds
623
const std::vector<Loop*> &
SubLoops
= L->getSubLoops();
624
for (size_t I = 0; I !=
SubLoops
.size(); )
625
if (BlocksInL.count(
SubLoops
[I]->getHeader()))
628
NewOuter->addChildLoop(L->removeChildLoop(
SubLoops
.begin() + I));
Completed in 133 milliseconds