SlideShare a Scribd company logo
Java
vs
C/C++
Cliff Click
www.azulsystems.com/blogs
Java vs C/C++
●

"I declare a Flamewar!!!!"
●

Lots of noise & heat

●

Not many facts

●

Lots of obvious mistakes being made

●

Situation is more subtle than expected

●

This is my attempt to clarify the situation
C/C++ Beats Java
●

Very small footprint – under 300KB
●

●

Very deterministic or fast (re)boot times –
●

●

e.g. engine controllers, pacemakers

Very big problems: Fortran optimizations
●

●

e.g. Embedded controllers, cars, clocks

Array reshaping & tiling for cache

Value types - Complex, Point
●

e.g. Overhead costs of 1b objects

●

vs array-of-doubles
C/C++ Beats Java
●

Direct Machine Access
●

e.g. OS's (special ops, registers), device drivers
–

Hard to do in Java (i.e. JavaOS effort)

●
●

●

AAA Games / First Person Shooter Games
Maxine Java-in-Java might be a counter-example

Direct Code-Generation
●

gnu "asm"

●

Write bits to buffer & exec
–

●

'sort' inner loop key-compare

Interpreters
C++ Beats Java
●

Destructors vs finalizers
●

Destructors are reliable out-of-language cleanup

●

Finalizers will "eventually" run
–
–

●

But maybe after running out of e.g. file handles
So weird force-GC-cycle hooks to force cleanup

Destructors vs & try/finally
●

Destructors are reliable exit-scope action

●

try/finally requires adding explicit exit-scope-action
–
–

For each new enter-scope-action
Maintenance mess
Java Beats C/C++
●

Most Programs - profiling pays off
●
●

All JIT systems profile at least some

●

●

But nobody bothers for C/C++, too hard
More profiling added as systems mature

Very Large Programs >1MLOC
●

Large program tool chain is better

●

A lot more 1MLOC Java apps than C
Java Beats C/C++
●

GC is easier to get right than malloc/free
●
●

●

Faster time-to-market
Why so many variations on Regions, Arenas,
Resource Areas? Basically hand-rolled GC...

GC is efficient
●
●

●

Parallel, concurrent
Good locality, fragmentation

GC allows concurrent algorithms
●

Trivially track shared memory lifetimes

●

Fundamental change, can't "fake it"
Java Beats C/C++
●

Single CPU speed stalled
●

●

Bigger problem => parallel solution

Better multi-threading support
●

Real Memory Model - synchronized, volatile

●

Threads are built-in

●

Large multi-threaded library base
–

●

●

JDK Concurrent Collections

GC vs concurrent malloc/free

Tools for parallel coding, debugging
Libraries
●

Vast Java Library collection
●

●

Can COTS many many problems

Downside: too many 3rd party libraries
●
●

C Mentality: build before download

●

Too many layers of Java crap

●

●

Java Mentality: download from web, don't build

Nobody knows what's going on

Application plagued by failures
no one understands
Claims C-beats-Java
But I Dont Think So
●

Most modest sized programs
●

●

Fast enough is fast enough

16bit chars vs 8bit chars
●
●

●

Lots of noise here (and lots of optimizations)
Rarely makes a difference in practice

Raw small benchmark speed
●

Usually I don't care
–

●

"C gets more BogoMips so it's better!"

OR broken testing methodology
–

"C makes a better WebServer because printf is faster!"
Common Flaws
When Comparing
●

No Warmup
●
●

●

Only interesting for quick-reboot, e.g. Pacemakers
Most apps run for minutes to days

Basic timing errors
●
●

●

