OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PassName
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/
PassSupport.h
44
const char *const
PassName
; // Nice name for Pass
59
:
PassName
(name), PassArgument(arg), PassID(pi),
66
:
PassName
(name), PassArgument(""), PassID(pi),
72
const char *getPassName() const { return
PassName
; }
153
#define INITIALIZE_PASS(
passName
, arg, name, cfg, analysis) \
154
static void* initialize##
passName
##PassOnce(PassRegistry &Registry) { \
155
PassInfo *PI = new PassInfo(name, arg, &
passName
::ID, \
156
PassInfo::NormalCtor_t(callDefaultCtor<
passName
>), cfg, analysis); \
160
void llvm::initialize##
passName
##Pass(PassRegistry &Registry) { \
161
CALL_ONCE_INITIALIZATION(initialize##
passName
##PassOnce)
[
all
...]
/external/llvm/tools/opt/
opt.cpp
166
std::string
PassName
;
171
PassName
= "CallGraphSCCPass Printer: " + PassToPrintName;
188
virtual const char *getPassName() const { return
PassName
.c_str(); }
202
std::string
PassName
;
207
PassName
= "ModulePass Printer: " + PassToPrintName;
219
virtual const char *getPassName() const { return
PassName
.c_str(); }
232
std::string
PassName
;
237
PassName
= "FunctionPass Printer: " + PassToPrintName;
251
virtual const char *getPassName() const { return
PassName
.c_str(); }
265
std::string
PassName
;
[
all
...]
Completed in 446 milliseconds