Shark OSR support

Gary Benson gbenson at redhat.com
Fri Aug 28 06:37:08 PDT 2009


Hi all,

This patch adds support for on-stack replacement (OSR) to Shark.  OSR
allows long running methods to be JIT compiled while they are running.
After a certain number of backedges, the interpreter packs the
method's stack frame into a buffer and compiles a special version of
the method that will unpack the buffer and start at the backedge in
question.  This allows methods to be compiled that wouldn't normally,
and probably makes the JIT warm up faster.

If you're running with -J-XX:+PrintCompilation you'll see OSR
compilations in the log, marked with '%' signs:

  1       java.lang.String::hashCode (60 bytes)
  2       java.lang.String::indexOf (152 bytes)
  3       java.lang.String::charAt (33 bytes)
  4       sun.nio.cs.UTF_8$Encoder::encodeArrayLoop (490 bytes)
  1%      java.lang.String::indexOf @ 65 (163 bytes)
  2%      java.io.UnixFileSystem::normalize @ 13 (75 bytes)
  3%      sun.nio.cs.UTF_8$Decoder::decodeArrayLoop @ 76 (553 bytes)
  5       java.lang.String::equals (91 bytes)
  6  !    java.io.BufferedReader::readLine (300 bytes)
  7       java.lang.String::lastIndexOf (157 bytes)
  8       java.io.UnixFileSystem::normalize (75 bytes)
  9       java.lang.Object::<init> (1 bytes)
 10       sun.nio.cs.UTF_8$Decoder::decodeArrayLoop (553 bytes)
 11       java.lang.String::compareTo (147 bytes)
  4%s     java.util.Hashtable::contains @ 31 (66 bytes)
 12       java.lang.Math::min (11 bytes)
 ...

Cheers,
Gary

-- 
http://gbenson.net/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: patch.2
Type: application/x-troff-man
Size: 23786 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20090828/65913bd5/patch.2 


More information about the distro-pkg-dev mailing list