SlideShare a Scribd company logo
1 of 88
Download to read offline
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?
Startup Time
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 speciļ¬c 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/ļ¬‚atland/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
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
Justiļ¬cations
ā€¢ 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
libfļ¬
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-fļ¬
jfļ¬
libfļ¬

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-fļ¬
ā€¢ User-oriented API	

ā€¢ Roughly equivalent to what JNA gives you	

ā€¢ Functions, structs, callbacks, memory	

ā€¢ https://github.com/jnr/jnr-fļ¬
jnr-fļ¬
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-deļ¬nable bytecode	

ā€¢ Full freedom to deļ¬ne VM behavior	

ā€¢ Fast method pointers + adapters	

ā€¢ Optimizable like normal Java code	

ā€¢ Avoid future modiļ¬cations
A User-deļ¬nable
Bytecode
You decide how the JVM implements it

+
Method Pointers
and Adapters
Faster than reļ¬‚ection, with user-deļ¬ned	

argument, ļ¬‚ow, 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. Conļ¬rm object is of correct type	

2. Conļ¬rm arguments are of correct type	

3. Look up method on Java class	

invokestatic
4. Cache method	

5. Invoke method

invokestatic!
1. Conļ¬rm arguments are of correct type	

2. Look up method on Java class	

3. Cache method	

4. Invoke method

invokevirtual
invokeinterface!
1. Conļ¬rm objectā€™s type implements interface	

2. Conļ¬rm arguments are of correct type	

3. Look up method on Java class	

invokeinterface
4. Cache method	

5. Invoke method

invokespecial!
1. Conļ¬rm object is of correct type	

2. Conļ¬rm arguments are of correct type	

3. Conļ¬rm 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 Beneļ¬t?
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 ļ¬rst 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
Trufļ¬‚e
ā€¢ Language framework built on Graal	

ā€¢ Designed to fulļ¬ll the dream	

ā€¢ Implement interpreter	

ā€¢ Trufļ¬‚e feeds that to backend	

ā€¢ No compiler expertise needed	


ā€¢ https://wiki.openjdk.java.net/display/Graal/Trufļ¬‚e+FAQ+and+Guidelines
JVM
Language

Trufļ¬‚e	

AST
All we need

Graal
Intermediate
Representation

Graal
Optimizer

Native
Code
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

What's hot

Everything can be a bundle - making OSGi bundles of Java legacy code - Gunnar...
Everything can be a bundle - making OSGi bundles of Java legacy code - Gunnar...Everything can be a bundle - making OSGi bundles of Java legacy code - Gunnar...
Everything can be a bundle - making OSGi bundles of Java legacy code - Gunnar...
mfrancis
Ā 
A Modest Introduction To Swift
A Modest Introduction To SwiftA Modest Introduction To Swift
A Modest Introduction To Swift
John Anderson
Ā 

What's hot (20)

