JDK-8038455 : Use single Context for all rounds of annotation processing
  • Type: Enhancement
  • Component: tools
  • Sub-Component: javac
  • Affected Version: 8
  • Priority: P3
  • Status: Closed
  • Resolution: Fixed
  • Submitted: 2014-03-27
  • Updated: 2017-05-17
  • Resolved: 2014-04-08
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9
9 b08Fixed
Related Reports
Duplicate :  
Duplicate :  
Relates :  
Relates :  
Description
Currently, most of javac's services and data get cleared between annotation processing rounds. That requires re-reading all classfiles, including those that originate on boot and compile classpath. If we could reuse the ClassSymbol from the boot and compile classpath as well as the javac services across annotation processing rounds, javac performance could be improved.

This is a fork of JDK-2206926.