HomeSort by relevance Sort by last modified time
    Searched defs:PassName (Results 1 - 22 of 22) 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/swiftshader/third_party/LLVM/lib/VMCore/
DebugInfoProbe.cpp 52 std::string PassName;
65 PassName = PName;
99 << PassName << "\n";
103 << PassName << "\n";
123 DEBUG(dbgs() << "DebugInfoProbe (" << PassName << "): --- ");
146 << PassName
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/
PassInfo.h 38 StringRef PassName; // Nice name for Pass
55 : PassName(name), PassArgument(arg), PassID(pi), IsCFGOnlyPass(isCFGOnly),
62 : PassName(name), PassArgument(""), PassID(pi), IsCFGOnlyPass(false),
68 StringRef getPassName() const { return PassName; }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/
PassInfo.h 38 StringRef PassName; // Nice name for Pass
55 : PassName(name), PassArgument(arg), PassID(pi), IsCFGOnlyPass(isCFGOnly),
62 : PassName(name), PassArgument(""), PassID(pi), IsCFGOnlyPass(false),
68 StringRef getPassName() const { return PassName; }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/
PassInfo.h 38 StringRef PassName; // Nice name for Pass
55 : PassName(name), PassArgument(arg), PassID(pi), IsCFGOnlyPass(isCFGOnly),
62 : PassName(name), PassArgument(""), PassID(pi), IsCFGOnlyPass(false),
68 StringRef getPassName() const { return PassName; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/
PassInfo.h 38 StringRef PassName; // Nice name for Pass
55 : PassName(name), PassArgument(arg), PassID(pi), IsCFGOnlyPass(isCFGOnly),
62 : PassName(name), PassArgument(""), PassID(pi), IsCFGOnlyPass(false),
68 StringRef getPassName() const { return PassName; }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/
PassInfo.h 38 StringRef PassName; // Nice name for Pass
55 : PassName(name), PassArgument(arg), PassID(pi), IsCFGOnlyPass(isCFGOnly),
62 : PassName(name), PassArgument(""), PassID(pi), IsCFGOnlyPass(false),
68 StringRef getPassName() const { return PassName; }
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/
PassInfo.h 38 StringRef PassName; // Nice name for Pass
55 : PassName(name), PassArgument(arg), PassID(pi), IsCFGOnlyPass(isCFGOnly),
62 : PassName(name), PassArgument(""), PassID(pi), IsCFGOnlyPass(false),
68 StringRef getPassName() const { return PassName; }
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/
PassInfo.h 38 StringRef PassName; // Nice name for Pass
55 : PassName(name), PassArgument(arg), PassID(pi), IsCFGOnlyPass(isCFGOnly),
62 : PassName(name), PassArgument(""), PassID(pi), IsCFGOnlyPass(false),
68 StringRef getPassName() const { return PassName; }
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/
PassInfo.h 38 StringRef PassName; // Nice name for Pass
55 : PassName(name), PassArgument(arg), PassID(pi), IsCFGOnlyPass(isCFGOnly),
62 : PassName(name), PassArgument(""), PassID(pi), IsCFGOnlyPass(false),
68 StringRef getPassName() const { return PassName; }
  /external/swiftshader/third_party/LLVM/include/llvm/
PassSupport.h 43 const char *const PassName; // Nice name for Pass
58 : PassName(name), PassArgument(arg), PassID(pi),
65 : PassName(name), PassArgument(""), PassID(pi),
71 const char *getPassName() const { return PassName; }
148 #define INITIALIZE_PASS(passName, arg, name, cfg, analysis) \
149 static void* initialize##passName##PassOnce(PassRegistry &Registry) { \
150 PassInfo *PI = new PassInfo(name, arg, & passName ::ID, \
151 PassInfo::NormalCtor_t(callDefaultCtor< passName >), cfg, analysis); \
155 void llvm::initialize##passName##Pass(PassRegistry &Registry) { \
156 CALL_ONCE_INITIALIZATION(initialize##passName##PassOnce)
    [all...]
  /external/swiftshader/third_party/LLVM/tools/opt/
opt.cpp 151 std::string PassName;
156 PassName = "CallGraphSCCPass Printer: " + PassToPrintName;
173 virtual const char *getPassName() const { return PassName.c_str(); }
187 std::string PassName;
192 PassName = "ModulePass Printer: " + PassToPrintName;
204 virtual const char *getPassName() const { return PassName.c_str(); }
217 std::string PassName;
222 PassName = "FunctionPass Printer: " + PassToPrintName;
236 virtual const char *getPassName() const { return PassName.c_str(); }
250 std::string PassName;
    [all...]
  /external/llvm/include/llvm/IR/
DiagnosticInfo.h 376 /// \p PassName is the name of the pass emitting this diagnostic.
385 const char *PassName, const Function &Fn,
388 PassName(PassName), Msg(Msg) {}
400 const char *getPassName() const { return PassName; }
412 const char *PassName;
421 /// \p PassName is the name of the pass emitting this diagnostic. If
429 DiagnosticInfoOptimizationRemark(const char *PassName, const Function &Fn,
432 PassName, Fn, DLoc, Msg) {}
446 /// \p PassName is the name of the pass emitting this diagnostic. I
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
DiagnosticInfo.h 428 /// \p PassName is the name of the pass emitting this diagnostic. \p
436 const char *PassName, StringRef RemarkName,
440 PassName(PassName), RemarkName(RemarkName) {}
457 StringRef getPassName() const { return PassName; }
490 const char *PassName;
519 /// \p PassName is the name of the pass emitting this diagnostic. \p
529 const char *PassName, StringRef RemarkName,
533 : DiagnosticInfoOptimizationBase(Kind, Severity, PassName, RemarkName, Fn,
544 DiagnosticInfoIROptimization(const char *PassName, StringRef Prepend
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
DiagnosticInfo.h 428 /// \p PassName is the name of the pass emitting this diagnostic. \p
436 const char *PassName, StringRef RemarkName,
440 PassName(PassName), RemarkName(RemarkName) {}
457 StringRef getPassName() const { return PassName; }
490 const char *PassName;
519 /// \p PassName is the name of the pass emitting this diagnostic. \p
529 const char *PassName, StringRef RemarkName,
533 : DiagnosticInfoOptimizationBase(Kind, Severity, PassName, RemarkName, Fn,
544 DiagnosticInfoIROptimization(const char *PassName, StringRef Prepend
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
DiagnosticInfo.h 428 /// \p PassName is the name of the pass emitting this diagnostic. \p
436 const char *PassName, StringRef RemarkName,
440 PassName(PassName), RemarkName(RemarkName) {}
457 StringRef getPassName() const { return PassName; }
490 const char *PassName;
519 /// \p PassName is the name of the pass emitting this diagnostic. \p
529 const char *PassName, StringRef RemarkName,
533 : DiagnosticInfoOptimizationBase(Kind, Severity, PassName, RemarkName, Fn,
544 DiagnosticInfoIROptimization(const char *PassName, StringRef Prepend
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
DiagnosticInfo.h 428 /// \p PassName is the name of the pass emitting this diagnostic. \p
436 const char *PassName, StringRef RemarkName,
440 PassName(PassName), RemarkName(RemarkName) {}
457 StringRef getPassName() const { return PassName; }
490 const char *PassName;
519 /// \p PassName is the name of the pass emitting this diagnostic. \p
529 const char *PassName, StringRef RemarkName,
533 : DiagnosticInfoOptimizationBase(Kind, Severity, PassName, RemarkName, Fn,
544 DiagnosticInfoIROptimization(const char *PassName, StringRef Prepend
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
DiagnosticInfo.h 428 /// \p PassName is the name of the pass emitting this diagnostic. \p
436 const char *PassName, StringRef RemarkName,
440 PassName(PassName), RemarkName(RemarkName) {}
457 StringRef getPassName() const { return PassName; }
490 const char *PassName;
519 /// \p PassName is the name of the pass emitting this diagnostic. \p
529 const char *PassName, StringRef RemarkName,
533 : DiagnosticInfoOptimizationBase(Kind, Severity, PassName, RemarkName, Fn,
544 DiagnosticInfoIROptimization(const char *PassName, StringRef Prepend
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
DiagnosticInfo.h 428 /// \p PassName is the name of the pass emitting this diagnostic. \p
436 const char *PassName, StringRef RemarkName,
440 PassName(PassName), RemarkName(RemarkName) {}
457 StringRef getPassName() const { return PassName; }
490 const char *PassName;
519 /// \p PassName is the name of the pass emitting this diagnostic. \p
529 const char *PassName, StringRef RemarkName,
533 : DiagnosticInfoOptimizationBase(Kind, Severity, PassName, RemarkName, Fn,
544 DiagnosticInfoIROptimization(const char *PassName, StringRef Prepend
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
DiagnosticInfo.h 428 /// \p PassName is the name of the pass emitting this diagnostic. \p
436 const char *PassName, StringRef RemarkName,
440 PassName(PassName), RemarkName(RemarkName) {}
457 StringRef getPassName() const { return PassName; }
490 const char *PassName;
519 /// \p PassName is the name of the pass emitting this diagnostic. \p
529 const char *PassName, StringRef RemarkName,
533 : DiagnosticInfoOptimizationBase(Kind, Severity, PassName, RemarkName, Fn,
544 DiagnosticInfoIROptimization(const char *PassName, StringRef Prepend
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
DiagnosticInfo.h 428 /// \p PassName is the name of the pass emitting this diagnostic. \p
436 const char *PassName, StringRef RemarkName,
440 PassName(PassName), RemarkName(RemarkName) {}
457 StringRef getPassName() const { return PassName; }
490 const char *PassName;
519 /// \p PassName is the name of the pass emitting this diagnostic. \p
529 const char *PassName, StringRef RemarkName,
533 : DiagnosticInfoOptimizationBase(Kind, Severity, PassName, RemarkName, Fn,
544 DiagnosticInfoIROptimization(const char *PassName, StringRef Prepend
    [all...]

Completed in 2763 milliseconds