Displaying 2 results from an estimated 2 matches for "debug_msg_with_type".
2015 Nov 02
2
Prefixing DEBUG messages with DEBUG_TYPE (was re: [PATCH] D13259: LLE 6/6: Add LoopLoadElimination pass)
...make the DEBUG macro do something
here, because people use it for more than just outputting messages.
My thought was to just bite the bullet and make a DEBUG_MSG macro that
outputs the DEBUG_TYPE, and replace the appropriate existing uses of
DEBUG(dbgs() <<) with it.
Something like
#define DEBUG_MSG_WITH_TYPE(t, x) DEBUG_WITH_TYPE(t, dbgs() << t <<":" <<
x;)
#define DEBUG_MSG(x) DEBUG_MSG_WITH_TYPE(DEBUG_TYPE, x)
Suggestions, however, welcome!
---------- Forwarded message ----------
From: Renato Golin <renato.golin at linaro.org>
Date: Fri, Oct 30, 2015 at 10:15 AM
Su...
2015 Nov 02
4
Prefixing DEBUG messages with DEBUG_TYPE (was re: [PATCH] D13259: LLE 6/6: Add LoopLoadElimination pass)
...t
> > outputting messages.
> >
> > My thought was to just bite the bullet and make a DEBUG_MSG macro
> > that outputs the DEBUG_TYPE, and replace the appropriate existing
> > uses of DEBUG(dbgs() <<) with it.
> >
> > Something like
> > #define DEBUG_MSG_WITH_TYPE(t, x) DEBUG_WITH_TYPE(t, dbgs() << t
> > <<":" << x;)
> > #define DEBUG_MSG(x) DEBUG_MSG_WITH_TYPE(DEBUG_TYPE, x)
> >
> > Suggestions, however, welcome!
> >
> > ---------- Forwarded message ----------
> > From: Renato Golin <...