Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=75572 --- shadow/75572 2006-05-21 15:53:42.000000000 -0400 +++ shadow/75572.tmp.3672 2006-06-21 10:23:37.000000000 -0400 @@ -11,13 +11,13 @@ AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] QAContact: [EMAIL PROTECTED] TargetMilestone: --- URL: Cc: -Summary: local variable liveness ranges = lexical blocks in the mono backend +Summary: Need to add local variable liveness ranges the debugger assumes that a local variable is alive from the start to finish of the enclosing lexical block, which might not always be the case. ------- Additional Comments From [EMAIL PROTECTED] 2005-09-05 13:52 ------- reassigning to new debugger owner. @@ -37,6 +37,27 @@ 10 } 11 } Using mono, debugger from svn, I put a breakpoint at 8. Using the debugger I inspect the variable "i" at the breakpoint, it is always 0, even though j advances properly. + +------- Additional Comments From [EMAIL PROTECTED] 2006-06-12 11:02 ------- +Ben, I just fixed your problem in SVN. Sorry for the very long delay. + +Chris, your problem still exists, so I'm keeping the bug report open. + +------- Additional Comments From [EMAIL PROTECTED] 2006-06-12 11:06 ------- +*** Bug 74644 has been marked as a duplicate of this bug. *** + +------- Additional Comments From [EMAIL PROTECTED] 2006-06-12 11:07 ------- +The problem is that with the current debugging code, we only only +compute the lexical block information from the symbol file, but the +JIT does not provide any liveness information at the moment. + +------- Additional Comments From [EMAIL PROTECTED] 2006-06-12 11:08 ------- +Also note that the JIT<->debugger interface already has the required +API and the debugger is using it, we're just not providing the +required information on the JIT side. + +------- Additional Comments From [EMAIL PROTECTED] 2006-06-12 11:16 ------- +I think we should wait with this until the new Linear IL is ready. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
