SlideShare a Scribd company logo
1 of 209
Download to read offline
JVM for Dummies
                            (and for the rest of you, as well)




Wednesday, July 27, 2011
Intro
                    •      Charles Oliver Nutter
                           •   “JRuby Guy”
                           •   Sun Microsystems 2006-2009
                           •   Engine Yard 2009-
                    •      Primarily responsible for compiler, perf
                           •   Lots of bytecode generation
                           •   Lots of JIT monitoring


Wednesday, July 27, 2011
Today
                    •      JVM Bytecode
                           •   Inspection
                           •   Generation
                           •   How it works
                    •      JVM JIT
                           •   How it works
                           •   Monitoring
                           •   Assembly (don’t be scared!)


Wednesday, July 27, 2011
Today
                    •      JVM Bytecode
                           •
                           •
                           •
                               Inspection
                               Generation      }   For Dummies




                                               }
                               How it works
                    •      JVM JIT
                           •   How it works        For people who want
                           •   Monitoring          to feel like Dummies
                           •   Assembly


Wednesday, July 27, 2011
Part One:
                           Bytecode


Wednesday, July 27, 2011
Bytecode Definition

                    • “... instruction sets designed for efficient
                           execution by a software interpreter ...”
                    • “... suitable for further compilation into
                           machine code.




Wednesday, July 27, 2011
Byte Code

                    • One-byte instructions
                    • 256 possible “opcodes”
                    • 200 in use on current JVMs
                     • Room for more :-)
                    • Little variation since Java 1.0

Wednesday, July 27, 2011
Microsoft’s CLR

                    • Stack-based, but not interpreted
                    • Two-byte “Wordcodes”
                    • Similar operations to JVM


Wednesday, July 27, 2011
Why Learn It
                    • Know your platform
                     • Full understanding from top to bottom
                    • Bytecode generation is fun and easy
                     • Build your own language?
                    • May need to read bytecode someday
                     • Many libraries generate bytecode
Wednesday, July 27, 2011
Hello World

                   public class HelloWorld {
                       public static void main(String[] args) {
                           System.out.println("Hello, world");
                       }
                   }




Wednesday, July 27, 2011
javap
                    • Java class file disassembler
                    • Basic operation shows class structure
                     • Methods, superclasses, interface, etc
                    • -c flag includes bytecode
                    • -public, -private, -protected
                    • -verbose for stack size, locals, args
Wednesday, July 27, 2011
javap

                    ~/projects/bytecode_for_dummies ➔ javap HelloWorld
                    Compiled from "HelloWorld.java"
                    public class HelloWorld extends java.lang.Object{
                        public HelloWorld();
                        public static void main(java.lang.String[]);
                    }




Wednesday, July 27, 2011
javap -c
  ~/projects/bytecode_for_dummies ➔ javap -c HelloWorld
  Compiled from "HelloWorld.java"
  public class HelloWorld extends java.lang.Object{
  public HelloWorld();
    Code:
     0:! aload_0
     1:! invokespecial!#1; //Method java/lang/Object."<init>":()V
     4:! return

  public static void main(java.lang.String[]);
    Code:
     0:! getstatic! #2; //Field java/lang/System.out:Ljava/io/PrintStream;
     3:! ldc!#3; //String Hello, world
     5:! invokevirtual!#4; //Method java/io/PrintStream.println:
                                                        (Ljava/lang/String;)V
     8:! return

  }



Wednesday, July 27, 2011
javap -verbose
      ~/projects/bytecode_for_dummies ➔ javap -c -verbose HelloWorld
      Compiled from "HelloWorld.java"
      public class HelloWorld extends java.lang.Object
        SourceFile: "HelloWorld.java"
        minor version: 0
        major version: 50
        Constant pool:
      const #1 = Method! #6.#15;!// java/lang/Object."<init>":()V
      const #2 = Field!#16.#17;! / java/lang/System.out:Ljava/io/PrintStream;
                               /
      const #3 = String! #18;! / Hello, world
                               /
      const #4 = Method! #19.#20;! / java/io/PrintStream.println:(Ljava/lang/String;)V
                                   /
      const #5 = class!#21;! / HelloWorld
                           /
      ...

      {




Wednesday, July 27, 2011
javap -verbose

  ...
  public HelloWorld();
    Code:
      Stack=1, Locals=1, Args_size=1
      0:!aload_0
      1:!invokespecial! #1; //Method java/lang/Object."<init>":()V
      4:!return
    LineNumberTable:
      line 1: 0




Wednesday, July 27, 2011
javap -verbose
  public static void main(java.lang.String[]);
    Code:
     Stack=2, Locals=1, Args_size=1
     0:! getstatic!#2; //Field java/lang/System.out:Ljava/io/PrintStream;
     3:! ldc!
            #3; //String Hello, world
     5:! invokevirtual!
                      #4; //Method java/io/PrintStream.println:
                                                    (Ljava/lang/String;)V
     8:! return
    LineNumberTable:
     line 3: 0
     line 4: 8


  }




Wednesday, July 27, 2011
Thank you!



Wednesday, July 27, 2011
Thank you!
                             (Just Kidding)




Wednesday, July 27, 2011
Let’s try something a
                                little easier...


Wednesday, July 27, 2011
BiteScript

                    • (J)Ruby DSL for emitting JVM bytecode
                     • Internal DSL
                     • Primitive “macro” support
                     • Reads like javap -c (but nicer)
                    • http://github.com/headius/bitescript

Wednesday, July 27, 2011
Installation
                    • Download JRuby from http://jruby.org
                    • Unpack, optionally add bin/ to PATH
                     • Ahead of PATH if you have Ruby already
                    • [bin/]jruby -S gem install bitescript
                    • `bite myfile.bs` to run myfile.bs file
                    • `bitec myfile.bs` to compile myfile.bs file
Wednesday, July 27, 2011
BiteScript Users

                    • Mirah
                     • Ruby-like language for writing Java code
                     • BiteScript for JVM bytecode backend
                    • BrainF*ck implementation
                    • Other miscellaneous bytecode experiments

Wednesday, July 27, 2011
javap -c
  ~/projects/bytecode_for_dummies ➔ javap -c HelloWorld
  Compiled from "HelloWorld.java"
  public class HelloWorld extends java.lang.Object{
  public HelloWorld();
    Code:
     0:! aload_0
     1:! invokespecial!#1; //Method java/lang/Object."<init>":()V
     4:! return

  public static void main(java.lang.String[]);
    Code:
     0:! getstatic! #2; //Field java/lang/System.out:Ljava/io/PrintStream;
     3:! ldc!#3; //String Hello, world
     5:! invokevirtual!#4; //Method java/io/PrintStream.println:
                                                        (Ljava/lang/String;)V
     8:! return

  }



Wednesday, July 27, 2011
BiteScript

 main do
   getstatic java.lang.System, "out",
              java.io.PrintStream
   ldc "Hello, world!"
   invokevirtual java.io.PrintStream, "println",
       [java.lang.Void::TYPE, java.lang.Object]
   returnvoid
 end




Wednesday, July 27, 2011
BiteScript

            import java.lang.System          JRuby’s “import”
            import java.io.PrintStream        for Java classes
            main do
              getstatic System, "out", PrintStream
              ldc "Hello, world!"
              invokevirtual PrintStream, "println", [void, object]
              returnvoid
            end
                                                    Shortcuts for
                                                   void, int, string,
                                                     object, etc
Wednesday, July 27, 2011
BiteScript

                           main do
                             ldc "Hello, world!"
                             aprintln
                             returnvoid   A BiteScript “macro”
                           end




Wednesday, July 27, 2011
BiteScript

                           macro :aprintln do
                             getstatic System, "out", PrintStream
                             swap
                             invokevirtual PrintStream, "println",
                                           [void, object]
                           end




Wednesday, July 27, 2011
The Basics

                    • Stack machine
                    • Basic operations
                    • Flow control
                    • Class structures
                    • Exception handling

Wednesday, July 27, 2011
Stack Machine
                    • The “operand stack” holds operands
                    • Operations push and/or pop stack values
                     • Exceptions: nop, wide, goto, jsr/ret
                    • Stack must be consistent
                     • Largest part of bytecode verifier
                    • Stack is explicitly sized per method
Wednesday, July 27, 2011
The JVM Stack
                                                  Depth   Value
        import java.lang.System
        import java.io.PrintStream                 0

        main do
                                                   1
          getstatic System, "out", PrintStream
          ldc "Hello, world!"
          invokevirtual PrintStream, "println",
                                                   2
                                 [void, object]
          returnvoid                               3
        end
                                                   4



Wednesday, July 27, 2011
The JVM Stack
                                                  Depth      Value
        import java.lang.System
        import java.io.PrintStream                 0      out (a PS)

        main do
                                                   1
          getstatic System, "out", PrintStream
          ldc "Hello, world!"
          invokevirtual PrintStream, "println",
                                                   2
                                 [void, object]
          returnvoid                               3
        end
                                                   4



Wednesday, July 27, 2011
The JVM Stack
                                                  Depth        Value
        import java.lang.System
        import java.io.PrintStream                 0      “Hello, world!”

        main do
                                                   1        out (a PS)
          getstatic System, "out", PrintStream
          ldc "Hello, world!"
          invokevirtual PrintStream, "println",
                                                   2
                                 [void, object]
          returnvoid                               3
        end
                                                   4



Wednesday, July 27, 2011
The JVM Stack
                                                  Depth   Value
        import java.lang.System
        import java.io.PrintStream                 0

        main do
                                                   1
          getstatic System, "out", PrintStream
          ldc "Hello, world!"
          invokevirtual PrintStream, "println",
                                                   2
                                 [void, object]
          returnvoid                               3
        end
                                                   4



Wednesday, July 27, 2011
The JVM Stack
                                                  Depth   Value
        import java.lang.System
        import java.io.PrintStream                 0

        main do
                                                   1
          getstatic System, "out", PrintStream
          ldc "Hello, world!"
          invokevirtual PrintStream, "println",
                                                   2
                                 [void, object]
          returnvoid                               3
        end
                                                   4



Wednesday, July 27, 2011
Basic Operations

                    • Stack manipulation
                    • Local variables
                    • Math
                    • Boolean

Wednesday, July 27, 2011
Stack Operations
                           0x00    nop                   Do nothing.
                           0x57    pop           Discard top value from stack
                           0x58    pop2            Discard top two values
                           0x59    dup        Duplicate and push top value again
                           0x5A   dup_x1 Dup and push top value below second value
                           0x5B   dup_x2   Dup and push top value below third value
                           0x5C    dup2          Dup top two values and push
                           0x5D dup2_x1             ...below second value
                           0x5E dup2_x2              ...below third value
                           0x5F    swap              Swap top two values


Wednesday, July 27, 2011
Stack Juggling
                                        Depth    Value
                           dup
                                         0      value_0
                           pop
                           swap          1      value_1
                           dup_x1
                                         2
                           dup2_x2
                                         3

                                         4


Wednesday, July 27, 2011
Stack Juggling
                                        Depth    Value
                           dup
                                         0      value_0
                           pop
                           swap          1      value_0
                           dup_x1
                                         2      value_1
                           dup2_x2
                                         3

                                         4


Wednesday, July 27, 2011
Stack Juggling
                                        Depth    Value
                           dup
                                         0      value_0
                           pop
                           swap          1      value_1
                           dup_x1
                                         2
                           dup2_x2
                                         3

                                         4


Wednesday, July 27, 2011
Stack Juggling
                                        Depth    Value
                           dup
                                         0      value_1
                           pop
                           swap          1      value_0
                           dup_x1
                                         2
                           dup2_x2
                                         3

                                         4


Wednesday, July 27, 2011
Stack Juggling
                                        Depth    Value
                           dup
                                         0      value_1
                           pop
                           swap          1      value_0
                           dup_x1
                                         2      value_1
                           dup2_x2
                                         3

                                         4


Wednesday, July 27, 2011
Stack Juggling
                                        Depth    Value
                           dup
                                         0      value_1
                           pop
                           swap          1      value_0
                           dup_x1
                                         2      value_1
                           dup2_x2
                                         3      value_1

                                         4      value_0


Wednesday, July 27, 2011
Typed Opcodes
                            <type><operation>
                    b        byte             Constant values
                    s       short          Local vars (load, store)
                    c        char
                                       Array operations (aload, astore)
                    i         int
                                        Math ops (add, sub, mul, div)
                    l        long
                                            Boolean and bitwise
                    f        float
                    d       double              Comparisons
                    a      reference            Conversions

Wednesday, July 27, 2011
Where’s boolean?

                    • Boolean is generally int 0 or 1
                    • Boolean operations push int 0 or 1
                    • Boolean branches expect 0 or nonzero
                    • To set a boolean...use int 0 or 1

Wednesday, July 27, 2011
Constant Values
              0x01         aconst_null                  Push null on stack
         0x02-0x08 iload_[m1-5]                   Push integer [-1 to 5] on stack
         0x09-0x0A         lconst_[0,1]             Push long [0 or 1] on stack
        0x0B-0x0D fconst_[0,1,2]                 Push float [0.0, 1.0, 2.0] on stack
         0x0E-0x0F dconst_[0,1]                   Push double [0.0, 1.0] on stack
              0x10           bipush             Push byte value to stack as integer
              0x11           sipush            Push short value to stack as integer
              0x12             ldc        Push 32-bit constant to stack (int, float, string)
              0x14           ldc2_w        Push 64-bit constant to stack (long, double)



Wednesday, July 27, 2011
Why So Many?
                    • Reducing bytecode size
                     • Special iconst_0 and friends take no args
                     • bipush, sipush: only 8, 16 bits arguments
                    • Pre-optimizing JVM
                     • Specialized instructions can be optimized
                     • Doesn’t matter at all now
Wednesday, July 27, 2011
Constant Values
                                            Depth   Value

                            ldc "hello"      0
                            dconst_1
                                             1
                            aconst_null
                            bipush 4         2
                            ldc_float 2.0
                                             3
                                             4
                                             5


Wednesday, July 27, 2011
Constant Values
                                            Depth    Value

                            ldc "hello"      0      “hello”
                            dconst_1
                                             1
                            aconst_null
                            bipush 4         2
                            ldc_float 2.0
                                             3
                                             4
                                             5


Wednesday, July 27, 2011
Constant Values
                                            Depth    Value

                            ldc "hello"      0
                            dconst_1
                                                    1.0d
                                             1
                            aconst_null
                            bipush 4         2      “hello”
                            ldc_float 2.0
                                             3
                                             4
                                             5


Wednesday, July 27, 2011
Woah, Two Slots?

                    • JVM stack slots (and local vars) are 32-bit
                    • 64-bit values take up two slots
                    • “wide” before or “w” suffix
                    • 64-bit field updates not atomic!
                     • Mind those concurrent longs/doubles!

Wednesday, July 27, 2011
Constant Values
                                            Depth    Value

                            ldc "hello"      0       null
                            dconst_1
                                             1
                            aconst_null              1.0d
                            bipush 4         2
                            ldc_float 2.0
                                             3      “hello”
                                             4
                                             5


Wednesday, July 27, 2011
Constant Values
                                            Depth    Value

                            ldc "hello"      0        4
                            dconst_1
                                             1       null
                            aconst_null
                            bipush 4         2
                            ldc_float 2.0            1.0d
                                             3
                                             4      “hello”
                                             5


Wednesday, July 27, 2011
Constant Values
                                            Depth    Value

                            ldc "hello"      0       2.0f
                            dconst_1
                                             1        4
                            aconst_null
                            bipush 4         2       null
                            ldc_float 2.0
                                             3
                                                     1.0
                                             4
                                             5      “hello”


Wednesday, July 27, 2011
Local Variable Table

                    • Local variables numbered from 0
                     • Instance methods have “this” at 0
                    • Separate table maps numbers to names
                    • Explicitly sized in method definition

Wednesday, July 27, 2011
Local Variables
              0x15      iload      Load integer from local variable onto stack
            0x16        lload                          ...long...
            0x17        fload                           ...float...
            0x18       dload                         ...double...
            0x19       aload                       ...reference...
         0x1A-0x2D Packed loads                iload_0, aload_3, etc
            0x36       istore      Store integer from stack into local variable
            0x37       lstore                          ...long...
            0x38       fstore                          ...float...
            0x39      dstore                         ...double...
            0x3A      astore                       ...reference...
         0x3B-0x4E Packed stores             fstore_2, dstore_0, etc
            0x84         iinc        Add given amount to int local variable
Wednesday, July 27, 2011
Local Variables
        Var                Value                     Depth   Value
                                       ldc "hello"
          0                            bipush 4       0
                                       istore 3
          1                            dconst_0       1
                                       dstore 1
          2                            astore 0       2
                                       aload 0
          3                            iinc 3, 5
                                                      3

          4                                           4