API reports in nanos
OS rounds to millis (or 10's of millis)

Caching Effects
●

CPU caches, OS-level, disk & network

●

DB cache, JIT/JVM level

vs
Common Flaws
When Comparing
●

Basic Broken Statistics
●

Run-once-and-report

●

No averages, std-devs

●

Throwing out "outliers"

●

Not accounting for "compile plan"
–
–

●

"Statistically rigorous Java performance evaluation"
"Producing wrong data without doing anything obviously
wrong!"

Flags, version-numbers, env-factors all matter
●

"java" not same as "java -client" or "java -server"

●

Some JDK versions have 30% faster XML parsing
Common Flaws
When Comparing
●

Varying Datasets or Constant-time workloads
●

●

Have seen cycles-per-work-unit vary by 10x

Claiming X but testing Y
●
●

SpecJBB: claims middleware test but is GC test

●

●

209_db: claims DB test but is shell-sort test
Lots more here

Not comparing same program
●

e.g. Debian language shootout
–

http://shootout.alioth.debian.org
Commonly Mentioned
Non-Issues
●

Stack Allocation "Does So" beat GC
●

●

Does Not. You got evidence?
I got evidence of non-issue...

Java has lots of casts
●

But they are basically free
–

●

Virtual & Interface calls are slow
●

●

load/compare/branch, roughly 1 clock

And basically never taken (inline-cache)

C# curious? I dunno, I don't track Microsoft
Java-vs-C Examples
●

Examples limited to what I can fit on slides

●

In-Real-Life never get apples-to-apples

●

Programs either very small

●

Or new re-implementation
●

●

Generally better written 2nd go-round

Or extremely bad (mis)use of language features
Example: String Hash
●

Java tied vs GCC -O2
int h=0;
for( int i=0; i<len; i++ )
h = 31*h+str[i];
return h;
Here I ran it on a new X86 for 100 million loops:
> a.out
100000000
100000000 hashes in 5.636 secs
> java str_hash 100000000
100000000 hashes in 5.745 secs

●

Key is loop unrolling
●

(i.e. JITs do all major compiler optimizations)
Sieve of Erathosthenes
●

Again tied

bool *sieve = new bool[max];
for (int i=0; i<max; i++) sieve[i] = true;
sieve[0] = sieve[1] = false;
int lim = (int)sqrt(max);
for (int n=2; n<lim; n++) {
if (sieve[n]) {
for (int j=2*n; j<max; j+=n)
sieve[j] = false;
}
}

I computed the primes up to 100million:
> a.out
100000000
100000000 primes in 1.568 secs
> java sieve 100000000
100000000 primes in 1.548 secs
Silly Example
●

Silly Example to Make a Point
int sum=0;
for (int i = 0; i < max; i++)
sum += x.val(); // virtual call
return sum;
Here I run it on the same X86:
> a.out
1000000000 0
1000000000 adds in 2.657 secs
> java vcall 1000000000 0
1000000000 adds in 0.0 secs

●

Zounds! Java is "infinitely" faster than C
??? what happened here ???
Silly Example Explained
●

Command-line flag picks 1 of 2 classes for 'x'

●

Type profiling at Runtime
●

Only 1 type loaded for 'x.val()' call
–

●

JIT makes the virtual call static, then inlines
–

●

"for( int i=0; i<max; i++ ) { sum += 7/*x.val*/; }"

Once inlined, JIT optimizes loop away
–

●

"int val() { return 7; }"

"sum += max*7;"

True virtual call at static compile-time
●

No chance for a static compiler to optimize
Why Silly Example Matters
●

Only 1 implementing class for interface

●

Common case for large Java programs
●

Single-implementor interfaces abound

●

Library calls with a zillion options
–

●

But only a single option choosen, etc

Can see 100+ classes collapsed this way
–

10K call-sites optimized, 1M calls/sec optimized

●

Major Optimization not possible without JIT'ing

●

Lots more cool JIT tricks to come...
Other Stuff That Matters
●

Other Things Also Matter
●

Existing infrastructure, libraries, time-to-market

●

Programmer training, mind set
–

Lots of Java programmers Out There

●
●

●

Legal issues – open source or man-rating
Reliability, stability, scalability

JVMs enabling new languages
●

Clojure, Scala, JRuby, Jython, many more

●

Much faster time-to-market
Summary
●

My Language is Faster!!!
●

Except when it's not

●

Ummm.... "fast" is not well-defined...
–

●

Other-things-matter more in many domains
●

●

MOOPS/sec? Faster than thy competitor?
Faster-to-market? Fits in my wrist watch?

If you got 500 X programmers, maybe should use X?

Each language is a clear winner
in some domains, neither going away soon
●

e.g. still room for trains in our auto-dominated world
Summary
●

Internet is a Great Amplifier
●

●

Of both the Good, the Bad AND the Ugly

Real issue: Need Sane Discourse
●

Lots of Screaming & Flames
–
–

●

People with strong opinions, different vested interests,
different experiences & goals
e.g. Do we even agree on what "faster" means?

Lots of Bad Science
–
–

Broken & missing statistical evidence
Misapplied testing, testing unrelated stuff
Summary
●

When the noise exceeds communication levels...
●
●

●

Back up, clarify, acknowlege each side has strengths
Chill out, think it through

Recognize a lack-of-evidence for what it is
●
●

●

yelling louder about what you do know doesn't help
Good testing helps (and bad testing hurts)

Realize "faster" has different meanings
–
–
–

Junior Engineer thinks "faster than the competition"
Manager thinks "faster to market"
Senior Engineer thinks "that brick wall is approaching fast!"
Summary

It Depends.

Cliff Click
http://www.azulsystems.com/blogs

More Related Content

What's hot (20)

PPTX
002. Introducere in type script
Dmitrii Stoian
 
PPTX
C# in depth
Arnon Axelrod
 
PDF
Solid C++ by Example
Olve Maudal
 
PDF
FregeDay: Design and Implementation of the language (Ingo Wechsung)
Dierk König
 
PPTX
basics of c++
gourav kottawar
 
PDF
C# / Java Language Comparison
Robert Bachmann
 
PPTX
Qcon2011 functions rockpresentation_scala
Michael Stal
 
PPT
C# Basics
Sunil OS
 
ODP
ooc - A hybrid language experiment
Amos Wenger
 
PPTX
Oop2011 actor presentation_stal
Michael Stal
 
PPT
Andy On Closures
melbournepatterns
 
PPTX
Overview of c language
shalini392
 
PDF
Boo Manifesto
hu hans
 
PPTX
Presentation on C++ programming
AditiTibile
 
PDF
Objective c runtime
Inferis
 
PPT
C++ polymorphism
FALLEE31188
 
PDF
What Makes Objective C Dynamic?
Kyle Oba
 
KEY
Runtime
Jorge Ortiz
 
PDF
Greach 2014 - Metaprogramming with groovy
Iván López Martín
 
002. Introducere in type script
Dmitrii Stoian
 
C# in depth
Arnon Axelrod
 
Solid C++ by Example
Olve Maudal
 
FregeDay: Design and Implementation of the language (Ingo Wechsung)
Dierk König
 
basics of c++
gourav kottawar
 
C# / Java Language Comparison
Robert Bachmann
 
Qcon2011 functions rockpresentation_scala
Michael Stal
 
C# Basics
Sunil OS
 
ooc - A hybrid language experiment
Amos Wenger
 
Oop2011 actor presentation_stal
Michael Stal
 
Andy On Closures
melbournepatterns
 
Overview of c language
shalini392
 
Boo Manifesto
hu hans
 
Presentation on C++ programming
AditiTibile
 
Objective c runtime
Inferis
 
C++ polymorphism
FALLEE31188
 
What Makes Objective C Dynamic?
Kyle Oba
 
Runtime
Jorge Ortiz
 
Greach 2014 - Metaprogramming with groovy
Iván López Martín
 

Viewers also liked (20)

PPTX
C++vs java
Pradeep wolf king
 
PPT
Difference between Java and c#
Sagar Pednekar
 
PPTX
Zulu Embedded Java Introduction
Azul Systems Inc.
 
PPT
Difference between C++ and Java
Ajmal Ak
 
PDF
Webinar: Zing Vision: Answering your toughest production Java performance que...
Azul Systems Inc.
 
PDF
Towards a Scalable Non-Blocking Coding Style
Azul Systems Inc.
 
PDF
Priming Java for Speed at Market Open
Azul Systems Inc.
 
PDF
ObjectLayout: Closing the (last?) inherent C vs. Java speed gap
Azul Systems Inc.
 
PDF
How NOT to Write a Microbenchmark
Azul Systems Inc.
 
PDF
Experiences with Debugging Data Races
Azul Systems Inc.
 
PDF
What's New in the JVM in Java 8?
Azul Systems Inc.
 
PPT
Speculative Locking: Breaking the Scale Barrier (JAOO 2005)
Azul Systems Inc.
 
PDF
The Java Evolution Mismatch - Why You Need a Better JVM
Azul Systems Inc.
 
PPTX
Start Fast and Stay Fast - Priming Java for Market Open with ReadyNow!
Azul Systems Inc.
 
PDF
Hoje sou um professor feliz: Python no ensino de programação
FATEC São José dos Campos
 
PDF
Lock-Free, Wait-Free Hash Table
Azul Systems Inc.
 
PDF
DotCMS Bootcamp: Enabling Java in Latency Sensitivie Environments
Azul Systems Inc.
 
PPTX
Api facebook
Felipe Costa
 
PDF
What's Inside a JVM?
Azul Systems Inc.
 
PDF
Pepe Legal Python e Babalu MongoDB, uma dupla dinâmica
FATEC São José dos Campos
 
C++vs java
Pradeep wolf king
 
Difference between Java and c#
Sagar Pednekar
 
Zulu Embedded Java Introduction
Azul Systems Inc.
 
Difference between C++ and Java
Ajmal Ak
 
Webinar: Zing Vision: Answering your toughest production Java performance que...
Azul Systems Inc.
 
Towards a Scalable Non-Blocking Coding Style
Azul Systems Inc.
 
Priming Java for Speed at Market Open
Azul Systems Inc.
 
ObjectLayout: Closing the (last?) inherent C vs. Java speed gap
Azul Systems Inc.
 
How NOT to Write a Microbenchmark
Azul Systems Inc.
 
Experiences with Debugging Data Races
Azul Systems Inc.
 
What's New in the JVM in Java 8?
Azul Systems Inc.
 
Speculative Locking: Breaking the Scale Barrier (JAOO 2005)
Azul Systems Inc.
 
The Java Evolution Mismatch - Why You Need a Better JVM
Azul Systems Inc.
 
Start Fast and Stay Fast - Priming Java for Market Open with ReadyNow!
Azul Systems Inc.
 
Hoje sou um professor feliz: Python no ensino de programação
FATEC São José dos Campos
 
Lock-Free, Wait-Free Hash Table
Azul Systems Inc.
 
DotCMS Bootcamp: Enabling Java in Latency Sensitivie Environments
Azul Systems Inc.
 
Api facebook
Felipe Costa
 
What's Inside a JVM?
Azul Systems Inc.
 
Pepe Legal Python e Babalu MongoDB, uma dupla dinâmica
FATEC São José dos Campos
 
Ad

Similar to Java vs. C/C++ (20)

PDF
Performance optimization techniques for Java code
Attila Balazs
 
PDF
JVM Performance Tuning
Jeremy Leisy
 
PDF
strangeloop 2012 apache cassandra anti patterns
Matthew Dennis
 
PDF
Gatling - Bordeaux JUG
slandelle
 
PDF
kranonit S06E01 Игорь Цинько: High load
Krivoy Rog IT Community
 
PDF
Not Your Fathers C - C Application Development In 2016
maiktoepfer
 
ODP
Volatile
Mark Veltzer
 
PDF
Benchmarks, performance, scalability, and capacity what's behind the numbers
Justin Dorfman
 
PDF
Benchmarks, performance, scalability, and capacity what s behind the numbers...
james tong
 
PDF
Number of Computer Languages = 3
Ram Sekhar
 
PPTX
Gopher in performance_tales_ms_go_cracow
MateuszSzczyrzyca
 
PDF
A first look into the Project Loom in Java
Lukas Steinbrecher
 
PDF
10 reasons to be excited about go
Dvir Volk
 
PDF
On component interface
Laurence Chen
 
PDF
How To Get The Most Out Of Your Hibernate, JBoss EAP 7 Application (Ståle Ped...
Red Hat Developers
 
PDF
Serverless? How (not) to develop, deploy and operate serverless applications.
gjdevos
 
PPTX
The JavaScript Event Loop - Concurrency in the Language of the Web
marukochan23
 
ODP
Effective cplusplus
Mark Veltzer
 
PDF
PyGrunn2013 High Performance Web Applications with TurboGears
Alessandro Molina
 
PDF
Validating Big Data Jobs—Stopping Failures Before Production on Apache Spark...
Databricks
 
Performance optimization techniques for Java code
Attila Balazs
 
JVM Performance Tuning
Jeremy Leisy
 
strangeloop 2012 apache cassandra anti patterns
Matthew Dennis
 
Gatling - Bordeaux JUG
slandelle
 
kranonit S06E01 Игорь Цинько: High load
Krivoy Rog IT Community
 
Not Your Fathers C - C Application Development In 2016
maiktoepfer
 
Volatile
Mark Veltzer
 
Benchmarks, performance, scalability, and capacity what's behind the numbers
Justin Dorfman
 
Benchmarks, performance, scalability, and capacity what s behind the numbers...
james tong
 
Number of Computer Languages = 3
Ram Sekhar
 
Gopher in performance_tales_ms_go_cracow
MateuszSzczyrzyca
 
A first look into the Project Loom in Java
Lukas Steinbrecher
 
10 reasons to be excited about go
Dvir Volk
 
On component interface
Laurence Chen
 
How To Get The Most Out Of Your Hibernate, JBoss EAP 7 Application (Ståle Ped...
Red Hat Developers
 
Serverless? How (not) to develop, deploy and operate serverless applications.
gjdevos
 
The JavaScript Event Loop - Concurrency in the Language of the Web
marukochan23
 
Effective cplusplus
Mark Veltzer
 
PyGrunn2013 High Performance Web Applications with TurboGears
Alessandro Molina
 
Validating Big Data Jobs—Stopping Failures Before Production on Apache Spark...
Databricks
 
Ad

More from Azul Systems Inc. (16)

PDF
Advancements ingc andc4overview_linkedin_oct2017
Azul Systems Inc.
 
PDF
Understanding GC, JavaOne 2017
Azul Systems Inc.
 
PDF
Azul Systems open source guide
Azul Systems Inc.
 
PDF
Intelligent Trading Summit NY 2014: Understanding Latency: Key Lessons and Tools
Azul Systems Inc.
 
PDF
Understanding Java Garbage Collection
Azul Systems Inc.
 
PDF
The evolution of OpenJDK: From Java's beginnings to 2014
Azul Systems Inc.
 
PDF
Push Technology's latest data distribution benchmark with Solarflare and Zing
Azul Systems Inc.
 
PDF
The Art of Java Benchmarking
Azul Systems Inc.
 
PDF
Azul Zulu on Azure Overview -- OpenTech CEE Workshop, Warsaw, Poland
Azul Systems Inc.
 
PDF
Understanding Application Hiccups - and What You Can Do About Them
Azul Systems Inc.
 
PDF
JVM Memory Management Details
Azul Systems Inc.
 
PDF
JVM Mechanics: A Peek Under the Hood
Azul Systems Inc.
 
PDF
Enterprise Search Summit - Speeding Up Search
Azul Systems Inc.
 
PDF
Understanding Java Garbage Collection - And What You Can Do About It
Azul Systems Inc.
 
PDF
Enabling Java in Latency-Sensitive Applications
Azul Systems Inc.
 
PDF
Java at Scale, Dallas JUG, October 2013
Azul Systems Inc.
 
Advancements ingc andc4overview_linkedin_oct2017
Azul Systems Inc.
 
Understanding GC, JavaOne 2017
Azul Systems Inc.
 
Azul Systems open source guide
Azul Systems Inc.
 
Intelligent Trading Summit NY 2014: Understanding Latency: Key Lessons and Tools
Azul Systems Inc.
 
Understanding Java Garbage Collection
Azul Systems Inc.
 
The evolution of OpenJDK: From Java's beginnings to 2014
Azul Systems Inc.
 
Push Technology's latest data distribution benchmark with Solarflare and Zing
Azul Systems Inc.
 
The Art of Java Benchmarking
Azul Systems Inc.
 
Azul Zulu on Azure Overview -- OpenTech CEE Workshop, Warsaw, Poland
Azul Systems Inc.
 
Understanding Application Hiccups - and What You Can Do About Them
Azul Systems Inc.
 
JVM Memory Management Details
Azul Systems Inc.
 
JVM Mechanics: A Peek Under the Hood
Azul Systems Inc.
 
Enterprise Search Summit - Speeding Up Search
Azul Systems Inc.
 
Understanding Java Garbage Collection - And What You Can Do About It
Azul Systems Inc.
 
Enabling Java in Latency-Sensitive Applications
Azul Systems Inc.
 
Java at Scale, Dallas JUG, October 2013
Azul Systems Inc.
 

Recently uploaded (20)

PDF
CIFDAQ Weekly Market Wrap for 11th July 2025
CIFDAQ
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PPTX
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PDF
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
PDF
Python basic programing language for automation
DanialHabibi2
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PDF
Complete JavaScript Notes: From Basics to Advanced Concepts.pdf
haydendavispro
 
PDF
SWEBOK Guide and Software Services Engineering Education
Hironori Washizaki
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
CIFDAQ Weekly Market Wrap for 11th July 2025
CIFDAQ
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
AUTOMATION AND ROBOTICS IN PHARMA INDUSTRY.pptx
sameeraaabegumm
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
Python basic programing language for automation
DanialHabibi2
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
Complete JavaScript Notes: From Basics to Advanced Concepts.pdf
haydendavispro
 
SWEBOK Guide and Software Services Engineering Education
Hironori Washizaki
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 

Java vs. C/C++

  • 2. Java vs C/C++ ● "I declare a Flamewar!!!!" ● Lots of noise & heat ● Not many facts ● Lots of obvious mistakes being made ● Situation is more subtle than expected ● This is my attempt to clarify the situation
  • 3. C/C++ Beats Java ● Very small footprint – under 300KB ● ● Very deterministic or fast (re)boot times – ● ● e.g. engine controllers, pacemakers Very big problems: Fortran optimizations ● ● e.g. Embedded controllers, cars, clocks Array reshaping & tiling for cache Value types - Complex, Point ● e.g. Overhead costs of 1b objects ● vs array-of-doubles
  • 4. C/C++ Beats Java ● Direct Machine Access ● e.g. OS's (special ops, registers), device drivers – Hard to do in Java (i.e. JavaOS effort) ● ● ● AAA Games / First Person Shooter Games Maxine Java-in-Java might be a counter-example Direct Code-Generation ● gnu "asm" ● Write bits to buffer & exec – ● 'sort' inner loop key-compare Interpreters
  • 5. C++ Beats Java ● Destructors vs finalizers ● Destructors are reliable out-of-language cleanup ● Finalizers will "eventually" run – – ● But maybe after running out of e.g. file handles So weird force-GC-cycle hooks to force cleanup Destructors vs & try/finally ● Destructors are reliable exit-scope action ● try/finally requires adding explicit exit-scope-action – – For each new enter-scope-action Maintenance mess
  • 6. Java Beats C/C++ ● Most Programs - profiling pays off ● ● All JIT systems profile at least some ● ● But nobody bothers for C/C++, too hard More profiling added as systems mature Very Large Programs >1MLOC ● Large program tool chain is better ● A lot more 1MLOC Java apps than C
  • 7. Java Beats C/C++ ● GC is easier to get right than malloc/free ● ● ● Faster time-to-market Why so many variations on Regions, Arenas, Resource Areas? Basically hand-rolled GC... GC is efficient ● ● ● Parallel, concurrent Good locality, fragmentation GC allows concurrent algorithms ● Trivially track shared memory lifetimes ● Fundamental change, can't "fake it"
  • 8. Java Beats C/C++ ● Single CPU speed stalled ● ● Bigger problem => parallel solution Better multi-threading support ● Real Memory Model - synchronized, volatile ● Threads are built-in ● Large multi-threaded library base – ● ● JDK Concurrent Collections GC vs concurrent malloc/free Tools for parallel coding, debugging
  • 9. Libraries ● Vast Java Library collection ● ● Can COTS many many problems Downside: too many 3rd party libraries ● ● C Mentality: build before download ● Too many layers of Java crap ● ● Java Mentality: download from web, don't build Nobody knows what's going on Application plagued by failures no one understands
  • 10. Claims C-beats-Java But I Dont Think So ● Most modest sized programs ● ● Fast enough is fast enough 16bit chars vs 8bit chars ● ● ● Lots of noise here (and lots of optimizations) Rarely makes a difference in practice Raw small benchmark speed ● Usually I don't care – ● "C gets more BogoMips so it's better!" OR broken testing methodology – "C makes a better WebServer because printf is faster!"
  • 11. Common Flaws When Comparing ● No Warmup ● ● ● Only interesting for quick-reboot, e.g. Pacemakers Most apps run for minutes to days Basic timing errors ● ● ● API reports in nanos OS rounds to millis (or 10's of millis) Caching Effects ● CPU caches, OS-level, disk & network ● DB cache, JIT/JVM level vs
  • 12. Common Flaws When Comparing ● Basic Broken Statistics ● Run-once-and-report ● No averages, std-devs ● Throwing out "outliers" ● Not accounting for "compile plan" – – ● "Statistically rigorous Java performance evaluation" "Producing wrong data without doing anything obviously wrong!" Flags, version-numbers, env-factors all matter ● "java" not same as "java -client" or "java -server" ● Some JDK versions have 30% faster XML parsing
  • 13. Common Flaws When Comparing ● Varying Datasets or Constant-time workloads ● ● Have seen cycles-per-work-unit vary by 10x Claiming X but testing Y ● ● SpecJBB: claims middleware test but is GC test ● ● 209_db: claims DB test but is shell-sort test Lots more here Not comparing same program ● e.g. Debian language shootout – http://shootout.alioth.debian.org
  • 14. Commonly Mentioned Non-Issues ● Stack Allocation "Does So" beat GC ● ● Does Not. You got evidence? I got evidence of non-issue... Java has lots of casts ● But they are basically free – ● Virtual & Interface calls are slow ● ● load/compare/branch, roughly 1 clock And basically never taken (inline-cache) C# curious? I dunno, I don't track Microsoft
  • 15. Java-vs-C Examples ● Examples limited to what I can fit on slides ● In-Real-Life never get apples-to-apples ● Programs either very small ● Or new re-implementation ● ● Generally better written 2nd go-round Or extremely bad (mis)use of language features
  • 16. Example: String Hash ● Java tied vs GCC -O2 int h=0; for( int i=0; i<len; i++ ) h = 31*h+str[i]; return h; Here I ran it on a new X86 for 100 million loops: > a.out 100000000 100000000 hashes in 5.636 secs > java str_hash 100000000 100000000 hashes in 5.745 secs ● Key is loop unrolling ● (i.e. JITs do all major compiler optimizations)
  • 17. Sieve of Erathosthenes ● Again tied bool *sieve = new bool[max]; for (int i=0; i<max; i++) sieve[i] = true; sieve[0] = sieve[1] = false; int lim = (int)sqrt(max); for (int n=2; n<lim; n++) { if (sieve[n]) { for (int j=2*n; j<max; j+=n) sieve[j] = false; } } I computed the primes up to 100million: > a.out 100000000 100000000 primes in 1.568 secs > java sieve 100000000 100000000 primes in 1.548 secs
  • 18. Silly Example ● Silly Example to Make a Point int sum=0; for (int i = 0; i < max; i++) sum += x.val(); // virtual call return sum; Here I run it on the same X86: > a.out 1000000000 0 1000000000 adds in 2.657 secs > java vcall 1000000000 0 1000000000 adds in 0.0 secs ● Zounds! Java is "infinitely" faster than C ??? what happened here ???
  • 19. Silly Example Explained ● Command-line flag picks 1 of 2 classes for 'x' ● Type profiling at Runtime ● Only 1 type loaded for 'x.val()' call – ● JIT makes the virtual call static, then inlines – ● "for( int i=0; i<max; i++ ) { sum += 7/*x.val*/; }" Once inlined, JIT optimizes loop away – ● "int val() { return 7; }" "sum += max*7;" True virtual call at static compile-time ● No chance for a static compiler to optimize
  • 20. Why Silly Example Matters ● Only 1 implementing class for interface ● Common case for large Java programs ● Single-implementor interfaces abound ● Library calls with a zillion options – ● But only a single option choosen, etc Can see 100+ classes collapsed this way – 10K call-sites optimized, 1M calls/sec optimized ● Major Optimization not possible without JIT'ing ● Lots more cool JIT tricks to come...
  • 21. Other Stuff That Matters ● Other Things Also Matter ● Existing infrastructure, libraries, time-to-market ● Programmer training, mind set – Lots of Java programmers Out There ● ● ● Legal issues – open source or man-rating Reliability, stability, scalability JVMs enabling new languages ● Clojure, Scala, JRuby, Jython, many more ● Much faster time-to-market
  • 22. Summary ● My Language is Faster!!! ● Except when it's not ● Ummm.... "fast" is not well-defined... – ● Other-things-matter more in many domains ● ● MOOPS/sec? Faster than thy competitor? Faster-to-market? Fits in my wrist watch? If you got 500 X programmers, maybe should use X? Each language is a clear winner in some domains, neither going away soon ● e.g. still room for trains in our auto-dominated world
  • 23. Summary ● Internet is a Great Amplifier ● ● Of both the Good, the Bad AND the Ugly Real issue: Need Sane Discourse ● Lots of Screaming & Flames – – ● People with strong opinions, different vested interests, different experiences & goals e.g. Do we even agree on what "faster" means? Lots of Bad Science – – Broken & missing statistical evidence Misapplied testing, testing unrelated stuff
  • 24. Summary ● When the noise exceeds communication levels... ● ● ● Back up, clarify, acknowlege each side has strengths Chill out, think it through Recognize a lack-of-evidence for what it is ● ● ● yelling louder about what you do know doesn't help Good testing helps (and bad testing hurts) Realize "faster" has different meanings – – – Junior Engineer thinks "faster than the competition" Manager thinks "faster to market" Senior Engineer thinks "that brick wall is approaching fast!"