JVM Tutorials - Herong's Tutorial Examples - v5.12, by Dr. Herong Yang
Micro Benchmark Tests on "int" Operations
This chapter provides tutorial notes and example codes on micro benchmark tests on 'int' data type operations. Topics include empty loop, assignment loop, shift operation, add operation, multiplication operation and division operation.
These sections are omitted from this Web preview version. To view the full content, see information on how to obtain the full version this book.
Revised BenchmarkRunner.java
Hardware, OS and JVM Configurations
"int" Empty Loop Performance: 8 Nanoseconds / Step
"int" Assignment Only: 10 Nanoseconds per Step
"int" Shift and Assignment: 13 Nanoseconds per Step
"int" Add and Assignment: 12 Nanoseconds per Step
"int" Multiply and Assignment: 12 Nanoseconds per Step
"int" Division and Assignment: 12 Nanoseconds per Step
Comparison of Int Loops between Windows 7 and XP
Takeaways:
Table of Contents
JVM (Java Virtual Machine) Specification
Java HotSpot VM - JVM by Oracle/Sun
java.lang.Runtime Class - The JVM Instance
java.lang.System Class - The Operating System
ClassLoader Class - Class Loaders
Class Class - Class Reflections
JVM Stack, Frame and Stack Overflow
Thread Testing Program and Result
CPU Impact of Multi-Thread Applications
I/O Impact of Multi-Thread Applications
Micro Benchmark Runner and JVM Options
►Micro Benchmark Tests on "int" Operations
Micro Benchmark Tests on "long" Operations
Micro Benchmark Tests in JIT Compilation Mode
Micro Benchmark Tests on "float" and "double" Operations