Wednesday, July 27, 2011
Local Variables
        Var                Value                     Depth    Value
                                       ldc "hello"
          0                            bipush 4       0      “hello”
                                       istore 3
          1                            dconst_0       1
                                       dstore 1
          2                            astore 0       2
                                       aload 0
          3                            iinc 3, 5
                                                      3

          4                                           4


Wednesday, July 27, 2011
Local Variables
        Var                Value                     Depth    Value
                                       ldc "hello"
          0                            bipush 4       0        4
                                       istore 3
          1                            dconst_0       1      “hello”
                                       dstore 1
          2                            astore 0       2
                                       aload 0
          3                            iinc 3, 5
                                                      3

          4                                           4


Wednesday, July 27, 2011
Local Variables
        Var                Value                     Depth    Value
                                       ldc "hello"
          0                            bipush 4       0      “hello”
                                       istore 3
          1                            dconst_0       1
                                       dstore 1
          2                            astore 0       2
                                       aload 0
          3                 4          iinc 3, 5
                                                      3

          4                                           4


Wednesday, July 27, 2011
Local Variables
        Var                Value                     Depth    Value
                                       ldc "hello"
          0                            bipush 4       0
                                       istore 3               0.0
          1                            dconst_0       1
                                       dstore 1
          2                            astore 0       2      “hello”
                                       aload 0
          3                 4          iinc 3, 5
                                                      3

          4                                           4


Wednesday, July 27, 2011
Local Variables
        Var                Value                     Depth    Value
                                       ldc "hello"
          0                            bipush 4       0      “hello”
                                       istore 3
          1                            dconst_0       1
                           0.0         dstore 1
          2                            astore 0       2
                                       aload 0
          3                 4          iinc 3, 5
                                                      3

          4                                           4


Wednesday, July 27, 2011
Local Variables
        Var                 Value                     Depth   Value
                                        ldc "hello"
          0                “hello”      bipush 4       0
                                        istore 3
          1                             dconst_0       1
                             0.0        dstore 1
          2                             astore 0       2
                                        aload 0
          3                   4         iinc 3, 5
                                                       3

          4                                            4


Wednesday, July 27, 2011
Local Variables
        Var                 Value                     Depth    Value
                                        ldc "hello"
          0                “hello”      bipush 4       0      “hello”
                                        istore 3
          1                             dconst_0       1
                            0.0         dstore 1
          2                             astore 0       2
                                        aload 0
          3                  4          iinc 3, 5
                                                       3

          4                                            4


Wednesday, July 27, 2011
Local Variables
        Var                 Value                     Depth    Value
                                        ldc "hello"
          0                “hello”      bipush 4       0      “hello”
                                        istore 3
          1                             dconst_0       1
                            0.0         dstore 1
          2                             astore 0       2
                                        aload 0
          3                  9          iinc 3, 5
                                                       3

          4                                            4


Wednesday, July 27, 2011
Arrays
        0x2E-0x35          [i,l,f,d,a,b,c,d]aload Load [int, long, ...] from array (on stack) to stack

        0x4F-0x56          [i,l,f,d,a,b,c,d]astore Store [int, long, ...] from stack to array (on stack)

            0xBC                newarray                    Construct new primitive array

            0xBD                anewarray                  Construct new reference array

            0xBE               arraylength                          Get array length

            0xC5             multianewarray                Create multi-dimensional array




Wednesday, July 27, 2011
Arrays
                                          Depth   Value
                           iconst_2
                           newarray int    0
                           dup
                           iconst_0        1
                           iconst_m1
                                           2
                           iastore
                           iconst_0        3
                           iaload
                                           4
                                           5


Wednesday, July 27, 2011
Arrays
                                          Depth   Value
                           iconst_2
                           newarray int    0       2
                           dup
                           iconst_0        1
                           iconst_m1
                                           2
                           iastore
                           iconst_0        3
                           iaload
                                           4
                                           5


Wednesday, July 27, 2011
Arrays
                                          Depth       Value
                           iconst_2
                           newarray int    0      int[2] {0,0}
                           dup
                           iconst_0        1
                           iconst_m1
                                           2
                           iastore
                           iconst_0        3
                           iaload
                                           4
                                           5


Wednesday, July 27, 2011
Arrays
                                          Depth       Value
                           iconst_2
                           newarray int    0      int[2] {0,0}
                           dup
                           iconst_0        1      int[2] {0,0}
                           iconst_m1
                                           2
                           iastore
                           iconst_0        3
                           iaload
                                           4
                                           5


Wednesday, July 27, 2011
Arrays
                                          Depth      Value
                           iconst_2
                           newarray int    0           0
                           dup
                           iconst_0        1      int[2] {0,0}
                           iconst_m1
                                           2      int[2] {0,0}
                           iastore
                           iconst_0        3
                           iaload
                                           4
                                           5


Wednesday, July 27, 2011
Arrays
                                          Depth      Value
                           iconst_2
                           newarray int    0          -1
                           dup
                           iconst_0        1           0
                           iconst_m1
                                           2      int[2] {0,0}
                           iastore
                           iconst_0        3      int[2] {0,0}
                           iaload
                                           4
                                           5


Wednesday, July 27, 2011
Arrays
                                          Depth       Value
                           iconst_2
                           newarray int    0      int[2] {-1, 0}
                           dup
                           iconst_0        1
                           iconst_m1
                                           2
                           iastore
                           iconst_0        3
                           iaload
                                           4
                                           5


Wednesday, July 27, 2011
Arrays
                                          Depth       Value
                           iconst_2
                           newarray int    0            0
                           dup
                           iconst_0        1      int[2] {-1, 0}
                           iconst_m1
                                           2
                           iastore
                           iconst_0        3
                           iaload
                                           4
                                           5


Wednesday, July 27, 2011
Arrays
                                          Depth   Value
                           iconst_2
                           newarray int    0      -1
                           dup
                           iconst_0        1
                           iconst_m1
                                           2
                           iastore
                           iconst_0        3
                           iaload
                                           4
                                           5


Wednesday, July 27, 2011
Math Operations
                           add    subtract   multiply   divide   remainder   negate
                            +        -          *          /        %          -()

          int              iadd    isub       imul      idiv       irem      ineg

        long               ladd    lsub       lmul      ldiv       lrem      lneg

        float               fadd    fsub       fmul      fdiv       frem      fneg

     double                dadd    dsub      dmul       ddiv      drem       dneg

Wednesday, July 27, 2011
Boolean and Bitwise

                                                  unsigned
                           shift left shift right               and    or    xor
                                                  shift right

             int             ishl        ishr       iushr       iand   ior   ixor




Wednesday, July 27, 2011
Conversions
                                           To:
                           int    long   float    double   byte   char   short

                   int      -     i2l    i2f      i2d     i2b    i2c    i2s
  From:




                 long      l2i     -     l2f      l2d      -      -       -

                 float      f2i    f2l     -       f2d      -      -       -

              double       d2i    d2l    d2f       -       -      -       -

Wednesday, July 27, 2011
Comparisons
             0x94          lcmp           Compare two longs, push int -1, 0, 1


             0x95          fcmpl    Compare two floats, push in -1, 0, 1 (-1 for NaN)


             0x96          fcmpg    Compare two floats, push in -1, 0, 1 (1 for NaN)


             0x97          dcmpl   Compare two doubles, push in -1, 0, 1 (-1 for NaN)


             0x98          dcmpg   Compare two doubles, push in -1, 0, 1 (1 for NaN)




Wednesday, July 27, 2011
Flow Control

                    • Inspect stack and branch
                     • Or just branch, via goto
                    • Labels mark branch targets
                    • Wide variety of tests

Wednesday, July 27, 2011
Flow Control
              0x99              ifeq                          If zero on stack, branch
              0x9A              ifne                       If nonzero on stack, branch
              0x9B                iflt                If stack value is less than zero, branch
              0x9C               ifge    If stack value is greater than or equal to zero, branch
              0x9D               ifgt             If stack value is greater than zero, branch
              0x9E               ifle        If stack value is less than or equal to zero, branch
              0x9F         if_icmpeq                If two integers on stack are eq, branch
              0xA0         if_icmpne                If two integers on stack are ne, branch
              0xA1           if_icmplt               If two integers on stack are lt, branch
              0xA2          if_icmpge               If two integers on stack are ge, branch
              0xA3          if_icmpgt                                   If tw
                                                    If two integers on stack are gt, branch
              0xA4          if_icmple                If two integers on stack are le, branch
              0xA5         if_acmpeq         If two references on stack are the same, branch
              0xA6         if_acmpne          If two references on stack are different, branch
              0xA7              goto                                  GOTO!

Wednesday, July 27, 2011
Other Flow Control
              0xA8              jsr               Jump to subroutine (deprecated)

              0xA9              ret             Return from subroutine (deprecated)

             0xAA           tableswitch     Branch using an indexed table of jump offsets

              0xAB         lookupswitch   Branch using a lookup-based table of jump offsets

         0xAC-0xB0 [i,l,f,d,a]return       Return (int, long, float, double, reference) value

              0xB1            return         Void return (exit method, return nothing)

              0xC6             ifnull                If reference on stack is null

              0xC7           ifnonnull             If reference on stack is not null


Wednesday, July 27, 2011
Flow Control
                           aload 0
                           ldc 0
                           aaload                            Depth     Value
                           ldc "branch"                                String[]
                           invokevirtual string, "equals",    0      {“branch”}
                                         [boolean, object]
                           ifne :branch
                                                              1
                           ldc "Not equal!"
                                                              2
                           aprintln
                           goto :end                          3
                           label :branch
                           ldc "Equal!"                       4
                           aprintln
                           label :end                         5
                           returnvoid


Wednesday, July 27, 2011
Flow Control
                           aload 0
                           ldc 0
                           aaload                            Depth         Value
                           ldc "branch"
                           invokevirtual string, "equals",    0              0
                                         [boolean, object]
                           ifne :branch
                                                              1      String[]{“branch”}

                           ldc "Not equal!"
                                                              2
                           aprintln
                           goto :end                          3
                           label :branch
                           ldc "Equal!"                       4
                           aprintln
                           label :end                         5
                           returnvoid


Wednesday, July 27, 2011
Flow Control
                           aload 0
                           ldc 0
                           aaload                            Depth    Value
                           ldc "branch"
                           invokevirtual string, "equals",    0      “branch”
                                         [boolean, object]
                           ifne :branch
                                                              1
                           ldc "Not equal!"
                                                              2
                           aprintln
                           goto :end                          3
                           label :branch
                           ldc "Equal!"                       4
                           aprintln
                           label :end                         5
                           returnvoid


Wednesday, July 27, 2011
Flow Control
                           aload 0
                           ldc 0
                           aaload                            Depth    Value
                           ldc "branch"
                           invokevirtual string, "equals",    0      “branch”
                                         [boolean, object]
                           ifne :branch
                                                              1      “branch”

                           ldc "Not equal!"
                                                              2
                           aprintln
                           goto :end                          3
                           label :branch
                           ldc "Equal!"                       4
                           aprintln
                           label :end                         5
                           returnvoid


Wednesday, July 27, 2011
Flow Control
                           aload 0
                           ldc 0
                           aaload                            Depth   Value
                           ldc "branch"
                           invokevirtual string, "equals",    0       1
                                         [boolean, object]
                           ifne :branch
                                                              1
                           ldc "Not equal!"
                                                              2
                           aprintln
                           goto :end                          3
                           label :branch
                           ldc "Equal!"                       4
                           aprintln
                           label :end                         5
                           returnvoid


Wednesday, July 27, 2011
Flow Control
                           aload 0
                           ldc 0
                           aaload                            Depth   Value
                           ldc "branch"
                           invokevirtual string, "equals",    0
                                         [boolean, object]
                           ifne :branch
                                                              1
                           ldc "Not equal!"
                                                              2
                           aprintln
                           goto :end                          3
                           label :branch
                           ldc "Equal!"                       4
                           aprintln
                           label :end                         5
                           returnvoid


Wednesday, July 27, 2011
Flow Control
                           aload 0
                           ldc 0
                           aaload                            Depth   Value
                           ldc "branch"
                           invokevirtual string, "equals",    0
                                         [boolean, object]
                           ifne :branch
                                                              1
                           ldc "Not equal!"
                                                              2
                           aprintln
                           goto :end                          3
                           label :branch
                           ldc "Equal!"                       4
                           aprintln
                           label :end                         5
                           returnvoid


Wednesday, July 27, 2011
Flow Control
                           aload 0
                           ldc 0
                           aaload                            Depth    Value
                           ldc "branch"
                           invokevirtual string, "equals",    0      “Equal!”
                                         [boolean, object]
                           ifne :branch
                                                              1
                           ldc "Not equal!"
                                                              2
                           aprintln
                           goto :end                          3
                           label :branch
                           ldc "Equal!"                       4
                           aprintln
                           label :end                         5
                           returnvoid


Wednesday, July 27, 2011
Flow Control
                           aload 0
                           ldc 0
                           aaload                            Depth   Value
                           ldc "branch"
                           invokevirtual string, "equals",    0
                                         [boolean, object]
                           ifne :branch
                                                              1
                           ldc "Not equal!"
                                                              2
                           aprintln
                           goto :end                          3
                           label :branch
                           ldc "Equal!"                       4
                           aprintln
                           label :end                         5
                           returnvoid


Wednesday, July 27, 2011
Classes and Types

                    • Signatures!!!
                     • Probably the most painful part
                     • ...but not a big deal if you understand


Wednesday, July 27, 2011
Using Classes
              0xB2            getstatic                 Fetch static field from class
              0xB3            putstatic                   Set static field in class
              0xB4            getfield                 Get instance field from object
              0xB5            setfield                   Set instance field in object
              0xB6          invokevirtual           Invoke instance method on object
              0xB7          invokespecial        Invoke constructor or “super” on object
              0xB8          invokestatic               Invoke static method on class
              0xB9         invokeinterface          Invoke interface method on object
              0xBA         invokedynamic       Invoke method dynamically on object (Java 7)
              0xBB              new                  Construct new instance of object
              0xC0           checkcast                Attempt to cast object to type
              0xC1           instanceof      Push nonzero if object is instanceof specified type

Wednesday, July 27, 2011
Using Classes
                           new ArrayList
                           dup
                           invokespecial ArrayList, '<init>',   Depth        Value
                                         [void]
                                                                         an ArrayList
                           checkcast Collection                  0      (uninitialized)
                           dup
                           ldc "first element"                   1
                           invokeinterface Collection, 'add',
                                           [boolean, object]     2
                           pop
                           checkcast ArrayList                   3
                           ldc 0
                           invokevirtual ArrayList, 'get',       4
                                         [object, int]
                           aprintln                              5
                           returnvoid



Wednesday, July 27, 2011
Using Classes
                           new ArrayList
                           dup
                           invokespecial ArrayList, '<init>',   Depth        Value
                                         [void]
                                                                         an ArrayList
                           checkcast Collection                  0      (uninitialized)
                           dup
                                                                           an ArrayList
                           ldc "first element"                   1        (uninitialized)
                           invokeinterface Collection, 'add',
                                           [boolean, object]     2
                           pop
                           checkcast ArrayList                   3
                           ldc 0
                           invokevirtual ArrayList, 'get',       4
                                         [object, int]
                           aprintln                              5
                           returnvoid



Wednesday, July 27, 2011
Using Classes
                           new ArrayList
                           dup
                           invokespecial ArrayList, '<init>',   Depth      Value
                                         [void]
                           checkcast Collection                  0      an ArrayList
                           dup
                           ldc "first element"                   1
                           invokeinterface Collection, 'add',
                                           [boolean, object]     2
                           pop
                           checkcast ArrayList                   3
                           ldc 0
                           invokevirtual ArrayList, 'get',       4
                                         [object, int]
                           aprintln                              5
                           returnvoid



Wednesday, July 27, 2011
Using Classes
                           new ArrayList
                           dup
                           invokespecial ArrayList, '<init>',   Depth      Value
                                         [void]
                           checkcast Collection                  0      a Collection
                           dup
                           ldc "first element"                   1
                           invokeinterface Collection, 'add',
                                           [boolean, object]     2
                           pop
                           checkcast ArrayList                   3
                           ldc 0
                           invokevirtual ArrayList, 'get',       4
                                         [object, int]
                           aprintln                              5
                           returnvoid



Wednesday, July 27, 2011
Using Classes
                           new ArrayList
                           dup
                           invokespecial ArrayList, '<init>',   Depth       Value
                                         [void]
                           checkcast Collection                  0      a Collection
                           dup
                           ldc "first element"                   1       a Collection
                           invokeinterface Collection, 'add',
                                           [boolean, object]     2
                           pop
                           checkcast ArrayList                   3
                           ldc 0
                           invokevirtual ArrayList, 'get',       4
                                         [object, int]
                           aprintln                              5
                           returnvoid



