SlideShare a Scribd company logo
Beyond JVM
A tour of upcoming technologies
Me
• Charles Oliver Nutter	

• Red Hat (yes, I have one; no, I don’t wear it)	

• JRuby and JVM languages	

• JVM hacking and spelunking	

• @headius
Goals
• Get you excited about the future of JVM	

• Show you there are very few unsolvables	

• Convince you to get involved
What is “JVM”?
• The JVM is software that runs JVM bytecode	

• Java, Scala, Groovy, JRuby, Clojure, …	

• OpenJDK contains Sun’s JVM “HotSpot”	

• Oracle’s JDK is based on OpenJDK	

• Many other JVMs exist for many platforms	

• Some just replace HotSpot
OSS JVMs
•
•
•
•
•
•
•
•
•

Avian	

Azul Zulu	

CACAO	

Dalvik	

GCJ	

HaikuVM	

HotSpot	


•
•
•
•
•
•
•

IcedTea	

IKVM.NET	


•

Jamiga	

JamVM	

Jaos	

Jato VM	

Jelatine JVM	

JESSICA	

Jikes RVM
(Jikes Research
Virtual
Machine)	

JOP	


•
•
•
•
•
•
•
•
•

Juice	

Jupiter	

JwiK	

Kaffe	

leDos	

MateVM	

Maxine	

Mika VM	

miniMV	


•
•
•
•
•

Mysaifu	


•
•
•
•

SuperWaba	


NanoVM	

RoboVM	

SableVM	

Squawk virtual
machine	


TakaTuka	

TinyVM.	

VM02
Why JVM?
Why Not JVM?
Beyond JVM - YOW! Brisbane 2013
Beyond JVM - YOW! Brisbane 2013
Startup Time
Beyond JVM - YOW! Brisbane 2013
Beyond JVM - YOW! Brisbane 2013
Java-Heavy JDK
• + Less native code to maintain	

• + Easier portability	

• + Easier to swap out native side	

• – Takes longer to warm up
Save JITed Code?
• Code will change across runs	

• Often has specific memory addresses	

• May optimize object layout differently	

• Which JIT output?	

• Client, Server, Tiered (1-4)
JRuby Startup
C Ruby

JRuby

JRuby (best)

-e 1

gem --help

rake -T

0

2.5

5

7.5

10
Drip
• Start a new JVM after each command	

• Pre-boot JVM plus optional code	

• Analyze command line for differences	

• Age out unused instances	

• https://github.com/flatland/drip
$ export JAVACMD=`which drip`	
!
$ time jruby -e 1	
!
real	 0m1.655s	
user	 0m4.486s	
sys	0m0.231s	
!
system ~/projects/jruby $ time jruby -e 1	
!
real	 0m0.577s	
user	 0m0.052s	
sys	0m0.065s
$ export DRIP_INIT_CLASS=org.jruby.main.DripMain	
!
$ export DRIP_INIT=""	
!
$ time jruby -e 1	
!
real	 0m0.580s	
user	 0m0.052s	
sys	0m0.063s	
!
system ~/projects/jruby $ time jruby -e 1	
!
real	 0m0.155s	
user	 0m0.049s	
sys	0m0.058s
$ cat dripmain.rb	
# Preload some code Rails always needs	
require File.expand_path('../config/application', __FILE__)
JRuby Startup
C Ruby
JRuby (drip init)

JRuby (best)
JRuby (dripmain)

JRuby (drip)

-e 1

gem --help

rake -T

0

1.25

2.5

3.75

5
Native Interop
Native Interop
Beyond JVM - YOW! Brisbane 2013
Beyond JVM - YOW! Brisbane 2013
User Code

Java

JNI call

C/native

JNI impl
Target Library
JNI
public class GetPidJNI {!
public static native long getpid();!
!
public static void main( String[] args ) {!
getpid();!
}!
!
static {!
System.load(!
System.getProperty("user.dir") +!
"/getpidjni.dylib");!
}!
}
JNI
/* DO NOT EDIT THIS FILE - it is machine generated */!
#include <jni.h>!
/* Header for class com_headius_jnr_presentation_GetPidJNI */!
 !
