OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ParentLoop
(Results
1 - 9
of
9
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
LoopCacheAnalysis.cpp
65
Loop *
ParentLoop
= LastLoop->getParentLoop();
67
if (
ParentLoop
== nullptr) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
CloneFunction.cpp
804
Loop *
ParentLoop
= OrigLoop->getParentLoop();
809
if (
ParentLoop
)
810
ParentLoop
->addChildLoop(NewLoop);
822
if (
ParentLoop
)
823
ParentLoop
->addBasicBlockToLoop(NewPH, *LI);
LoopUnrollRuntime.cpp
315
Loop *
ParentLoop
= L->getParentLoop();
317
NewLoops[
ParentLoop
] =
ParentLoop
;
319
NewLoops[L] =
ParentLoop
;
330
if (CreateRemainderLoop || LI->getLoopFor(*BB) != L ||
ParentLoop
)
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopInfo.h
74
LoopT *
ParentLoop
;
99
for (const LoopT *CurLoop =
ParentLoop
; CurLoop;
100
CurLoop = CurLoop->
ParentLoop
)
113
LoopT *getParentLoop() const { return
ParentLoop
; }
118
ParentLoop
= L;
397
assert(!NewChild->
ParentLoop
&& "NewChild already has a parent!");
398
NewChild->
ParentLoop
= static_cast<LoopT *>(this);
408
assert(Child->
ParentLoop
== this && "Child is not a child of this loop!");
410
Child->
ParentLoop
= nullptr;
489
LoopBase() :
ParentLoop
(nullptr) {
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp
502
Loop *
ParentLoop
= LI.getLoopFor(BB);
503
if (!
ParentLoop
)
505
LoopPromotionCandidates[
ParentLoop
].emplace_back(CounterLoad, CounterStore);
/src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDILCFGStructurizer.cpp
1046
MachineLoop *
ParentLoop
= LoopRep->getParentLoop();
1047
if (
ParentLoop
)
1048
MLI->changeLoopFor(LoopHeader,
ParentLoop
);
/src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonHardwareLoops.cpp
1990
MachineLoop *
ParentLoop
= L->getParentLoop();
1991
if (
ParentLoop
)
1992
ParentLoop
->addBasicBlockToLoop(NewPH, MLI->getBase());
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp
1372
Loop *
ParentLoop
= OriginalLoop.getParentLoop();
1373
if (!
ParentLoop
)
1377
ParentLoop
->addBasicBlockToLoop(BB, LI);
LoopUnswitch.cpp
1396
Loop *
ParentLoop
= L->getParentLoop();
1397
if (
ParentLoop
) {
1400
ParentLoop
->addBasicBlockToLoop(NewBlocks[0], *LI);
Completed in 24 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026