Wednesday, July 27, 2011
Using Classes
                           new ArrayList
                           dup
                           invokespecial ArrayList, '<init>',   Depth      Value
                                         [void]
                                                                          “first
                           checkcast Collection                  0      element”
                           dup
                           ldc "first element"                   1      a Collection
                           invokeinterface Collection, 'add',
                                           [boolean, object]     2      a Collection
                           pop
                           checkcast ArrayList                   3
                           ldc 0
                           invokevirtual ArrayList, 'get',       4
                                         [object, int]
                           aprintln                              5
                           returnvoid



Wednesday, July 27, 2011
Using Classes
                           new ArrayList
                           dup
                           invokespecial ArrayList, '<init>',   Depth      Value
                                         [void]
                           checkcast Collection                  0       1 (true)
                           dup
                           ldc "first element"                   1      a Collection
                           invokeinterface Collection, 'add',
                                           [boolean, object]     2
                           pop
                           checkcast ArrayList                   3
                           ldc 0
                           invokevirtual ArrayList, 'get',       4
                                         [object, int]
                           aprintln                              5
                           returnvoid



Wednesday, July 27, 2011
Using Classes
                           new ArrayList
                           dup
                           invokespecial ArrayList, '<init>',   Depth      Value
                                         [void]
                           checkcast Collection                  0      a Collection
                           dup
                           ldc "first element"                   1
                           invokeinterface Collection, 'add',
                                           [boolean, object]     2
                           pop
                           checkcast ArrayList                   3
                           ldc 0
                           invokevirtual ArrayList, 'get',       4
                                         [object, int]
                           aprintln                              5
                           returnvoid



Wednesday, July 27, 2011
Using Classes
                           new ArrayList
                           dup
                           invokespecial ArrayList, '<init>',   Depth      Value
                                         [void]
                           checkcast Collection                  0      an ArrayList
                           dup
                           ldc "first element"                   1
                           invokeinterface Collection, 'add',
                                           [boolean, object]     2
                           pop
                           checkcast ArrayList                   3
                           ldc 0
                           invokevirtual ArrayList, 'get',       4
                                         [object, int]
                           aprintln                              5
                           returnvoid



Wednesday, July 27, 2011
Using Classes
                           new ArrayList
                           dup
                           invokespecial ArrayList, '<init>',   Depth      Value
                                         [void]
                           checkcast Collection                  0           0
                           dup
                           ldc "first element"                   1      an ArrayList
                           invokeinterface Collection, 'add',
                                           [boolean, object]     2
                           pop
                           checkcast ArrayList                   3
                           ldc 0
                           invokevirtual ArrayList, 'get',       4
                                         [object, int]
                           aprintln                              5
                           returnvoid



Wednesday, July 27, 2011
Using Classes
                           new ArrayList
                           dup
                           invokespecial ArrayList, '<init>',   Depth     Value
                                         [void]
                                                                          “first
                           checkcast Collection                  0      element”
                           dup
                           ldc "first element"                   1
                           invokeinterface Collection, 'add',
                                           [boolean, object]     2
                           pop
                           checkcast ArrayList                   3
                           ldc 0
                           invokevirtual ArrayList, 'get',       4
                                         [object, int]
                           aprintln                              5
                           returnvoid



Wednesday, July 27, 2011
Using Classes
                           new ArrayList
                           dup
                           invokespecial ArrayList, '<init>',   Depth   Value
                                         [void]
                           checkcast Collection                  0
                           dup
                           ldc "first element"                   1
                           invokeinterface Collection, 'add',
                                           [boolean, object]     2
                           pop
                           checkcast ArrayList                   3
                           ldc 0
                           invokevirtual ArrayList, 'get',       4
                                         [object, int]
                           aprintln                              5
                           returnvoid



Wednesday, July 27, 2011
Exceptions and
                              Synchronization
                                          Table structure for a method indicating start/end of
                 -           trycatch
                                                try/catch and logic to run on exception


              0xC2         monitorenter    Enter synchronized block against object on stack


              0xC3         monitorexit       Exit synchronized block (against same object)




Wednesday, July 27, 2011
More Examples


                    • A simple loop
                    • Fibonacci


Wednesday, July 27, 2011
A Simple Loop
                             main do
                               aload 0
                               push_int 0
                               aaload
                               label :top
                               dup
                               aprintln
                               goto :top
                               returnvoid
                             end
Wednesday, July 27, 2011
Fibonacci
                           public_static_method "fib", [], int, int do
                             iload 0
                             ldc 2
                             if_icmpge :recurse
                             iload 0
                             ireturn
                             label :recurse
                             iload 0
                             ldc 1
                             isub
                             invokestatic this, "fib", [int, int]
                             iload 0
                             ldc 2
                             isub
                             invokestatic this, "fib", [int, int]
                             iadd
                             ireturn
                           end


Wednesday, July 27, 2011
main do
                         load_times
                         istore 1
                                            Fibonacci
                           ldc "Raw bytecode fib(45) performance:"
                           aprintln

                           label :top
                           iload 1
                           ifeq :done
                           iinc 1, -1

                           start_timing 2
                           ldc 45
                           invokestatic this, "fib", [int, int]
                           pop
                           end_timing 2

                           ldc "Time: "
                           aprintln
                           lprintln 2
                           goto :top

                         label :done
                         returnvoid
                       end


Wednesday, July 27, 2011
main do
                         load_times
                         istore 1
                                            Fibonacci
                           ldc "Raw bytecode fib(45) performance:"
                           aprintln

                           label :top
                           iload 1
                           ifeq :done
                           iinc 1, -1

                           start_timing 2
                                                                     Macros
                           ldc 45
                           invokestatic this, "fib", [int, int]
                           pop
                           end_timing 2

                           ldc "Time: "
                           aprintln
                           lprintln 2
                           goto :top

                         label :done
                         returnvoid
                       end


Wednesday, July 27, 2011
Fibonacci

                           macro :load_times do
                             aload 0
                             ldc 0
                             aaload # number of times
                             invokestatic JInteger, 'parseInt',
                                          [int, string]
                           end




Wednesday, July 27, 2011
Fibonacci

                           macro :start_timing do |i|
                             load_time
                             lstore i
                           end




Wednesday, July 27, 2011
Fibonacci

            macro :load_time do
              invokestatic System, "currentTimeMillis", long
            end




Wednesday, July 27, 2011
Fibonacci
                           macro :end_timing do |i|
                             load_time
                             lload i
                             lsub
                             lstore i
                           end




Wednesday, July 27, 2011
Fibonacci
                      macro :lprintln do |i|
                        getstatic System, "out", PrintStream
                        lload i
                        invokevirtual PrintStream, "println",
                                      [void, long]
                      end




Wednesday, July 27, 2011
ASM

                    • “All purpose bytecode manipulation and
                           analysis framework.”
                    • De facto standard bytecode library
                    • http://asm.ow2.org


Wednesday, July 27, 2011
Basic Process

                    • Construct a ClassWriter
                    • Visit structure
                     • Annotations, methods, fields, inner classes
                    • Write out bytes

Wednesday, July 27, 2011
Blah.java
      public class Blah implements Cloneable {
          private final String fieldName;

                   public Blah() {
                       fieldName = "hello";
                   }

                   public static Blah makeBlah() {
                       return new Blah();
                   }
      }


Wednesday, July 27, 2011
ClassWriter

      ClassWriter cv = new ClassWriter(
              ClassWriter.COMPUTE_MAXS |
              ClassWriter.COMPUTE_FRAMES);




Wednesday, July 27, 2011
COMPUTE...what?
                    • COMPUTE_MAXS
                     • ASM will calculate max stack/local vars
                    • COMPUTE_FRAMES
                     • ASM will calculate Java 6 stack map
                     • Hints to verifier that we’ve pre-validated
                           stack contents (sort of)


Wednesday, July 27, 2011
Visit Class
      cv.visit(
              Opcodes.V1_6,
              Opcodes.ACC_PUBLIC,
              "Blah",
              null,
              "java/lang/Object",
              new String[] {"java/lang/Cloneable"});




Wednesday, July 27, 2011
Opcodes

                    • Interface full of constants
                     • Bytecodes
                     • Visibility modifiers
                     • Java versions
                     • Other stuff

Wednesday, July 27, 2011
ACC_*

                    • Some you know
                     • ACC_PUBLIC, ACC_ABSTRACT, etc
                    • Some you don’t
                     • ACC_BRIDGE, ACC_SYNTHETIC

Wednesday, July 27, 2011
Java Version


                    • V1_1 through V1_7
                     • Sorry 1.0!


Wednesday, July 27, 2011
Class Names
                                 "java/lang/Object"


                           packageClass.replaceAll('.', '/')




Wednesday, July 27, 2011
Visit Source

      cv.visitSource(
              "Blah.java",
              "JSR-45 source map here");




Wednesday, July 27, 2011
Visit Annotation

      AnnotationVisitor av = cv.visitAnnotation("some/Annotation", true);
      av.visitArray("name1", ...);
      av.visitEnum("name2", ...);
      av.visitEnd();




Wednesday, July 27, 2011
Blah.java


                   private final String fieldName;




Wednesday, July 27, 2011
Visit Field
      FieldVisitor fv = cv.visitField(
              Opcodes.ACC_PRIVATE | Opcodes.ACC_FINAL,
              "fieldName",
              "Ljava.lang.String;",
              null);
      fv.visitAnnotation(...);
      fv.visitAttribute(...);
      fv.visitEnd();




Wednesday, July 27, 2011
Descriptor
                               "Ljava.lang.String;"
                           "(IF[JLjava.lang.Object;)V"

                    • Primitive types
                     • B,C,S,I,J,F,D,Z,V
                    • Reference types
                     • Lsome/Class;
                    • Array
                     • Prefix with [
Wednesday, July 27, 2011
Blah.java

                   public Blah() {
                       ...
                   }

                   public static Blah makeBlah() {
                       ...
                   }




Wednesday, July 27, 2011
Visit Method
      MethodVisitor construct = cv.visitMethod(
              Opcodes.ACC_PUBLIC,
              "<init>",
              "()V",
              null,
              null);
      MethodVisitor makeBlah = cv.visitMethod(
              Opcodes.ACC_PUBLIC, ACC_STATIC,
              "makeBlah",
              "()LBlah;",
              null,
              null);

Wednesday, July 27, 2011
Special Methods

                    • <init>
                     • Constructor
                    • <clinit>
                     • Static initializer

Wednesday, July 27, 2011
MethodVisitor

                    • Visit annotation stuff
                    • Visit code
                     • Bytecodes, frames, local vars, line nums
                    • Visit maxs
                     • Pass bogus values if COMPUTE_MAXS

Wednesday, July 27, 2011
Blah.java

                   public Blah() {
                       fieldName = "hello";
                   }

                   public static Blah makeBlah() {
                       return new Blah();
                   }




Wednesday, July 27, 2011
Visit Method Body
                           construct.visitCode();
                           construct.visitVarInsn(ALOAD, 0);
                           construct.visitMethodInsn(INVOKESPECIAL,
                                   "java/lang/Object",
                                   "<init>",
                                   "()V");
                           construct.visitVarInsn(ALOAD, 0);
                           construct.visitLdcInsn("hello");
                           construct.visitFieldInsn(PUTFIELD,
                                   "Blah",
                                   "fieldName",
                                   "Ljava/lang/String;");
                           construct.visitInsn(RETURN);
                           construct.visitMaxs(2, 1);
                           construct.visitEnd();

Wednesday, July 27, 2011
ASMifierClassVisitor


                    • Dump ASM visitor calls from .class file
                    • Very raw, but very useful


Wednesday, July 27, 2011
Blah.java
      public class Blah implements Cloneable {
          private final String fieldName;

                   public Blah() {
                       fieldName = "hello";
                   }

                   public static Blah makeBlah() {
                       return new Blah();
                   }
      }


Wednesday, July 27, 2011
~/oscon ➔ java -cp asm-3.3.1.jar:asm-util-3.3.1.jar 
                   org.objectweb.asm.util.ASMifierClassVisitor 
                   Blah.class
  import java.util.*;
  import org.objectweb.asm.*;
  import org.objectweb.asm.attrs.*;
  public class BlahDump implements Opcodes {
  public static byte[] dump () throws Exception {


  ClassWriter cw = new ClassWriter(0);
  FieldVisitor fv;
  MethodVisitor mv;
  AnnotationVisitor av0;


  cw.visit(V1_6, ACC_PUBLIC + ACC_SUPER, "Blah", null, "java/lang/Object", new String[] { "java/lang/Cloneable" });
  {

  fv = cw.visitField(ACC_PRIVATE + ACC_FINAL, "fieldName", "Ljava/lang/String;", null, null);
  fv.visitEnd();
  }
  {

  mv = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null);
  mv.visitCode();
  mv.visitVarInsn(ALOAD, 0);
  mv.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "<init>", "()V");
  mv.visitVarInsn(ALOAD, 0);
  mv.visitLdcInsn("hello");
  mv.visitFieldInsn(PUTFIELD, "Blah", "fieldName", "Ljava/lang/String;");
  mv.visitInsn(RETURN);
  mv.visitMaxs(2, 1);
  mv.visitEnd();
  }
  {

  mv = cw.visitMethod(ACC_PUBLIC + ACC_STATIC, "makeBlah", "()LBlah;", null, null);
  mv.visitCode();
  mv.visitTypeInsn(NEW, "Blah");
  mv.visitInsn(DUP);
  mv.visitMethodInsn(INVOKESPECIAL, "Blah", "<init>", "()V");
  mv.visitInsn(ARETURN);
  mv.visitMaxs(2, 0);
  mv.visitEnd();
  }
  cw.visitEnd();


  return cw.toByteArray();
  }
  }




Wednesday, July 27, 2011
Real-world Cases
                    • Reflection-free invocation
                     • JRuby, Groovy, other languages
                    • Bytecoded data objects
                     • Hibernate, other data layers
                     • java.lang.reflect.Proxy and others
                    • Language compilers
Wednesday, July 27, 2011
Part Two:
                            JVM JIT


Wednesday, July 27, 2011
JIT

                    • Just-In-Time compilation
                    • Compiled when needed
                     • Maybe immediately before execution
                     • ...or when we decide it’s important
                     • ...or never?

Wednesday, July 27, 2011
Mixed-Mode
                    • Interpreted
                     • Bytecode-walking
                     • Artificial stack
                    • Compiled
                     • Direct native operations
                     • Native registers, memory, etc
Wednesday, July 27, 2011
Profiling

                    • Gather data about code while interpreting
                     • Invariants (types, constants, nulls)
                     • Statistics (branches, calls)
                    • Use that information to optimize
                     • Educated guess?

Wednesday, July 27, 2011
Optimization

                    • Loop unrolling
                    • Lock coarsening
                    • Method inlining
                    • Dead code elimination
                    • Duplicate code elimination

Wednesday, July 27, 2011
The Golden Rule
                           of Optimization

                            Don’t do unnecessary work.




Wednesday, July 27, 2011
Perf Sinks
                    • Memory accesses
                     • By far the biggest expense
                    • Calls
                     • Opaque memory ref + branch
                    • Locks, volatile writes
                     • Kills multi-cpu perf
Wednesday, July 27, 2011
Volatile?
                    • Each CPU maintains a memory cache
                    • Caches may be out of sync
                     • If it doesn’t matter, no problem
                     • If it does matter, threads disagree!
                    • Volatile forces synchronization of cache
                     • Across cores and to main memory
Wednesday, July 27, 2011
Inlining?

                    • Combine caller and callee into one unit
                     • e.g. based on profile
                     • Perhaps with a sanity check
                    • Optimize as a whole

Wednesday, July 27, 2011
Inlining
      int addAll(int max) {
          int accum = 0;
          for (int i = 0; i < max; i++) {
              accum = add(accum, i);
          }
          return accum;
      }

      int add(int a, int b) {
          return a + b;
      }


Wednesday, July 27, 2011
Inlining
      int addAll(int max) {
          int accum = 0;
          for (int i = 0; i < max; i++) {
              accum = add(accum, i);
          }
          return accum;
      }                       Only one target   is ever seen

      int add(int a, int b) {
          return a + b;
      }


Wednesday, July 27, 2011
Inlining

      int addAll(int max) {
          int accum = 0;
          for (int i = 0; i < max; i++) {
              accum = accum + i;
          }
          return accum;
      }                   Don’t bother making   a call



Wednesday, July 27, 2011
Call Site
                    • The place where you make a call
                    • Monomorphic (“one shape”)
                     • Single target class
                    • Bimorphic (“two shapes”)
                    • Polymorphic (“many shapes”)
                    • Megamorphic (“you’re screwed”)