ŠŸŃ€Š°ŠŗтŠøŠŗŠø ŠæрŠøŠ¼ŠµŠ½ŠµŠ½Šøя JRuby
ŠŸŃ€Š°ŠŗтŠøŠŗŠø ŠæрŠøŠ¼ŠµŠ½ŠµŠ½Šøя JRubyŠŸŃ€Š°ŠŗтŠøŠŗŠø ŠæрŠøŠ¼ŠµŠ½ŠµŠ½Šøя JRuby
ŠŸŃ€Š°ŠŗтŠøŠŗŠø ŠæрŠøŠ¼ŠµŠ½ŠµŠ½Šøя JRuby
Ā 
Steelcon 2014 - Process Injection with Python
Steelcon 2014 - Process Injection with PythonSteelcon 2014 - Process Injection with Python
Steelcon 2014 - Process Injection with Python
Ā 
Memory Corruption: from sandbox to SMM
Memory Corruption: from sandbox to SMMMemory Corruption: from sandbox to SMM
Memory Corruption: from sandbox to SMM
Ā 
Packers
PackersPackers
Packers
Ā 
Solid And Sustainable Development in Scala
Solid And Sustainable Development in ScalaSolid And Sustainable Development in Scala
Solid And Sustainable Development in Scala
Ā 
Ahead-Of-Time Compilation of Java Applications
Ahead-Of-Time Compilation of Java ApplicationsAhead-Of-Time Compilation of Java Applications
Ahead-Of-Time Compilation of Java Applications
Ā 
Building a Unified Data Pipline in Spark / Apache Spark悒ē”Ø恄恟Big Dataćƒ‘ć‚¤ćƒ—ćƒ©ć‚¤ćƒ³ć®ēµ±äø€
Building a Unified Data Pipline in Spark / Apache Spark悒ē”Ø恄恟Big Dataćƒ‘ć‚¤ćƒ—ćƒ©ć‚¤ćƒ³ć®ēµ±äø€Building a Unified Data Pipline in Spark / Apache Spark悒ē”Ø恄恟Big Dataćƒ‘ć‚¤ćƒ—ćƒ©ć‚¤ćƒ³ć®ēµ±äø€
Building a Unified Data Pipline in Spark / Apache Spark悒ē”Ø恄恟Big Dataćƒ‘ć‚¤ćƒ—ćƒ©ć‚¤ćƒ³ć®ēµ±äø€
Ā 
Obfuscating The Empire
Obfuscating The EmpireObfuscating The Empire
Obfuscating The Empire
Ā 
Everything can be a bundle - making OSGi bundles of Java legacy code - Gunnar...
Everything can be a bundle - making OSGi bundles of Java legacy code - Gunnar...Everything can be a bundle - making OSGi bundles of Java legacy code - Gunnar...
Everything can be a bundle - making OSGi bundles of Java legacy code - Gunnar...
Ā 
Oscon Java Testing on the Fast Lane
Oscon Java Testing on the Fast LaneOscon Java Testing on the Fast Lane
Oscon Java Testing on the Fast Lane
Ā 
mjprof: Monadic approach for JVM profiling
mjprof: Monadic approach for JVM profilingmjprof: Monadic approach for JVM profiling
mjprof: Monadic approach for JVM profiling
Ā 
Invoke-CradleCrafter: Moar PowerShell obFUsk8tion & Detection (@('Tech','niqu...
Invoke-CradleCrafter: Moar PowerShell obFUsk8tion & Detection (@('Tech','niqu...Invoke-CradleCrafter: Moar PowerShell obFUsk8tion & Detection (@('Tech','niqu...
Invoke-CradleCrafter: Moar PowerShell obFUsk8tion & Detection (@('Tech','niqu...
Ā 
From P0W3R to SH3LL
From P0W3R to SH3LLFrom P0W3R to SH3LL
From P0W3R to SH3LL
Ā 
A Modest Introduction To Swift
A Modest Introduction To SwiftA Modest Introduction To Swift
A Modest Introduction To Swift
Ā 
Thinking Outside The [Sand]Box
Thinking Outside The [Sand]BoxThinking Outside The [Sand]Box
Thinking Outside The [Sand]Box
Ā 
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
Ā 
Rocket Fuelled Cucumbers
Rocket Fuelled CucumbersRocket Fuelled Cucumbers
Rocket Fuelled Cucumbers
Ā 
OCCIware
OCCIwareOCCIware
OCCIware
Ā 
44CON 2013 - Browser bug hunting - Memoirs of a last man standing - Atte Kett...
44CON 2013 - Browser bug hunting - Memoirs of a last man standing - Atte Kett...44CON 2013 - Browser bug hunting - Memoirs of a last man standing - Atte Kett...
44CON 2013 - Browser bug hunting - Memoirs of a last man standing - Atte Kett...
Ā 
Workshop: PowerShell for Penetration Testers
Workshop: PowerShell for Penetration TestersWorkshop: PowerShell for Penetration Testers
Workshop: PowerShell for Penetration Testers
Ā 

Viewers also liked (6)

Dealing with JVM limitations in Apache Cassandra (Fosdem 2012)
Dealing with JVM limitations in Apache Cassandra (Fosdem 2012)Dealing with JVM limitations in Apache Cassandra (Fosdem 2012)
Dealing with JVM limitations in Apache Cassandra (Fosdem 2012)
Ā 
Improvements to Flink & it's Applications in Alibaba Search
Improvements to Flink & it's Applications in Alibaba SearchImprovements to Flink & it's Applications in Alibaba Search
Improvements to Flink & it's Applications in Alibaba Search
Ā 
Apache Flink at Strata San Jose 2016
Apache Flink at Strata San Jose 2016Apache Flink at Strata San Jose 2016
Apache Flink at Strata San Jose 2016
Ā 
Android IPC Mechanism
Android IPC MechanismAndroid IPC Mechanism
Android IPC Mechanism
Ā 
JNA
JNAJNA
JNA
Ā 
Overview of Android binder IPC implementation
Overview of Android binder IPC implementationOverview of Android binder IPC implementation
Overview of Android binder IPC implementation
Ā 

Similar to Beyond JVM - YOW! Brisbane 2013

Server Side JavaScript - You ain't seen nothing yet
Server Side JavaScript - You ain't seen nothing yetServer Side JavaScript - You ain't seen nothing yet
Server Side JavaScript - You ain't seen nothing yet
Tom Croucher
Ā 
Lesson1 intro
Lesson1 introLesson1 intro
Lesson1 intro
attiqrocket
Ā 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
attiqrocket
Ā 
Lesson1 intro
Lesson1 introLesson1 intro
Lesson1 intro
attiqrocket
Ā 
Charles nutter star techconf 2011 - jvm languages
Charles nutter   star techconf 2011 - jvm languagesCharles nutter   star techconf 2011 - jvm languages
Charles nutter star techconf 2011 - jvm languages
StarTech Conference
Ā 
Native code in Android applications
Native code in Android applicationsNative code in Android applications
Native code in Android applications
Dmitry Matyukhin
Ā 

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

introduction to node.js
introduction to node.jsintroduction to node.js
introduction to node.js
Ā 
How to implement a simple dalvik virtual machine
How to implement a simple dalvik virtual machineHow to implement a simple dalvik virtual machine
How to implement a simple dalvik virtual machine
Ā 
Nodejs - A quick tour (v6)
Nodejs - A quick tour (v6)Nodejs - A quick tour (v6)
Nodejs - A quick tour (v6)
Ā 
Java platform
Java platformJava platform
Java platform
Ā 
Server Side JavaScript - You ain't seen nothing yet
Server Side JavaScript - You ain't seen nothing yetServer Side JavaScript - You ain't seen nothing yet
Server Side JavaScript - You ain't seen nothing yet
Ā 
Burp Plugin Development for Java n00bs - 44CON 2012
Burp Plugin Development for Java n00bs - 44CON 2012Burp Plugin Development for Java n00bs - 44CON 2012
Burp Plugin Development for Java n00bs - 44CON 2012
Ā 
Lesson1 intro
Lesson1 introLesson1 intro
Lesson1 intro
Ā 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
Ā 
Lesson1 intro
Lesson1 introLesson1 intro
Lesson1 intro
Ā 
Java goes wild, lesson 1
Java goes wild, lesson 1Java goes wild, lesson 1
Java goes wild, lesson 1
Ā 
Understanding the Dalvik Virtual Machine
Understanding the Dalvik Virtual MachineUnderstanding the Dalvik Virtual Machine
Understanding the Dalvik Virtual Machine
Ā 
Building High Performance Android Applications in Java and C++
Building High Performance Android Applications in Java and C++Building High Performance Android Applications in Java and C++
Building High Performance Android Applications in Java and C++
Ā 
Charles nutter star techconf 2011 - jvm languages
Charles nutter   star techconf 2011 - jvm languagesCharles nutter   star techconf 2011 - jvm languages
Charles nutter star techconf 2011 - jvm languages
Ā 
Un) fucking forensics
Un) fucking forensicsUn) fucking forensics
Un) fucking forensics
Ā 
Nodejs - A-quick-tour-v3
Nodejs - A-quick-tour-v3Nodejs - A-quick-tour-v3
Nodejs - A-quick-tour-v3
Ā 
Fast as C: How to Write Really Terrible Java
Fast as C: How to Write Really Terrible JavaFast as C: How to Write Really Terrible Java
Fast as C: How to Write Really Terrible Java
Ā 
Java - A broad introduction
Java - A broad introductionJava - A broad introduction
Java - A broad introduction
Ā 
Native code in Android applications
Native code in Android applicationsNative code in Android applications
Native code in Android applications
Ā 
DevoxxUK: Is your profiler speaking the same language as you?
DevoxxUK: Is your profiler speaking the same language as you?DevoxxUK: Is your profiler speaking the same language as you?
DevoxxUK: Is your profiler speaking the same language as you?
Ā 
Devoxx PL: Is your profiler speaking the same language as you?
Devoxx PL: Is your profiler speaking the same language as you?Devoxx PL: Is your profiler speaking the same language as you?
Devoxx PL: Is your profiler speaking the same language as you?
Ā 

More from Charles Nutter

JavaOne 2012 - JVM JIT for Dummies
JavaOne 2012 - JVM JIT for DummiesJavaOne 2012 - JVM JIT for Dummies
JavaOne 2012 - JVM JIT for Dummies
Charles Nutter
Ā 

More from Charles Nutter (20)

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

Recently uploaded

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
Ā 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
Ā 

Recently uploaded (20)

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
Ā 
šŸ¬ The future of MySQL is Postgres šŸ˜
šŸ¬  The future of MySQL is Postgres   šŸ˜šŸ¬  The future of MySQL is Postgres   šŸ˜
šŸ¬ The future of MySQL is Postgres šŸ˜
Ā 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
Ā 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
Ā 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
Ā 
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
Ā 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
Ā 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
Ā 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Ā 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
Ā 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Ā 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Ā 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Ā 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Ā 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
Ā 
Scaling API-first ā€“ The story of a global engineering organization
Scaling API-first ā€“ The story of a global engineering organizationScaling API-first ā€“ The story of a global engineering organization
Scaling API-first ā€“ The story of a global engineering organization
Ā 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
Ā 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
Ā 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Ā 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
Ā 

Beyond JVM - YOW! Brisbane 2013