++PRAGMA TRACE_BEGIN/TRACE_END bug
#23900
29 Oct 18 03:31 AM
|
Joined: Nov 2006
Posts: 2,262
Stephen Funkhouser
OP
Member
|
OP
Member
Joined: Nov 2006
Posts: 2,262 |
I'm receiving unmapped variable errors with any function calls using named parameters.
I assume the compiler is not filtering out the named'parameter= portion of statement when generating the variables to be traced.
Linux Ashell ver: 6.5.1648.1 COMPIL/V 6.5(885)
Stephen Funkhouser Diversified Data Solutions
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
#23901
29 Oct 18 02:17 PM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
I have a lot of sample code using named parameters and haven't seen this, so I may need a specific example. Here's a simple one (that doesn't complain, at least with compiler 886) ... ++pragma TRACE_BEGIN (0,"","$# $T","")
? fn'foo$(1, 2, name="jack")
end
Function fn'foo$(arg1 as b2:inputonly, arg2=5 as i2:inputonly, &
name="joaquin" as s20:inputonly) as s0
fn'foo$ = name + (arg1 * arg2)
EndFunction
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
#23902
30 Oct 18 01:49 AM
|
Joined: Nov 2006
Posts: 2,262
Stephen Funkhouser
OP
Member
|
OP
Member
Joined: Nov 2006
Posts: 2,262 |
Here's a link to download the latest ashdevxtr with TRACE_BEGIN/TRACE_END that results in ASHDEVXTR.GEN:15409: ?Unmapped variable: colnum - IF (fn'dlg'xtr_xtr'select_setCformatAdvanced_isConstantData(colnum=x) = -1) THEN
Stephen Funkhouser Diversified Data Solutions
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
#23903
30 Oct 18 04:19 AM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
I see the problem - it arises only in IF statements. Should be fixed in the next update.
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
#23904
31 Oct 18 04:35 PM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
[Re: Stephen Funkhouser]
#37135
22 Feb 24 03:37 PM
|
Joined: Nov 2006
Posts: 2,262
Stephen Funkhouser
OP
Member
|
OP
Member
Joined: Nov 2006
Posts: 2,262 |
I'm having an issue using TRACE_BEGIN/END without the optionlist, there are no trace.prints added.
If I add an option list such as, ++PRAGMA TRACE_BEGIN (2,"conv","",""), I can turn them on with set debug tags +conv
This is EL7 Version 7.0.1756.2
Stephen Funkhouser Diversified Data Solutions
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
[Re: Stephen Funkhouser]
#37137
22 Feb 24 05:43 PM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
I'm not sure if this is a feature, a bug, or just a documentation ambiguity. The issue appears to be that the actual default debug level (first arg in the options list) is one, not zero. Which is arguably a good thing, since it allows you to turn the tracing on and off with SET DEBUG {1} and SET NODEBUG.
If we were to make the default trace level be zero, then you wouldn't be able to turn those traces off.
Does that seem better? Or did this behavior change recently?
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
[Re: Stephen Funkhouser]
#37138
23 Feb 24 08:19 AM
|
Joined: Nov 2006
Posts: 2,262
Stephen Funkhouser
OP
Member
|
OP
Member
Joined: Nov 2006
Posts: 2,262 |
Thought using a TRACE_BEGIN/END block would work the same as trace.print "some trace".
The trace.print by itself doesn't require setting the debug level they just get traced. It seems a TRACE_BEGIN/END block should be consistent with the behavior of the trace.print
Stephen Funkhouser Diversified Data Solutions
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
[Re: Stephen Funkhouser]
#37140
23 Feb 24 10:07 AM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
That seems like a good logical point based on syntax consistency. I'm just not sure how practical it is though, since it means you have to modify the program to turn off the tracing. While that's true for trace.print as well, those are individual statements, which, at least in my case are used just like print statements to output messages unconditionally (errors, status, etc.) Otherwise, at least in my case, I always include the (level,"tags") argument so I can enable the traces selectively without recompiling.
The practical difference with the TRACE_BEGIN pragma is that it activates an onslaught of trace messages, making it hard (for me) to imagine ever wanting to unleash that unconditionally.
I'm also somewhat concerned that given the way it operates now, there may be programs with "silent" TRACE_BEGIN pragmas which would suddenly be activated by an A-Shell update if we changed the existing behavior. (Although admittedly, the likelihood of that isn't terribly great, considering that the documentation does seem to describe it your way.) Still, I can imagine the panic/embarrassment following an update when some long-forgotten TRACE_BEGIN pragma suddenly causes users' screens to explode with cryptic trace messages.
Is this actually creating a problem for you, or are we just having a theoretical discussion?
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
[Re: Stephen Funkhouser]
#37142
23 Feb 24 10:46 AM
|
Joined: Nov 2006
Posts: 2,262
Stephen Funkhouser
OP
Member
|
OP
Member
Joined: Nov 2006
Posts: 2,262 |
Just theoretical. I thought initially the PRIVATE_BEGIN/END was just not working because the documentation made it seem like they work the same as the trace.print.
We don't use trace.print for end-user feedback, so I was only thinking about development.
I can see your point. A documentation update would be good to remove this confusion.
Thanks
Last edited by Stephen Funkhouser; 23 Feb 24 10:47 AM.
Stephen Funkhouser Diversified Data Solutions
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
[Re: Stephen Funkhouser]
#37143
23 Feb 24 11:27 AM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
Ok good, we can agree on that. I'll work with Ty to correct the doc.
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
[Re: Stephen Funkhouser]
#37821
14 Feb 25 09:37 AM
|
Joined: Nov 2006
Posts: 2,262
Stephen Funkhouser
OP
Member
|
OP
Member
Joined: Nov 2006
Posts: 2,262 |
I'm not sure the documentation update happened on this one, given that I was about to post about trace_being/end not working again. It's been a year and I had forgotten about this detail. Thankfully I searched the forum before posting.
Stephen Funkhouser Diversified Data Solutions
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
[Re: Stephen Funkhouser]
#37822
14 Feb 25 10:38 AM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
Thanks for the nudge. I'll take the documentation master out to the woodshed and see if we can get this sorted!
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
[Re: Stephen Funkhouser]
#37823
14 Feb 25 11:32 AM
|
Joined: Jun 2001
Posts: 11,925
Jack McGregor
Member
|
Member
Joined: Jun 2001
Posts: 11,925 |
Actually, re-reading the TRACE_BEGIN and _END topic now, it appears that it was updated to say that the default dbglvl was 1, requiring SET DEBUG to enable the traces. Does it seems like it requires a more explicit/visible warning?
|
|
|
Re: ++PRAGMA TRACE_BEGIN/TRACE_END bug
[Re: Stephen Funkhouser]
#37824
14 Feb 25 02:24 PM
|
Joined: Nov 2006
Posts: 2,262
Stephen Funkhouser
OP
Member
|
OP
Member
Joined: Nov 2006
Posts: 2,262 |
I see it now. It probably doesn't matter if you make it explicit or more visible. Need to use it more often, so we don't forgot the optionlist is necessary.
Stephen Funkhouser Diversified Data Solutions
|
|
|
|
|