SlideShare ist ein Scribd-Unternehmen logo
1 von 255
High Performance
                              JavaScript
                                         Andreas Gal




                               (with lots of help from David Mandelin and
                                             David Anderson)

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Power of the Web




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
How did we get
                               here?
                    • Making existing web tech faster and
                          faster
                    • Adding new technologies, like video,
                          audio, integration and 2D+3D
                          drawing



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
The Browser




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Getting a Webpage
                                  twitter.com
                                199.59.149.198




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Getting a Webpage

          GET / HTTP/1.0             twitter.com
                  (HTTP Request)   199.59.149.198




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Getting a Webpage

 <html>
 <head>
 <title>Twitter / Home</title>
 </head>
 <script language="javascript">
   function doStuff() {...}
 </script>
 <body>
 ...




                  (HTML, CSS, JavaScript)




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Core Web
                               Components




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Core Web
                               Components
                     • HTML provides content




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Core Web
                               Components
                     • HTML provides content
                     • CSS provides styling



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Core Web
                               Components
                     • HTML provides content
                     • CSS provides styling
                     • JavaScript provides a programming
                          interface



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
New Technologies

                    • 2D Canvas
                    • Video, Audio tags
                    • WebGL (OpenGL + JavaScript)
                    • Local Storage

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
DOM




      (Source: http://www.w3schools.com/htmldom/
                         default.asp)
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
CSS
                     • Cascading Style Sheets
                     • Separates presentation from content
                               .warning {
                                 color: red;
                                 text-decoration: underline;
                               }




                     • <b class=”warning”>This is red</b>
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
What is JavaScript?




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
What is JavaScript?

                     • C-like syntax




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
What is JavaScript?

                     • C-like syntax
                     • De facto language of the web



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
What is JavaScript?

                     • C-like syntax
                     • De facto language of the web
                     • Interacts with the DOM and the
                          browser



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
C-Like Syntax
                     • Braces, semicolons, familiar
                          keywords

                          if (x) {
                              for (i = 0; i < 100; i++)
                                 print("Hello!");
                          }




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Displaying a Webpage




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Displaying a Webpage
                     • Parsing, JavaScript engine executes
                          code as it is encountered.
                          • This can change DOM, or even
                            trigger a “reflow” (layout)




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Displaying a Webpage
                     • Parsing, JavaScript engine executes
                          code as it is encountered.
                          • This can change DOM, or even
                            trigger a “reflow” (layout)
                     • Layout engine applies CSS to DOM


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Displaying a Webpage
                     • Parsing, JavaScript engine executes
                          code as it is encountered.
                          • This can change DOM, or even
                            trigger a “reflow” (layout)
                     • Layout engine applies CSS to DOM
                     • Computes geometry of elements

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Displaying a Webpage
                     • Parsing, JavaScript engine executes
                          code as it is encountered.
                          • This can change DOM, or even
                            trigger a “reflow” (layout)
                     • Layout engine applies CSS to DOM
                     • Computes geometry of elements
                     • Finished layout is sent to graphics
                          layer
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Run to completion
                    • JavaScript is executed during HTML
                          parsing. Semantically , nothing can
                                               (*)


                          proceed until JS execution is done.
                    • Very different VM latency
                          requirements than Java or C#.
                    • Sub millisecond compilation delays
                          matter.

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
The Result




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
JavaScript

                    • Invented by Brendan Eich in 1995
                          for Netscape 2
                    • Initial version written in 10 days
                    • Anything from small browser
                          interactions, complex apps (Gmail)
                          to intense graphics (WebGL)


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Think LISP or Self, not Java




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Think LISP or Self, not Java

                     • Untyped - no type declarations




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Think LISP or Self, not Java

                     • Untyped - no type declarations
                     • Multi-Paradigm – objects, closures,
                          first-class functions




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Think LISP or Self, not Java

                     • Untyped - no type declarations
                     • Multi-Paradigm – objects, closures,
                          first-class functions
                     • Highly dynamic - objects are
                          dictionaries


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
No Type Declarations

                     • Properties, variables, return values
                          can be anything:
                           function f(a) {
                             var x = 72.3;
                             if (a)
                                 x = a + "string";
                             return x;
                           }


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
No Type Declarations

                     • Properties, variables, return values
                          can be anything:
                           function f(a) {
                             var x = “hi”;
                             if (a)
                                 x = a + 33.2;
                             return x;
                           }


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
No Type Declarations

                     • Properties, variables, return values
                          can be anything:
                           function f(a) {       if a is:
                             var x = “hi”;           number: add;
                             if (a)                  string: concat;
                                 x = a + 33.2;
                             return x;
                           }


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Functional
                     • Functions may be returned, passed
                          as arguments:

                               function f(a) {
                                  return function () {
                                     return a;
                                  }
                               }
                               var m = f(5);
                               print(m());


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Objects
                     • Objects are dictionaries mapping
                          strings to values
                     • Properties may be deleted or added
                          at any time!

                          var point = { x : 5, y : 10 };
                          delete point.x;
                          point.z = 12;

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Prototypes




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Prototypes
                    • Every object can have a prototype
                          object




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Prototypes
                    • Every object can have a prototype
                          object
                    • If a property is not found on an
                          object, its prototype is searched
                          instead




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Prototypes
                    • Every object can have a prototype
                          object
                    • If a property is not found on an
                          object, its prototype is searched
                          instead
                    • … And the prototype’s prototype,
                          etc..

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Numbers

                    • JavaScript specifies that numbers
                          are IEEE-754 64-bit floating point
                    • Engines use 32-bit integers to
                          optimize
                    • Must preserve semantics: integers
                          overflow to doubles


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Numbers
            var x = 0x7FFFFFFF;            int x = 0x7FFFFFFF;
            x++;                           x++;


                                     JavaScript    C++
                               x    2147483648 -2147483648




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
JavaScript
                          Implementations
                    • Values (Objects, strings, numbers)
                    • Garbage collector
                    • Runtime library
                    • Execution engine (VM)

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Values

                    • The runtime must be able to
                          query a value’s type to perform the
                          right computation.
                    • When storing values to variables or
                          object fields, the type must be
                          stored as well.


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Values
                                          Boxed             Unboxed
                       Purpose           Storage          Computation
                      Examples        (INT32, 9000)         (int)9000
                                      (STRING, “hi”)      (String *) “hi”
                                     (DOUBLE, 3.14)       (double)3.14
                      Definition   (Type tag, C++ value)     C++ value


             • Boxed values required for variables, object
               fields
             • Unboxed values required for computation
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Boxed Values




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Boxed Values
                    • Need a representation in C++




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Boxed Values
                    • Need a representation in C++
                    • Easy idea: 96-bit struct (LUA)
                     • 32-bits for type
                     • 64-bits for double, pointer, or
                          integer



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Boxed Values
                    • Need a representation in C++
                    • Easy idea: 96-bit struct (LUA)
                     • 32-bits for type
                     • 64-bits for double, pointer, or
                          integer
                    • Too big! We have to pack better.
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Boxed Values
                    • We used to use pointers, and tag the
                          low bits (V8 still does)
                    • Doubles have to be allocated on the
                          heap
                          • Indirection, GC pressure is bad
                    • There is a middle ground…
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                 IA32, ARM




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                 IA32, ARM


                    • Values are 64-bit




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                 IA32, ARM


                    • Values are 64-bit
                    • Doubles are normal IEEE-754



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                 IA32, ARM


                    • Values are 64-bit
                    • Doubles are normal IEEE-754
                    • How to pack non-doubles?


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                 IA32, ARM


                    • Values are 64-bit
                    • Doubles are normal IEEE-754
                    • How to pack non-doubles?
                    • 51 bits of NaN space!

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                       IA32, ARM


                                    Type      Payload
                               0x400c0000 0x00000000
                               63                       0




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                       IA32, ARM


                                    Type      Payload
                                0x400c0000 0x00000000
                               63                       0



                          • Full value: 0x400c000000000000


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                        IA32, ARM


                                     Type       Payload
                                 0x400c0000 0x00000000
                                63                        0



                          • Full value: 0x400c000000000000
                          • Type is double because it’s not a NaN


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                        IA32, ARM


                                     Type       Payload
                                 0x400c0000 0x00000000
                                63                        0



                          • Full value: 0x400c000000000000
                          • Type is double because it’s not a NaN
                          • Encodes: (Double, 3.5)

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                       IA32, ARM


                                    Type      Payload
                               0xFFFF0001   0x00000040
                               63                       0




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                       IA32, ARM


                                    Type      Payload
                               0xFFFF0001   0x00000040
                               63                       0

                 • Full value: 0xFFFF000100000040



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                       IA32, ARM


                                    Type      Payload
                               0xFFFF0001   0x00000040
                               63                       0

                 • Full value: 0xFFFF000100000040
                 • Value is in NaN space


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                       IA32, ARM


                                    Type      Payload
                               0xFFFF0001   0x00000040
                               63                       0

                 • Full value: 0xFFFF000100000040
                 • Value is in NaN space
                 • Type is 0xFFFF0001 (Int32)

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing
                                       IA32, ARM


                                    Type      Payload
                               0xFFFF0001   0x00000040
                               63                       0

                 • Full value: 0xFFFF000100000040
                 • Value is in NaN space
                 • Type is 0xFFFF0001 (Int32)
                 • Value is (Int32, 0x00000040)
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
NaN boxing




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
NaN boxing
                    •     Nunboxing is a word-play on NaN
                          boxing




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
NaN boxing
                    •     Nunboxing is a word-play on NaN
                          boxing

                    •     NaN boxing is like Nunboxing, but
                          prefers pointers over doubles (mask to
                          get a pointer, shift to get a double)




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
NaN boxing
                    •     Nunboxing is a word-play on NaN
                          boxing

                    •     NaN boxing is like Nunboxing, but
                          prefers pointers over doubles (mask to
                          get a pointer, shift to get a double)

                    •     Attributed to Apple’s JSC, but really
                          invented by Ed Smith/Adobe (I think)


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Punboxing
                                        x86-64


              63          Type     47          Payload                 0

              1111 1111 1111 1000 0 000 .. 0000 0000 0000 0000 0100 0000




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Punboxing
                                             x86-64


              63            Type        47        Payload              0

              1111 1111 1111 1000 0 000 .. 0000 0000 0000 0000 0100 0000



                          • Full value: 0xFFFF800000000040




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Punboxing
                                             x86-64


              63            Type        47        Payload              0

              1111 1111 1111 1000 0 000 .. 0000 0000 0000 0000 0100 0000



                          • Full value: 0xFFFF800000000040
                          • Value is in NaN space



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Punboxing
                                            x86-64


              63           Type        47        Payload               0

              1111 1111 1111 1000 0 000 .. 0000 0000 0000 0000 0100 0000



                          • Full value: 0xFFFF800000000040
                          • Value is in NaN space
                          • Bits >> 47 == 0x1FFFF == INT32


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Punboxing
                                              x86-64


              63            Type         47        Payload              0

              1111 1111 1111 1000 0 000 .. 0000 0000 0000 0000 0100 0000



                          • Full value: 0xFFFF800000000040
                          • Value is in NaN space
                          • Bits >> 47 == 0x1FFFF == INT32
                          • Bits 47-63 masked off to retrieve payload

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Punboxing
                                              x86-64


              63            Type         47        Payload              0

              1111 1111 1111 1000 0 000 .. 0000 0000 0000 0000 0100 0000



                          • Full value: 0xFFFF800000000040
                          • Value is in NaN space
                          • Bits >> 47 == 0x1FFFF == INT32
                          • Bits 47-63 masked off to retrieve payload
                          • Value(Int32, 0x00000040)
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Nunboxing      Punboxing

              Fits in register        NO            YES

          Trivial to decode           YES           NO

                    Portability   32-bit only*    x64 only


           * Some 64-bit OSes can restrict mmap() to 32-bits


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Garbage Collection
                    • Need to reclaim memory without
                          pausing user workflow, animations,
                          etc
                    • Need very fast object allocation
                     • Consider lots of small objects like
                           points, vectors
                    • Reading and writing to the heap
                          must be fast
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Representation
                    •     JavaScript objects are very different from
                          Java objects

                    •     Start empty, grow and shrink over time.

                    •     We use a header with a variable number of
                          built-in slots, malloc() beyond that.

                    •     Predicting number of built-in slots to use
                          is black magic.


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Mark and Sweep




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Mark and Sweep
                     • All live objects are found via a
                          recursive traversal of the root value
                          set




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Mark and Sweep
                     • All live objects are found via a
                          recursive traversal of the root value
                          set
                     • All dead objects are added to a free
                          list




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Mark and Sweep
                     • All live objects are found via a
                          recursive traversal of the root value
                          set
                     • All dead objects are added to a free
                          list
                     • Very slow to traverse entire heap

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Mark and Sweep
                     • All live objects are found via a
                          recursive traversal of the root value
                          set
                     • All dead objects are added to a free
                          list
                     • Very slow to traverse entire heap
                     • Building free lists can bring “dead”
                          memory into cache
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Improvements




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Improvements

                    • Sweeping, freelist building have
                          been moved off-thread




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Improvements

                    • Sweeping, freelist building have
                          been moved off-thread
                    • Marking can be incremental,
                          interleaved with program execution



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Generational GC
                    •     Observation: most objects are short-
                          lived
                    •     All new objects are bump-allocated
                          into a newborn space
                    •     Once newborn space is full, live objects
                          are moved to the tenured space
                    •     Newborn space is then reset to empty

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Generational GC
                          Inactive           Active
                                                            Newborn
                                 8MB                  8MB
                                                             Space




                                     Tenured Space


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
After Minor GC
                          Active            Inactive
                                                        Newborn
                                   8MB            8MB
                                                         Space




                                    Tenured Space


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Barriers

                    • Incremental marking, generational
                          GC need read or write barriers
                    • Read barriers are much slower
                    • Write barrier seems to be well-
                          predicted?


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Unknowns
                    • How much do cache effects matter?
                     • Memory GC has to touch
                     • Locality of objects
                    • What do we need to consider to
                          make GC fast?
                    • Lots of research on Java. Almost
                          nothing on JavaScript. Very different
                          heaps.
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Running JavaScript




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Running JavaScript
                     • Interpreter – Runs code, not fast




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Running JavaScript
                     • Interpreter – Runs code, not fast
                     • Basic JIT – Simple, untyped compiler




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Running JavaScript
                     • Interpreter – Runs code, not fast
                     • Basic JIT – Simple, untyped compiler
                     • Trace Compiler - Typed compiler
                          for traces (low latency, often fast).




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Running JavaScript
                     • Interpreter – Runs code, not fast
                     • Basic JIT – Simple, untyped compiler
                     • Trace Compiler - Typed compiler
                          for traces (low latency, often fast).
                     • Heavy-Duty JIT – Typed compiler for
                          whole methods (high latency,
                          always fast).

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Interpreter

                     • Good for code that runs once
                     • Giant switch loop
                     • Handles all edge cases of JS
                          semantics



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Interpreter
                                while (true) {
                                  switch (*pc) {
                                     case OP_ADD:
                                         ...
                                     case OP_SUB:
                                         ...
                                     case OP_RETURN:
                                         ...
                                  }
                                  pc++;
                                }




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Interpreter
                          case OP_ADD: {
                            Value lhs = POP();
                            Value rhs = POP();
                            Value result;
                            if (lhs.isInt32() && rhs.isInt32()) {
                                int left = rhs.toInt32();
                                int right = rhs.toInt32();
                                if (AddOverflows(left, right, left + right))
                                    result.setInt32(left + right);
                                else
                                    result.setNumber(double(left) + double(right));
                            } else if (lhs.isString() || rhs.isString()) {
                                String *left = ValueToString(lhs);
                                String *right = ValueToString(rhs);
                                String *r = Concatenate(left, right);
                                result.setString(r);
                            } else {
                                double left = ValueToNumber(lhs);
                                double right = ValueToNumber(rhs);
                                result.setDouble(left + right);
                            }
                            PUSH(result);
                            break;




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Interpreter




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Interpreter

                    • Very slow!
                     • Lots of opcode and type dispatch
                     • Lots of interpreter stack traffic


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Interpreter

                    • Very slow!
                     • Lots of opcode and type dispatch
                     • Lots of interpreter stack traffic
                    • Just-in-time compilation solves
                          both


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Just In Time




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Just In Time
                     • Compilation must be very fast
                      • Can’t introduce noticeable pauses




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Just In Time
                     • Compilation must be very fast
                      • Can’t introduce noticeable pauses
                     • People care about memory use
                      • Can’t JIT everything
                      • Can’t create bloated code
                      • May have to discard code at any
                          time
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT
                     •    JägerMonkey in Firefox 4




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT
                     •    JägerMonkey in Firefox 4

                     •    Every opcode has a hand-coded
                          template of assembly (registers left
                          blank)




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT
                     •    JägerMonkey in Firefox 4

                     •    Every opcode has a hand-coded
                          template of assembly (registers left
                          blank)

                     •    Method at a time:

                          •   Single pass through bytecode stream!

                          •   Compiler uses assembly templates
                              corresponding to each opcode
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Bytecode
                                   GETARG 0 ; fetch x
         function Add(x, y) {
                                   GETARG 1 ; fetch y
           return x + y;           ADD
         }
                                   RETURN




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Interpreter
                          case OP_ADD: {
                            Value lhs = POP();
                            Value rhs = POP();
                            Value result;
                            if (lhs.isInt32() && rhs.isInt32()) {
                                int left = rhs.toInt32();
                                int right = rhs.toInt32();
                                if (AddOverflows(left, right, left + right))
                                    result.setInt32(left + right);
                                else
                                    result.setNumber(double(left) + double(right));
                            } else if (lhs.isString() || rhs.isString()) {
                                String *left = ValueToString(lhs);
                                String *right = ValueToString(rhs);
                                String *r = Concatenate(left, right);
                                result.setString(r);
                            } else {
                                double left = ValueToNumber(lhs);
                                double right = ValueToNumber(rhs);
                                result.setDouble(left + right);
                            }
                            PUSH(result);
                            break;




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Assembling ADD




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Assembling ADD

                     • Inlining that huge chunk for every
                          ADD would be very slow




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Assembling ADD

                     • Inlining that huge chunk for every
                          ADD would be very slow
                     • Observation:
                      • Some input types much more
                           common than others


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Integer Math – Common
                               var j = 0;
                               for (i = 0; i < 10000; i++) {
                                  j += i;
                               }




                                  Weird Stuff – Rare!
                               var j = 12.3;
                               for (i = 0; i < 10000; i++) {
                                  j += new Object() + i.toString();
                               }




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Assembling ADD
                     • Only generate code for the easiest
                          and most common cases
                     • Large design space
                      • Can consider integers common, or
                      • Integers and doubles, or
                      • Anything!
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT - ADD
                               if (arg0.type != INT32)
                                   goto slow_add;
                               if (arg1.type != INT32)
                                   goto slow_add;




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT - ADD
                               if (arg0.type != INT32)
                                   goto slow_add;
                               if (arg1.type != INT32)
                                   goto slow_add;
                               R0 = arg0.data
                               R1 = arg1.data




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT - ADD
                               if (arg0.type != INT32)
                                   goto slow_add;
                               if (arg1.type != INT32)
                                   goto slow_add;         Greedy
                               R0 = arg0.data
                               R1 = arg1.data            Register
                                                         Allocator




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT - ADD
                               if (arg0.type != INT32)
                                   goto slow_add;
                               if (arg1.type != INT32)
                                   goto slow_add;
                               R0 = arg0.data;
                               R1 = arg1.data;
                               R2 = R0 + R1;
                               if (OVERFLOWED)
                                   goto slow_add;




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Slow Paths

                     slow_add:
                        Value result = runtime::Add(arg0, arg1);




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Inline                Out-of-line
         if (arg0.type != INT32)
             goto slow_add;        slow_add:
         if (arg1.type != INT32)      Value result = Interpreter::Add(arg0, arg1);
                                      R2 = result.data;
             goto slow_add;           goto rejoin;
         R0 = arg0.data;
         R1 = arg1.data;
         R2 = R0 + R1;
         if (OVERFLOWED)
             goto slow_add;
        rejoin:




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Rejoining
                          Inline                   Out-of-line
         if (arg0.type != INT32)
             goto slow_add;            slow_add:
         if (arg1.type != INT32)          Value result = runtime::Add(arg0, arg1);
             goto slow_add;               R2 = result.data;
                                          R3 = result.type;
         R0 = arg0.data;                  goto rejoin;
         R1 = arg1.data;
         R2 = R0 + R1;
         if (OVERFLOWED)
             goto slow_add;
         R3 = TYPE_INT32;
        rejoin:




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Final Code
                          Inline                    Out-of-line
        if (arg0.type != INT32)
            goto slow_add;
        if (arg1.type != INT32)        slow_add:
                                          Value result = Interpreter::Add(arg0, arg1);
            goto slow_add;                R2 = result.data;
        R0 = arg0.data;                   R3 = result.type;
        R1 = arg1.data;                   goto rejoin;
        R2 = R0 + R1;
        if (OVERFLOWED)
            goto slow_add;
        R3 = TYPE_INT32;
       rejoin:
        return Value(R3, R2);




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Observations




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Observations
                     • Even though we have fast paths, no
                          type information can flow in
                          between opcodes
                          • Cannot assume result of ADD is
                            integer
                          • Means more branches

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Observations
                     • Even though we have fast paths, no
                          type information can flow in
                          between opcodes
                          • Cannot assume result of ADD is
                            integer
                          • Means more branches
                     • Types increase register pressure
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT – Object Access
                                    function f(x) {
                                      return x.y;
                                    }

                     •    x.y is a dictionary search!

                     •    How can we create a fast-path?

                          •   We could try to cache the lookup, but

                          •   We want it to work for >1 objects

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Access




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Access

                     • Observation
                      • Usually, objects flowing through
                          an access site look the same




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Access

                     • Observation
                      • Usually, objects flowing through
                           an access site look the same
                     • If we knew an object’s layout, we
                          could bypass the dictionary
                          lookup


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Layout

                               var obj = { x: 50,
                                            y: 100,
                                            z: 20
                                         };




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Layout




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Layout
                                 JSObject
                                 Shape *shape;


                                 Value *slots;




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Layout
                          Shape              JSObject
      Property Name            Slot Number
                                             Shape *shape;

                   x               0
                                             Value *slots;
                    y              1

                    z              2




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Layout
                          Shape              JSObject
      Property Name            Slot Number
                                             Shape *shape;
                                                             0 (Int32, 50)
                   x               0
                                             Value *slots;   1 (Int32, 100)
                    y              1
                                                             2 (Int32, 20)

                    z              2




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Layout
                                var obj = { x: 50,
                                             y: 100,
                                             z: 20
                                          };
                                          …
                               var obj2 = { x: 78,
                                              y: 93,
                                              z: 600
                                           };
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Layout
                          Shape              JSObject
      Property Name            Slot Number                   0 (Int32, 50)
                                             Shape *shape;
                   x               0                         1 (Int32, 100)
                                             Value *slots;
                                                             2 (Int32, 20)
                    y              1

                    z              2




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Layout
                          Shape              JSObject
      Property Name            Slot Number                   0 (Int32, 50)
                                             Shape *shape;
                   x               0                         1 (Int32, 100)
                                             Value *slots;
                                                             2 (Int32, 20)
                    y              1

                    z              2         JSObject
                                             Shape *shape;


                                             Value *slots;



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Layout
                          Shape              JSObject
      Property Name            Slot Number                   0 (Int32, 50)
                                             Shape *shape;
                   x               0                         1 (Int32, 100)
                                             Value *slots;
                                                             2 (Int32, 20)
                    y              1

                    z              2         JSObject
                                             Shape *shape;


                                             Value *slots;



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Object Layout
                          Shape              JSObject
      Property Name            Slot Number                   0 (Int32, 50)
                                             Shape *shape;
                   x               0                         1 (Int32, 100)
                                             Value *slots;
                                                             2 (Int32, 20)
                    y              1

                    z              2         JSObject
                                                             0 (Int32, 78)
                                             Shape *shape;
                                                             1 (Int32, 93)
                                             Value *slots;
                                                             2 (Int32, 600)


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Familiar Problems




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Familiar Problems

                     • We don’t know an object’s shape
                          during JIT compilation




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Familiar Problems

                     • We don’t know an object’s shape
                          during JIT compilation
                     • ... Or even that a property access
                          receives an object!




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Familiar Problems

                     • We don’t know an object’s shape
                          during JIT compilation
                     • ... Or even that a property access
                          receives an object!
                     • Solution: leave code “blank,” lazily
                          generate it later


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Inline Caches
                                 function f(x) {
                                   return x.y;
                                 }




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Inline Caches
          • Start as normal, guarding on type and
                  loading data
                          if (arg0.type != OBJECT)
                            goto slow_property;
                          JSObject *obj = arg0.data;




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Inline Caches
          • No information yet: leave blank (nops).
                          if (arg0.type != OBJECT)
                            goto slow_property;
                          JSObject *obj = arg0.data;




                          goto property_ic;
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Property ICs
                               function f(x) {
                                 return x.y;
                               }


                               f({x: 5, y: 10, z: 30});




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Property ICs
                          Shape S1           JSObject
      Property Name            Slot Number      Shape
                                               *shape;       0   (Int32, 5)
                   x                 0
                                             Value *slots;   1 (Int32, 10)
                    y                1
                                                             2 (Int32, 30)

                    z                2




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Property ICs
                          Shape S1
      Property Name            Slot Number

                   x                 0

                    y                1

                    z                2




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Property ICs
                                         Shape S1
                                Property Name   Slot Number

                                     x              0

                                     y              1

                                     z              2




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Property ICs
                                         Shape S1
                                Property Name   Slot Number

                                     x              0

                                     y              1
                                     z              2




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Inline Caches
          • Shape = S , slot is 1
                                1

                          if (arg0.type != OBJECT)
                            goto slow_property;
                          JSObject *obj = arg0.data;




                          goto property_ic;
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Inline Caches
          • Shape = S , slot is 1
                                1

                          if (arg0.type != OBJECT)
                            goto slow_property;
                          JSObject *obj = arg0.data;




                          goto property_ic;
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Inline Caches
          • Shape = SHAPE , slot is 1 1

                          if (arg0.type != OBJECT)
                            goto slow_property;
                          JSObject *obj = arg0.data;
                          if (obj->shape != SHAPE1)
                            goto property_ic;
                          R0 = obj->slots[1].type;
                          R1 = obj->slots[1].data;


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Polymorphism



                     • What happens if two different
                          shapes pass through a property
                          access?

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Polymorphism
                                function f(x) {
                                    return x.y;
                                }
                                f({ x: 5, y: 10, z: 30});
                                f({ y: 40});


                     • What happens if two different
                          shapes pass through a property
                          access?

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Polymorphism
                               function f(x) {
                                   return x.y;
                               }
                               f({ x: 5, y: 10, z: 30});
                               f({ y: 40});




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Polymorphism
                                function f(x) {
                                    return x.y;
                                }
                                f({ x: 5, y: 10, z: 30});
                                f({ y: 40});


                     • What happens if two different
                          shapes pass through a property
                          access?

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Polymorphism
                                function f(x) {
                                    return x.y;
                                }
                                f({ x: 5, y: 10, z: 30});
                                f({ y: 40});


                     • What happens if two different
                          shapes pass through a property
                          access?

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Polymorphism
              Main Method

    if (arg0.type != OBJECT)
      goto slow_path;
    JSObject *obj = arg0.data;
    if (obj->shape != SHAPE1)
      goto property_ic;
    R0 = obj->slots[1].type;
    R1 = obj->slots[1].data;
   rejoin:




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Polymorphism
              Main Method         Generated Stub
                                 stub:
    if (arg0.type != OBJECT)      if (obj->shape != SHAPE2)
      goto slow_path;               goto property_ic;
    JSObject *obj = arg0.data;    R0 = obj->slots[0].type;
    if (obj->shape != SHAPE0)     R1 = obj->slots[0].data;
      goto property_ic;           goto rejoin;
    R0 = obj->slots[1].type;
    R1 = obj->slots[1].data;
   rejoin:




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Polymorphism
              Main Method         Generated Stub
                                 stub:
    if (arg0.type != OBJECT)      if (obj->shape != SHAPE2)
      goto slow_path;               goto property_ic;
    JSObject *obj = arg0.data;    R0 = obj->slots[0].type;
    if (obj->shape != SHAPE1)     R1 = obj->slots[0].data;
      goto stub;                  goto rejoin;
    R0 = obj->slots[1].type;
    R1 = obj->slots[1].data;
   rejoin:




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Chain of Stubs
                          if (obj->shape == S1) {
                              result = obj->slots[0];
                          } else {
                              if (obj->shape == S2) {
                                  result = obj->slots[1];
                              } else {
                                  if (obj->shape == S3) {
                                       result = obj->slots[2];
                                  } else {
                                      if (obj->shape == S4) {
                                          result = obj->slots[3];
                                      } else {
                                          goto property_ic;
                                      }
                                  }
                              }
                          }


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Code Memory
                    • Generated code is patched from
                          inside the method
                          • Self-modifying, but single
                            threaded

                    • Code memory is always rwx
                     • Concerned about protection-
                            flipping expense

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT Summary




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT Summary

                     • Generates simple code to handle
                          common cases




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT Summary

                     • Generates simple code to handle
                          common cases
                     • Inline caches adapt code based on
                          runtime observations




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Basic JIT Summary

                     • Generates simple code to handle
                          common cases
                     • Inline caches adapt code based on
                          runtime observations
                     • Lots of guards, poor type
                          information


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Optimizing Harder




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Optimizing Harder
                     • Single pass too limited: we want to
                          perform whole-method
                          optimizations




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Optimizing Harder
                     • Single pass too limited: we want to
                          perform whole-method
                          optimizations
                     • We could generate an IR, but
                          without type information...




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Optimizing Harder
                     • Single pass too limited: we want to
                          perform whole-method
                          optimizations
                     • We could generate an IR, but
                          without type information...
                     • Slow paths prevent most
                          optimizations.

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Code Motion?
                          function Add(x, n) {
                            var sum = 0;
                            for (var i = 0; i < n; i++)
                               sum += x + n;
                            return sum;
                          }


                          The addition looks loop invariant.
                                  Can we hoist it?
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Code Motion?
                          function Add(x, n) {
                            var sum = 0;
                            var temp0 = x + n;
                            for (var i = 0; i < n; i++)
                               sum += temp0;
                            return sum;
                          }

                                         Let’s try it.

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Wrong Result
                           var global = 0;
                           var obj = {
                             valueOf: function () {
                                return ++global;
                             }
                           }
                           Add(obj, 10);




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Wrong Result
                             var global = 0;
                             var obj = {
                               valueOf: function () {
                                  return ++global;
                               }
                             }
                             Add(obj, 10);


                          • Original code returns 155

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Wrong Result
                             var global = 0;
                             var obj = {
                               valueOf: function () {
                                  return ++global;
                               }
                             }
                             Add(obj, 10);


                          • Original code returns 155
                          • Hoisted version returns 110!
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Idempotency
                    • Untyped operations are usually not
                          provably idempotent
                          • Slow paths are re-entrant, can
                            have observable side effects
                    • This prevents code motion,
                          redundancy elimination
                    • Just ask the Chakra team...
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Ideal Scenario




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Ideal Scenario
                     • Actual knowledge about types!




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Ideal Scenario
                     • Actual knowledge about types!
                     • Remove slow paths




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Ideal Scenario
                     • Actual knowledge about types!
                     • Remove slow paths
                     • Record and execute typed traces!
                          (TraceMonkey)




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Ideal Scenario
                     • Actual knowledge about types!
                     • Remove slow paths
                     • Record and execute typed traces!
                          (TraceMonkey)
                     • Or eve perform whole-method
                          optimizations

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Heavy Duty JITs




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Heavy Duty JITs
                     •    Make optimistic guesses about types




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Heavy Duty JITs
                     •    Make optimistic guesses about types
                          •   Guesses must be informed
                              •   Don’t want to waste time compiling
                                  code that can’t or won’t run




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Heavy Duty JITs
                     •    Make optimistic guesses about types
                          •   Guesses must be informed
                              •   Don’t want to waste time compiling
                                  code that can’t or won’t run
                          •   Using type inference or runtime
                              profiling



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Heavy Duty JITs
                     •    Make optimistic guesses about types
                          •   Guesses must be informed
                              •   Don’t want to waste time compiling
                                  code that can’t or won’t run
                          •   Using type inference or runtime
                              profiling
                     •    Generate an IR, perform textbook
                          compiler optimizations
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Optimism Pays Off

                    • People naturally write code as if it
                          were typed
                    • Variables and object fields that
                          change types are rare



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
IonMonkey




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
IonMonkey

                     • Work in progress




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
IonMonkey

                     • Work in progress
                     • Constructs high and low-level IRs



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
IonMonkey

                     • Work in progress
                     • Constructs high and low-level IRs
                     • Applies type information using
                          runtime feedback




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
IonMonkey

                     • Work in progress
                     • Constructs high and low-level IRs
                     • Applies type information using
                          runtime feedback
                     • Inlining, GVN, LICM, LSRA
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
GETARG 0 ; fetch x
         function Add(x, y) {   GETARG 1 ; fetch y
         }
           return x + y + x;    ADD
                                GETARG 0 ; fetch x
                                ADD
                                RETURN



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Build SSA
  GETARG 0 ; fetch x               v0 = arg0
  GETARG 1 ; fetch y               v1 = arg1
  ADD
  GETARG 0 ; fetch x
  ADD
  RETURN




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Build SSA
  GETARG 0 ; fetch x               v0 = arg0
  GETARG 1 ; fetch y               v1 = arg1
  ADD
  GETARG 0 ; fetch x
  ADD
  RETURN




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Type Oracle

                    • Need a mechanism to inform
                          compiler about likely types
                    • Type Oracle: given program counter,
                          returns types for inputs and outputs
                    • May use any data source – runtime
                          profiling, type inference, etc


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Type Oracle

                    • For this example, assume the type
                          oracle returns “integer” for the
                          output and both inputs to all ADD
                          operations



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Build SSA
  GETARG 0 ; fetch x               v0 = arg0
  GETARG 1 ; fetch y               v1 = arg1
  ADD
                                   v2 = iadd(v0, v1)
  GETARG 0 ; fetch x
  ADD
  RETURN




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Build SSA
  GETARG 0 ; fetch x               v0   =   arg0
  GETARG 1 ; fetch y               v1   =   arg1
  ADD
                                   v2   =   iadd(v0, v1)
  GETARG 0 ; fetch x
  ADD                              v3   =   iadd(v2, v0)
  RETURN




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Build SSA
  GETARG 0 ; fetch x               v0   =   arg0
  GETARG 1 ; fetch y               v1   =   arg1
  ADD
                                   v2   =   iadd(v0, v1)
  GETARG 0 ; fetch x
  ADD                              v3   =   iadd(v2, v0)
  RETURN                           v4   =   return(v3)




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
SSA (Intermediate)

                               v0   =   arg0
                               v1   =   arg1
                               v2   =   iadd(v0, v1)
                               v3   =   iadd(v2, v0)
                               v4   =   return(v3)



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
SSA (Intermediate)

           Untyped             v0   =   arg0
                               v1   =   arg1
                               v2   =   iadd(v0, v1)
                               v3   =   iadd(v2, v0)
                               v4   =   return(v3)



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
SSA (Intermediate)

           Untyped             v0   =   arg0
                               v1   =   arg1
                               v2   =   iadd(v0, v1)
               Typed
                               v3   =   iadd(v2, v0)
                               v4   =   return(v3)



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Intermediate SSA




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Intermediate SSA
                     • SSA does not type check




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Intermediate SSA
                     • SSA does not type check
                     • Type analysis:
                      • Makes sure SSA inputs have
                            correct type
                          • Inserts conversions, value
                            decoding

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Unoptimized SSA
                      v0   =   arg0
                      v1   =   arg1
                      v2   =   unbox(v0, INT32)
                      v3   =   unbox(v1, INT32)
                      v4   =   iadd(v2, v3)
                      v5   =   unbox(v0, INT32)
                      v6   =   iadd(v4, v5)
                      v7   =   return(v6)

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Optimization
                      v0   =   arg0
                      v1   =   arg1
                      v2   =   unbox(v0, INT32)
                      v3   =   unbox(v1, INT32)
                      v4   =   iadd(v2, v3)
                      v5   =   unbox(v0, INT32)
                      v6   =   iadd(v4, v5)
                      v7   =   return(v6)

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Optimization
                      v0   =   arg0
                      v1   =   arg1
                      v2   =   unbox(v0, INT32)
                      v3   =   unbox(v1, INT32)
                      v4   =   iadd(v2, v3)
                      v5   =   unbox(v0, INT32)
                      v6   =   iadd(v4, v5)
                      v7   =   return(v6)

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Optimized SSA
                      v0   =   arg0
                      v1   =   arg1
                      v2   =   unbox(v0, INT32)
                      v3   =   unbox(v1, INT32)
                      v4   =   iadd(v2, v3)
                      v5   =   iadd(v4, v2)
                      v6   =   return(v5)


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Register Allocation
                    • Linear Scan Register Allocation
                    • Based on Christian Wimmer’s work
                          •   Linear Scan Register Allocation for the Java HotSpot™ Client Compiler.
                              Master's thesis, Institute for System Software, Johannes Kepler University
                              Linz, 2004

                          •   Linear Scan Register Allocation on SSA Form. In Proceedings of the
                              International Symposium on Code Generation and Optimization, pages
                              170–179. ACM Press, 2010.


                    • Same algorithm used in Hotspot JVM
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Allocate Registers

                     0:   stack arg0
                     1:   stack arg1
                     2:   r1 unbox(0, INT32)
                     3:   r0 unbox(1, INT32)
                     4:   r0 iadd(2, 3)
                     5:   r0 iadd(4, 2)
                     6:   r0 return(5)

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Code Generation
                          SSA
      0:    stack arg0
      1:    stack arg1
      2:    r1 unbox(0, INT32)
      3:    r0 unbox(1, INT32)
      4:    r0 iadd(2, 3)
      5:    r0 iadd(4, 2)
      6:    r0 return(5)




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Code Generation
                          SSA            Native Code
      0:    stack arg0
                                  if (arg0.type != INT32)
      1:    stack arg1
                                    goto BAILOUT;
      2:    r1 unbox(0, INT32)
                                  r1 = arg0.data;
      3:    r0 unbox(1, INT32)
      4:    r0 iadd(2, 3)
      5:    r0 iadd(4, 2)
      6:    r0 return(5)




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Code Generation
                          SSA          Native Code
      0:    stack arg0            if (arg0.type != INT32)
      1:    stack arg1              goto BAILOUT;
      2:    r1 unbox(0, INT32)    r1 = arg0.data;
      3:    r0 unbox(1, INT32)    if (arg1.type != INT32)
      4:    r0 iadd(2, 3)           goto BAILOUT;
      5:    r0 iadd(4, 2)         r0 = arg1.data;
      6:    r0 return(5)




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Code Generation
                          SSA          Native Code
      0:    stack arg0            if (arg0.type != INT32)
      1:    stack arg1              goto BAILOUT;
      2:    r0 unbox(0, INT32)    r0 = arg0.data;
      3:    r1 unbox(1, INT32)    if (arg1.type != INT32)
      4:    r0 iadd(2, 3)           goto BAILOUT;
      5:    r0 iadd(4, 2)         r1 = arg1.data;
      6:    r0 return(5)          r0 = r0 + r1;
                                  if (OVERFLOWED)
                                    goto BAILOUT;




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Code Generation
                          SSA          Native Code
      0:    stack arg0            if (arg0.type != INT32)
      1:    stack arg1              goto BAILOUT;
      2:    r0 unbox(0, INT32)    r0 = arg0.data;
      3:    r1 unbox(1, INT32)    if (arg1.type != INT32)
      4:    r0 iadd(2, 3)           goto BAILOUT;
      5:    r0 iadd(4, 2)         r1 = arg1.data;
      6:    r0 return(5)          r0 = r0 + r1;
                                  if (OVERFLOWED)
                                    goto BAILOUT;
                                  r0 = r0 + r1;
                                  if (OVERFLOWED)
                                    goto BAILOUT;




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Code Generation
                          SSA          Native Code
      0:    stack arg0            if (arg0.type != INT32)
      1:    stack arg1              goto BAILOUT;
      2:    r0 unbox(0, INT32)    r0 = arg0.data;
      3:    r1 unbox(1, INT32)    if (arg1.type != INT32)
      4:    r0 iadd(2, 3)           goto BAILOUT;
      5:    r0 iadd(4, 2)         r1 = arg1.data;
      6:    r0 return(4)          r0 = r0 + r1;
                                  if (OVERFLOWED)
                                    goto BAILOUT;
                                  r0 = r0 + r1;
                                  if (OVERFLOWED)
                                    goto BAILOUT;
                                  return r0;



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Generated Code
                               if (arg0.type != INT32)
                                 goto BAILOUT;
                               r0 = arg0.data;
                               if (arg1.type != INT32)
                                 goto BAILOUT;
                               r1 = arg1.data;
                               r0 = r0 + r1;
                               if (OVERFLOWED)
                                 goto BAILOUT;
                               r0 = r0 + r1;
                               if (OVERFLOWED)
                                 goto BAILOUT;
                               return r0;




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Generated Code
               if (arg0.type != INT32)
                 goto BAILOUT;
               r0 = arg0.data;
               if (arg1.type != INT32)
                 goto BAILOUT;
               r1 = arg1.data;
               r0 = r0 + r1;
               if (OVERFLOWED)
                 goto BAILOUT;
               r0 = r0 + r1;
               if (OVERFLOWED)
                 goto BAILOUT;
               return r0;




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Generated Code
               if (arg0.type != INT32)
                 goto BAILOUT;           • Bailout exits JIT
               r0 = arg0.data;
               if (arg1.type != INT32)
                 goto BAILOUT;
               r1 = arg1.data;
               r0 = r0 + r1;
               if (OVERFLOWED)
                 goto BAILOUT;
               r0 = r0 + r1;
               if (OVERFLOWED)
                 goto BAILOUT;
               return r0;




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Generated Code
               if (arg0.type != INT32)
                 goto BAILOUT;           • Bailout exits JIT
               r0 = arg0.data;
               if (arg1.type != INT32)
                                         • May recompile function
                 goto BAILOUT;
               r1 = arg1.data;
               r0 = r0 + r1;
               if (OVERFLOWED)
                 goto BAILOUT;
               r0 = r0 + r1;
               if (OVERFLOWED)
                 goto BAILOUT;
               return r0;




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Guards Still Needed

                    • Object shapes for reading properties
                    • Types of…
                     • Arguments
                     • Values read from the heap
                     • Values returned from C++
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Guards Still Needed

                    • Math
                     • Integer Overflow
                     • Divide by Zero
                     • Multiply by -0
                     • NaN is falsey in JS, truthy in ISAs
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Heavy Duty JITs




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Heavy Duty JITs
                     • Full type speculation - no slow
                          paths
                          • Can move and eliminate code



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Heavy Duty JITs
                     • Full type speculation - no slow
                          paths
                          • Can move and eliminate code
                     • If speculation fails, method is
                          recompiled or deoptimized




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Heavy Duty JITs
                     • Full type speculation - no slow
                          paths
                          • Can move and eliminate code
                     • If speculation fails, method is
                          recompiled or deoptimized
                     • Can still use techniques like inline
                          caching!

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
To Infinity, and Beyond




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
To Infinity, and Beyond
                     •    Heavy-Duty JIT example has four guards:




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
To Infinity, and Beyond
                     •    Heavy-Duty JIT example has four guards:

                          •   Two type checks




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
To Infinity, and Beyond
                     •    Heavy-Duty JIT example has four guards:

                          •   Two type checks

                          •   Two overflow checks




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
To Infinity, and Beyond
                     •    Heavy-Duty JIT example has four guards:

                          •   Two type checks

                          •   Two overflow checks

                     •    Better than Basic JIT, but we can do
                          better




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
To Infinity, and Beyond
                     •    Heavy-Duty JIT example has four guards:

                          •   Two type checks

                          •   Two overflow checks

                     •    Better than Basic JIT, but we can do
                          better

                          •   Interval analysis can remove overflow
                              checks


 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
To Infinity, and Beyond
                     •    Heavy-Duty JIT example has four guards:

                          •   Two type checks

                          •   Two overflow checks

                     •    Better than Basic JIT, but we can do
                          better

                          •   Interval analysis can remove overflow
                              checks

                          •   Type Inference!
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Type Inference




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Type Inference
                     • Whole program analysis to
                          determine types of variables




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Type Inference
                     • Whole program analysis to
                          determine types of variables
                     • Hybrid: both static and dynamic



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Type Inference
                     • Whole program analysis to
                          determine types of variables
                     • Hybrid: both static and dynamic
                     • Replaces checks in JIT with checks
                          in virtual machine
                          • If VM breaks an assumption held
                            in any JIT code, that JIT code is
                            discarded
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Conclusions
                    • The web needs JavaScript to be fast
                    • Untyped, highly dynamic nature
                          makes this challenging
                    • Value boxing has different tradeoffs
                          on different ISAs
                    • GC needs to be fast. Lots of room
                          for future research.

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Conclusions

                    • JITs getting more powerful
                     • Type specialization is key
                     • Still need checks and special cases
                          on many operations



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Onwards

                    • The web is just getting warmed up
                    • Fast JavaScript execution and new
                          platform capabilities are pushing
                          the boundaries of whats possible
                          inside a web browser.



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
pdf.js




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
pdf.js
                    • 12k lines of JS code
                     • C++ poppler library closer to
                            200k of code
                          • Excellent performance (GPU
                            accelerated canvas API)
                          • Unbeatable security story
 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
dom.js




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
dom.js
                    • The DOM is the OS / API of the web
                          platform
                    • Traditionally implemented in C++.
                     • Calling into the DOM requires
                            expensive wrapping.
                          • C++ code is re-entrant.
                            Nightmare for any analysis.

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
dom.js
                    • dom.js re-implements the DOM in
                          JavaScript
                          • Several new language features are
                            being standardized for JS to make
                            this possible (Proxies, WeakMaps)
                          • Massive speedup for some
                            operations (by using JS vs C++!)

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Why should you care?
                    • The web is displacing proprietary
                          Operating Systems as the next
                          application platform
                    • A lot of academic research is still
                          focused on Java/C++/etc. Those are
                          obsolete technologies as far as the
                          web is concerned

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Research Opportunities

                    • JavaScript still 1.5-10x behind C++
                          in some cases
                    • Many unknowns in the area of GC,
                          Debugging, Profiling, Static Analysis



 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Next Up: Boot to Web




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Want to get involved?
                    •     The web is open technology. Anyone
                          can help extend and improve it
                    •     Several Universities participate in the
                          JavaScript standards group (TC39), for
                          example
                    •     Tom Van Cutsem’s JavaScript Proxies
                          work already available to 300mil
                          people. Soon also in Chrome

 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011
Questions?




 July 28, 2011 Lancaster, UK

Thursday, July 28, 2011

Weitere ähnliche Inhalte

Ähnlich wie High Performance JavaScript

Community Code: Xero
Community Code: XeroCommunity Code: Xero
Community Code: XeroSencha
 
Javascript Views, Client-side or Server-side with NodeJS
Javascript Views, Client-side or Server-side with NodeJSJavascript Views, Client-side or Server-side with NodeJS
Javascript Views, Client-side or Server-side with NodeJSSylvain Zimmer
 
NodeJS, CoffeeScript & Real-time Web
NodeJS, CoffeeScript & Real-time WebNodeJS, CoffeeScript & Real-time Web
NodeJS, CoffeeScript & Real-time WebJakub Nesetril
 
How I stopped worrying about and loved DumpRenderTree
How I stopped worrying about and loved DumpRenderTreeHow I stopped worrying about and loved DumpRenderTree
How I stopped worrying about and loved DumpRenderTreeHajime Morrita
 
Apache Tomcat + Java EE = Apache TomEE
Apache Tomcat + Java EE = Apache TomEEApache Tomcat + Java EE = Apache TomEE
Apache Tomcat + Java EE = Apache TomEEJacek Laskowski
 
AngularJS 2.0: A natural evolvement or a new beginning - Boyan Mihaylov - Cod...
AngularJS 2.0: A natural evolvement or a new beginning - Boyan Mihaylov - Cod...AngularJS 2.0: A natural evolvement or a new beginning - Boyan Mihaylov - Cod...
AngularJS 2.0: A natural evolvement or a new beginning - Boyan Mihaylov - Cod...Codemotion
 
JSUG - Java FX by Christoph Pickl
JSUG - Java FX by Christoph PicklJSUG - Java FX by Christoph Pickl
JSUG - Java FX by Christoph PicklChristoph Pickl
 
Pragmatic JavaScript (DevConnections 2011)
Pragmatic JavaScript (DevConnections 2011)Pragmatic JavaScript (DevConnections 2011)
Pragmatic JavaScript (DevConnections 2011)Jon Galloway
 
Johnson at RubyConf 2008
Johnson at RubyConf 2008Johnson at RubyConf 2008
Johnson at RubyConf 2008jbarnette
 
Learning jQuery @ MIT
Learning jQuery @ MITLearning jQuery @ MIT
Learning jQuery @ MITjeresig
 
Javascript framework and backbone
Javascript framework and backboneJavascript framework and backbone
Javascript framework and backboneDaniel Lv
 
Model Execution: Past, Present and Future
Model Execution: Past, Present and FutureModel Execution: Past, Present and Future
Model Execution: Past, Present and FutureBenoit Combemale
 
Intro to HTML5 Game Programming
Intro to HTML5 Game ProgrammingIntro to HTML5 Game Programming
Intro to HTML5 Game ProgrammingJames Williams
 
HTML XHTML HTML5
HTML XHTML HTML5HTML XHTML HTML5
HTML XHTML HTML5timstone
 
3D in the Browser via WebGL: It's Go Time
3D in the Browser via WebGL: It's Go Time 3D in the Browser via WebGL: It's Go Time
3D in the Browser via WebGL: It's Go Time Pascal Rettig
 

Ähnlich wie High Performance JavaScript (20)

Community Code: Xero
Community Code: XeroCommunity Code: Xero
Community Code: Xero
 
Javascript Views, Client-side or Server-side with NodeJS
Javascript Views, Client-side or Server-side with NodeJSJavascript Views, Client-side or Server-side with NodeJS
Javascript Views, Client-side or Server-side with NodeJS
 
NodeJS, CoffeeScript & Real-time Web
NodeJS, CoffeeScript & Real-time WebNodeJS, CoffeeScript & Real-time Web
NodeJS, CoffeeScript & Real-time Web
 
How I stopped worrying about and loved DumpRenderTree
How I stopped worrying about and loved DumpRenderTreeHow I stopped worrying about and loved DumpRenderTree
How I stopped worrying about and loved DumpRenderTree
 
Apache Tomcat + Java EE = Apache TomEE
Apache Tomcat + Java EE = Apache TomEEApache Tomcat + Java EE = Apache TomEE
Apache Tomcat + Java EE = Apache TomEE
 
AngularJS 2.0: A natural evolvement or a new beginning - Boyan Mihaylov - Cod...
AngularJS 2.0: A natural evolvement or a new beginning - Boyan Mihaylov - Cod...AngularJS 2.0: A natural evolvement or a new beginning - Boyan Mihaylov - Cod...
AngularJS 2.0: A natural evolvement or a new beginning - Boyan Mihaylov - Cod...
 
JSUG - Java FX by Christoph Pickl
JSUG - Java FX by Christoph PicklJSUG - Java FX by Christoph Pickl
JSUG - Java FX by Christoph Pickl
 
Javascript FTW
Javascript FTWJavascript FTW
Javascript FTW
 
What's New in GWT 2.2
What's New in GWT 2.2What's New in GWT 2.2
What's New in GWT 2.2
 
Pragmatic JavaScript (DevConnections 2011)
Pragmatic JavaScript (DevConnections 2011)Pragmatic JavaScript (DevConnections 2011)
Pragmatic JavaScript (DevConnections 2011)
 
Johnson at RubyConf 2008
Johnson at RubyConf 2008Johnson at RubyConf 2008
Johnson at RubyConf 2008
 
Learning jQuery @ MIT
Learning jQuery @ MITLearning jQuery @ MIT
Learning jQuery @ MIT
 
Javascript framework and backbone
Javascript framework and backboneJavascript framework and backbone
Javascript framework and backbone
 
Reef - ESUG 2010
Reef - ESUG 2010Reef - ESUG 2010
Reef - ESUG 2010
 
Model Execution: Past, Present and Future
Model Execution: Past, Present and FutureModel Execution: Past, Present and Future
Model Execution: Past, Present and Future
 
React.js at Cortex
React.js at CortexReact.js at Cortex
React.js at Cortex
 
Intro to HTML5 Game Programming
Intro to HTML5 Game ProgrammingIntro to HTML5 Game Programming
Intro to HTML5 Game Programming
 
HTML XHTML HTML5
HTML XHTML HTML5HTML XHTML HTML5
HTML XHTML HTML5
 
Tim stone.html5.rjug.20110316
Tim stone.html5.rjug.20110316Tim stone.html5.rjug.20110316
Tim stone.html5.rjug.20110316
 
3D in the Browser via WebGL: It's Go Time
3D in the Browser via WebGL: It's Go Time 3D in the Browser via WebGL: It's Go Time
3D in the Browser via WebGL: It's Go Time
 

Mehr von greenwop

Performance Analysis of Idle Programs
Performance Analysis of Idle ProgramsPerformance Analysis of Idle Programs
Performance Analysis of Idle Programsgreenwop
 
Unifying Remote Data, Remote Procedure, and Service Clients
Unifying Remote Data, Remote Procedure, and Service ClientsUnifying Remote Data, Remote Procedure, and Service Clients
Unifying Remote Data, Remote Procedure, and Service Clientsgreenwop
 
Expressiveness, Simplicity and Users
Expressiveness, Simplicity and UsersExpressiveness, Simplicity and Users
Expressiveness, Simplicity and Usersgreenwop
 
Category theory, Monads, and Duality in the world of (BIG) Data
Category theory, Monads, and Duality in the world of (BIG) DataCategory theory, Monads, and Duality in the world of (BIG) Data
Category theory, Monads, and Duality in the world of (BIG) Datagreenwop
 
A Featherweight Approach to FOOL
A Featherweight Approach to FOOLA Featherweight Approach to FOOL
A Featherweight Approach to FOOLgreenwop
 
The Rise of Dynamic Languages
The Rise of Dynamic LanguagesThe Rise of Dynamic Languages
The Rise of Dynamic Languagesgreenwop
 
Turning a Tower of Babel into a Beautiful Racket
Turning a Tower of Babel into a Beautiful RacketTurning a Tower of Babel into a Beautiful Racket
Turning a Tower of Babel into a Beautiful Racketgreenwop
 
Normal Considered Harmful
Normal Considered HarmfulNormal Considered Harmful
Normal Considered Harmfulgreenwop
 
Programming Language Memory Models: What do Shared Variables Mean?
Programming Language Memory Models: What do Shared Variables Mean?Programming Language Memory Models: What do Shared Variables Mean?
Programming Language Memory Models: What do Shared Variables Mean?greenwop
 

Mehr von greenwop (9)

Performance Analysis of Idle Programs
Performance Analysis of Idle ProgramsPerformance Analysis of Idle Programs
Performance Analysis of Idle Programs
 
Unifying Remote Data, Remote Procedure, and Service Clients
Unifying Remote Data, Remote Procedure, and Service ClientsUnifying Remote Data, Remote Procedure, and Service Clients
Unifying Remote Data, Remote Procedure, and Service Clients
 
Expressiveness, Simplicity and Users
Expressiveness, Simplicity and UsersExpressiveness, Simplicity and Users
Expressiveness, Simplicity and Users
 
Category theory, Monads, and Duality in the world of (BIG) Data
Category theory, Monads, and Duality in the world of (BIG) DataCategory theory, Monads, and Duality in the world of (BIG) Data
Category theory, Monads, and Duality in the world of (BIG) Data
 
A Featherweight Approach to FOOL
A Featherweight Approach to FOOLA Featherweight Approach to FOOL
A Featherweight Approach to FOOL
 
The Rise of Dynamic Languages
The Rise of Dynamic LanguagesThe Rise of Dynamic Languages
The Rise of Dynamic Languages
 
Turning a Tower of Babel into a Beautiful Racket
Turning a Tower of Babel into a Beautiful RacketTurning a Tower of Babel into a Beautiful Racket
Turning a Tower of Babel into a Beautiful Racket
 
Normal Considered Harmful
Normal Considered HarmfulNormal Considered Harmful
Normal Considered Harmful
 
Programming Language Memory Models: What do Shared Variables Mean?
Programming Language Memory Models: What do Shared Variables Mean?Programming Language Memory Models: What do Shared Variables Mean?
Programming Language Memory Models: What do Shared Variables Mean?
 

Kürzlich hochgeladen

Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 

Kürzlich hochgeladen (20)

Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 

High Performance JavaScript

  • 1. High Performance JavaScript Andreas Gal (with lots of help from David Mandelin and David Anderson) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 2. Power of the Web July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 3. How did we get here? • Making existing web tech faster and faster • Adding new technologies, like video, audio, integration and 2D+3D drawing July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 4. The Browser July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 5. Getting a Webpage twitter.com 199.59.149.198 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 6. Getting a Webpage GET / HTTP/1.0 twitter.com (HTTP Request) 199.59.149.198 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 7. Getting a Webpage <html> <head> <title>Twitter / Home</title> </head> <script language="javascript"> function doStuff() {...} </script> <body> ... (HTML, CSS, JavaScript) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 8. Core Web Components July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 9. Core Web Components • HTML provides content July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 10. Core Web Components • HTML provides content • CSS provides styling July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 11. Core Web Components • HTML provides content • CSS provides styling • JavaScript provides a programming interface July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 12. New Technologies • 2D Canvas • Video, Audio tags • WebGL (OpenGL + JavaScript) • Local Storage July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 13. DOM (Source: http://www.w3schools.com/htmldom/ default.asp) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 14. CSS • Cascading Style Sheets • Separates presentation from content .warning { color: red; text-decoration: underline; } • <b class=”warning”>This is red</b> July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 15. What is JavaScript? July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 16. What is JavaScript? • C-like syntax July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 17. What is JavaScript? • C-like syntax • De facto language of the web July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 18. What is JavaScript? • C-like syntax • De facto language of the web • Interacts with the DOM and the browser July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 19. C-Like Syntax • Braces, semicolons, familiar keywords if (x) { for (i = 0; i < 100; i++) print("Hello!"); } July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 20. Displaying a Webpage July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 21. Displaying a Webpage • Parsing, JavaScript engine executes code as it is encountered. • This can change DOM, or even trigger a “reflow” (layout) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 22. Displaying a Webpage • Parsing, JavaScript engine executes code as it is encountered. • This can change DOM, or even trigger a “reflow” (layout) • Layout engine applies CSS to DOM July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 23. Displaying a Webpage • Parsing, JavaScript engine executes code as it is encountered. • This can change DOM, or even trigger a “reflow” (layout) • Layout engine applies CSS to DOM • Computes geometry of elements July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 24. Displaying a Webpage • Parsing, JavaScript engine executes code as it is encountered. • This can change DOM, or even trigger a “reflow” (layout) • Layout engine applies CSS to DOM • Computes geometry of elements • Finished layout is sent to graphics layer July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 25. Run to completion • JavaScript is executed during HTML parsing. Semantically , nothing can (*) proceed until JS execution is done. • Very different VM latency requirements than Java or C#. • Sub millisecond compilation delays matter. July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 26. The Result July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 27. JavaScript • Invented by Brendan Eich in 1995 for Netscape 2 • Initial version written in 10 days • Anything from small browser interactions, complex apps (Gmail) to intense graphics (WebGL) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 28. Think LISP or Self, not Java July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 29. Think LISP or Self, not Java • Untyped - no type declarations July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 30. Think LISP or Self, not Java • Untyped - no type declarations • Multi-Paradigm – objects, closures, first-class functions July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 31. Think LISP or Self, not Java • Untyped - no type declarations • Multi-Paradigm – objects, closures, first-class functions • Highly dynamic - objects are dictionaries July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 32. No Type Declarations • Properties, variables, return values can be anything: function f(a) { var x = 72.3; if (a) x = a + "string"; return x; } July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 33. No Type Declarations • Properties, variables, return values can be anything: function f(a) { var x = “hi”; if (a) x = a + 33.2; return x; } July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 34. No Type Declarations • Properties, variables, return values can be anything: function f(a) { if a is: var x = “hi”; number: add; if (a) string: concat; x = a + 33.2; return x; } July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 35. Functional • Functions may be returned, passed as arguments: function f(a) { return function () { return a; } } var m = f(5); print(m()); July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 36. Objects • Objects are dictionaries mapping strings to values • Properties may be deleted or added at any time! var point = { x : 5, y : 10 }; delete point.x; point.z = 12; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 37. Prototypes July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 38. Prototypes • Every object can have a prototype object July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 39. Prototypes • Every object can have a prototype object • If a property is not found on an object, its prototype is searched instead July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 40. Prototypes • Every object can have a prototype object • If a property is not found on an object, its prototype is searched instead • … And the prototype’s prototype, etc.. July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 41. Numbers • JavaScript specifies that numbers are IEEE-754 64-bit floating point • Engines use 32-bit integers to optimize • Must preserve semantics: integers overflow to doubles July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 42. Numbers var x = 0x7FFFFFFF; int x = 0x7FFFFFFF; x++; x++; JavaScript C++ x 2147483648 -2147483648 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 43. JavaScript Implementations • Values (Objects, strings, numbers) • Garbage collector • Runtime library • Execution engine (VM) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 44. Values • The runtime must be able to query a value’s type to perform the right computation. • When storing values to variables or object fields, the type must be stored as well. July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 45. Values Boxed Unboxed Purpose Storage Computation Examples (INT32, 9000) (int)9000 (STRING, “hi”) (String *) “hi” (DOUBLE, 3.14) (double)3.14 Definition (Type tag, C++ value) C++ value • Boxed values required for variables, object fields • Unboxed values required for computation July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 46. Boxed Values July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 47. Boxed Values • Need a representation in C++ July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 48. Boxed Values • Need a representation in C++ • Easy idea: 96-bit struct (LUA) • 32-bits for type • 64-bits for double, pointer, or integer July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 49. Boxed Values • Need a representation in C++ • Easy idea: 96-bit struct (LUA) • 32-bits for type • 64-bits for double, pointer, or integer • Too big! We have to pack better. July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 50. Boxed Values • We used to use pointers, and tag the low bits (V8 still does) • Doubles have to be allocated on the heap • Indirection, GC pressure is bad • There is a middle ground… July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 51. Nunboxing IA32, ARM July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 52. Nunboxing IA32, ARM • Values are 64-bit July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 53. Nunboxing IA32, ARM • Values are 64-bit • Doubles are normal IEEE-754 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 54. Nunboxing IA32, ARM • Values are 64-bit • Doubles are normal IEEE-754 • How to pack non-doubles? July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 55. Nunboxing IA32, ARM • Values are 64-bit • Doubles are normal IEEE-754 • How to pack non-doubles? • 51 bits of NaN space! July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 56. Nunboxing IA32, ARM Type Payload 0x400c0000 0x00000000 63 0 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 57. Nunboxing IA32, ARM Type Payload 0x400c0000 0x00000000 63 0 • Full value: 0x400c000000000000 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 58. Nunboxing IA32, ARM Type Payload 0x400c0000 0x00000000 63 0 • Full value: 0x400c000000000000 • Type is double because it’s not a NaN July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 59. Nunboxing IA32, ARM Type Payload 0x400c0000 0x00000000 63 0 • Full value: 0x400c000000000000 • Type is double because it’s not a NaN • Encodes: (Double, 3.5) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 60. Nunboxing IA32, ARM Type Payload 0xFFFF0001 0x00000040 63 0 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 61. Nunboxing IA32, ARM Type Payload 0xFFFF0001 0x00000040 63 0 • Full value: 0xFFFF000100000040 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 62. Nunboxing IA32, ARM Type Payload 0xFFFF0001 0x00000040 63 0 • Full value: 0xFFFF000100000040 • Value is in NaN space July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 63. Nunboxing IA32, ARM Type Payload 0xFFFF0001 0x00000040 63 0 • Full value: 0xFFFF000100000040 • Value is in NaN space • Type is 0xFFFF0001 (Int32) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 64. Nunboxing IA32, ARM Type Payload 0xFFFF0001 0x00000040 63 0 • Full value: 0xFFFF000100000040 • Value is in NaN space • Type is 0xFFFF0001 (Int32) • Value is (Int32, 0x00000040) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 65. NaN boxing July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 66. NaN boxing • Nunboxing is a word-play on NaN boxing July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 67. NaN boxing • Nunboxing is a word-play on NaN boxing • NaN boxing is like Nunboxing, but prefers pointers over doubles (mask to get a pointer, shift to get a double) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 68. NaN boxing • Nunboxing is a word-play on NaN boxing • NaN boxing is like Nunboxing, but prefers pointers over doubles (mask to get a pointer, shift to get a double) • Attributed to Apple’s JSC, but really invented by Ed Smith/Adobe (I think) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 69. Punboxing x86-64 63 Type 47 Payload 0 1111 1111 1111 1000 0 000 .. 0000 0000 0000 0000 0100 0000 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 70. Punboxing x86-64 63 Type 47 Payload 0 1111 1111 1111 1000 0 000 .. 0000 0000 0000 0000 0100 0000 • Full value: 0xFFFF800000000040 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 71. Punboxing x86-64 63 Type 47 Payload 0 1111 1111 1111 1000 0 000 .. 0000 0000 0000 0000 0100 0000 • Full value: 0xFFFF800000000040 • Value is in NaN space July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 72. Punboxing x86-64 63 Type 47 Payload 0 1111 1111 1111 1000 0 000 .. 0000 0000 0000 0000 0100 0000 • Full value: 0xFFFF800000000040 • Value is in NaN space • Bits >> 47 == 0x1FFFF == INT32 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 73. Punboxing x86-64 63 Type 47 Payload 0 1111 1111 1111 1000 0 000 .. 0000 0000 0000 0000 0100 0000 • Full value: 0xFFFF800000000040 • Value is in NaN space • Bits >> 47 == 0x1FFFF == INT32 • Bits 47-63 masked off to retrieve payload July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 74. Punboxing x86-64 63 Type 47 Payload 0 1111 1111 1111 1000 0 000 .. 0000 0000 0000 0000 0100 0000 • Full value: 0xFFFF800000000040 • Value is in NaN space • Bits >> 47 == 0x1FFFF == INT32 • Bits 47-63 masked off to retrieve payload • Value(Int32, 0x00000040) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 75. Nunboxing Punboxing Fits in register NO YES Trivial to decode YES NO Portability 32-bit only* x64 only * Some 64-bit OSes can restrict mmap() to 32-bits July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 76. Garbage Collection • Need to reclaim memory without pausing user workflow, animations, etc • Need very fast object allocation • Consider lots of small objects like points, vectors • Reading and writing to the heap must be fast July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 77. Object Representation • JavaScript objects are very different from Java objects • Start empty, grow and shrink over time. • We use a header with a variable number of built-in slots, malloc() beyond that. • Predicting number of built-in slots to use is black magic. July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 78. Mark and Sweep July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 79. Mark and Sweep • All live objects are found via a recursive traversal of the root value set July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 80. Mark and Sweep • All live objects are found via a recursive traversal of the root value set • All dead objects are added to a free list July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 81. Mark and Sweep • All live objects are found via a recursive traversal of the root value set • All dead objects are added to a free list • Very slow to traverse entire heap July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 82. Mark and Sweep • All live objects are found via a recursive traversal of the root value set • All dead objects are added to a free list • Very slow to traverse entire heap • Building free lists can bring “dead” memory into cache July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 83. Improvements July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 84. Improvements • Sweeping, freelist building have been moved off-thread July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 85. Improvements • Sweeping, freelist building have been moved off-thread • Marking can be incremental, interleaved with program execution July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 86. Generational GC • Observation: most objects are short- lived • All new objects are bump-allocated into a newborn space • Once newborn space is full, live objects are moved to the tenured space • Newborn space is then reset to empty July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 87. Generational GC Inactive Active Newborn 8MB 8MB Space Tenured Space July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 88. After Minor GC Active Inactive Newborn 8MB 8MB Space Tenured Space July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 89. Barriers • Incremental marking, generational GC need read or write barriers • Read barriers are much slower • Write barrier seems to be well- predicted? July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 90. Unknowns • How much do cache effects matter? • Memory GC has to touch • Locality of objects • What do we need to consider to make GC fast? • Lots of research on Java. Almost nothing on JavaScript. Very different heaps. July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 91. Running JavaScript July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 92. Running JavaScript • Interpreter – Runs code, not fast July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 93. Running JavaScript • Interpreter – Runs code, not fast • Basic JIT – Simple, untyped compiler July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 94. Running JavaScript • Interpreter – Runs code, not fast • Basic JIT – Simple, untyped compiler • Trace Compiler - Typed compiler for traces (low latency, often fast). July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 95. Running JavaScript • Interpreter – Runs code, not fast • Basic JIT – Simple, untyped compiler • Trace Compiler - Typed compiler for traces (low latency, often fast). • Heavy-Duty JIT – Typed compiler for whole methods (high latency, always fast). July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 96. Interpreter • Good for code that runs once • Giant switch loop • Handles all edge cases of JS semantics July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 97. Interpreter while (true) { switch (*pc) { case OP_ADD: ... case OP_SUB: ... case OP_RETURN: ... } pc++; } July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 98. Interpreter case OP_ADD: { Value lhs = POP(); Value rhs = POP(); Value result; if (lhs.isInt32() && rhs.isInt32()) { int left = rhs.toInt32(); int right = rhs.toInt32(); if (AddOverflows(left, right, left + right)) result.setInt32(left + right); else result.setNumber(double(left) + double(right)); } else if (lhs.isString() || rhs.isString()) { String *left = ValueToString(lhs); String *right = ValueToString(rhs); String *r = Concatenate(left, right); result.setString(r); } else { double left = ValueToNumber(lhs); double right = ValueToNumber(rhs); result.setDouble(left + right); } PUSH(result); break; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 99. Interpreter July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 100. Interpreter • Very slow! • Lots of opcode and type dispatch • Lots of interpreter stack traffic July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 101. Interpreter • Very slow! • Lots of opcode and type dispatch • Lots of interpreter stack traffic • Just-in-time compilation solves both July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 102. Just In Time July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 103. Just In Time • Compilation must be very fast • Can’t introduce noticeable pauses July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 104. Just In Time • Compilation must be very fast • Can’t introduce noticeable pauses • People care about memory use • Can’t JIT everything • Can’t create bloated code • May have to discard code at any time July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 105. Basic JIT July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 106. Basic JIT • JägerMonkey in Firefox 4 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 107. Basic JIT • JägerMonkey in Firefox 4 • Every opcode has a hand-coded template of assembly (registers left blank) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 108. Basic JIT • JägerMonkey in Firefox 4 • Every opcode has a hand-coded template of assembly (registers left blank) • Method at a time: • Single pass through bytecode stream! • Compiler uses assembly templates corresponding to each opcode July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 109. Bytecode GETARG 0 ; fetch x function Add(x, y) { GETARG 1 ; fetch y return x + y; ADD } RETURN July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 110. Interpreter case OP_ADD: { Value lhs = POP(); Value rhs = POP(); Value result; if (lhs.isInt32() && rhs.isInt32()) { int left = rhs.toInt32(); int right = rhs.toInt32(); if (AddOverflows(left, right, left + right)) result.setInt32(left + right); else result.setNumber(double(left) + double(right)); } else if (lhs.isString() || rhs.isString()) { String *left = ValueToString(lhs); String *right = ValueToString(rhs); String *r = Concatenate(left, right); result.setString(r); } else { double left = ValueToNumber(lhs); double right = ValueToNumber(rhs); result.setDouble(left + right); } PUSH(result); break; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 111. Assembling ADD July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 112. Assembling ADD • Inlining that huge chunk for every ADD would be very slow July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 113. Assembling ADD • Inlining that huge chunk for every ADD would be very slow • Observation: • Some input types much more common than others July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 114. Integer Math – Common var j = 0; for (i = 0; i < 10000; i++) { j += i; } Weird Stuff – Rare! var j = 12.3; for (i = 0; i < 10000; i++) { j += new Object() + i.toString(); } July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 115. Assembling ADD • Only generate code for the easiest and most common cases • Large design space • Can consider integers common, or • Integers and doubles, or • Anything! July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 116. Basic JIT - ADD if (arg0.type != INT32) goto slow_add; if (arg1.type != INT32) goto slow_add; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 117. Basic JIT - ADD if (arg0.type != INT32) goto slow_add; if (arg1.type != INT32) goto slow_add; R0 = arg0.data R1 = arg1.data July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 118. Basic JIT - ADD if (arg0.type != INT32) goto slow_add; if (arg1.type != INT32) goto slow_add; Greedy R0 = arg0.data R1 = arg1.data Register Allocator July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 119. Basic JIT - ADD if (arg0.type != INT32) goto slow_add; if (arg1.type != INT32) goto slow_add; R0 = arg0.data; R1 = arg1.data; R2 = R0 + R1; if (OVERFLOWED) goto slow_add; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 120. Slow Paths slow_add: Value result = runtime::Add(arg0, arg1); July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 121. Inline Out-of-line if (arg0.type != INT32) goto slow_add; slow_add: if (arg1.type != INT32) Value result = Interpreter::Add(arg0, arg1); R2 = result.data; goto slow_add; goto rejoin; R0 = arg0.data; R1 = arg1.data; R2 = R0 + R1; if (OVERFLOWED) goto slow_add; rejoin: July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 122. Rejoining Inline Out-of-line if (arg0.type != INT32) goto slow_add; slow_add: if (arg1.type != INT32) Value result = runtime::Add(arg0, arg1); goto slow_add; R2 = result.data; R3 = result.type; R0 = arg0.data; goto rejoin; R1 = arg1.data; R2 = R0 + R1; if (OVERFLOWED) goto slow_add; R3 = TYPE_INT32; rejoin: July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 123. Final Code Inline Out-of-line if (arg0.type != INT32) goto slow_add; if (arg1.type != INT32) slow_add: Value result = Interpreter::Add(arg0, arg1); goto slow_add; R2 = result.data; R0 = arg0.data; R3 = result.type; R1 = arg1.data; goto rejoin; R2 = R0 + R1; if (OVERFLOWED) goto slow_add; R3 = TYPE_INT32; rejoin: return Value(R3, R2); July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 124. Observations July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 125. Observations • Even though we have fast paths, no type information can flow in between opcodes • Cannot assume result of ADD is integer • Means more branches July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 126. Observations • Even though we have fast paths, no type information can flow in between opcodes • Cannot assume result of ADD is integer • Means more branches • Types increase register pressure July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 127. Basic JIT – Object Access function f(x) { return x.y; } • x.y is a dictionary search! • How can we create a fast-path? • We could try to cache the lookup, but • We want it to work for >1 objects July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 128. Object Access July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 129. Object Access • Observation • Usually, objects flowing through an access site look the same July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 130. Object Access • Observation • Usually, objects flowing through an access site look the same • If we knew an object’s layout, we could bypass the dictionary lookup July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 131. Object Layout var obj = { x: 50, y: 100, z: 20 }; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 132. Object Layout July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 133. Object Layout JSObject Shape *shape; Value *slots; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 134. Object Layout Shape JSObject Property Name Slot Number Shape *shape; x 0 Value *slots; y 1 z 2 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 135. Object Layout Shape JSObject Property Name Slot Number Shape *shape; 0 (Int32, 50) x 0 Value *slots; 1 (Int32, 100) y 1 2 (Int32, 20) z 2 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 136. Object Layout var obj = { x: 50, y: 100, z: 20 }; … var obj2 = { x: 78, y: 93, z: 600 }; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 137. Object Layout Shape JSObject Property Name Slot Number 0 (Int32, 50) Shape *shape; x 0 1 (Int32, 100) Value *slots; 2 (Int32, 20) y 1 z 2 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 138. Object Layout Shape JSObject Property Name Slot Number 0 (Int32, 50) Shape *shape; x 0 1 (Int32, 100) Value *slots; 2 (Int32, 20) y 1 z 2 JSObject Shape *shape; Value *slots; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 139. Object Layout Shape JSObject Property Name Slot Number 0 (Int32, 50) Shape *shape; x 0 1 (Int32, 100) Value *slots; 2 (Int32, 20) y 1 z 2 JSObject Shape *shape; Value *slots; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 140. Object Layout Shape JSObject Property Name Slot Number 0 (Int32, 50) Shape *shape; x 0 1 (Int32, 100) Value *slots; 2 (Int32, 20) y 1 z 2 JSObject 0 (Int32, 78) Shape *shape; 1 (Int32, 93) Value *slots; 2 (Int32, 600) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 141. Familiar Problems July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 142. Familiar Problems • We don’t know an object’s shape during JIT compilation July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 143. Familiar Problems • We don’t know an object’s shape during JIT compilation • ... Or even that a property access receives an object! July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 144. Familiar Problems • We don’t know an object’s shape during JIT compilation • ... Or even that a property access receives an object! • Solution: leave code “blank,” lazily generate it later July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 145. Inline Caches function f(x) { return x.y; } July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 146. Inline Caches • Start as normal, guarding on type and loading data if (arg0.type != OBJECT) goto slow_property; JSObject *obj = arg0.data; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 147. Inline Caches • No information yet: leave blank (nops). if (arg0.type != OBJECT) goto slow_property; JSObject *obj = arg0.data; goto property_ic; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 148. Property ICs function f(x) { return x.y; } f({x: 5, y: 10, z: 30}); July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 149. Property ICs Shape S1 JSObject Property Name Slot Number Shape *shape; 0 (Int32, 5) x 0 Value *slots; 1 (Int32, 10) y 1 2 (Int32, 30) z 2 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 150. Property ICs Shape S1 Property Name Slot Number x 0 y 1 z 2 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 151. Property ICs Shape S1 Property Name Slot Number x 0 y 1 z 2 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 152. Property ICs Shape S1 Property Name Slot Number x 0 y 1 z 2 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 153. Inline Caches • Shape = S , slot is 1 1 if (arg0.type != OBJECT) goto slow_property; JSObject *obj = arg0.data; goto property_ic; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 154. Inline Caches • Shape = S , slot is 1 1 if (arg0.type != OBJECT) goto slow_property; JSObject *obj = arg0.data; goto property_ic; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 155. Inline Caches • Shape = SHAPE , slot is 1 1 if (arg0.type != OBJECT) goto slow_property; JSObject *obj = arg0.data; if (obj->shape != SHAPE1) goto property_ic; R0 = obj->slots[1].type; R1 = obj->slots[1].data; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 156. Polymorphism • What happens if two different shapes pass through a property access? July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 157. Polymorphism function f(x) { return x.y; } f({ x: 5, y: 10, z: 30}); f({ y: 40}); • What happens if two different shapes pass through a property access? July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 158. Polymorphism function f(x) { return x.y; } f({ x: 5, y: 10, z: 30}); f({ y: 40}); July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 159. Polymorphism function f(x) { return x.y; } f({ x: 5, y: 10, z: 30}); f({ y: 40}); • What happens if two different shapes pass through a property access? July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 160. Polymorphism function f(x) { return x.y; } f({ x: 5, y: 10, z: 30}); f({ y: 40}); • What happens if two different shapes pass through a property access? July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 161. Polymorphism Main Method if (arg0.type != OBJECT) goto slow_path; JSObject *obj = arg0.data; if (obj->shape != SHAPE1) goto property_ic; R0 = obj->slots[1].type; R1 = obj->slots[1].data; rejoin: July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 162. Polymorphism Main Method Generated Stub stub: if (arg0.type != OBJECT) if (obj->shape != SHAPE2) goto slow_path; goto property_ic; JSObject *obj = arg0.data; R0 = obj->slots[0].type; if (obj->shape != SHAPE0) R1 = obj->slots[0].data; goto property_ic; goto rejoin; R0 = obj->slots[1].type; R1 = obj->slots[1].data; rejoin: July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 163. Polymorphism Main Method Generated Stub stub: if (arg0.type != OBJECT) if (obj->shape != SHAPE2) goto slow_path; goto property_ic; JSObject *obj = arg0.data; R0 = obj->slots[0].type; if (obj->shape != SHAPE1) R1 = obj->slots[0].data; goto stub; goto rejoin; R0 = obj->slots[1].type; R1 = obj->slots[1].data; rejoin: July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 164. Chain of Stubs if (obj->shape == S1) { result = obj->slots[0]; } else { if (obj->shape == S2) { result = obj->slots[1]; } else { if (obj->shape == S3) { result = obj->slots[2]; } else { if (obj->shape == S4) { result = obj->slots[3]; } else { goto property_ic; } } } } July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 165. Code Memory • Generated code is patched from inside the method • Self-modifying, but single threaded • Code memory is always rwx • Concerned about protection- flipping expense July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 166. Basic JIT Summary July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 167. Basic JIT Summary • Generates simple code to handle common cases July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 168. Basic JIT Summary • Generates simple code to handle common cases • Inline caches adapt code based on runtime observations July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 169. Basic JIT Summary • Generates simple code to handle common cases • Inline caches adapt code based on runtime observations • Lots of guards, poor type information July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 170. Optimizing Harder July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 171. Optimizing Harder • Single pass too limited: we want to perform whole-method optimizations July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 172. Optimizing Harder • Single pass too limited: we want to perform whole-method optimizations • We could generate an IR, but without type information... July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 173. Optimizing Harder • Single pass too limited: we want to perform whole-method optimizations • We could generate an IR, but without type information... • Slow paths prevent most optimizations. July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 174. Code Motion? function Add(x, n) { var sum = 0; for (var i = 0; i < n; i++) sum += x + n; return sum; } The addition looks loop invariant. Can we hoist it? July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 175. Code Motion? function Add(x, n) { var sum = 0; var temp0 = x + n; for (var i = 0; i < n; i++) sum += temp0; return sum; } Let’s try it. July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 176. Wrong Result var global = 0; var obj = { valueOf: function () { return ++global; } } Add(obj, 10); July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 177. Wrong Result var global = 0; var obj = { valueOf: function () { return ++global; } } Add(obj, 10); • Original code returns 155 July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 178. Wrong Result var global = 0; var obj = { valueOf: function () { return ++global; } } Add(obj, 10); • Original code returns 155 • Hoisted version returns 110! July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 179. Idempotency • Untyped operations are usually not provably idempotent • Slow paths are re-entrant, can have observable side effects • This prevents code motion, redundancy elimination • Just ask the Chakra team... July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 180. Ideal Scenario July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 181. Ideal Scenario • Actual knowledge about types! July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 182. Ideal Scenario • Actual knowledge about types! • Remove slow paths July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 183. Ideal Scenario • Actual knowledge about types! • Remove slow paths • Record and execute typed traces! (TraceMonkey) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 184. Ideal Scenario • Actual knowledge about types! • Remove slow paths • Record and execute typed traces! (TraceMonkey) • Or eve perform whole-method optimizations July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 185. Heavy Duty JITs July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 186. Heavy Duty JITs • Make optimistic guesses about types July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 187. Heavy Duty JITs • Make optimistic guesses about types • Guesses must be informed • Don’t want to waste time compiling code that can’t or won’t run July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 188. Heavy Duty JITs • Make optimistic guesses about types • Guesses must be informed • Don’t want to waste time compiling code that can’t or won’t run • Using type inference or runtime profiling July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 189. Heavy Duty JITs • Make optimistic guesses about types • Guesses must be informed • Don’t want to waste time compiling code that can’t or won’t run • Using type inference or runtime profiling • Generate an IR, perform textbook compiler optimizations July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 190. Optimism Pays Off • People naturally write code as if it were typed • Variables and object fields that change types are rare July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 191. IonMonkey July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 192. IonMonkey • Work in progress July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 193. IonMonkey • Work in progress • Constructs high and low-level IRs July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 194. IonMonkey • Work in progress • Constructs high and low-level IRs • Applies type information using runtime feedback July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 195. IonMonkey • Work in progress • Constructs high and low-level IRs • Applies type information using runtime feedback • Inlining, GVN, LICM, LSRA July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 196. GETARG 0 ; fetch x function Add(x, y) { GETARG 1 ; fetch y } return x + y + x; ADD GETARG 0 ; fetch x ADD RETURN July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 197. Build SSA GETARG 0 ; fetch x v0 = arg0 GETARG 1 ; fetch y v1 = arg1 ADD GETARG 0 ; fetch x ADD RETURN July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 198. Build SSA GETARG 0 ; fetch x v0 = arg0 GETARG 1 ; fetch y v1 = arg1 ADD GETARG 0 ; fetch x ADD RETURN July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 199. Type Oracle • Need a mechanism to inform compiler about likely types • Type Oracle: given program counter, returns types for inputs and outputs • May use any data source – runtime profiling, type inference, etc July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 200. Type Oracle • For this example, assume the type oracle returns “integer” for the output and both inputs to all ADD operations July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 201. Build SSA GETARG 0 ; fetch x v0 = arg0 GETARG 1 ; fetch y v1 = arg1 ADD v2 = iadd(v0, v1) GETARG 0 ; fetch x ADD RETURN July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 202. Build SSA GETARG 0 ; fetch x v0 = arg0 GETARG 1 ; fetch y v1 = arg1 ADD v2 = iadd(v0, v1) GETARG 0 ; fetch x ADD v3 = iadd(v2, v0) RETURN July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 203. Build SSA GETARG 0 ; fetch x v0 = arg0 GETARG 1 ; fetch y v1 = arg1 ADD v2 = iadd(v0, v1) GETARG 0 ; fetch x ADD v3 = iadd(v2, v0) RETURN v4 = return(v3) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 204. SSA (Intermediate) v0 = arg0 v1 = arg1 v2 = iadd(v0, v1) v3 = iadd(v2, v0) v4 = return(v3) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 205. SSA (Intermediate) Untyped v0 = arg0 v1 = arg1 v2 = iadd(v0, v1) v3 = iadd(v2, v0) v4 = return(v3) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 206. SSA (Intermediate) Untyped v0 = arg0 v1 = arg1 v2 = iadd(v0, v1) Typed v3 = iadd(v2, v0) v4 = return(v3) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 207. Intermediate SSA July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 208. Intermediate SSA • SSA does not type check July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 209. Intermediate SSA • SSA does not type check • Type analysis: • Makes sure SSA inputs have correct type • Inserts conversions, value decoding July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 210. Unoptimized SSA v0 = arg0 v1 = arg1 v2 = unbox(v0, INT32) v3 = unbox(v1, INT32) v4 = iadd(v2, v3) v5 = unbox(v0, INT32) v6 = iadd(v4, v5) v7 = return(v6) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 211. Optimization v0 = arg0 v1 = arg1 v2 = unbox(v0, INT32) v3 = unbox(v1, INT32) v4 = iadd(v2, v3) v5 = unbox(v0, INT32) v6 = iadd(v4, v5) v7 = return(v6) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 212. Optimization v0 = arg0 v1 = arg1 v2 = unbox(v0, INT32) v3 = unbox(v1, INT32) v4 = iadd(v2, v3) v5 = unbox(v0, INT32) v6 = iadd(v4, v5) v7 = return(v6) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 213. Optimized SSA v0 = arg0 v1 = arg1 v2 = unbox(v0, INT32) v3 = unbox(v1, INT32) v4 = iadd(v2, v3) v5 = iadd(v4, v2) v6 = return(v5) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 214. Register Allocation • Linear Scan Register Allocation • Based on Christian Wimmer’s work • Linear Scan Register Allocation for the Java HotSpot™ Client Compiler. Master's thesis, Institute for System Software, Johannes Kepler University Linz, 2004 • Linear Scan Register Allocation on SSA Form. In Proceedings of the International Symposium on Code Generation and Optimization, pages 170–179. ACM Press, 2010. • Same algorithm used in Hotspot JVM July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 215. Allocate Registers 0: stack arg0 1: stack arg1 2: r1 unbox(0, INT32) 3: r0 unbox(1, INT32) 4: r0 iadd(2, 3) 5: r0 iadd(4, 2) 6: r0 return(5) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 216. Code Generation SSA 0: stack arg0 1: stack arg1 2: r1 unbox(0, INT32) 3: r0 unbox(1, INT32) 4: r0 iadd(2, 3) 5: r0 iadd(4, 2) 6: r0 return(5) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 217. Code Generation SSA Native Code 0: stack arg0 if (arg0.type != INT32) 1: stack arg1 goto BAILOUT; 2: r1 unbox(0, INT32) r1 = arg0.data; 3: r0 unbox(1, INT32) 4: r0 iadd(2, 3) 5: r0 iadd(4, 2) 6: r0 return(5) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 218. Code Generation SSA Native Code 0: stack arg0 if (arg0.type != INT32) 1: stack arg1 goto BAILOUT; 2: r1 unbox(0, INT32) r1 = arg0.data; 3: r0 unbox(1, INT32) if (arg1.type != INT32) 4: r0 iadd(2, 3) goto BAILOUT; 5: r0 iadd(4, 2) r0 = arg1.data; 6: r0 return(5) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 219. Code Generation SSA Native Code 0: stack arg0 if (arg0.type != INT32) 1: stack arg1 goto BAILOUT; 2: r0 unbox(0, INT32) r0 = arg0.data; 3: r1 unbox(1, INT32) if (arg1.type != INT32) 4: r0 iadd(2, 3) goto BAILOUT; 5: r0 iadd(4, 2) r1 = arg1.data; 6: r0 return(5) r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 220. Code Generation SSA Native Code 0: stack arg0 if (arg0.type != INT32) 1: stack arg1 goto BAILOUT; 2: r0 unbox(0, INT32) r0 = arg0.data; 3: r1 unbox(1, INT32) if (arg1.type != INT32) 4: r0 iadd(2, 3) goto BAILOUT; 5: r0 iadd(4, 2) r1 = arg1.data; 6: r0 return(5) r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 221. Code Generation SSA Native Code 0: stack arg0 if (arg0.type != INT32) 1: stack arg1 goto BAILOUT; 2: r0 unbox(0, INT32) r0 = arg0.data; 3: r1 unbox(1, INT32) if (arg1.type != INT32) 4: r0 iadd(2, 3) goto BAILOUT; 5: r0 iadd(4, 2) r1 = arg1.data; 6: r0 return(4) r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; return r0; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 222. Generated Code if (arg0.type != INT32) goto BAILOUT; r0 = arg0.data; if (arg1.type != INT32) goto BAILOUT; r1 = arg1.data; r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; return r0; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 223. Generated Code if (arg0.type != INT32) goto BAILOUT; r0 = arg0.data; if (arg1.type != INT32) goto BAILOUT; r1 = arg1.data; r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; return r0; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 224. Generated Code if (arg0.type != INT32) goto BAILOUT; • Bailout exits JIT r0 = arg0.data; if (arg1.type != INT32) goto BAILOUT; r1 = arg1.data; r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; return r0; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 225. Generated Code if (arg0.type != INT32) goto BAILOUT; • Bailout exits JIT r0 = arg0.data; if (arg1.type != INT32) • May recompile function goto BAILOUT; r1 = arg1.data; r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; r0 = r0 + r1; if (OVERFLOWED) goto BAILOUT; return r0; July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 226. Guards Still Needed • Object shapes for reading properties • Types of… • Arguments • Values read from the heap • Values returned from C++ July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 227. Guards Still Needed • Math • Integer Overflow • Divide by Zero • Multiply by -0 • NaN is falsey in JS, truthy in ISAs July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 228. Heavy Duty JITs July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 229. Heavy Duty JITs • Full type speculation - no slow paths • Can move and eliminate code July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 230. Heavy Duty JITs • Full type speculation - no slow paths • Can move and eliminate code • If speculation fails, method is recompiled or deoptimized July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 231. Heavy Duty JITs • Full type speculation - no slow paths • Can move and eliminate code • If speculation fails, method is recompiled or deoptimized • Can still use techniques like inline caching! July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 232. To Infinity, and Beyond July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 233. To Infinity, and Beyond • Heavy-Duty JIT example has four guards: July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 234. To Infinity, and Beyond • Heavy-Duty JIT example has four guards: • Two type checks July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 235. To Infinity, and Beyond • Heavy-Duty JIT example has four guards: • Two type checks • Two overflow checks July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 236. To Infinity, and Beyond • Heavy-Duty JIT example has four guards: • Two type checks • Two overflow checks • Better than Basic JIT, but we can do better July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 237. To Infinity, and Beyond • Heavy-Duty JIT example has four guards: • Two type checks • Two overflow checks • Better than Basic JIT, but we can do better • Interval analysis can remove overflow checks July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 238. To Infinity, and Beyond • Heavy-Duty JIT example has four guards: • Two type checks • Two overflow checks • Better than Basic JIT, but we can do better • Interval analysis can remove overflow checks • Type Inference! July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 239. Type Inference July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 240. Type Inference • Whole program analysis to determine types of variables July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 241. Type Inference • Whole program analysis to determine types of variables • Hybrid: both static and dynamic July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 242. Type Inference • Whole program analysis to determine types of variables • Hybrid: both static and dynamic • Replaces checks in JIT with checks in virtual machine • If VM breaks an assumption held in any JIT code, that JIT code is discarded July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 243. Conclusions • The web needs JavaScript to be fast • Untyped, highly dynamic nature makes this challenging • Value boxing has different tradeoffs on different ISAs • GC needs to be fast. Lots of room for future research. July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 244. Conclusions • JITs getting more powerful • Type specialization is key • Still need checks and special cases on many operations July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 245. Onwards • The web is just getting warmed up • Fast JavaScript execution and new platform capabilities are pushing the boundaries of whats possible inside a web browser. July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 246. pdf.js July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 247. pdf.js • 12k lines of JS code • C++ poppler library closer to 200k of code • Excellent performance (GPU accelerated canvas API) • Unbeatable security story July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 248. dom.js July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 249. dom.js • The DOM is the OS / API of the web platform • Traditionally implemented in C++. • Calling into the DOM requires expensive wrapping. • C++ code is re-entrant. Nightmare for any analysis. July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 250. dom.js • dom.js re-implements the DOM in JavaScript • Several new language features are being standardized for JS to make this possible (Proxies, WeakMaps) • Massive speedup for some operations (by using JS vs C++!) July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 251. Why should you care? • The web is displacing proprietary Operating Systems as the next application platform • A lot of academic research is still focused on Java/C++/etc. Those are obsolete technologies as far as the web is concerned July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 252. Research Opportunities • JavaScript still 1.5-10x behind C++ in some cases • Many unknowns in the area of GC, Debugging, Profiling, Static Analysis July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 253. Next Up: Boot to Web July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 254. Want to get involved? • The web is open technology. Anyone can help extend and improve it • Several Universities participate in the JavaScript standards group (TC39), for example • Tom Van Cutsem’s JavaScript Proxies work already available to 300mil people. Soon also in Chrome July 28, 2011 Lancaster, UK Thursday, July 28, 2011
  • 255. Questions? July 28, 2011 Lancaster, UK Thursday, July 28, 2011