OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LPPassManager
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Analysis/
LoopPass.h
26
class
LPPassManager
;
40
virtual bool runOnLoop(Loop *L,
LPPassManager
&LPM) = 0;
43
virtual bool doInitialization(Loop *L,
LPPassManager
&LPM) {
51
// Check if this pass is suitable for the current
LPPassManager
, if
52
// available. This pass P is not suitable for a
LPPassManager
if P
54
//
LPPassManager
passes. In such case, pop
LPPassManager
from the
84
class
LPPassManager
: public FunctionPass, public PMDataManager {
87
explicit
LPPassManager
(int Depth);
94
//
LPPassManager
needs LoopInfo
[
all
...]
/external/llvm/lib/Analysis/
LoopPass.cpp
10
// This file implements LoopPass and
LPPassManager
. All loop optimization
11
// and transformation passes are derived from LoopPass.
LPPassManager
is
42
bool runOnLoop(Loop *L,
LPPassManager
&) {
71
//
LPPassManager
74
char
LPPassManager
::ID = 0;
76
LPPassManager
::
LPPassManager
(int Depth)
85
void
LPPassManager
::deleteLoopFromQueue(Loop *L) {
154
void
LPPassManager
::insertLoop(Loop *L, Loop *ParentLoop) {
167
void
LPPassManager
::insertLoopIntoQueue(Loop *L)
[
all
...]
Completed in 15 milliseconds