diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index ec1fe8272ed..1b2c25d336f 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -105,8 +105,6 @@ constrained to be the same as the CFG for the LLVM input code.
  • LLVM now has new loop unrolling and loop unswitching passes.
  • The induction variable substitution pass performs linear function test replacement and exit value replacement optimizations.
  • -
  • The LLVM Bytecode file format is now - documented.
  • LLVM now has first-class support for Accurate Garbage Collection, enabling the use of aggressive copying and generational collectors.
  • @@ -119,6 +117,15 @@ basic blocks to track down reduce miscompilation testcases. This includes the JIT compiler.
  • The LLVM code generator is now being documented.
  • +
  • There is a new tool, llvm-abcd, the Analysis of ByteCode Dumper (abcd). +This tool can compute basic statistics and bytecode density statistics on a +module or function basis and also dump out bytecode in a textual format that +is lower level than assembly (values are not resolved from slot numbers). +It should only be of interest to (a) those who are working to improve the +bytecode format and (b) those who really want to understand or document the +details of the bytecode format.
  • +
  • The LLVM Bytecode file format is now + being documented.