Java Solaris Communities Sun Store Join SDN My Profile Why Join?
 
Bug Database
Bug Detail
Quick Lists
Top 25 Bugs
Top 25 RFE's
Recently Closed Bugs
Printable Page Printable Page


Bug Database
Bug ID: 6804517
Votes 2
Synopsis some languages need to be able to perform tail calls
Category hotspot:compiler2
Reported Against
Release Fixed
State 1-Dispatched, request for enhancement
Priority: 3-Medium
Related Bugs
Submit Date 12-FEB-2009
Description
http://blogs.sun.com/jrose/entry/tail_calls_in_the_vm

A major pain point in some language implementations is chaining method calls from callee to callee to callee, never returning to any previous callee, without blowing the stack.  Tail calls provide the standard remedy.

This requires support from several system components besides the JVM compiler:

- verifiable bytecode syntax for specifying hard tail calls (see blog for proposal)
- runtime support for tail calls through various calling sequences & combinations
- compile-time optimizations

Workarounds include requiring language implementors to inline across all tail calls, and to replace native JVM calling sequences with resettable calling sequences which use exceptions to transfer control down to trampolines frames instead of growing the stack.  These workarounds harm language functionality and inter-language interoperability.

Apart from language features visible to end userse, tail calls are also a powerful way to compose behavioral units inside of language runtimes.  In particular, the ability to tail-call from one handler at a dynamic call site to another handler provides flexible separation of concerns within the metaobject protocol which handles the dispatching of the call site.  This separation of concerns is traditionally managed with procedural abstraction, but without tail calls it can leave many undesirable frames on the stack between the original caller and its ultimate callee; these frames obscure debugger displays and sometimes cause bugs (such as stack overflow).
Posted Date : 2009-02-12 00:47:18.0
Work Around
N/A
Evaluation
N/A
Comments
  
  Include a link with my name & email   


PLEASE NOTE: JDK6 is formerly known as Project Mustang