Wednesday, July 27, 2011
Blah.java
      System.currentTimeMillis(); // static, monomorphic

      List list1 = new ArrayList(); // constructor, monomorphic
      List list2 = new LinkedList();

      for (List list : new List[]{ list1, list2 }) {
          list.add("hello"); // bimorphic
      }

      for (Object obj : new Object[]{ 'foo', list1, new Object() }) {
          obj.toString(); // polymorphic
      }




Wednesday, July 27, 2011
Hotspot
                    • -client mode (C1) inlines, less aggressive
                     • Fewer opportunities to optimize
                    • -server mode (C2) profiles, inlines
                     • We’ll focus on this
                    • Tiered mode combines them
                     • -XX:+TieredCompilation
Wednesday, July 27, 2011
Hotspot Inlining

                    • Profile to find “hot spots”
                     • Largely focused around call sites
                     • Profile until 10k calls
                    • Inline mono/bimorphic calls
                    • Other mechanisms for polymorphic calls

Wednesday, July 27, 2011
Now it gets fun!



Wednesday, July 27, 2011
Monitoring the JIT
                    • Dozens of flags
                     • PrintCompilation
                     • PrintInlining
                     • LogCompilation
                     • PrintAssembly
                    • Some in product, some in debug...
Wednesday, July 27, 2011
public class Accumulator {
          public static void main(String[] args) {
              int max = Integer.parseInt(args[0]);
              System.out.println(addAll(max));
          }

                 static int addAll(int max) {
                     int accum = 0;
                     for (int i = 0; i < max; i++) {
                         accum = add(accum, i);
                     }
                     return accum;
                 }

                 static int add(int a, int b) {
                     return a + b;
                 }
      }

Wednesday, July 27, 2011
~/oscon              ➔ java -version
      openjdk              version "1.7.0-internal"
      OpenJDK              Runtime Environment (build 1.7.0-internal-b00)
      OpenJDK              64-Bit Server VM (build 21.0-b17, mixed mode)

      ~/oscon ➔ javac Accumulator.java

      ~/oscon ➔ java Accumulator 1000
      499500




Wednesday, July 27, 2011
PrintCompilation

                    • -XX:+PrintCompilation
                    • Print methods as they are jitted
                     • Class + name + size


Wednesday, July 27, 2011
~/oscon ➔ java -XX:+PrintCompilation Accumulator 1000
        1       java.lang.String::hashCode (64 bytes)
        2       java.math.BigInteger::mulAdd (81 bytes)
        3       java.math.BigInteger::multiplyToLen (219 bytes)
        4       java.math.BigInteger::addOne (77 bytes)
        5       java.math.BigInteger::squareToLen (172 bytes)
        6       java.math.BigInteger::primitiveLeftShift (79 bytes)
        7       java.math.BigInteger::montReduce (99 bytes)
        8       sun.security.provider.SHA::implCompress (491 bytes)
        9       java.lang.String::charAt (33 bytes)
      499500




Wednesday, July 27, 2011
~/oscon ➔ java -XX:+PrintCompilation Accumulator 1000
        1       java.lang.String::hashCode (64 bytes)
        2       java.math.BigInteger::mulAdd (81 bytes)
        3       java.math.BigInteger::multiplyToLen (219 bytes)
        4       java.math.BigInteger::addOne (77 bytes)
        5       java.math.BigInteger::squareToLen (172 bytes)
        6       java.math.BigInteger::primitiveLeftShift (79 bytes)
        7       java.math.BigInteger::montReduce (99 bytes)
        8       sun.security.provider.SHA::implCompress (491 bytes)
        9       java.lang.String::charAt (33 bytes)
      499500
                           Where’s our methods?!



Wednesday, July 27, 2011
~/oscon ➔ java -XX:+PrintCompilation Accumulator 1000
        1       java.lang.String::hashCode (64 bytes)
        2       java.math.BigInteger::mulAdd (81 bytes)
        3       java.math.BigInteger::multiplyToLen (219 bytes)
        4       java.math.BigInteger::addOne (77 bytes)
        5       java.math.BigInteger::squareToLen (172 bytes)
        6       java.math.BigInteger::primitiveLeftShift (79 bytes)
        7       java.math.BigInteger::montReduce (99 bytes)
        8       sun.security.provider.SHA::implCompress (491 bytes)
        9       java.lang.String::charAt (33 bytes)
      499500
                           Where’s our methods?!
                                      ...remember...10k calls

Wednesday, July 27, 2011
10k loop, 10k calls to add

      ~/oscon ➔            java -XX:+PrintCompilation Accumulator 10000
        1                  java.lang.String::hashCode (64 bytes)
        2                  java.math.BigInteger::mulAdd (81 bytes)
        3                  java.math.BigInteger::multiplyToLen (219 bytes)
        4                  java.math.BigInteger::addOne (77 bytes)
        5                  java.math.BigInteger::squareToLen (172 bytes)
        6                  java.math.BigInteger::primitiveLeftShift (79 bytes)
        7                  java.math.BigInteger::montReduce (99 bytes)
        8                  sun.security.provider.SHA::implCompress (491 bytes)
        9                  java.lang.String::charAt (33 bytes)
       10                  Accumulator::add (4 bytes)
      49995000

                                                Hooray!


Wednesday, July 27, 2011
What’s this stuff?
           1               java.lang.String::hashCode (64 bytes)
           2               java.math.BigInteger::mulAdd (81 bytes)
           3               java.math.BigInteger::multiplyToLen (219 bytes)
           4               java.math.BigInteger::addOne (77 bytes)
           5               java.math.BigInteger::squareToLen (172 bytes)
           6               java.math.BigInteger::primitiveLeftShift (79 bytes)
           7               java.math.BigInteger::montReduce (99 bytes)
           8               sun.security.provider.SHA::implCompress (491 bytes)
           9               java.lang.String::charAt (33 bytes)




Wednesday, July 27, 2011
What’s this stuff?
           1               java.lang.String::hashCode (64 bytes)
           2               java.math.BigInteger::mulAdd (81 bytes)
           3               java.math.BigInteger::multiplyToLen (219 bytes)
           4               java.math.BigInteger::addOne (77 bytes)
           5               java.math.BigInteger::squareToLen (172 bytes)
           6               java.math.BigInteger::primitiveLeftShift (79 bytes)
           7               java.math.BigInteger::montReduce (99 bytes)
           8               sun.security.provider.SHA::implCompress (491 bytes)
           9               java.lang.String::charAt (33 bytes)



                           Class loading, security, other boot logic.


Wednesday, July 27, 2011
What if you see this...
      ~/oscon ➔ java -client -XX:+PrintCompilation Accumulator 1000
        1        java.lang.String::hashCode (64 bytes)
        2        java.math.BigInteger::mulAdd (81 bytes)
        3        java.math.BigInteger::multiplyToLen (219 bytes)
        4        java.math.BigInteger::addOne (77 bytes)
        5        java.math.BigInteger::squareToLen (172 bytes)
        5    made not entrant java.math.BigInteger::squareToLen (172 bytes)
        7        java.math.BigInteger::montReduce (99 bytes)
        6        java.math.BigInteger::primitiveLeftShift (79 bytes)
        8        java.math.BigInteger::squareToLen (172 bytes)
        9        sun.security.provider.SHA::implCompress (491 bytes)
       10        java.lang.String::charAt (33 bytes)
      499500




Wednesday, July 27, 2011
Optimistic Compiler

                    • Assume profile is accurate
                    • Aggressively optimize based on profile
                    • Bail out if we’re wrong
                     • And hope that we’re usually right

Wednesday, July 27, 2011
Deoptimization

                    • Bail out of running code
                    • Monitoring flags describe process
                     • “uncommon trap” - we were wrong
                     • “not entrant” - don’t let anyone enter
                     • “zombie” - on its way to deadness

Wednesday, July 27, 2011
What if you see this...
       20                  java.math.BigInteger::addOne (77 bytes)
       21                  java.math.BigInteger::squareToLen (172 bytes)
       22                  java.math.BigInteger::primitiveLeftShift (79 bytes)
      ---    n             java.lang.System::arraycopy (static)
       24                  sun.security.provider.SHA::implCompress (491 bytes)
       23                  java.math.BigInteger::montReduce (99 bytes)
       25                  java.lang.String$CaseInsensitiveComparator::compare (115
      bytes)
       26                  java.lang.Character::toLowerCase (162 bytes)




Wednesday, July 27, 2011
What if you see this...
       20                  java.math.BigInteger::addOne (77 bytes)
       21                  java.math.BigInteger::squareToLen (172 bytes)
       22                  java.math.BigInteger::primitiveLeftShift (79 bytes)
      ---    n             java.lang.System::arraycopy (static)
       24                  sun.security.provider.SHA::implCompress (491 bytes)
       23                  java.math.BigInteger::montReduce (99 bytes)
       25                  java.lang.String$CaseInsensitiveComparator::compare (115
      bytes)
       26                  java.lang.Character::toLowerCase (162 bytes)

         Native calls don’t compile, may be
         intrinsic. We’ll come back to that.

Wednesday, July 27, 2011
PrintInlining

                    • -XX:+UnlockDiagnosticVMOptions
                           -XX:+PrintInlining
                    • Display hierarchy of inlined methods
                    • Include reasons for not inlining
                    • More, better output on OpenJDK 7

Wednesday, July 27, 2011
~/oscon ➔ java -XX:+UnlockDiagnosticVMOptions 
      >              -XX:+PrintInlining 
      >              Accumulator 10000
      49995000




Wednesday, July 27, 2011
~/oscon ➔ java -XX:+UnlockDiagnosticVMOptions 
      >              -XX:+PrintInlining 
      >              Accumulator 10000
      49995000

                           Um...I don’t see anything inlining...




Wednesday, July 27, 2011
public class Accumulator {
          public static void main(String[] args) {
              int max = Integer.parseInt(args[0]);
              System.out.println(addAll(max));
          }
                                                       Called once
                 static int addAll(int max) {
                     int accum = 0;
                     for (int i = 0; i < max; i++) {
                         accum = add(accum, i);
                     }
                     return accum;       Called 10k      times...
                 }

                 static int add(int a, int b) {
                     return a + b;
                 }                  ...but no calls   to inline!
      }

Wednesday, July 27, 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011
JVM for Dummies - OSCON 2011

More Related Content

What's hot

PRESENTATION_CHAABA_AYOUB_ING5_ISI.pptx
PRESENTATION_CHAABA_AYOUB_ING5_ISI.pptxPRESENTATION_CHAABA_AYOUB_ING5_ISI.pptx
PRESENTATION_CHAABA_AYOUB_ING5_ISI.pptxMoulayAyoubChaaba
 
Spring boot
Spring bootSpring boot
Spring bootsdeeg
 
Deep Dive Into Kafka Tiered Storage With Satish Duggana | Current 2022
Deep Dive Into Kafka Tiered Storage With Satish Duggana | Current 2022Deep Dive Into Kafka Tiered Storage With Satish Duggana | Current 2022
Deep Dive Into Kafka Tiered Storage With Satish Duggana | Current 2022HostedbyConfluent
 
Learn Java with Dr. Rifat Shahriyar
Learn Java with Dr. Rifat ShahriyarLearn Java with Dr. Rifat Shahriyar
Learn Java with Dr. Rifat ShahriyarAbir Mohammad
 
Introduction to Spring Boot!
Introduction to Spring Boot!Introduction to Spring Boot!
Introduction to Spring Boot!Jakub Kubrynski
 
