HomeSort by relevance Sort by last modified time
    Searched refs:PassName (Results 1 - 8 of 8) 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/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...]
  /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; }
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/lib/IR/
DiagnosticInfo.cpp 188 void llvm::emitOptimizationRemark(LLVMContext &Ctx, const char *PassName,
191 Ctx.diagnose(DiagnosticInfoOptimizationRemark(PassName, Fn, DLoc, Msg));
194 void llvm::emitOptimizationRemarkMissed(LLVMContext &Ctx, const char *PassName,
198 Ctx.diagnose(DiagnosticInfoOptimizationRemarkMissed(PassName, Fn, DLoc, Msg));
202 const char *PassName,
207 DiagnosticInfoOptimizationRemarkAnalysis(PassName, Fn, DLoc, Msg));
211 const char *PassName,
215 Ctx.diagnose(DiagnosticInfoOptimizationRemarkAnalysisFPCommute(PassName, Fn,
220 const char *PassName,
224 Ctx.diagnose(DiagnosticInfoOptimizationRemarkAnalysisAliasing(PassName, Fn
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopAccessAnalysis.h 63 /// \brief Emit an analysis note for \p PassName with the debug location from
69 const char *PassName);
  /external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 75 const char *PassName) {
79 emitOptimizationRemarkAnalysis(TheFunction->getContext(), PassName,
    [all...]

Completed in 3980 milliseconds