HomeSort by relevance Sort by last modified time
    Searched refs:PassName (Results 1 - 6 of 6) sorted by null

  /external/clang/test/CodeGenCXX/
2004-09-27-DidntEmitTemplate.cpp 9 template<typename PassName>
  /external/llvm/tools/opt/
PassPrinters.cpp 30 std::string PassName;
36 PassName = "FunctionPass Printer: " + PassToPrintName;
49 const char *getPassName() const override { return PassName.c_str(); }
63 std::string PassName;
69 PassName = "CallGraphSCCPass Printer: " + PassToPrintName;
86 const char *getPassName() const override { return PassName.c_str(); }
100 std::string PassName;
106 PassName = "ModulePass Printer: " + PassToPrintName;
118 const char *getPassName() const override { return PassName.c_str(); }
132 std::string PassName;
    [all...]
  /external/llvm/include/llvm/
PassInfo.h 36 const char *const PassName; // Nice name for Pass
53 : PassName(name), PassArgument(arg), PassID(pi),
61 : PassName(name), PassArgument(""), PassID(pi),
68 const char *getPassName() const { return PassName; }
PassSupport.h 56 #define INITIALIZE_PASS(passName, arg, name, cfg, analysis) \
57 static void* initialize##passName##PassOnce(PassRegistry &Registry) { \
58 PassInfo *PI = new PassInfo(name, arg, & passName ::ID, \
59 PassInfo::NormalCtor_t(callDefaultCtor< passName >), cfg, analysis); \
63 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \
64 CALL_ONCE_INITIALIZATION(initialize##passName##PassOnce) \
67 #define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis) \
68 static void* initialize##passName##PassOnce(PassRegistry &Registry) {
75 #define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis) \
76 PassInfo *PI = new PassInfo(name, arg, & passName ::ID,
    [all...]
  /external/llvm/include/llvm/IR/
DiagnosticInfo.h 244 /// \p PassName is the name of the pass emitting this diagnostic.
252 const char *PassName, const Function &Fn,
254 : DiagnosticInfo(Kind, DS_Remark), PassName(PassName), Fn(Fn), DLoc(DLoc),
283 const char *getPassName() const { return PassName; }
292 const char *PassName;
308 /// \p PassName is the name of the pass emitting this diagnostic. If
316 DiagnosticInfoOptimizationRemark(const char *PassName, const Function &Fn,
318 : DiagnosticInfoOptimizationRemarkBase(DK_OptimizationRemark, PassName,
333 /// \p PassName is the name of the pass emitting this diagnostic. I
    [all...]
  /external/llvm/lib/IR/
DiagnosticInfo.cpp 171 void llvm::emitOptimizationRemark(LLVMContext &Ctx, const char *PassName,
174 Ctx.diagnose(DiagnosticInfoOptimizationRemark(PassName, Fn, DLoc, Msg));
177 void llvm::emitOptimizationRemarkMissed(LLVMContext &Ctx, const char *PassName,
181 Ctx.diagnose(DiagnosticInfoOptimizationRemarkMissed(PassName, Fn, DLoc, Msg));
185 const char *PassName,
190 DiagnosticInfoOptimizationRemarkAnalysis(PassName, Fn, DLoc, Msg));

Completed in 267 milliseconds