#ifndef _Included_com_headius_jnr_presentation_GetPidJNI!
#define _Included_com_headius_jnr_presentation_GetPidJNI!
#ifdef __cplusplus!
extern "C" {!
#endif!
/*!
* Class:
com_headius_jnr_presentation_GetPidJNI!
* Method:
getpid!
* Signature: ()J!
*/!
JNIEXPORT jlong JNICALL Java_com_headius_jnr_1presentation_GetPidJNI_getpid!
(JNIEnv *, jclass);!
 !
#ifdef __cplusplus!
}!
#endif!
#endif
JNI
#include "com_headius_jnr_presentation_GetPidJNI.h"!
 !
jlong JNICALL Java_com_headius_jnr_1presentation_GetPidJNI_getpid!
(JNIEnv *env, jclass c) {!
 !
return getpid();!
}
JNI
$ gcc -I $JAVA_HOME/include -I
$JAVA_HOME/include/darwin -L
$JAVA_HOME/jre/lib/ -dynamiclib -ljava
-o getpidjni.dylib
com_headius_jnr_presentation_GetPidJNI.
c!
!

$ java -Djava.library.path=`pwd` -cp
target/jnr_presentation-1.0SNAPSHOT.jar
com.headius.jnr_presentation.GetPidJNI
Nobody enjoys calling
native libraries...
...but if you have to call
native libraries, you
might as well enjoy it.
Java Native Runtime
• Java API	

• for calling Native code	

• supported by a rich Runtime library	

• You may be familiar with JNA 	

• Foreign Function Interface (FFI)	

• https://github.com/jnr	

• Maven artifacts for everything
A Java API for binding
native libraries and
native memory
Justifications
• NIO, NIO.2	

• Native IO, symlinks, FS-walking, 	

• Unmanaged memory	

• Selectable stdio, process IO	

• Low-level or other sockets (UNIX, ICMP, ...)	

• New APIs (graphics, crypto, OS, ...)
User Code

Java

JNI call

C/native

JNI impl
Target Library
User Code

Java

JNI call

C/native

JNI impl
Target Library
User Code
JNR stub

Java

JNI call

C/native

JNI impl
libffi
Target Library
JNR
import jnr.ffi.LibraryLoader;!
import jnr.ffi.annotations.IgnoreError;!
 !
public class GetPidJNRExample {!
public interface GetPid {!
long getpid();!
}!
!
public static void main( String[] args ) {!
GetPid getpid = LibraryLoader!
.create(GetPid.class)!
.load("c");!
!
getpid.getpid();!
}!
}
Layered Runtime
etc etc
jnr-posix	


jnr-unixsocket!
jnr-enxio

jnr-constants

jnr-ffi
jffi
libffi

jnr-x86asm
JNR Platforms
• Darwin (OS X): universal (+ppc?)	

• Linux: i386, x86_64, arm, ppc, ppc64, s390x	

• Windows: i386, x86_64	

• FreeBSD, OpenBSD: i386, x86_64	

• SunOS: i386, x86_64, sparc, sparcv9	

• AIX: ppc	

• OpenVMS, AS/400: builds out there somewhere	

• If your platform isn't here, contribute a build
jnr-ffi
• User-oriented API	

• Roughly equivalent to what JNA gives you	

• Functions, structs, callbacks, memory	

• https://github.com/jnr/jnr-ffi
jnr-ffi
import jnr.ffi.LibraryLoader;!
import jnr.ffi.annotations.IgnoreError;!
 !
public class GetPidJNRExample {!
public interface GetPid {!
long getpid();!
}!
!
public static void main( String[] args ) {!
GetPid getpid = LibraryLoader!
.create(GetPid.class)!
.load("c");!
!
getpid.getpid();!
}!
}
jnr-posix
• Pre-bound set of POSIX functions	

• Mostly driven by what JRuby, Jython use	

• Goal: 100% of POSIX bound to Java
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
public
List<?

