OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ExitingBlocks
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Analysis/
LoopInfoImpl.h
35
getExitingBlocks(SmallVectorImpl<BlockT *> &
ExitingBlocks
) const {
43
ExitingBlocks
.push_back(*BI);
52
SmallVector<BlockT*, 8>
ExitingBlocks
;
53
getExitingBlocks(
ExitingBlocks
);
54
if (
ExitingBlocks
.size() == 1)
55
return
ExitingBlocks
[0];
/external/llvm/lib/Transforms/Utils/
LoopSimplify.cpp
507
SmallVector<BasicBlock*, 8>
ExitingBlocks
;
508
L->getExitingBlocks(
ExitingBlocks
);
509
for (SmallVectorImpl<BasicBlock *>::iterator I =
ExitingBlocks
.begin(),
510
E =
ExitingBlocks
.end(); I != E; ++I)
628
for (unsigned i = 0, e =
ExitingBlocks
.size(); i != e; ++i) {
629
BasicBlock *ExitingBlock =
ExitingBlocks
[i];
830
SmallVector<BasicBlock*, 8>
ExitingBlocks
;
831
L->getExitingBlocks(
ExitingBlocks
);
832
for (unsigned i = 0, e =
ExitingBlocks
.size(); i != e; ++i) {
833
if (isa<IndirectBrInst>((
ExitingBlocks
[i])->getTerminator()))
[
all
...]
/external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp
[
all
...]
Completed in 45 milliseconds