Issue869096

classification
Title: fix for 730156
Type: Severity: normal
Components: None Versions:
Milestone:
process
Status: closed Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: bzimmer, lycotic, pedronis
Priority: normal Keywords: patch

Created on 2004-01-02.04:17:32 by lycotic, last changed 2005-02-20.20:33:09 by bzimmer.

Files
File name Uploaded Description Edit Remove
patch5 lycotic, 2004-01-02.04:17:32
Messages
msg2331 (view) Author: Randy Brown (lycotic) Date: 2004-01-02.04:17:32
While I was arguing with the verifier...

make sure the try: block in try:finally: doesn't use the same 
local as the finally's return.  This makes the verifier 
unhappy.
msg2332 (view) Author: Samuele Pedroni (pedronis) Date: 2004-01-05.02:53:07
Logged In: YES 
user_id=61408

related: at the moment our generator impl does not support a
yield inside a finally clause, given that sun itself is not
using jsr anymore

http://developer.java.sun.com/developer/bugParade/bugs/4381996.html

it makes sense to do the same to achieve that and stress the
verifier less.
msg2333 (view) Author: Randy Brown (lycotic) Date: 2004-01-05.18:12:59
Logged In: YES 
user_id=920303

Hmm; I suspect that Sun will have to lift the bytcode limit
on methods if they go through with this.  I suspect most
jsps are turning jsrs back on.

Still, it shouldn't be that hard to inline the finallys; for
most cases, it'll even shorten the code.  I'll look into it.
msg2334 (view) Author: Randy Brown (lycotic) Date: 2004-01-11.00:36:20
Logged In: YES 
user_id=920303

See 868514; I think I'll withdraw this one pending discussion there.
msg2335 (view) Author: Samuele Pedroni (pedronis) Date: 2005-01-09.19:51:53
Logged In: YES 
user_id=61408

indeed 868514 is the relevant one.
msg2336 (view) Author: Brian Zimmer (bzimmer) Date: 2005-02-20.20:33:09
Logged In: YES 
user_id=37674

Deleting in favor of #868514
History
Date User Action Args
2004-01-02 04:17:32lycoticcreate