int chmod(String string, int i);!
int chown(String string, int i, int i1);!
int execv(String string, String[] strings);!
int execve(String string, String[] strings, String[] strings1);!
int fork();!
int seteuid(int i);!
int getgid();!
String getlogin();!
int getpgid();!
int getpgid(int i);!
int getpgrp();!
int getpid();!
int getppid();!
Passwd getpwent();!
Passwd getpwuid(int i);!
Passwd getpwnam(String string);!
Group getgrgid(int i);!
Group getgrnam(String string);!
int getuid();!
boolean isatty(FileDescriptor fd);!
int kill(int i, int i1);!
int symlink(String string, String string1);!
int link(String string, String string1);!
String readlink(String string) throws IOException;!
String getenv(String string);!
int setenv(String string, String string1, int i);!
int unsetenv(String string);!
int getpriority(int i, int i1);!
int setpriority(int i, int i1, int i2);!
int setuid(int i);!
FileStat stat(String string);!
int stat(String string, FileStat fs);!
int umask(int i);!
Times times();!
int utimes(String string, long[] longs, long[] longs1);!
int waitpid(int i, int[] ints, int i1);!
int wait(int[] ints);!
int errno();!
void errno(int i);!
int posix_spawnp(String string, List<? extends SpawnFileAction> list,
extends CharSequence> list1, List<? extends CharSequence> list2);
POSIX posix = POSIXFactory.getPOSIX(!
new MyPOSIXHandler(this),!
isNativeEnabled);
public interface POSIXHandler {!
public void error(Errno errno, String string);!
public void unimplementedError(String string);!
public void warn(WARNING_ID wrngd, String string, Object[] os);!
public boolean isVerbose();!
public File getCurrentWorkingDirectory();!
public String[] getEnv();!
public InputStream getInputStream();!
public PrintStream getOutputStream();!
public int getPID();!
public PrintStream getErrorStream();!
}
jnr-enxio
• Extended Native X-platform IO	

• NIO-compatible JNR-backed IO library	

• Read, write, select (kqueue, epoll, etc)	

• Low-level fcntl control	

• https://github.com/jnr/jnr-enxio
public class NativeSocketChannel!
extends AbstractSelectableChannel!
implements ByteChannel, NativeSelectableChannel {!
public NativeSocketChannel(int fd);!
public NativeSocketChannel(int fd, int ops);!
public final int validOps();!
public final int getFD();!
public int read(ByteBuffer dst) throws IOException;!
public int write(ByteBuffer src) throws IOException!
public void shutdownInput() throws IOException;!
public void shutdownOutput() throws IOException;!
}
jnr-unixsocket
• UNIX sockets for NIO	

• Built atop jnr-enxio	

• Fully selectable, etc	

• https://github.com/jnr/jnr-unixsocket
How Does It Perform?
JNA getpid

JNR getpid

getpid calls, 100M times
100000ms
10000ms
1000ms
100ms
10ms
1ms
@IgnoreError
import jnr.ffi.LibraryLoader;!
import jnr.ffi.annotations.IgnoreError;!
 !
public class GetPidJNRExample {!
public interface GetPid {!
@IgnoreError!
long getpid();!
}!
!
public static void main( String[] args ) {!
GetPid getpid = LibraryLoader!
.create(GetPid.class)!
.load("c");!
!
getpid.getpid();!
}!
}
JNR getpid

JNR getpid @IgnoreError
getpid calls, 100M times

2000ms

1500ms

1000ms

500ms

0ms
But There's More to Do
JNR getpid

JNI

JNR @IgnoreError
getpid calls, 100M times

2000ms
1500ms
1000ms
500ms
0ms

GCC -O3
JVM Help is Coming
• Standard FFI API in JDK	

• JIT intelligence	

• Drop JNI overhead where possible	

• Bind native call directly at call site	

• Security policies, segv protection, etc	

• Time for an FFI JSR
Language Performance
History
• JVM authors mentioned non-Java languages	

• Language authors have targeted JVM	

• Hundreds of JVM languages now	

• But JVM was a mismatch for many of them	

• Usually required tricks that defeated JVM
optimizations	


• Or required features JDK could not provide
What is
invokedynamic
JVM
Opcodes
Invocation	


Field Access	


invokevirtual!
invokeinterface!
invokestatic!
invokespecial

getfield!
setfield!
getstatic!
setstatic

Stack

Flow Control

Boolean and Numeric

Array Access	

*aload!
*astore!
b,s,c,i,l,d,f,a

Local Vars

Allocation
Goals of JSR 292
• A user-definable bytecode	

• Full freedom to define VM behavior	

• Fast method pointers + adapters	

• Optimizable like normal Java code	

• Avoid future modifications
A User-definable
Bytecode
You decide how the JVM implements it

+
Method Pointers
and Adapters
Faster than reflection, with user-defined	

argument, flow, and exception handling
invokedynamic opcode
user-def’d bytecode

method pointers
MethodHandles

invokedynamic
Method Invocation
VM Operations	

Method Lookup	

Type Checking	

Branch	

Method Cache

obj.foo()

Target	

Object
JVM

Call Site

instanceof

Object’s	

Class
void foo()

void foo()
static void bar()
// Static!
System.currentTimeMillis()!
Math.log(1.0)!
 !
// Virtual!
"hello".toUpperCase()!
System.out.println()!
 !
