OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PassName
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/CodeGenCXX/
2004-09-27-DidntEmitTemplate.cpp
9
template<typename
PassName
>
/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
167
std::string
PassName
;
172
PassName
= "CallGraphSCCPass Printer: " + PassToPrintName;
189
virtual const char *getPassName() const { return
PassName
.c_str(); }
203
std::string
PassName
;
208
PassName
= "ModulePass Printer: " + PassToPrintName;
220
virtual const char *getPassName() const { return
PassName
.c_str(); }
233
std::string
PassName
;
238
PassName
= "FunctionPass Printer: " + PassToPrintName;
252
virtual const char *getPassName() const { return
PassName
.c_str(); }
266
std::string
PassName
;
[
all
...]
Completed in 193 milliseconds