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), IsCFGOnlyPass(isCFGOnly),
60 : PassName(name), PassArgument(""), PassID(pi), IsCFGOnlyPass(false),
66 const char *getPassName() const { return PassName; }
  /external/llvm/include/llvm/IR/
DiagnosticInfo.h 281 /// \p PassName is the name of the pass emitting this diagnostic.
290 const char *PassName, const Function &Fn,
292 : DiagnosticInfo(Kind, Severity), PassName(PassName), Fn(Fn), DLoc(DLoc),
317 const char *getPassName() const { return PassName; }
326 const char *PassName;
341 /// \p PassName is the name of the pass emitting this diagnostic. If
349 DiagnosticInfoOptimizationRemark(const char *PassName, const Function &Fn,
352 PassName, Fn, DLoc, Msg) {}
366 /// \p PassName is the name of the pass emitting this diagnostic. I
    [all...]

Completed in 1831 milliseconds