HomeSort by relevance Sort by last modified time
    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 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 68 milliseconds