Øredev 2011 - JVM JIT for Dummies (What the JVM Does With Your Bytecode When ...
Øredev 2011 - JVM JIT for Dummies (What the JVM Does With Your Bytecode When ...Øredev 2011 - JVM JIT for Dummies (What the JVM Does With Your Bytecode When ...
Øredev 2011 - JVM JIT for Dummies (What the JVM Does With Your Bytecode When ...Charles Nutter
 
Les nouveautés de Java 21 - Devoxx MA 2023.pdf
Les nouveautés de Java 21 - Devoxx MA 2023.pdfLes nouveautés de Java 21 - Devoxx MA 2023.pdf
Les nouveautés de Java 21 - Devoxx MA 2023.pdfJean-Michel Doudoux
 
Sequence and Traverse - Part 2
Sequence and Traverse - Part 2Sequence and Traverse - Part 2
Sequence and Traverse - Part 2Philip Schwarz
 
4장. Class Loader
4장. Class Loader4장. Class Loader
4장. Class Loader김 한도
 
PHP Workshop Notes
PHP Workshop NotesPHP Workshop Notes
PHP Workshop NotesPamela Fox
 
Spring Boot in Action
Spring Boot in Action Spring Boot in Action
Spring Boot in Action Alex Movila
 
JVM Mechanics: Understanding the JIT's Tricks
JVM Mechanics: Understanding the JIT's TricksJVM Mechanics: Understanding the JIT's Tricks
JVM Mechanics: Understanding the JIT's TricksDoug Hawkins
 
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...Edureka!
 
How and why to upgrade to java 16 or 17
How and why to upgrade to java 16 or 17How and why to upgrade to java 16 or 17
How and why to upgrade to java 16 or 17Johan Janssen
 
History of asynchronous in .NET
History of asynchronous in .NETHistory of asynchronous in .NET
History of asynchronous in .NETMarcin Tyborowski
 
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...Edureka!
 

What's hot (20)

PRESENTATION_CHAABA_AYOUB_ING5_ISI.pptx
PRESENTATION_CHAABA_AYOUB_ING5_ISI.pptxPRESENTATION_CHAABA_AYOUB_ING5_ISI.pptx
PRESENTATION_CHAABA_AYOUB_ING5_ISI.pptx
 
Spring boot
Spring bootSpring boot
Spring boot
 
Deep Dive Into Kafka Tiered Storage With Satish Duggana | Current 2022
Deep Dive Into Kafka Tiered Storage With Satish Duggana | Current 2022Deep Dive Into Kafka Tiered Storage With Satish Duggana | Current 2022
Deep Dive Into Kafka Tiered Storage With Satish Duggana | Current 2022
 
Learn Java with Dr. Rifat Shahriyar
Learn Java with Dr. Rifat ShahriyarLearn Java with Dr. Rifat Shahriyar
Learn Java with Dr. Rifat Shahriyar
 
Presentation on java
Presentation  on  javaPresentation  on  java
Presentation on java
 
Features of java
Features of javaFeatures of java
Features of java
 
Spring Boot
Spring BootSpring Boot
Spring Boot
 
Introduction to Spring Boot!
Introduction to Spring Boot!Introduction to Spring Boot!
Introduction to Spring Boot!
 
Øredev 2011 - JVM JIT for Dummies (What the JVM Does With Your Bytecode When ...
Øredev 2011 - JVM JIT for Dummies (What the JVM Does With Your Bytecode When ...Øredev 2011 - JVM JIT for Dummies (What the JVM Does With Your Bytecode When ...
Øredev 2011 - JVM JIT for Dummies (What the JVM Does With Your Bytecode When ...
 
Les nouveautés de Java 21 - Devoxx MA 2023.pdf
Les nouveautés de Java 21 - Devoxx MA 2023.pdfLes nouveautés de Java 21 - Devoxx MA 2023.pdf
Les nouveautés de Java 21 - Devoxx MA 2023.pdf
 
Sequence and Traverse - Part 2
Sequence and Traverse - Part 2Sequence and Traverse - Part 2
Sequence and Traverse - Part 2
 
4장. Class Loader
4장. Class Loader4장. Class Loader
4장. Class Loader
 
Log4j in 8 slides
Log4j in 8 slidesLog4j in 8 slides
Log4j in 8 slides
 
PHP Workshop Notes
PHP Workshop NotesPHP Workshop Notes
PHP Workshop Notes
 
Spring Boot in Action
Spring Boot in Action Spring Boot in Action
Spring Boot in Action
 
JVM Mechanics: Understanding the JIT's Tricks
JVM Mechanics: Understanding the JIT's TricksJVM Mechanics: Understanding the JIT's Tricks
JVM Mechanics: Understanding the JIT's Tricks
 
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
 
How and why to upgrade to java 16 or 17
How and why to upgrade to java 16 or 17How and why to upgrade to java 16 or 17
How and why to upgrade to java 16 or 17
 
History of asynchronous in .NET
History of asynchronous in .NETHistory of asynchronous in .NET
History of asynchronous in .NET
 
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
Java Collections | Collections Framework in Java | Java Tutorial For Beginner...
 

Similar to JVM for Dummies - OSCON 2011

Introduction to Java 7 (OSCON 2012)
Introduction to Java 7 (OSCON 2012)Introduction to Java 7 (OSCON 2012)
Introduction to Java 7 (OSCON 2012)Martijn Verburg
 
JRuby - The Best of Java and Ruby
JRuby - The Best of Java and RubyJRuby - The Best of Java and Ruby
JRuby - The Best of Java and RubyEvgeny Rahman
 
The Evolution of Java
The Evolution of JavaThe Evolution of Java
The Evolution of JavaFu Cheng
 
JAVA_Day1_BasicIntroduction.pptx
JAVA_Day1_BasicIntroduction.pptxJAVA_Day1_BasicIntroduction.pptx
JAVA_Day1_BasicIntroduction.pptxMurugesh33
 
JAVAPart1_BasicIntroduction.pptx
JAVAPart1_BasicIntroduction.pptxJAVAPart1_BasicIntroduction.pptx
JAVAPart1_BasicIntroduction.pptxMurugesh33
 
T4T Training day - NodeJS
T4T Training day - NodeJST4T Training day - NodeJS
T4T Training day - NodeJSTim Sommer
 
every-day-automation
every-day-automationevery-day-automation
every-day-automationAmir Barylko
 
Java: Rumours of my demise are greatly exaggerated
Java: Rumours of my demise are greatly exaggeratedJava: Rumours of my demise are greatly exaggerated
Java: Rumours of my demise are greatly exaggeratedSteve Dalton
 
Java 7: Fork/Join, Invokedynamic and the future
Java 7: Fork/Join, Invokedynamic and the futureJava 7: Fork/Join, Invokedynamic and the future
Java 7: Fork/Join, Invokedynamic and the futureSander Mak (@Sander_Mak)
 
1 Module 1 Introduction.pptx
1 Module 1 Introduction.pptx1 Module 1 Introduction.pptx
1 Module 1 Introduction.pptxBhargaviDalal3
 
Java Presentation
Java PresentationJava Presentation
Java PresentationAmr Salah
 
2011 JavaOne Apache TomEE Java EE 6 Web Profile
2011 JavaOne Apache TomEE Java EE 6 Web Profile2011 JavaOne Apache TomEE Java EE 6 Web Profile
2011 JavaOne Apache TomEE Java EE 6 Web ProfileDavid Blevins
 
Introduction to java (revised)
Introduction to java (revised)Introduction to java (revised)
Introduction to java (revised)Sujit Majety
 
Ruby Midwest 2010 jRuby by Charles Nutter
Ruby Midwest 2010 jRuby by Charles NutterRuby Midwest 2010 jRuby by Charles Nutter
Ruby Midwest 2010 jRuby by Charles NutterSteven Chau
 
Introduction to java
Introduction to java Introduction to java
Introduction to java Java Lover
 

Similar to JVM for Dummies - OSCON 2011 (20)

Introduction to Java 7 (OSCON 2012)
Introduction to Java 7 (OSCON 2012)Introduction to Java 7 (OSCON 2012)
Introduction to Java 7 (OSCON 2012)
 
JRuby - The Best of Java and Ruby
JRuby - The Best of Java and RubyJRuby - The Best of Java and Ruby
JRuby - The Best of Java and Ruby
 
The Evolution of Java
The Evolution of JavaThe Evolution of Java
The Evolution of Java
 
Java Introduction
Java IntroductionJava Introduction
Java Introduction
 
JAVA PROGRAM CONSTRUCTS OR LANGUAGE BASICS.pptx
JAVA PROGRAM CONSTRUCTS OR LANGUAGE BASICS.pptxJAVA PROGRAM CONSTRUCTS OR LANGUAGE BASICS.pptx
JAVA PROGRAM CONSTRUCTS OR LANGUAGE BASICS.pptx
 
JAVA_Day1_BasicIntroduction.pptx
JAVA_Day1_BasicIntroduction.pptxJAVA_Day1_BasicIntroduction.pptx
JAVA_Day1_BasicIntroduction.pptx
 
JAVAPart1_BasicIntroduction.pptx
JAVAPart1_BasicIntroduction.pptxJAVAPart1_BasicIntroduction.pptx
JAVAPart1_BasicIntroduction.pptx
 
Java (1)
Java (1)Java (1)
Java (1)
 
T4T Training day - NodeJS
T4T Training day - NodeJST4T Training day - NodeJS
T4T Training day - NodeJS
 
every-day-automation
every-day-automationevery-day-automation
every-day-automation
 
Java: Rumours of my demise are greatly exaggerated
Java: Rumours of my demise are greatly exaggeratedJava: Rumours of my demise are greatly exaggerated
Java: Rumours of my demise are greatly exaggerated
 
1.Intro--Why Java.pptx
1.Intro--Why Java.pptx1.Intro--Why Java.pptx
1.Intro--Why Java.pptx
 
Java 7: Fork/Join, Invokedynamic and the future
Java 7: Fork/Join, Invokedynamic and the futureJava 7: Fork/Join, Invokedynamic and the future
Java 7: Fork/Join, Invokedynamic and the future
 
1 Module 1 Introduction.pptx
1 Module 1 Introduction.pptx1 Module 1 Introduction.pptx
1 Module 1 Introduction.pptx
 
JVM
JVMJVM
JVM
 
Java Presentation
Java PresentationJava Presentation
Java Presentation
 
2011 JavaOne Apache TomEE Java EE 6 Web Profile
2011 JavaOne Apache TomEE Java EE 6 Web Profile2011 JavaOne Apache TomEE Java EE 6 Web Profile
2011 JavaOne Apache TomEE Java EE 6 Web Profile
 
Introduction to java (revised)
Introduction to java (revised)Introduction to java (revised)
Introduction to java (revised)
 
Ruby Midwest 2010 jRuby by Charles Nutter
Ruby Midwest 2010 jRuby by Charles NutterRuby Midwest 2010 jRuby by Charles Nutter
Ruby Midwest 2010 jRuby by Charles Nutter
 
Introduction to java
Introduction to java Introduction to java
Introduction to java
 

More from Charles Nutter

The Year of JRuby - RubyC 2018
The Year of JRuby - RubyC 2018The Year of JRuby - RubyC 2018
The Year of JRuby - RubyC 2018Charles Nutter
 
Down the Rabbit Hole: An Adventure in JVM Wonderland
Down the Rabbit Hole: An Adventure in JVM WonderlandDown the Rabbit Hole: An Adventure in JVM Wonderland
Down the Rabbit Hole: An Adventure in JVM WonderlandCharles Nutter
 
Ruby Performance - The Last Mile - RubyConf India 2016
Ruby Performance - The Last Mile - RubyConf India 2016Ruby Performance - The Last Mile - RubyConf India 2016
Ruby Performance - The Last Mile - RubyConf India 2016Charles Nutter
 
JRuby 9000 - Optimizing Above the JVM
JRuby 9000 - Optimizing Above the JVMJRuby 9000 - Optimizing Above the JVM
JRuby 9000 - Optimizing Above the JVMCharles Nutter
 
JRuby and Invokedynamic - Japan JUG 2015
JRuby and Invokedynamic - Japan JUG 2015JRuby and Invokedynamic - Japan JUG 2015
JRuby and Invokedynamic - Japan JUG 2015Charles Nutter
 
JRuby 9000 - Taipei Ruby User's Group 2015
JRuby 9000 - Taipei Ruby User's Group 2015JRuby 9000 - Taipei Ruby User's Group 2015
JRuby 9000 - Taipei Ruby User's Group 2015Charles Nutter
 
Open Source Software Needs You!
Open Source Software Needs You!Open Source Software Needs You!
Open Source Software Needs You!Charles Nutter
 
InvokeBinder: Fluent Programming for Method Handles
InvokeBinder: Fluent Programming for Method HandlesInvokeBinder: Fluent Programming for Method Handles
InvokeBinder: Fluent Programming for Method HandlesCharles Nutter
 
Over 9000: JRuby in 2015
Over 9000: JRuby in 2015Over 9000: JRuby in 2015
Over 9000: JRuby in 2015Charles Nutter
 
Doing Open Source the Right Way
Doing Open Source the Right WayDoing Open Source the Right Way
Doing Open Source the Right WayCharles Nutter
 
Bringing Concurrency to Ruby - RubyConf India 2014
Bringing Concurrency to Ruby - RubyConf India 2014Bringing Concurrency to Ruby - RubyConf India 2014
Bringing Concurrency to Ruby - RubyConf India 2014Charles Nutter
 
Beyond JVM - YOW! Sydney 2013
Beyond JVM - YOW! Sydney 2013Beyond JVM - YOW! Sydney 2013
Beyond JVM - YOW! Sydney 2013Charles Nutter
 
Beyond JVM - YOW! Brisbane 2013
Beyond JVM - YOW! Brisbane 2013Beyond JVM - YOW! Brisbane 2013
Beyond JVM - YOW! Brisbane 2013Charles Nutter
 
Beyond JVM - YOW Melbourne 2013
Beyond JVM - YOW Melbourne 2013Beyond JVM - YOW Melbourne 2013
Beyond JVM - YOW Melbourne 2013Charles Nutter
 
The Future of JRuby - Baruco 2013
The Future of JRuby - Baruco 2013The Future of JRuby - Baruco 2013
The Future of JRuby - Baruco 2013Charles Nutter
 
High Performance Ruby - E4E Conference 2013
High Performance Ruby - E4E Conference 2013High Performance Ruby - E4E Conference 2013
High Performance Ruby - E4E Conference 2013Charles Nutter
 
Invokedynamic in 45 Minutes
Invokedynamic in 45 MinutesInvokedynamic in 45 Minutes
Invokedynamic in 45 MinutesCharles Nutter
 
Invokedynamic: Tales from the Trenches
Invokedynamic: Tales from the TrenchesInvokedynamic: Tales from the Trenches
Invokedynamic: Tales from the TrenchesCharles Nutter
 

More from Charles Nutter (20)

The Year of JRuby - RubyC 2018
The Year of JRuby - RubyC 2018The Year of JRuby - RubyC 2018
The Year of JRuby - RubyC 2018
 
Down the Rabbit Hole: An Adventure in JVM Wonderland
Down the Rabbit Hole: An Adventure in JVM WonderlandDown the Rabbit Hole: An Adventure in JVM Wonderland
Down the Rabbit Hole: An Adventure in JVM Wonderland
 
Ruby Performance - The Last Mile - RubyConf India 2016
Ruby Performance - The Last Mile - RubyConf India 2016Ruby Performance - The Last Mile - RubyConf India 2016
Ruby Performance - The Last Mile - RubyConf India 2016
 
JRuby 9000 - Optimizing Above the JVM
JRuby 9000 - Optimizing Above the JVMJRuby 9000 - Optimizing Above the JVM
JRuby 9000 - Optimizing Above the JVM
 
JRuby and Invokedynamic - Japan JUG 2015
JRuby and Invokedynamic - Japan JUG 2015JRuby and Invokedynamic - Japan JUG 2015
JRuby and Invokedynamic - Japan JUG 2015
 
JRuby 9000 - Taipei Ruby User's Group 2015
JRuby 9000 - Taipei Ruby User's Group 2015JRuby 9000 - Taipei Ruby User's Group 2015
JRuby 9000 - Taipei Ruby User's Group 2015
 
Open Source Software Needs You!
Open Source Software Needs You!Open Source Software Needs You!
Open Source Software Needs You!
 
InvokeBinder: Fluent Programming for Method Handles
InvokeBinder: Fluent Programming for Method HandlesInvokeBinder: Fluent Programming for Method Handles
InvokeBinder: Fluent Programming for Method Handles
 
Over 9000: JRuby in 2015
Over 9000: JRuby in 2015Over 9000: JRuby in 2015
Over 9000: JRuby in 2015
 
Doing Open Source the Right Way
Doing Open Source the Right WayDoing Open Source the Right Way
Doing Open Source the Right Way
 
JRuby: The Hard Parts
JRuby: The Hard PartsJRuby: The Hard Parts
JRuby: The Hard Parts
 
Bringing Concurrency to Ruby - RubyConf India 2014
Bringing Concurrency to Ruby - RubyConf India 2014Bringing Concurrency to Ruby - RubyConf India 2014
Bringing Concurrency to Ruby - RubyConf India 2014
 
Beyond JVM - YOW! Sydney 2013
Beyond JVM - YOW! Sydney 2013Beyond JVM - YOW! Sydney 2013
Beyond JVM - YOW! Sydney 2013
 
Beyond JVM - YOW! Brisbane 2013
Beyond JVM - YOW! Brisbane 2013Beyond JVM - YOW! Brisbane 2013
Beyond JVM - YOW! Brisbane 2013
 
Beyond JVM - YOW Melbourne 2013
Beyond JVM - YOW Melbourne 2013Beyond JVM - YOW Melbourne 2013
Beyond JVM - YOW Melbourne 2013
 
Down the Rabbit Hole
Down the Rabbit HoleDown the Rabbit Hole
Down the Rabbit Hole
 
The Future of JRuby - Baruco 2013
The Future of JRuby - Baruco 2013The Future of JRuby - Baruco 2013
The Future of JRuby - Baruco 2013
 
High Performance Ruby - E4E Conference 2013
High Performance Ruby - E4E Conference 2013High Performance Ruby - E4E Conference 2013
High Performance Ruby - E4E Conference 2013
 
Invokedynamic in 45 Minutes
Invokedynamic in 45 MinutesInvokedynamic in 45 Minutes
Invokedynamic in 45 Minutes
 
Invokedynamic: Tales from the Trenches
Invokedynamic: Tales from the TrenchesInvokedynamic: Tales from the Trenches
Invokedynamic: Tales from the Trenches
 

Recently uploaded

Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 

Recently uploaded (20)

Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 

JVM for Dummies - OSCON 2011

  • 1. JVM for Dummies (and for the rest of you, as well) Wednesday, July 27, 2011
  • 2. Intro • Charles Oliver Nutter • “JRuby Guy” • Sun Microsystems 2006-2009 • Engine Yard 2009- • Primarily responsible for compiler, perf • Lots of bytecode generation • Lots of JIT monitoring Wednesday, July 27, 2011
  • 3. Today • JVM Bytecode • Inspection • Generation • How it works • JVM JIT • How it works • Monitoring • Assembly (don’t be scared!) Wednesday, July 27, 2011
  • 4. Today • JVM Bytecode • • • Inspection Generation } For Dummies } How it works • JVM JIT • How it works For people who want • Monitoring to feel like Dummies • Assembly Wednesday, July 27, 2011
  • 5. Part One: Bytecode Wednesday, July 27, 2011
  • 6. Bytecode Definition • “... instruction sets designed for efficient execution by a software interpreter ...” • “... suitable for further compilation into machine code. Wednesday, July 27, 2011
  • 7. Byte Code • One-byte instructions • 256 possible “opcodes” • 200 in use on current JVMs • Room for more :-) • Little variation since Java 1.0 Wednesday, July 27, 2011
  • 8. Microsoft’s CLR • Stack-based, but not interpreted • Two-byte “Wordcodes” • Similar operations to JVM Wednesday, July 27, 2011
  • 9. Why Learn It • Know your platform • Full understanding from top to bottom • Bytecode generation is fun and easy • Build your own language? • May need to read bytecode someday • Many libraries generate bytecode Wednesday, July 27, 2011
  • 10. Hello World public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, world"); } } Wednesday, July 27, 2011
  • 11. javap • Java class file disassembler • Basic operation shows class structure • Methods, superclasses, interface, etc • -c flag includes bytecode • -public, -private, -protected • -verbose for stack size, locals, args Wednesday, July 27, 2011
  • 12. javap ~/projects/bytecode_for_dummies ➔ javap HelloWorld Compiled from "HelloWorld.java" public class HelloWorld extends java.lang.Object{ public HelloWorld(); public static void main(java.lang.String[]); } Wednesday, July 27, 2011
  • 13. javap -c ~/projects/bytecode_for_dummies ➔ javap -c HelloWorld Compiled from "HelloWorld.java" public class HelloWorld extends java.lang.Object{ public HelloWorld(); Code: 0:! aload_0 1:! invokespecial!#1; //Method java/lang/Object."<init>":()V 4:! return public static void main(java.lang.String[]); Code: 0:! getstatic! #2; //Field java/lang/System.out:Ljava/io/PrintStream; 3:! ldc!#3; //String Hello, world 5:! invokevirtual!#4; //Method java/io/PrintStream.println: (Ljava/lang/String;)V 8:! return } Wednesday, July 27, 2011
  • 14. javap -verbose ~/projects/bytecode_for_dummies ➔ javap -c -verbose HelloWorld Compiled from "HelloWorld.java" public class HelloWorld extends java.lang.Object SourceFile: "HelloWorld.java" minor version: 0 major version: 50 Constant pool: const #1 = Method! #6.#15;!// java/lang/Object."<init>":()V const #2 = Field!#16.#17;! / java/lang/System.out:Ljava/io/PrintStream; / const #3 = String! #18;! / Hello, world / const #4 = Method! #19.#20;! / java/io/PrintStream.println:(Ljava/lang/String;)V / const #5 = class!#21;! / HelloWorld / ... { Wednesday, July 27, 2011
  • 15. javap -verbose ... public HelloWorld(); Code: Stack=1, Locals=1, Args_size=1 0:!aload_0 1:!invokespecial! #1; //Method java/lang/Object."<init>":()V 4:!return LineNumberTable: line 1: 0 Wednesday, July 27, 2011
  • 16. javap -verbose public static void main(java.lang.String[]); Code: Stack=2, Locals=1, Args_size=1 0:! getstatic!#2; //Field java/lang/System.out:Ljava/io/PrintStream; 3:! ldc! #3; //String Hello, world 5:! invokevirtual! #4; //Method java/io/PrintStream.println: (Ljava/lang/String;)V 8:! return LineNumberTable: line 3: 0 line 4: 8 } Wednesday, July 27, 2011
  • 18. Thank you! (Just Kidding) Wednesday, July 27, 2011
  • 19. Let’s try something a little easier... Wednesday, July 27, 2011
  • 20. BiteScript • (J)Ruby DSL for emitting JVM bytecode • Internal DSL • Primitive “macro” support • Reads like javap -c (but nicer) • http://github.com/headius/bitescript Wednesday, July 27, 2011
  • 21. Installation • Download JRuby from http://jruby.org • Unpack, optionally add bin/ to PATH • Ahead of PATH if you have Ruby already • [bin/]jruby -S gem install bitescript • `bite myfile.bs` to run myfile.bs file • `bitec myfile.bs` to compile myfile.bs file Wednesday, July 27, 2011
  • 22. BiteScript Users • Mirah • Ruby-like language for writing Java code • BiteScript for JVM bytecode backend • BrainF*ck implementation • Other miscellaneous bytecode experiments Wednesday, July 27, 2011
  • 23. javap -c ~/projects/bytecode_for_dummies ➔ javap -c HelloWorld Compiled from "HelloWorld.java" public class HelloWorld extends java.lang.Object{ public HelloWorld(); Code: 0:! aload_0 1:! invokespecial!#1; //Method java/lang/Object."<init>":()V 4:! return public static void main(java.lang.String[]); Code: 0:! getstatic! #2; //Field java/lang/System.out:Ljava/io/PrintStream; 3:! ldc!#3; //String Hello, world 5:! invokevirtual!#4; //Method java/io/PrintStream.println: (Ljava/lang/String;)V 8:! return } Wednesday, July 27, 2011
  • 24. BiteScript main do getstatic java.lang.System, "out", java.io.PrintStream ldc "Hello, world!" invokevirtual java.io.PrintStream, "println", [java.lang.Void::TYPE, java.lang.Object] returnvoid end Wednesday, July 27, 2011
  • 25. BiteScript import java.lang.System JRuby’s “import” import java.io.PrintStream for Java classes main do getstatic System, "out", PrintStream ldc "Hello, world!" invokevirtual PrintStream, "println", [void, object] returnvoid end Shortcuts for void, int, string, object, etc Wednesday, July 27, 2011
  • 26. BiteScript main do ldc "Hello, world!" aprintln returnvoid A BiteScript “macro” end Wednesday, July 27, 2011
  • 27. BiteScript macro :aprintln do getstatic System, "out", PrintStream swap invokevirtual PrintStream, "println", [void, object] end Wednesday, July 27, 2011
  • 28. The Basics • Stack machine • Basic operations • Flow control • Class structures • Exception handling Wednesday, July 27, 2011
  • 29. Stack Machine • The “operand stack” holds operands • Operations push and/or pop stack values • Exceptions: nop, wide, goto, jsr/ret • Stack must be consistent • Largest part of bytecode verifier • Stack is explicitly sized per method Wednesday, July 27, 2011
  • 30. The JVM Stack Depth Value import java.lang.System import java.io.PrintStream 0 main do 1 getstatic System, "out", PrintStream ldc "Hello, world!" invokevirtual PrintStream, "println", 2 [void, object] returnvoid 3 end 4 Wednesday, July 27, 2011
  • 31. The JVM Stack Depth Value import java.lang.System import java.io.PrintStream 0 out (a PS) main do 1 getstatic System, "out", PrintStream ldc "Hello, world!" invokevirtual PrintStream, "println", 2 [void, object] returnvoid 3 end 4 Wednesday, July 27, 2011
  • 32. The JVM Stack Depth Value import java.lang.System import java.io.PrintStream 0 “Hello, world!” main do 1 out (a PS) getstatic System, "out", PrintStream ldc "Hello, world!" invokevirtual PrintStream, "println", 2 [void, object] returnvoid 3 end 4 Wednesday, July 27, 2011
  • 33. The JVM Stack Depth Value import java.lang.System import java.io.PrintStream 0 main do 1 getstatic System, "out", PrintStream ldc "Hello, world!" invokevirtual PrintStream, "println", 2 [void, object] returnvoid 3 end 4 Wednesday, July 27, 2011
  • 34. The JVM Stack Depth Value import java.lang.System import java.io.PrintStream 0 main do 1 getstatic System, "out", PrintStream ldc "Hello, world!" invokevirtual PrintStream, "println", 2 [void, object] returnvoid 3 end 4 Wednesday, July 27, 2011
  • 35. Basic Operations • Stack manipulation • Local variables • Math • Boolean Wednesday, July 27, 2011
  • 36. Stack Operations 0x00 nop Do nothing. 0x57 pop Discard top value from stack 0x58 pop2 Discard top two values 0x59 dup Duplicate and push top value again 0x5A dup_x1 Dup and push top value below second value 0x5B dup_x2 Dup and push top value below third value 0x5C dup2 Dup top two values and push 0x5D dup2_x1 ...below second value 0x5E dup2_x2 ...below third value 0x5F swap Swap top two values Wednesday, July 27, 2011
  • 37. Stack Juggling Depth Value dup 0 value_0 pop swap 1 value_1 dup_x1 2 dup2_x2 3 4 Wednesday, July 27, 2011
  • 38. Stack Juggling Depth Value dup 0 value_0 pop swap 1 value_0 dup_x1 2 value_1 dup2_x2 3 4 Wednesday, July 27, 2011
  • 39. Stack Juggling Depth Value dup 0 value_0 pop swap 1 value_1 dup_x1 2 dup2_x2 3 4 Wednesday, July 27, 2011
  • 40. Stack Juggling Depth Value dup 0 value_1 pop swap 1 value_0 dup_x1 2 dup2_x2 3 4 Wednesday, July 27, 2011
  • 41. Stack Juggling Depth Value dup 0 value_1 pop swap 1 value_0 dup_x1 2 value_1 dup2_x2 3 4 Wednesday, July 27, 2011
  • 42. Stack Juggling Depth Value dup 0 value_1 pop swap 1 value_0 dup_x1 2 value_1 dup2_x2 3 value_1 4 value_0 Wednesday, July 27, 2011
  • 43. Typed Opcodes <type><operation> b byte Constant values s short Local vars (load, store) c char Array operations (aload, astore) i int Math ops (add, sub, mul, div) l long Boolean and bitwise f float d double Comparisons a reference Conversions Wednesday, July 27, 2011
  • 44. Where’s boolean? • Boolean is generally int 0 or 1 • Boolean operations push int 0 or 1 • Boolean branches expect 0 or nonzero • To set a boolean...use int 0 or 1 Wednesday, July 27, 2011
  • 45. Constant Values 0x01 aconst_null Push null on stack 0x02-0x08 iload_[m1-5] Push integer [-1 to 5] on stack 0x09-0x0A lconst_[0,1] Push long [0 or 1] on stack 0x0B-0x0D fconst_[0,1,2] Push float [0.0, 1.0, 2.0] on stack 0x0E-0x0F dconst_[0,1] Push double [0.0, 1.0] on stack 0x10 bipush Push byte value to stack as integer 0x11 sipush Push short value to stack as integer 0x12 ldc Push 32-bit constant to stack (int, float, string) 0x14 ldc2_w Push 64-bit constant to stack (long, double) Wednesday, July 27, 2011
  • 46. Why So Many? • Reducing bytecode size • Special iconst_0 and friends take no args • bipush, sipush: only 8, 16 bits arguments • Pre-optimizing JVM • Specialized instructions can be optimized • Doesn’t matter at all now Wednesday, July 27, 2011
  • 47. Constant Values Depth Value ldc "hello" 0 dconst_1 1 aconst_null bipush 4 2 ldc_float 2.0 3 4 5 Wednesday, July 27, 2011
  • 48. Constant Values Depth Value ldc "hello" 0 “hello” dconst_1 1 aconst_null bipush 4 2 ldc_float 2.0 3 4 5 Wednesday, July 27, 2011
  • 49. Constant Values Depth Value ldc "hello" 0 dconst_1 1.0d 1 aconst_null bipush 4 2 “hello” ldc_float 2.0 3 4 5 Wednesday, July 27, 2011
  • 50. Woah, Two Slots? • JVM stack slots (and local vars) are 32-bit • 64-bit values take up two slots • “wide” before or “w” suffix • 64-bit field updates not atomic! • Mind those concurrent longs/doubles! Wednesday, July 27, 2011
  • 51. Constant Values Depth Value ldc "hello" 0 null dconst_1 1 aconst_null 1.0d bipush 4 2 ldc_float 2.0 3 “hello” 4 5 Wednesday, July 27, 2011
  • 52. Constant Values Depth Value ldc "hello" 0 4 dconst_1 1 null aconst_null bipush 4 2 ldc_float 2.0 1.0d 3 4 “hello” 5 Wednesday, July 27, 2011
  • 53. Constant Values Depth Value ldc "hello" 0 2.0f dconst_1 1 4 aconst_null bipush 4 2 null ldc_float 2.0 3 1.0 4 5 “hello” Wednesday, July 27, 2011
  • 54. Local Variable Table • Local variables numbered from 0 • Instance methods have “this” at 0 • Separate table maps numbers to names • Explicitly sized in method definition Wednesday, July 27, 2011
  • 55. Local Variables 0x15 iload Load integer from local variable onto stack 0x16 lload ...long... 0x17 fload ...float... 0x18 dload ...double... 0x19 aload ...reference... 0x1A-0x2D Packed loads iload_0, aload_3, etc 0x36 istore Store integer from stack into local variable 0x37 lstore ...long... 0x38 fstore ...float... 0x39 dstore ...double... 0x3A astore ...reference... 0x3B-0x4E Packed stores fstore_2, dstore_0, etc 0x84 iinc Add given amount to int local variable Wednesday, July 27, 2011
  • 56. Local Variables Var Value Depth Value ldc "hello" 0 bipush 4 0 istore 3 1 dconst_0 1 dstore 1 2 astore 0 2 aload 0 3 iinc 3, 5 3 4 4 Wednesday, July 27, 2011
  • 57. Local Variables Var Value Depth Value ldc "hello" 0 bipush 4 0 “hello” istore 3 1 dconst_0 1 dstore 1 2 astore 0 2 aload 0 3 iinc 3, 5 3 4 4 Wednesday, July 27, 2011
  • 58. Local Variables Var Value Depth Value ldc "hello" 0 bipush 4 0 4 istore 3 1 dconst_0 1 “hello” dstore 1 2 astore 0 2 aload 0 3 iinc 3, 5 3 4 4 Wednesday, July 27, 2011
  • 59. Local Variables Var Value Depth Value ldc "hello" 0 bipush 4 0 “hello” istore 3 1 dconst_0 1 dstore 1 2 astore 0 2 aload 0 3 4 iinc 3, 5 3 4 4 Wednesday, July 27, 2011
  • 60. Local Variables Var Value Depth Value ldc "hello" 0 bipush 4 0 istore 3 0.0 1 dconst_0 1 dstore 1 2 astore 0 2 “hello” aload 0 3 4 iinc 3, 5 3 4 4 Wednesday, July 27, 2011
  • 61. Local Variables Var Value Depth Value ldc "hello" 0 bipush 4 0 “hello” istore 3 1 dconst_0 1 0.0 dstore 1 2 astore 0 2 aload 0 3 4 iinc 3, 5 3 4 4 Wednesday, July 27, 2011
  • 62. Local Variables Var Value Depth Value ldc "hello" 0 “hello” bipush 4 0 istore 3 1 dconst_0 1 0.0 dstore 1 2 astore 0 2 aload 0 3 4 iinc 3, 5 3 4 4 Wednesday, July 27, 2011
  • 63. Local Variables Var Value Depth Value ldc "hello" 0 “hello” bipush 4 0 “hello” istore 3 1 dconst_0 1 0.0 dstore 1 2 astore 0 2 aload 0 3 4 iinc 3, 5 3 4 4 Wednesday, July 27, 2011
  • 64. Local Variables Var Value Depth Value ldc "hello" 0 “hello” bipush 4 0 “hello” istore 3 1 dconst_0 1 0.0 dstore 1 2 astore 0 2 aload 0 3 9 iinc 3, 5 3 4 4 Wednesday, July 27, 2011
  • 65. Arrays 0x2E-0x35 [i,l,f,d,a,b,c,d]aload Load [int, long, ...] from array (on stack) to stack 0x4F-0x56 [i,l,f,d,a,b,c,d]astore Store [int, long, ...] from stack to array (on stack) 0xBC newarray Construct new primitive array 0xBD anewarray Construct new reference array 0xBE arraylength Get array length 0xC5 multianewarray Create multi-dimensional array Wednesday, July 27, 2011
  • 66. Arrays Depth Value iconst_2 newarray int 0 dup iconst_0 1 iconst_m1 2 iastore iconst_0 3 iaload 4 5 Wednesday, July 27, 2011
  • 67. Arrays Depth Value iconst_2 newarray int 0 2 dup iconst_0 1 iconst_m1 2 iastore iconst_0 3 iaload 4 5 Wednesday, July 27, 2011
  • 68. Arrays Depth Value iconst_2 newarray int 0 int[2] {0,0} dup iconst_0 1 iconst_m1 2 iastore iconst_0 3 iaload 4 5 Wednesday, July 27, 2011
  • 69. Arrays Depth Value iconst_2 newarray int 0 int[2] {0,0} dup iconst_0 1 int[2] {0,0} iconst_m1 2 iastore iconst_0 3 iaload 4 5 Wednesday, July 27, 2011
  • 70. Arrays Depth Value iconst_2 newarray int 0 0 dup iconst_0 1 int[2] {0,0} iconst_m1 2 int[2] {0,0} iastore iconst_0 3 iaload 4 5 Wednesday, July 27, 2011
  • 71. Arrays Depth Value iconst_2 newarray int 0 -1 dup iconst_0 1 0 iconst_m1 2 int[2] {0,0} iastore iconst_0 3 int[2] {0,0} iaload 4 5 Wednesday, July 27, 2011
  • 72. Arrays Depth Value iconst_2 newarray int 0 int[2] {-1, 0} dup iconst_0 1 iconst_m1 2 iastore iconst_0 3 iaload 4 5 Wednesday, July 27, 2011
  • 73. Arrays Depth Value iconst_2 newarray int 0 0 dup iconst_0 1 int[2] {-1, 0} iconst_m1 2 iastore iconst_0 3 iaload 4 5 Wednesday, July 27, 2011
  • 74. Arrays Depth Value iconst_2 newarray int 0 -1 dup iconst_0 1 iconst_m1 2 iastore iconst_0 3 iaload 4 5 Wednesday, July 27, 2011
  • 75. Math Operations add subtract multiply divide remainder negate + - * / % -() int iadd isub imul idiv irem ineg long ladd lsub lmul ldiv lrem lneg float fadd fsub fmul fdiv frem fneg double dadd dsub dmul ddiv drem dneg Wednesday, July 27, 2011
  • 76. Boolean and Bitwise unsigned shift left shift right and or xor shift right int ishl ishr iushr iand ior ixor Wednesday, July 27, 2011
  • 77. Conversions To: int long float double byte char short int - i2l i2f i2d i2b i2c i2s From: long l2i - l2f l2d - - - float f2i f2l - f2d - - - double d2i d2l d2f - - - - Wednesday, July 27, 2011
  • 78. Comparisons 0x94 lcmp Compare two longs, push int -1, 0, 1 0x95 fcmpl Compare two floats, push in -1, 0, 1 (-1 for NaN) 0x96 fcmpg Compare two floats, push in -1, 0, 1 (1 for NaN) 0x97 dcmpl Compare two doubles, push in -1, 0, 1 (-1 for NaN) 0x98 dcmpg Compare two doubles, push in -1, 0, 1 (1 for NaN) Wednesday, July 27, 2011
  • 79. Flow Control • Inspect stack and branch • Or just branch, via goto • Labels mark branch targets • Wide variety of tests Wednesday, July 27, 2011
  • 80. Flow Control 0x99 ifeq If zero on stack, branch 0x9A ifne If nonzero on stack, branch 0x9B iflt If stack value is less than zero, branch 0x9C ifge If stack value is greater than or equal to zero, branch 0x9D ifgt If stack value is greater than zero, branch 0x9E ifle If stack value is less than or equal to zero, branch 0x9F if_icmpeq If two integers on stack are eq, branch 0xA0 if_icmpne If two integers on stack are ne, branch 0xA1 if_icmplt If two integers on stack are lt, branch 0xA2 if_icmpge If two integers on stack are ge, branch 0xA3 if_icmpgt If tw If two integers on stack are gt, branch 0xA4 if_icmple If two integers on stack are le, branch 0xA5 if_acmpeq If two references on stack are the same, branch 0xA6 if_acmpne If two references on stack are different, branch 0xA7 goto GOTO! Wednesday, July 27, 2011
  • 81. Other Flow Control 0xA8 jsr Jump to subroutine (deprecated) 0xA9 ret Return from subroutine (deprecated) 0xAA tableswitch Branch using an indexed table of jump offsets 0xAB lookupswitch Branch using a lookup-based table of jump offsets 0xAC-0xB0 [i,l,f,d,a]return Return (int, long, float, double, reference) value 0xB1 return Void return (exit method, return nothing) 0xC6 ifnull If reference on stack is null 0xC7 ifnonnull If reference on stack is not null Wednesday, July 27, 2011
  • 82. Flow Control aload 0 ldc 0 aaload Depth Value ldc "branch" String[] invokevirtual string, "equals", 0 {“branch”} [boolean, object] ifne :branch 1 ldc "Not equal!" 2 aprintln goto :end 3 label :branch ldc "Equal!" 4 aprintln label :end 5 returnvoid Wednesday, July 27, 2011
  • 83. Flow Control aload 0 ldc 0 aaload Depth Value ldc "branch" invokevirtual string, "equals", 0 0 [boolean, object] ifne :branch 1 String[]{“branch”} ldc "Not equal!" 2 aprintln goto :end 3 label :branch ldc "Equal!" 4 aprintln label :end 5 returnvoid Wednesday, July 27, 2011
  • 84. Flow Control aload 0 ldc 0 aaload Depth Value ldc "branch" invokevirtual string, "equals", 0 “branch” [boolean, object] ifne :branch 1 ldc "Not equal!" 2 aprintln goto :end 3 label :branch ldc "Equal!" 4 aprintln label :end 5 returnvoid Wednesday, July 27, 2011
  • 85. Flow Control aload 0 ldc 0 aaload Depth Value ldc "branch" invokevirtual string, "equals", 0 “branch” [boolean, object] ifne :branch 1 “branch” ldc "Not equal!" 2 aprintln goto :end 3 label :branch ldc "Equal!" 4 aprintln label :end 5 returnvoid Wednesday, July 27, 2011
  • 86. Flow Control aload 0 ldc 0 aaload Depth Value ldc "branch" invokevirtual string, "equals", 0 1 [boolean, object] ifne :branch 1 ldc "Not equal!" 2 aprintln goto :end 3 label :branch ldc "Equal!" 4 aprintln label :end 5 returnvoid Wednesday, July 27, 2011
  • 87. Flow Control aload 0 ldc 0 aaload Depth Value ldc "branch" invokevirtual string, "equals", 0 [boolean, object] ifne :branch 1 ldc "Not equal!" 2 aprintln goto :end 3 label :branch ldc "Equal!" 4 aprintln label :end 5 returnvoid Wednesday, July 27, 2011
  • 88. Flow Control aload 0 ldc 0 aaload Depth Value ldc "branch" invokevirtual string, "equals", 0 [boolean, object] ifne :branch 1 ldc "Not equal!" 2 aprintln goto :end 3 label :branch ldc "Equal!" 4 aprintln label :end 5 returnvoid Wednesday, July 27, 2011
  • 89. Flow Control aload 0 ldc 0 aaload Depth Value ldc "branch" invokevirtual string, "equals", 0 “Equal!” [boolean, object] ifne :branch 1 ldc "Not equal!" 2 aprintln goto :end 3 label :branch ldc "Equal!" 4 aprintln label :end 5 returnvoid Wednesday, July 27, 2011
  • 90. Flow Control aload 0 ldc 0 aaload Depth Value ldc "branch" invokevirtual string, "equals", 0 [boolean, object] ifne :branch 1 ldc "Not equal!" 2 aprintln goto :end 3 label :branch ldc "Equal!" 4 aprintln label :end 5 returnvoid Wednesday, July 27, 2011
  • 91. Classes and Types • Signatures!!! • Probably the most painful part • ...but not a big deal if you understand Wednesday, July 27, 2011
  • 92. Using Classes 0xB2 getstatic Fetch static field from class 0xB3 putstatic Set static field in class 0xB4 getfield Get instance field from object 0xB5 setfield Set instance field in object 0xB6 invokevirtual Invoke instance method on object 0xB7 invokespecial Invoke constructor or “super” on object 0xB8 invokestatic Invoke static method on class 0xB9 invokeinterface Invoke interface method on object 0xBA invokedynamic Invoke method dynamically on object (Java 7) 0xBB new Construct new instance of object 0xC0 checkcast Attempt to cast object to type 0xC1 instanceof Push nonzero if object is instanceof specified type Wednesday, July 27, 2011
  • 93. Using Classes new ArrayList dup invokespecial ArrayList, '<init>', Depth Value [void] an ArrayList checkcast Collection 0 (uninitialized) dup ldc "first element" 1 invokeinterface Collection, 'add', [boolean, object] 2 pop checkcast ArrayList 3 ldc 0 invokevirtual ArrayList, 'get', 4 [object, int] aprintln 5 returnvoid Wednesday, July 27, 2011
  • 94. Using Classes new ArrayList dup invokespecial ArrayList, '<init>', Depth Value [void] an ArrayList checkcast Collection 0 (uninitialized) dup an ArrayList ldc "first element" 1 (uninitialized) invokeinterface Collection, 'add', [boolean, object] 2 pop checkcast ArrayList 3 ldc 0 invokevirtual ArrayList, 'get', 4 [object, int] aprintln 5 returnvoid Wednesday, July 27, 2011
  • 95. Using Classes new ArrayList dup invokespecial ArrayList, '<init>', Depth Value [void] checkcast Collection 0 an ArrayList dup ldc "first element" 1 invokeinterface Collection, 'add', [boolean, object] 2 pop checkcast ArrayList 3 ldc 0 invokevirtual ArrayList, 'get', 4 [object, int] aprintln 5 returnvoid Wednesday, July 27, 2011
  • 96. Using Classes new ArrayList dup invokespecial ArrayList, '<init>', Depth Value [void] checkcast Collection 0 a Collection dup ldc "first element" 1 invokeinterface Collection, 'add', [boolean, object] 2 pop checkcast ArrayList 3 ldc 0 invokevirtual ArrayList, 'get', 4 [object, int] aprintln 5 returnvoid Wednesday, July 27, 2011
  • 97. Using Classes new ArrayList dup invokespecial ArrayList, '<init>', Depth Value [void] checkcast Collection 0 a Collection dup ldc "first element" 1 a Collection invokeinterface Collection, 'add', [boolean, object] 2 pop checkcast ArrayList 3 ldc 0 invokevirtual ArrayList, 'get', 4 [object, int] aprintln 5 returnvoid Wednesday, July 27, 2011
  • 98. Using Classes new ArrayList dup invokespecial ArrayList, '<init>', Depth Value [void] “first checkcast Collection 0 element” dup ldc "first element" 1 a Collection invokeinterface Collection, 'add', [boolean, object] 2 a Collection pop checkcast ArrayList 3 ldc 0 invokevirtual ArrayList, 'get', 4 [object, int] aprintln 5 returnvoid Wednesday, July 27, 2011
  • 99. Using Classes new ArrayList dup invokespecial ArrayList, '<init>', Depth Value [void] checkcast Collection 0 1 (true) dup ldc "first element" 1 a Collection invokeinterface Collection, 'add', [boolean, object] 2 pop checkcast ArrayList 3 ldc 0 invokevirtual ArrayList, 'get', 4 [object, int] aprintln 5 returnvoid Wednesday, July 27, 2011
  • 100. Using Classes new ArrayList dup invokespecial ArrayList, '<init>', Depth Value [void] checkcast Collection 0 a Collection dup ldc "first element" 1 invokeinterface Collection, 'add', [boolean, object] 2 pop checkcast ArrayList 3 ldc 0 invokevirtual ArrayList, 'get', 4 [object, int] aprintln 5 returnvoid Wednesday, July 27, 2011
  • 101. Using Classes new ArrayList dup invokespecial ArrayList, '<init>', Depth Value [void] checkcast Collection 0 an ArrayList dup ldc "first element" 1 invokeinterface Collection, 'add', [boolean, object] 2 pop checkcast ArrayList 3 ldc 0 invokevirtual ArrayList, 'get', 4 [object, int] aprintln 5 returnvoid Wednesday, July 27, 2011
  • 102. Using Classes new ArrayList dup invokespecial ArrayList, '<init>', Depth Value [void] checkcast Collection 0 0 dup ldc "first element" 1 an ArrayList invokeinterface Collection, 'add', [boolean, object] 2 pop checkcast ArrayList 3 ldc 0 invokevirtual ArrayList, 'get', 4 [object, int] aprintln 5 returnvoid Wednesday, July 27, 2011
  • 103. Using Classes new ArrayList dup invokespecial ArrayList, '<init>', Depth Value [void] “first checkcast Collection 0 element” dup ldc "first element" 1 invokeinterface Collection, 'add', [boolean, object] 2 pop checkcast ArrayList 3 ldc 0 invokevirtual ArrayList, 'get', 4 [object, int] aprintln 5 returnvoid Wednesday, July 27, 2011
  • 104. Using Classes new ArrayList dup invokespecial ArrayList, '<init>', Depth Value [void] checkcast Collection 0 dup ldc "first element" 1 invokeinterface Collection, 'add', [boolean, object] 2 pop checkcast ArrayList 3 ldc 0 invokevirtual ArrayList, 'get', 4 [object, int] aprintln 5 returnvoid Wednesday, July 27, 2011
  • 105. Exceptions and Synchronization Table structure for a method indicating start/end of - trycatch try/catch and logic to run on exception 0xC2 monitorenter Enter synchronized block against object on stack 0xC3 monitorexit Exit synchronized block (against same object) Wednesday, July 27, 2011
  • 106. More Examples • A simple loop • Fibonacci Wednesday, July 27, 2011
  • 107. A Simple Loop main do aload 0 push_int 0 aaload label :top dup aprintln goto :top returnvoid end Wednesday, July 27, 2011
  • 108. Fibonacci public_static_method "fib", [], int, int do iload 0 ldc 2 if_icmpge :recurse iload 0 ireturn label :recurse iload 0 ldc 1 isub invokestatic this, "fib", [int, int] iload 0 ldc 2 isub invokestatic this, "fib", [int, int] iadd ireturn end Wednesday, July 27, 2011
  • 109. main do load_times istore 1 Fibonacci ldc "Raw bytecode fib(45) performance:" aprintln label :top iload 1 ifeq :done iinc 1, -1 start_timing 2 ldc 45 invokestatic this, "fib", [int, int] pop end_timing 2 ldc "Time: " aprintln lprintln 2 goto :top label :done returnvoid end Wednesday, July 27, 2011
  • 110. main do load_times istore 1 Fibonacci ldc "Raw bytecode fib(45) performance:" aprintln label :top iload 1 ifeq :done iinc 1, -1 start_timing 2 Macros ldc 45 invokestatic this, "fib", [int, int] pop end_timing 2 ldc "Time: " aprintln lprintln 2 goto :top label :done returnvoid end Wednesday, July 27, 2011
  • 111. Fibonacci macro :load_times do aload 0 ldc 0 aaload # number of times invokestatic JInteger, 'parseInt', [int, string] end Wednesday, July 27, 2011
  • 112. Fibonacci macro :start_timing do |i| load_time lstore i end Wednesday, July 27, 2011
  • 113. Fibonacci macro :load_time do invokestatic System, "currentTimeMillis", long end Wednesday, July 27, 2011
  • 114. Fibonacci macro :end_timing do |i| load_time lload i lsub lstore i end Wednesday, July 27, 2011
  • 115. Fibonacci macro :lprintln do |i| getstatic System, "out", PrintStream lload i invokevirtual PrintStream, "println", [void, long] end Wednesday, July 27, 2011
  • 116. ASM • “All purpose bytecode manipulation and analysis framework.” • De facto standard bytecode library • http://asm.ow2.org Wednesday, July 27, 2011
  • 117. Basic Process • Construct a ClassWriter • Visit structure • Annotations, methods, fields, inner classes • Write out bytes Wednesday, July 27, 2011
  • 118. Blah.java public class Blah implements Cloneable { private final String fieldName; public Blah() { fieldName = "hello"; } public static Blah makeBlah() { return new Blah(); } } Wednesday, July 27, 2011
  • 119. ClassWriter ClassWriter cv = new ClassWriter( ClassWriter.COMPUTE_MAXS | ClassWriter.COMPUTE_FRAMES); Wednesday, July 27, 2011
  • 120. COMPUTE...what? • COMPUTE_MAXS • ASM will calculate max stack/local vars • COMPUTE_FRAMES • ASM will calculate Java 6 stack map • Hints to verifier that we’ve pre-validated stack contents (sort of) Wednesday, July 27, 2011
  • 121. Visit Class cv.visit( Opcodes.V1_6, Opcodes.ACC_PUBLIC, "Blah", null, "java/lang/Object", new String[] {"java/lang/Cloneable"}); Wednesday, July 27, 2011
  • 122. Opcodes • Interface full of constants • Bytecodes • Visibility modifiers • Java versions • Other stuff Wednesday, July 27, 2011
  • 123. ACC_* • Some you know • ACC_PUBLIC, ACC_ABSTRACT, etc • Some you don’t • ACC_BRIDGE, ACC_SYNTHETIC Wednesday, July 27, 2011
  • 124. Java Version • V1_1 through V1_7 • Sorry 1.0! Wednesday, July 27, 2011
  • 125. Class Names "java/lang/Object" packageClass.replaceAll('.', '/') Wednesday, July 27, 2011
  • 126. Visit Source cv.visitSource( "Blah.java", "JSR-45 source map here"); Wednesday, July 27, 2011
  • 127. Visit Annotation AnnotationVisitor av = cv.visitAnnotation("some/Annotation", true); av.visitArray("name1", ...); av.visitEnum("name2", ...); av.visitEnd(); Wednesday, July 27, 2011
  • 128. Blah.java private final String fieldName; Wednesday, July 27, 2011
  • 129. Visit Field FieldVisitor fv = cv.visitField( Opcodes.ACC_PRIVATE | Opcodes.ACC_FINAL, "fieldName", "Ljava.lang.String;", null); fv.visitAnnotation(...); fv.visitAttribute(...); fv.visitEnd(); Wednesday, July 27, 2011
  • 130. Descriptor "Ljava.lang.String;" "(IF[JLjava.lang.Object;)V" • Primitive types • B,C,S,I,J,F,D,Z,V • Reference types • Lsome/Class; • Array • Prefix with [ Wednesday, July 27, 2011
  • 131. Blah.java public Blah() { ... } public static Blah makeBlah() { ... } Wednesday, July 27, 2011
  • 132. Visit Method MethodVisitor construct = cv.visitMethod( Opcodes.ACC_PUBLIC, "<init>", "()V", null, null); MethodVisitor makeBlah = cv.visitMethod( Opcodes.ACC_PUBLIC, ACC_STATIC, "makeBlah", "()LBlah;", null, null); Wednesday, July 27, 2011
  • 133. Special Methods • <init> • Constructor • <clinit> • Static initializer Wednesday, July 27, 2011
  • 134. MethodVisitor • Visit annotation stuff • Visit code • Bytecodes, frames, local vars, line nums • Visit maxs • Pass bogus values if COMPUTE_MAXS Wednesday, July 27, 2011
  • 135. Blah.java public Blah() { fieldName = "hello"; } public static Blah makeBlah() { return new Blah(); } Wednesday, July 27, 2011
  • 136. Visit Method Body construct.visitCode(); construct.visitVarInsn(ALOAD, 0); construct.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "<init>", "()V"); construct.visitVarInsn(ALOAD, 0); construct.visitLdcInsn("hello"); construct.visitFieldInsn(PUTFIELD, "Blah", "fieldName", "Ljava/lang/String;"); construct.visitInsn(RETURN); construct.visitMaxs(2, 1); construct.visitEnd(); Wednesday, July 27, 2011
  • 137. ASMifierClassVisitor • Dump ASM visitor calls from .class file • Very raw, but very useful Wednesday, July 27, 2011
  • 138. Blah.java public class Blah implements Cloneable { private final String fieldName; public Blah() { fieldName = "hello"; } public static Blah makeBlah() { return new Blah(); } } Wednesday, July 27, 2011
  • 139. ~/oscon ➔ java -cp asm-3.3.1.jar:asm-util-3.3.1.jar org.objectweb.asm.util.ASMifierClassVisitor Blah.class import java.util.*; import org.objectweb.asm.*; import org.objectweb.asm.attrs.*; public class BlahDump implements Opcodes { public static byte[] dump () throws Exception { ClassWriter cw = new ClassWriter(0); FieldVisitor fv; MethodVisitor mv; AnnotationVisitor av0; cw.visit(V1_6, ACC_PUBLIC + ACC_SUPER, "Blah", null, "java/lang/Object", new String[] { "java/lang/Cloneable" }); { fv = cw.visitField(ACC_PRIVATE + ACC_FINAL, "fieldName", "Ljava/lang/String;", null, null); fv.visitEnd(); } { mv = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null); mv.visitCode(); mv.visitVarInsn(ALOAD, 0); mv.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "<init>", "()V"); mv.visitVarInsn(ALOAD, 0); mv.visitLdcInsn("hello"); mv.visitFieldInsn(PUTFIELD, "Blah", "fieldName", "Ljava/lang/String;"); mv.visitInsn(RETURN); mv.visitMaxs(2, 1); mv.visitEnd(); } { mv = cw.visitMethod(ACC_PUBLIC + ACC_STATIC, "makeBlah", "()LBlah;", null, null); mv.visitCode(); mv.visitTypeInsn(NEW, "Blah"); mv.visitInsn(DUP); mv.visitMethodInsn(INVOKESPECIAL, "Blah", "<init>", "()V"); mv.visitInsn(ARETURN); mv.visitMaxs(2, 0); mv.visitEnd(); } cw.visitEnd(); return cw.toByteArray(); } } Wednesday, July 27, 2011
  • 140. Real-world Cases • Reflection-free invocation • JRuby, Groovy, other languages • Bytecoded data objects • Hibernate, other data layers • java.lang.reflect.Proxy and others • Language compilers Wednesday, July 27, 2011
  • 141. Part Two: JVM JIT Wednesday, July 27, 2011
  • 142. JIT • Just-In-Time compilation • Compiled when needed • Maybe immediately before execution • ...or when we decide it’s important • ...or never? Wednesday, July 27, 2011
  • 143. Mixed-Mode • Interpreted • Bytecode-walking • Artificial stack • Compiled • Direct native operations • Native registers, memory, etc Wednesday, July 27, 2011
  • 144. Profiling • Gather data about code while interpreting • Invariants (types, constants, nulls) • Statistics (branches, calls) • Use that information to optimize • Educated guess? Wednesday, July 27, 2011
  • 145. Optimization • Loop unrolling • Lock coarsening • Method inlining • Dead code elimination • Duplicate code elimination Wednesday, July 27, 2011
  • 146. The Golden Rule of Optimization Don’t do unnecessary work. Wednesday, July 27, 2011
  • 147. Perf Sinks • Memory accesses • By far the biggest expense • Calls • Opaque memory ref + branch • Locks, volatile writes • Kills multi-cpu perf Wednesday, July 27, 2011
  • 148. Volatile? • Each CPU maintains a memory cache • Caches may be out of sync • If it doesn’t matter, no problem • If it does matter, threads disagree! • Volatile forces synchronization of cache • Across cores and to main memory Wednesday, July 27, 2011
  • 149. Inlining? • Combine caller and callee into one unit • e.g. based on profile • Perhaps with a sanity check • Optimize as a whole Wednesday, July 27, 2011
  • 150. Inlining int addAll(int max) { int accum = 0; for (int i = 0; i < max; i++) { accum = add(accum, i); } return accum; } int add(int a, int b) { return a + b; } Wednesday, July 27, 2011
  • 151. Inlining int addAll(int max) { int accum = 0; for (int i = 0; i < max; i++) { accum = add(accum, i); } return accum; } Only one target is ever seen int add(int a, int b) { return a + b; } Wednesday, July 27, 2011
  • 152. Inlining int addAll(int max) { int accum = 0; for (int i = 0; i < max; i++) { accum = accum + i; } return accum; } Don’t bother making a call Wednesday, July 27, 2011
  • 153. Call Site • The place where you make a call • Monomorphic (“one shape”) • Single target class • Bimorphic (“two shapes”) • Polymorphic (“many shapes”) • Megamorphic (“you’re screwed”) Wednesday, July 27, 2011
  • 154. Blah.java System.currentTimeMillis(); // static, monomorphic List list1 = new ArrayList(); // constructor, monomorphic List list2 = new LinkedList(); for (List list : new List[]{ list1, list2 }) { list.add("hello"); // bimorphic } for (Object obj : new Object[]{ 'foo', list1, new Object() }) { obj.toString(); // polymorphic } Wednesday, July 27, 2011
  • 155. Hotspot • -client mode (C1) inlines, less aggressive • Fewer opportunities to optimize • -server mode (C2) profiles, inlines • We’ll focus on this • Tiered mode combines them • -XX:+TieredCompilation Wednesday, July 27, 2011
  • 156. Hotspot Inlining • Profile to find “hot spots” • Largely focused around call sites • Profile until 10k calls • Inline mono/bimorphic calls • Other mechanisms for polymorphic calls Wednesday, July 27, 2011
  • 157. Now it gets fun! Wednesday, July 27, 2011
  • 158. Monitoring the JIT • Dozens of flags • PrintCompilation • PrintInlining • LogCompilation • PrintAssembly • Some in product, some in debug... Wednesday, July 27, 2011
  • 159. public class Accumulator { public static void main(String[] args) { int max = Integer.parseInt(args[0]); System.out.println(addAll(max)); } static int addAll(int max) { int accum = 0; for (int i = 0; i < max; i++) { accum = add(accum, i); } return accum; } static int add(int a, int b) { return a + b; } } Wednesday, July 27, 2011
  • 160. ~/oscon ➔ java -version openjdk version "1.7.0-internal" OpenJDK Runtime Environment (build 1.7.0-internal-b00) OpenJDK 64-Bit Server VM (build 21.0-b17, mixed mode) ~/oscon ➔ javac Accumulator.java ~/oscon ➔ java Accumulator 1000 499500 Wednesday, July 27, 2011
  • 161. PrintCompilation • -XX:+PrintCompilation • Print methods as they are jitted • Class + name + size Wednesday, July 27, 2011
  • 162. ~/oscon ➔ java -XX:+PrintCompilation Accumulator 1000 1 java.lang.String::hashCode (64 bytes) 2 java.math.BigInteger::mulAdd (81 bytes) 3 java.math.BigInteger::multiplyToLen (219 bytes) 4 java.math.BigInteger::addOne (77 bytes) 5 java.math.BigInteger::squareToLen (172 bytes) 6 java.math.BigInteger::primitiveLeftShift (79 bytes) 7 java.math.BigInteger::montReduce (99 bytes) 8 sun.security.provider.SHA::implCompress (491 bytes) 9 java.lang.String::charAt (33 bytes) 499500 Wednesday, July 27, 2011
  • 163. ~/oscon ➔ java -XX:+PrintCompilation Accumulator 1000 1 java.lang.String::hashCode (64 bytes) 2 java.math.BigInteger::mulAdd (81 bytes) 3 java.math.BigInteger::multiplyToLen (219 bytes) 4 java.math.BigInteger::addOne (77 bytes) 5 java.math.BigInteger::squareToLen (172 bytes) 6 java.math.BigInteger::primitiveLeftShift (79 bytes) 7 java.math.BigInteger::montReduce (99 bytes) 8 sun.security.provider.SHA::implCompress (491 bytes) 9 java.lang.String::charAt (33 bytes) 499500 Where’s our methods?! Wednesday, July 27, 2011
  • 164. ~/oscon ➔ java -XX:+PrintCompilation Accumulator 1000 1 java.lang.String::hashCode (64 bytes) 2 java.math.BigInteger::mulAdd (81 bytes) 3 java.math.BigInteger::multiplyToLen (219 bytes) 4 java.math.BigInteger::addOne (77 bytes) 5 java.math.BigInteger::squareToLen (172 bytes) 6 java.math.BigInteger::primitiveLeftShift (79 bytes) 7 java.math.BigInteger::montReduce (99 bytes) 8 sun.security.provider.SHA::implCompress (491 bytes) 9 java.lang.String::charAt (33 bytes) 499500 Where’s our methods?! ...remember...10k calls Wednesday, July 27, 2011
  • 165. 10k loop, 10k calls to add ~/oscon ➔ java -XX:+PrintCompilation Accumulator 10000 1 java.lang.String::hashCode (64 bytes) 2 java.math.BigInteger::mulAdd (81 bytes) 3 java.math.BigInteger::multiplyToLen (219 bytes) 4 java.math.BigInteger::addOne (77 bytes) 5 java.math.BigInteger::squareToLen (172 bytes) 6 java.math.BigInteger::primitiveLeftShift (79 bytes) 7 java.math.BigInteger::montReduce (99 bytes) 8 sun.security.provider.SHA::implCompress (491 bytes) 9 java.lang.String::charAt (33 bytes) 10 Accumulator::add (4 bytes) 49995000 Hooray! Wednesday, July 27, 2011
  • 166. What’s this stuff? 1 java.lang.String::hashCode (64 bytes) 2 java.math.BigInteger::mulAdd (81 bytes) 3 java.math.BigInteger::multiplyToLen (219 bytes) 4 java.math.BigInteger::addOne (77 bytes) 5 java.math.BigInteger::squareToLen (172 bytes) 6 java.math.BigInteger::primitiveLeftShift (79 bytes) 7 java.math.BigInteger::montReduce (99 bytes) 8 sun.security.provider.SHA::implCompress (491 bytes) 9 java.lang.String::charAt (33 bytes) Wednesday, July 27, 2011
  • 167. What’s this stuff? 1 java.lang.String::hashCode (64 bytes) 2 java.math.BigInteger::mulAdd (81 bytes) 3 java.math.BigInteger::multiplyToLen (219 bytes) 4 java.math.BigInteger::addOne (77 bytes) 5 java.math.BigInteger::squareToLen (172 bytes) 6 java.math.BigInteger::primitiveLeftShift (79 bytes) 7 java.math.BigInteger::montReduce (99 bytes) 8 sun.security.provider.SHA::implCompress (491 bytes) 9 java.lang.String::charAt (33 bytes) Class loading, security, other boot logic. Wednesday, July 27, 2011
  • 168. What if you see this... ~/oscon ➔ java -client -XX:+PrintCompilation Accumulator 1000 1 java.lang.String::hashCode (64 bytes) 2 java.math.BigInteger::mulAdd (81 bytes) 3 java.math.BigInteger::multiplyToLen (219 bytes) 4 java.math.BigInteger::addOne (77 bytes) 5 java.math.BigInteger::squareToLen (172 bytes) 5 made not entrant java.math.BigInteger::squareToLen (172 bytes) 7 java.math.BigInteger::montReduce (99 bytes) 6 java.math.BigInteger::primitiveLeftShift (79 bytes) 8 java.math.BigInteger::squareToLen (172 bytes) 9 sun.security.provider.SHA::implCompress (491 bytes) 10 java.lang.String::charAt (33 bytes) 499500 Wednesday, July 27, 2011
  • 169. Optimistic Compiler • Assume profile is accurate • Aggressively optimize based on profile • Bail out if we’re wrong • And hope that we’re usually right Wednesday, July 27, 2011
  • 170. Deoptimization • Bail out of running code • Monitoring flags describe process • “uncommon trap” - we were wrong • “not entrant” - don’t let anyone enter • “zombie” - on its way to deadness Wednesday, July 27, 2011
  • 171. What if you see this... 20 java.math.BigInteger::addOne (77 bytes) 21 java.math.BigInteger::squareToLen (172 bytes) 22 java.math.BigInteger::primitiveLeftShift (79 bytes) --- n java.lang.System::arraycopy (static) 24 sun.security.provider.SHA::implCompress (491 bytes) 23 java.math.BigInteger::montReduce (99 bytes) 25 java.lang.String$CaseInsensitiveComparator::compare (115 bytes) 26 java.lang.Character::toLowerCase (162 bytes) Wednesday, July 27, 2011
  • 172. What if you see this... 20 java.math.BigInteger::addOne (77 bytes) 21 java.math.BigInteger::squareToLen (172 bytes) 22 java.math.BigInteger::primitiveLeftShift (79 bytes) --- n java.lang.System::arraycopy (static) 24 sun.security.provider.SHA::implCompress (491 bytes) 23 java.math.BigInteger::montReduce (99 bytes) 25 java.lang.String$CaseInsensitiveComparator::compare (115 bytes) 26 java.lang.Character::toLowerCase (162 bytes) Native calls don’t compile, may be intrinsic. We’ll come back to that. Wednesday, July 27, 2011
  • 173. PrintInlining • -XX:+UnlockDiagnosticVMOptions -XX:+PrintInlining • Display hierarchy of inlined methods • Include reasons for not inlining • More, better output on OpenJDK 7 Wednesday, July 27, 2011
  • 174. ~/oscon ➔ java -XX:+UnlockDiagnosticVMOptions > -XX:+PrintInlining > Accumulator 10000 49995000 Wednesday, July 27, 2011
  • 175. ~/oscon ➔ java -XX:+UnlockDiagnosticVMOptions > -XX:+PrintInlining > Accumulator 10000 49995000 Um...I don’t see anything inlining... Wednesday, July 27, 2011
  • 176. public class Accumulator { public static void main(String[] args) { int max = Integer.parseInt(args[0]); System.out.println(addAll(max)); } Called once static int addAll(int max) { int accum = 0; for (int i = 0; i < max; i++) { accum = add(accum, i); } return accum; Called 10k times... } static int add(int a, int b) { return a + b; } ...but no calls to inline! } Wednesday, July 27, 2011

Editor's Notes

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n
  43. \n
  44. \n
  45. \n
  46. \n
  47. \n
  48. \n
  49. \n
  50. \n
  51. \n
  52. \n
  53. \n
  54. \n
  55. \n
  56. \n
  57. \n
  58. \n
  59. \n
  60. \n
  61. \n
  62. \n
  63. \n
  64. \n
  65. \n
  66. \n
  67. \n
  68. \n
  69. \n
  70. \n
  71. \n
  72. \n
  73. \n
  74. \n
  75. \n
  76. \n
  77. \n
  78. \n
  79. \n
  80. \n
  81. \n
  82. \n
  83. \n
  84. \n
  85. \n
  86. \n
  87. \n
  88. \n
  89. \n
  90. \n
  91. \n
  92. \n
  93. \n
  94. \n
  95. \n
  96. \n
  97. \n
  98. \n
  99. \n
  100. \n
  101. \n
  102. \n
  103. \n
  104. \n
  105. \n
  106. \n
  107. \n
  108. \n
  109. \n
  110. \n
  111. \n
  112. \n
  113. \n
  114. \n
  115. \n
  116. \n
  117. \n
  118. \n
  119. \n
  120. \n
  121. \n
  122. \n
  123. \n
  124. \n
  125. \n
  126. \n
  127. \n
  128. \n
  129. \n
  130. \n
  131. \n
  132. \n
  133. \n
  134. \n
  135. \n
  136. \n
  137. \n
  138. \n
  139. \n
  140. \n
  141. \n
  142. \n
  143. \n
  144. \n
  145. \n
  146. \n
  147. \n
  148. \n
  149. \n
  150. \n
  151. \n
  152. \n
  153. \n
  154. \n
  155. \n
  156. \n
  157. \n
  158. \n
  159. \n
  160. \n
  161. \n
  162. \n
  163. \n
  164. \n
  165. \n
  166. \n
  167. \n
  168. \n
  169. \n
  170. \n
  171. \n
  172. \n
  173. \n
  174. \n
  175. \n
  176. \n
  177. \n
  178. \n
  179. \n
  180. \n
  181. \n
  182. \n
  183. \n
  184. \n
  185. \n
  186. \n
  187. \n
  188. \n
  189. \n
  190. \n
  191. \n
  192. \n
  193. \n
  194. \n
  195. \n
  196. \n
  197. \n
  198. \n
  199. \n
  200. \n
  201. \n
  202. \n
  203. \n
  204. \n
  205. \n
  206. \n
  207. \n
  208. \n
  209. \n
  210. \n