comparison CHANGELOG.md @ 15566:f2988cdf41ee

Small addition to changelog.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Thu, 08 May 2014 22:56:16 +0200
parents dd624471bd30
children 10732e1421ee
comparison
equal deleted inserted replaced
15565:6b7c5c7d0d81 15566:f2988cdf41ee
11 * New MatchRule facility to convert multiple HIR nodes into specialized LIR 11 * New MatchRule facility to convert multiple HIR nodes into specialized LIR
12 * ... 12 * ...
13 13
14 ### Truffle 14 ### Truffle
15 * The method `CallTarget#call` takes now a variable number of Object arguments. 15 * The method `CallTarget#call` takes now a variable number of Object arguments.
16 * Support for collecting stack traces and for accessing the current frame in slow paths. 16 * Support for collecting stack traces and for accessing the current frame in slow paths (see `TruffleRuntime#getStackTrace`).
17 * Renamed `CallNode` to `DirectCallNode`. 17 * Renamed `CallNode` to `DirectCallNode`.
18 * Renamed `TruffleRuntime#createCallNode` to `TruffleRuntime#createDirectCallNode`. 18 * Renamed `TruffleRuntime#createCallNode` to `TruffleRuntime#createDirectCallNode`.
19 * Added `IndirectCallNode` for calls with a changing `CallTarget`. 19 * Added `IndirectCallNode` for calls with a changing `CallTarget`.
20 * Added `TruffleRuntime#createIndirectCallNode` to create an `IndirectCallNode`. 20 * Added `TruffleRuntime#createIndirectCallNode` to create an `IndirectCallNode`.
21 * `DirectCallNode#inline` was renamed to `DirectCallNode#forceInlining()`. 21 * `DirectCallNode#inline` was renamed to `DirectCallNode#forceInlining()`.