// Interface!
myList.add("happy happy")!
myRunnable.run()!
 !
// Special!
new ArrayList()!
super.equals(other)
// Static!
invokestatic java/lang/System.currentTimeMillis:()J!
invokestatic java/lang/Math.log:(D)D!
!
// Virtual!
invokevirtual java/lang/String.toUpperCase:()Ljava/lang/String;!
invokevirtual java/io/PrintStream.println:()V!
!
// Interface!
invokeinterface java/util/List.add:(Ljava/lang/Object;)Z!
invokeinterface java/lang/Runnable.add:()V!
!
// Special!
invokespecial java/util/ArrayList.<init>:()V!
invokespecial java/lang/Object.equals:(java/lang/Object)Z
invokevirtual!
1. Confirm object is of correct type	

2. Confirm arguments are of correct type	

3. Look up method on Java class	

invokestatic
4. Cache method	

5. Invoke method

invokestatic!
1. Confirm arguments are of correct type	

2. Look up method on Java class	

3. Cache method	

4. Invoke method

invokevirtual
invokeinterface!
1. Confirm object’s type implements interface	

2. Confirm arguments are of correct type	

3. Look up method on Java class	

invokeinterface
4. Cache method	

5. Invoke method

invokespecial!
1. Confirm object is of correct type	

2. Confirm arguments are of correct type	

3. Confirm target method is visible	

4. Look up method on Java class	

5. Cache method	

6. Invoke method

invokespecial
invokedynamic!
1. Call your bootstrap code	

2. Bootstrap wires up a target function	

3. Target function invoked directly until you change it
invokedynamic bytecode
target method

bo
ot
st

ra
p

m

et
ho
d

method handles
How Do You Benefit?
Indy Languages
• New language impls	

• JavaScript: Dyn.js and Nashorn	

• Redline Smalltalk	

• Improved language performance	

• JRuby, Groovy, Jython	

• Java features too!
JRuby/Java 6

JRuby/Java 7

Times Faster than Ruby 1.9.3
5
4.32

3.75

3.66
3.44

2.5

2.658

1.914

1.25

0

1.346

base64

1.565

1.538

richards

neural

redblack
red/black tree, pure Ruby versus native

ruby-2.0.0 + Ruby

2.48s

ruby-2.0.0 + C ext

0.51s

jruby + Ruby

0.29s

0

0.75

1.5
Runtime per iteration

2.25

3
Indy + JNR
Ruby getpid

Java getpid

100M getpid calls
2700

2025

1350

675

0
Caveat Emptor
• Indy was really slow in first Java 7 release	

• Got fast in 7u2...and turned out broken	

• Rewritten for 7u40	

• Slow to warm up	

• Still some issues (memory use, etc)	

• Java 8 due in March…
All That C++
JVM
Language

JVM
Bytecode

Out of our control	

Written in C++

Bytecode
Interpreter

Bytecode
JIT

Native
Code
What If…
• The JVM’s JIT optimizer were written in Java	

• You could customize how the JIT works for
your language or library	


• JITed code could directly make native calls
Graal
• A 100% Java-based JIT framework	

• Grew out of the 100% Java “Maxine” JVM	

• Backends to assembly or HotSpot IR	

• Directly control code generation	

• Build a language without using JVM bytecode	

• http://openjdk.java.net/projects/graal/
JVM
Language
Plain Java APIs

Graal	

Intermediate
Representation

Graal
Optimizer

Under your control

Your
Transformations

Your
Optimizations

Native
Code
However…
• Not everyone is a compiler writer	

• Graal’s IR is low-level and nontrivial	

• Need to understand JVM internals	

• Need some understanding of CPU
The Dream
• Design your language	

• ???	

• PROFIT
Typical JVM Language
• Design your language	

• Maybe write an interpreter	

• Compile to JVM bytecode	

• Pray that the JVM optimizes it right	

• PROFIT
What We Want
• Design your language	

• Write an interpreter	

• PROFIT
Truffle
• Language framework built on Graal	

• Designed to fulfill the dream	

• Implement interpreter	

• Truffle feeds that to backend	

• No compiler expertise needed	


• https://wiki.openjdk.java.net/display/Graal/Truffle+FAQ+and+Guidelines
JVM
Language

Truffle	

AST
All we need

Graal
Intermediate
Representation

Graal
Optimizer

Native
Code
Beyond JVM - YOW! Brisbane 2013
Beyond JVM - YOW! Brisbane 2013
The Final Word
• JVM is a powerful platform	

