OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getLoopDepth
(Results
1 - 18
of
18
) sorted by null
/external/llvm/include/llvm/CodeGen/
MachineLoopInfo.h
109
///
getLoopDepth
- Return the loop nesting level of the specified block...
111
inline unsigned
getLoopDepth
(const MachineBasicBlock *BB) const {
112
return LI.
getLoopDepth
(BB);
/external/llvm/include/llvm/Analysis/
LoopInfo.h
83
///
getLoopDepth
- Return the nesting level of this loop. An outer-most
86
unsigned
getLoopDepth
() const {
485
///
getLoopDepth
- Return the loop nesting level of the specified block. A
488
unsigned
getLoopDepth
(const BlockT *BB) const {
490
return L ? L->
getLoopDepth
() : 0;
614
///
getLoopDepth
- Return the loop nesting level of the specified block. A
617
inline unsigned
getLoopDepth
(const BasicBlock *BB) const {
618
return LI.
getLoopDepth
(BB);
LoopInfoImpl.h
339
OS.indent(Depth*2) << "Loop at depth " <<
getLoopDepth
()
564
<< I->second->
getLoopDepth
() << "\n";
/external/llvm/lib/CodeGen/
MachineSink.cpp
107
return LI->
getLoopDepth
(LHS) < LI->
getLoopDepth
(RHS);
InlineSpiller.cpp
438
SpillDepth = Loops.
getLoopDepth
(SV.SpillMBB);
443
if ((Loops.
getLoopDepth
(DepSV.SpillMBB) > SpillDepth) &&
[
all
...]
MachineBlockPlacement.cpp
684
SuccLoopDepth = ExitLoop->
getLoopDepth
();
[
all
...]
ShrinkWrapping.cpp
456
if (LP->
getLoopDepth
() > 1) {
[
all
...]
RegisterCoalescer.cpp
[
all
...]
SplitKit.cpp
711
unsigned Depth = Loop->
getLoopDepth
();
[
all
...]
/external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp
209
static unsigned
getLoopDepth
(MachineLoop *LoopRep);
372
unsigned AMDGPUCFGStructurizer::
getLoopDepth
(MachineLoop *LoopRep) {
373
return LoopRep ? LoopRep->
getLoopDepth
() : 0;
[
all
...]
/external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp
[
all
...]
/external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp
364
InnermostPredLoop->
getLoopDepth
() < PredLoop->
getLoopDepth
()))
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp
389
unsigned
getLoopDepth
(LoopT *LoopRep);
[
all
...]
/external/mesa3d/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp
389
unsigned
getLoopDepth
(LoopT *LoopRep);
[
all
...]
/external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp
148
<< " at loop depth " << MLI.
getLoopDepth
(BB)
/external/llvm/lib/Analysis/
DependenceAnalysis.cpp
714
unsigned SrcLevel = LI->
getLoopDepth
(SrcBlock);
715
unsigned DstLevel = LI->
getLoopDepth
(DstBlock);
741
return SrcLoop->
getLoopDepth
();
748
unsigned D = DstLoop->
getLoopDepth
();
773
unsigned Level = LoopNest->
getLoopDepth
();
[
all
...]
ScalarEvolution.cpp
523
unsigned LDepth = LI->
getLoopDepth
(LParent),
524
RDepth = LI->
getLoopDepth
(RParent);
558
unsigned LDepth = LLoop->
getLoopDepth
(),
559
RDepth = RLoop->
getLoopDepth
();
[
all
...]
/external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp
[
all
...]
Completed in 871 milliseconds