[PATCH] Allocate stack storage for .block_descriptor and captured self.

Eric Christopher echristo at gmail.com
Wed Mar 6 13:11:32 PST 2013


On Wed, Mar 6, 2013 at 1:01 PM, Adrian Prantl <aprantl at apple.com> wrote:

>
> On Mar 1, 2013, at 10:15 AM, Adrian Prantl <aprantl at apple.com> wrote:
>
> >
> > On Feb 28, 2013, at 11:20 AM, John McCall <rjmccall at apple.com> wrote:
> >
> >> On Feb 28, 2013, at 11:12 AM, Eric Christopher <echristo at gmail.com>
> wrote:
> >>> On Thu, Feb 28, 2013 at 11:06 AM, John McCall <rjmccall at apple.com>
> wrote:
> >>> On Feb 27, 2013, at 3:17 PM, Eric Christopher <echristo at gmail.com>
> wrote:
> >>>> On Wed, Feb 27, 2013 at 11:49 AM, John McCall <rjmccall at apple.com>
> wrote:
> >>>> On Feb 27, 2013, at 11:42 AM, Eric Christopher <echristo at gmail.com>
> wrote:
> >>>>> On Wed, Feb 27, 2013 at 11:39 AM, Adrian Prantl <aprantl at apple.com>
> wrote:
> >>>>>
> >>>>> On Feb 27, 2013, at 11:31 AM, John McCall <rjmccall at apple.com>
> wrote:
> >>>>>> Okay, you're saying that the value is actually no longer live at
> all at this point in the function?  It seems reasonable to lose track of
> the debug info then, although we should be leaving behind a marker in the
> DWARF that says the value is unavailable.
> >>>>>>
> >>>>>> If we want to make stronger guarantees in -O0 for purposes of
> debugging — and I think that's reasonable — then throwing the value in an
> alloca is acceptable.
> >>>>>
> >>>>> To clarify: Are you suggesting to only generate the alloca at -O0,
> or are you comfortable with it as it is?
> >>>>>
> >>>>> If the value isn't live past that spot I'm more comfortable with
> dropping the debug info there rather than changing the generated code to
> keep the value live through the end of the function.
> >>>>
> >>>> Purely out of attachment to the principle that debug info shouldn't
> change the code?
> >>>>
> >>>>
> >>>> Pretty much.
> >>>>
> >>>> Not losing information has intrinsic value in a debug build.  If we
> need to emit slightly different code in order to force a value to stay live
> and thus improve the debugging experience, then so be it.
> >>>>
> >>>>
> >>>> Agreed that making the experience better is desirable, but it can
> make debugging a problem more difficult if the code changes when you turn
> on debugging symbols.
> >>>
> >>> Ah, I see your point;  not doing the alloca could slide stack frames
> around.
> >>>
> >>> Alright, I agree with emitting it in all -O0 builds.
> >>>
> >>> Thought if optimization should fix it then perhaps all builds? :)
> >>
> >> I don't see any point in creating it just for mem2reg to trivially
> destroy. :)
> >>
> >>> That said I'll remove the objection to the allocas. We'll need to fix
> the alloca problem at some point, but making poor Adrian do it right now
> for this bug when we've got other workarounds already in the source base
> seems a bit mean.
> >>
> >> Well, if the value really isn't live anymore, then I'm not sure what
> the supposed alloca problem is, other than needing to leave breadcrumbs to
> say that the value isn't available at this point in the function.  We
> definitely don't want regalloc to be keeping values live just for debug
> info!
> >
> > FYI: this is what the patch looks like if output the alloca only at -O0.
>
>
> Hi John and Eric,
>
> It seems as if at some point in the conversation everybody agreed with
> generating allocas at -O0.
> If someone can hint me at a better solution I'm happy to look into that as
> well, but on the other hand I also really would like to close this bug.
> Any objections to the -O0-version of the patch?
>

I'll defer to John for most of this. I'm not hugely happy with it because
it means that the base code is papering over the problem even more at
higher optimization levels, but...

That said:

+  // Matching the code in EmitParmDecl, depending on optimization level.
+  llvm::Instruction *Call;
+  if (CGM.getCodeGenOpts().OptimizationLevel == 0)
+    // Insert an llvm.dbg.declare into the current block.
+    Call = DBuilder.insertDbgValueIntrinsic(Arg, 0, debugVar,
+    Builder.GetInsertBlock());
+  else
+    // Insert an llvm.dbg.declare into the current block.
+    Call = DBuilder.insertDeclare(LocalAddr, debugVar,
Builder.GetInsertBlock());
+  Call->setDebugLoc(llvm::DebugLoc::get(line, column, scope));

Since you added LocalAddr can't you just check if it's NULL instead of the
optimization level?

Also I'd prefer a TODO and a PR to fix this as it's not really the right
way to fix variable tracking.

+// RUN: %clang -fblocks -S -g -fverbose-asm -triple x86_64-apple-darwin -o
- %s | FileCheck %s

Please don't have a testcase that requires a backend. Put this part in the
backend with the code as a comment for the IR. You could also add it to the
debug info tests to make sure you can debug and print out self.

-eric
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20130306/87463ee9/attachment.html>


More information about the cfe-commits mailing list