• Java and other languages are evolving	

• The JVM is adapting to our needs	

• New tools breaking JVM’s boundaries
Thank you!
• Charles Oliver Nutter	

• @headius, headius@headius.com	

• http://blog.headius.com

More Related Content

PDF
Beyond JVM - YOW Melbourne 2013
PDF
Beyond JVM - YOW! Sydney 2013
PDF
JVM for Dummies - OSCON 2011
PPTX
GOTO Night with Charles Nutter Slides
KEY
JavaOne 2011 - JVM Bytecode for Dummies
PDF
The State of Managed Runtimes 2013, by Attila Szegedi
PDF
Expert JavaScript Programming
KEY
Emulating With JavaScript
Beyond JVM - YOW Melbourne 2013
Beyond JVM - YOW! Sydney 2013
JVM for Dummies - OSCON 2011
GOTO Night with Charles Nutter Slides
JavaOne 2011 - JVM Bytecode for Dummies
The State of Managed Runtimes 2013, by Attila Szegedi
Expert JavaScript Programming
Emulating With JavaScript

What's hot (20)

KEY
Практики применения JRuby
PPTX
Steelcon 2014 - Process Injection with Python
PPTX
Memory Corruption: from sandbox to SMM
PDF
PDF
Solid And Sustainable Development in Scala
PPTX
Ahead-Of-Time Compilation of Java Applications
PPTX
Building a Unified Data Pipline in Spark / Apache Sparkを用いたBig Dataパイプラインの統一
PPTX
Obfuscating The Empire
PDF
Everything can be a bundle - making OSGi bundles of Java legacy code - Gunnar...
PDF
Oscon Java Testing on the Fast Lane
PDF
mjprof: Monadic approach for JVM profiling
PPTX
Invoke-CradleCrafter: Moar PowerShell obFUsk8tion & Detection (@('Tech','niqu...
PDF
From P0W3R to SH3LL
PDF
A Modest Introduction To Swift
PPTX
Thinking Outside The [Sand]Box
PDF
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
PDF
Rocket Fuelled Cucumbers
PDF
OCCIware
PDF
44CON 2013 - Browser bug hunting - Memoirs of a last man standing - Atte Kett...
PPTX
Workshop: PowerShell for Penetration Testers
Практики применения JRuby
Steelcon 2014 - Process Injection with Python
Memory Corruption: from sandbox to SMM
Solid And Sustainable Development in Scala
Ahead-Of-Time Compilation of Java Applications
Building a Unified Data Pipline in Spark / Apache Sparkを用いたBig Dataパイプラインの統一
Obfuscating The Empire
Everything can be a bundle - making OSGi bundles of Java legacy code - Gunnar...
Oscon Java Testing on the Fast Lane
mjprof: Monadic approach for JVM profiling
Invoke-CradleCrafter: Moar PowerShell obFUsk8tion & Detection (@('Tech','niqu...
From P0W3R to SH3LL
A Modest Introduction To Swift
Thinking Outside The [Sand]Box
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
Rocket Fuelled Cucumbers
OCCIware
44CON 2013 - Browser bug hunting - Memoirs of a last man standing - Atte Kett...
Workshop: PowerShell for Penetration Testers
Ad

Viewers also liked (6)

PDF
Dealing with JVM limitations in Apache Cassandra (Fosdem 2012)
PDF
Improvements to Flink & it's Applications in Alibaba Search
PPTX
Apache Flink at Strata San Jose 2016
PDF
Android IPC Mechanism
PPTX
Overview of Android binder IPC implementation
Dealing with JVM limitations in Apache Cassandra (Fosdem 2012)
Improvements to Flink & it's Applications in Alibaba Search
Apache Flink at Strata San Jose 2016
Android IPC Mechanism
Overview of Android binder IPC implementation
Ad

Similar to Beyond JVM - YOW! Brisbane 2013 (20)

PPTX
introduction to node.js
PPTX
How to implement a simple dalvik virtual machine
PDF
Nodejs - A quick tour (v6)
PDF
PDF
Server Side JavaScript - You ain't seen nothing yet
PDF
Burp Plugin Development for Java n00bs - 44CON 2012
PPTX
Lesson1 intro
PPTX
Lesson1 intro
PPTX
Introduction to java
PDF
Java goes wild, lesson 1
PDF
Java Programming Fundamentals: Complete Guide for Beginners
PPTX
Introduction_to_Java_Programming_2025.pptx
PDF
From native code gems to Java treasures with jextract
PDF
Understanding the Dalvik Virtual Machine
PDF
Building High Performance Android Applications in Java and C++
KEY
Charles nutter star techconf 2011 - jvm languages
PPTX
Un) fucking forensics
PDF
Nodejs - A-quick-tour-v3
PDF
Fast as C: How to Write Really Terrible Java
PPTX
Java - A broad introduction
introduction to node.js
How to implement a simple dalvik virtual machine
Nodejs - A quick tour (v6)
Server Side JavaScript - You ain't seen nothing yet
Burp Plugin Development for Java n00bs - 44CON 2012
Lesson1 intro
Lesson1 intro
Introduction to java
Java goes wild, lesson 1
Java Programming Fundamentals: Complete Guide for Beginners
Introduction_to_Java_Programming_2025.pptx
From native code gems to Java treasures with jextract
Understanding the Dalvik Virtual Machine
Building High Performance Android Applications in Java and C++
Charles nutter star techconf 2011 - jvm languages
Un) fucking forensics
Nodejs - A-quick-tour-v3
Fast as C: How to Write Really Terrible Java
Java - A broad introduction

More from Charles Nutter (20)

PDF
The Year of JRuby - RubyC 2018
PDF
Down the Rabbit Hole: An Adventure in JVM Wonderland
PDF
Ruby Performance - The Last Mile - RubyConf India 2016
PDF
JRuby 9000 - Optimizing Above the JVM
PDF
JRuby and Invokedynamic - Japan JUG 2015
PDF
JRuby 9000 - Taipei Ruby User's Group 2015
PDF
Open Source Software Needs You!
PDF
InvokeBinder: Fluent Programming for Method Handles
PDF
Over 9000: JRuby in 2015
PDF
Doing Open Source the Right Way
PDF
JRuby: The Hard Parts
PDF
Bringing Concurrency to Ruby - RubyConf India 2014
PDF
Down the Rabbit Hole
PDF
The Future of JRuby - Baruco 2013
PDF
High Performance Ruby - E4E Conference 2013
PDF
Invokedynamic in 45 Minutes
PDF
Invokedynamic: Tales from the Trenches
KEY
Why JRuby? - RubyConf 2012
KEY
Aloha RubyConf 2012 - JRuby
KEY
JavaOne 2012 - JVM JIT for Dummies
The Year of JRuby - RubyC 2018
Down the Rabbit Hole: An Adventure in JVM Wonderland
Ruby Performance - The Last Mile - RubyConf India 2016
JRuby 9000 - Optimizing Above the JVM
JRuby and Invokedynamic - Japan JUG 2015
JRuby 9000 - Taipei Ruby User's Group 2015
Open Source Software Needs You!
InvokeBinder: Fluent Programming for Method Handles
Over 9000: JRuby in 2015
Doing Open Source the Right Way
JRuby: The Hard Parts
Bringing Concurrency to Ruby - RubyConf India 2014
Down the Rabbit Hole
The Future of JRuby - Baruco 2013
High Performance Ruby - E4E Conference 2013
Invokedynamic in 45 Minutes
Invokedynamic: Tales from the Trenches
Why JRuby? - RubyConf 2012
Aloha RubyConf 2012 - JRuby
JavaOne 2012 - JVM JIT for Dummies

Recently uploaded (20)

PPTX
Big Data Technologies - Introduction.pptx
PDF
Approach and Philosophy of On baking technology
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Empathic Computing: Creating Shared Understanding
PDF
cuic standard and advanced reporting.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
A Presentation on Artificial Intelligence
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
Cloud computing and distributed systems.
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Big Data Technologies - Introduction.pptx
Approach and Philosophy of On baking technology
Dropbox Q2 2025 Financial Results & Investor Presentation
The Rise and Fall of 3GPP – Time for a Sabbatical?
Digital-Transformation-Roadmap-for-Companies.pptx
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Per capita expenditure prediction using model stacking based on satellite ima...
Mobile App Security Testing_ A Comprehensive Guide.pdf
MYSQL Presentation for SQL database connectivity
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Empathic Computing: Creating Shared Understanding
cuic standard and advanced reporting.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
A Presentation on Artificial Intelligence
Diabetes mellitus diagnosis method based random forest with bat algorithm
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Spectral efficient network and resource selection model in 5G networks
Cloud computing and distributed systems.
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...

Beyond JVM - YOW! Brisbane 2013