InfoQ

Topic/Tag specific view

JVM Language Summit Content on InfoQ


Latest featured content about JVM Language Summit

Language Parity: Closures and the JVM

Community
Java
Topics
Language Design

In this presentation from the JVM Languages Summit 2008, Neal Gafter discusses closures on the JVM. Topics covered include the JVM libraries, the challenges of running other languages on the JVM, language-specific wrapper/shim libraries, ways of making the JVM more language-friendly, whether lambda expressions are too hard, the history of closures, and forking the JVM to support closures.

Presentations about JVM Language Summit

Project Fortress: Run your whiteboard, in parallel, on the JVM

Community
Java
Topics
Research,
Programming

In this presentation from the JVM Languages Summit 2008, David Chase discusses Fortress, a Fortran-based highly parallel programming language. Topics covered include the origins of Fortress, mathematical syntax, the challenges of running on the JVM, parsing, work stealing, transactions, continuations, problems with blocking, the type system, type mapping, multiple dispatch and profiling.

JRuby: The Pain of Bringing an Off-Platform Dynamic Language to the JVM

Community
Java,
Ruby
Topics
Code Analysis,
JRuby

In this presentation from the JVM Languages Summit 2008, Charles Nutter discusses bringing JRuby to the JVM, why Ruby is hard to implement, JIT compilation, precompilation, core Ruby implementation, Java library method access, method call semantics, scopes, open classes, heap-based frames, library challenges, strings, regexps, I/O, green threads, POSIX features, C lib support and future plans.

VM Optimizations for Language Designers

Community
Java
Topics
Compilers

In this presentation from the JVM Languages Summit 2008, John Pampuch discusses the HotSpot compiler, the history of Java performance, HotSpot development philosophies and challenges, optimization, inlining, virtual methods, loop unrolling, constant folding, escape analysis, synchronization improvements, JVM library improvements, processor-specific optimizations, and tips for better performance.

Fast Bytecodes for Funny Languages

Community
Java
Topics
Code Analysis

In this presentation from the JVM Languages Summit 2008, Cliff Click discusses how to optimize generated bytecode for running on the JVM. Click analyzes and reports on Java, Scala, Clojure, JRuby, JPC and JavaScript/Rhino and points out several places where each of them could increase their performance such as elimination of FixNums, escape analysis and best practices for testing bytecode.

Clojure

Community
Java
Topics
Dynamic Languages

In this presentation from the JVM Languages Summit 2008, Rich Hickey discusses Clojure, which is an implementation of Lisp. Topics covered include Clojure features and syntax, example code, interoperation with Java, Clojure and functional programming, persistent data structures, concurrency semantics, references, transactions, software transactional memory, agents, implementation and pain points.

The Maxine VM

Community
Java
Topics
Compilers

In this presentation from the JVM Languages Summit 2008, Bernd Mathiske discusses the Maxine open source research VM, Java compatibility, swapping out major VM components, Maxine research areas, meta-circular VM design, assembler usage, how Objects are handled, the common Pointer/Object interface, code examples, optimizing compiler features, snippets, bytecode generation, JNI and JIT.

Running PHP on the JVM with P8

Community
Java
Topics
Web Frameworks,
Dynamic Languages

In this presentation from the JVM Languages Summit 2008, Robert Nicholson discusses P8, an implementation of PHP on the JVM. Topics covered include the reasons for bringing PHP to the JVM, an overview of PHP and P8, PHP characteristics, the JVM method length limit, how PHP functions are compiled, InvokeDynamic (JSR 292) and PHP Functions, PHP values and Unicode strings in PHP.