Font Size: a A A

Efficient implementation of first-class polymorphic methods in Java

Posted on:2006-02-19Degree:M.SType:Thesis
University:Rice UniversityCandidate:Sasitorn, JamesFull Text:PDF
GTID:2458390008451082Subject:Computer Science
Abstract/Summary:
This thesis describes a new implementation architecture for polymorphic methods in Generic Java using the NEXTGEN compiler framework. The standard Generic Java (Java 1.5) compiler erases generic types at compilation. This transformation prohibits type-dependent operations, limiting generic expressivity. Type erasure causes unchecked warnings at compilation, and unexpected behavior or exceptions at runtime. Alternative reflection-based implementations of Generic Java support type-dependent operations at the cost of significant execution overhead. In contrast, this work presents an efficient implementation of polymorphic methods using NEXTG EN. An extended NEXTGEN compiler generates snippet environment template classes to encode type-dependent operations for polymorphic methods. A customized class-loader generates specialized template instantiations on demand. This demand-driven code specialization provides an efficient mechanism to propagate runtime type information, while maintaining backwards compatibility with existing libraries and Java Virtual Machines. Benchmarks show runtime support for polymorphic methods in NEXTG EN outperforms reflection-based approaches, with runtime overhead comparable to erasure-based Generic Java.
Keywords/Search Tags:Polymorphic methods, Generic java, NEXTGEN compiler, NEXTG EN, Implementation, Runtime
Related items