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

  /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; }
  /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...]

Completed in 3552 milliseconds