comparison CHANGELOG.md @ 15175:78f1a1a70628

Adapt CHANGELOG to reflect new signature of CallTarget#call.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 16 Apr 2014 22:54:48 +0200
parents 5634b199c4da
children 319deee16746
comparison
equal deleted inserted replaced
15174:20cd3e31b87d 15175:78f1a1a70628
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().