comparison CHANGELOG.md @ 15182:89325b6051ea

Merge
author Matthias Grimmer <grimmer@ssw.jku.at>
date Thu, 17 Apr 2014 08:22:21 +0200
parents 78f1a1a70628
children 319deee16746
comparison
equal deleted inserted replaced
15181:5be5e917e421 15182:89325b6051ea
5 * Explicit support for oop compression/uncompression in high level graph. 5 * Explicit support for oop compression/uncompression in high level graph.
6 * LIRGenerator refactoring. 6 * LIRGenerator refactoring.
7 * Explicit types for inputs (InputType enum). 7 * Explicit types for inputs (InputType enum).
8 * Added graal.version system property to Graal enabled VM builds. 8 * Added graal.version system property to Graal enabled VM builds.
9 * Transitioned to JDK 8 as minimum JDK level for Graal. 9 * Transitioned to JDK 8 as minimum JDK level for Graal.
10 * Added support for stack introspection 10 * Added support for stack introspection.
11 * ... 11 * ...
12 12
13 ### Truffle 13 ### Truffle
14 * Support for collecting stack traces and for accessing the current frame in slow paths 14 * The method CallTarget#call takes now a variable number of Object arguments.
15 * Support for collecting stack traces and for accessing the current frame in slow paths.
15 * Renamed CallNode to DirectCallNode. 16 * Renamed CallNode to DirectCallNode.
16 * Renamed TruffleRuntime#createCallNode to TruffleRuntime#createDirectCallNode. 17 * Renamed TruffleRuntime#createCallNode to TruffleRuntime#createDirectCallNode.
17 * Added IndirectCallNode for calls with a changing CallTarget. 18 * Added IndirectCallNode for calls with a changing CallTarget.
18 * Added TruffleRuntime#createIndirectCallNode to create an IndirectCallNode. 19 * Added TruffleRuntime#createIndirectCallNode to create an IndirectCallNode.
19 * DirectCallNode#inline was renamed to DirectCallNode#forceInlining(). 20 * DirectCallNode#inline was renamed to DirectCallNode#forceInlining().