Register your product to gain access to bonus material or receive a coupon.
The nucleus of the Java(TM) 2 platform, the Java(TM) virtual machine is the technology that enables the Java 2 platform to host applications on any computer or operating system without rewriting or recompiling. The Java virtual machine is also responsible for the compactness of applications targeting the Java 2 platform, and is the basis for its security capabilities.
This book was written by those directly responsible for the design and implementation of the Java virtual machine, and is the complete and definitive specification for the technology. It is an essential reference for writers of compilers for the Java programming language and implementors of the Java virtual machine. This second edition specifies the newest version of the Java virtual machine and provides a fascinating view into the inner workings of the Java 2 platform.
In this book you will find comprehensive coverage of the class file format, the hardware, operating system, and implementation-independent binary format for compiled code. The authors fully describe the instruction set of the Java virtual machine. You will find an entire chapter of examples that demonstrate how to compile code written in the Java programming language into the instruction set of the Java virtual machine. In addition, the book presents a discussion on the vital topic of Java virtual machine threads and their interaction with memory.
All in all, this comprehensive, detailed, and methodical presentation provides the information necessary to implement your own fully compatible Java virtual machine.
Preface.
1. Introduction.
A Bit of History.
The Java Virtual Machine.
Summary of Chapters.
Notation.
Unicode.
Identifiers.
Literals.
Types and Values.
Primitive Types and Values.
Operators on Integral Values.
Floating-Point Types, Value Sets, and Values.
Operators on Floating-Point Values.
Operators on boolean Values.
Reference Types, Objects, and Reference Values.
The Class Object.
The Class String.
Operators on Objects.
Variables.
Initial Values of Variables.
Variables Have Types, Objects Have Classes.
Conversions and Promotions.
Identity Conversions.
Widening Primitive Conversions.
Narrowing Primitive Conversions.
Widening Reference Conversions.
Narrowing Reference Conversions.
Value Set Conversion.
Assignment Conversion.
Method Invocation Conversion.
Casting Conversion.
Numeric Promotion.
Names and Packages.
Names.
Packages.
Members.
Package Members.
The Members of a Class Type.
The Members of an Interface Type.
The Members of an Array Type.
Qualified Names and Access Control.
Fully Qualified Names.
Classes.
Class Names.
Class Modifiers.
Superclasses and Subclasses.
The Class Members.
Fields.
Field Modifiers.
Initialization of Fields.
Methods.
Formal Parameters.
Method Signature.
Method Modifiers.
Static Initializers.
Constructors.
Constructor Modifiers.
Interfaces.
Interface Modifiers.
Superinterfaces.
Interface Members.
Interface (Constant) Fields.
Interface (Abstract) Methods.
Overriding, Inheritance, and Overloading in Interfaces.
Nested Classes and Interfaces.
Arrays.
Array Types.
Array Variables.
Array Creation.
Array Access.
Exceptions.
The Causes of Exceptions.
Handling an Exception.
The Exception Hierarchy.
The Classes Exception and RuntimeException.
Execution.
Virtual Machine Start-up.
Loading.
Linking: Verification, Preparation, and Resolution.
Initialization.
Detailed Initialization Procedure.
Creation of New Class Instances.
Finalization of Class Instances.
Unloading of Classes and Interfaces.
Virtual Machine Exit.
FP-strict Expressions.
Threads.
The class File Format.
Data Types.
Primitive Types and Values.
Integral Types and Values.
Floating-Point Types, Value Sets, and Values.
The returnAddress Type and Values.
The boolean Type.
Reference Types and Values.
Runtime Data Areas.
The pc Register.
Java Virtual Machine Stacks.
Heap.
Method Area.
Runtime Constant Pool.
Native Method Stacks.
Frames.
Local Variables.
Operand Stacks.
Dynamic Linking.
Normal Method Invocation Completion.
Abrupt Method Invocation Completion.
Additional Information.
Representation of Objects.
Floating-Point Arithmetic.
Java Virtual Machine Floating-Point Arithmetic and IEEE 754.
Floating-Point Modes.
Value Set Conversion.
Specially Named Initialization Methods.
Exceptions.
Instruction Set Summary.
Types and the Java Virtual Machine.
Load and Store Instructions.
Arithmetic Instructions.
Type Conversion Instructions.
Object Creation and Manipulation.
Operand Stack Management Instructions.
Control Transfer Instructions.
Method Invocation and Return Instructions.
Throwing Exceptions.
Implementing finally.
Synchronization.
Class Libraries.
Public Design, Private Implementation.
The ClassFile Structure.
The Internal Form of Fully Qualified Class and Interface Names.
Descriptors.
Grammar Notation.
Field Descriptors.
Method Descriptors.
The Constant Pool.
The CONSTANT_Class_info Structure.
The CONSTANT_Fieldref_info, CONSTANT_Methodref_info, and CONSTANT_InterfaceMethodref_info Structures.
The CONSTANT_String_info Structure.
The CONSTANT_Integer_info and CONSTANT_Float_info Structures.
The CONSTANT_Long_info and CONSTANT_Double_info Structures.
The CONSTANT_NameAndType_info Structure.
The CONSTANT_Utf8_info Structure.
Fields.
Methods.
Attributes.
Defining and Naming New Attributes.
The ConstantValue Attribute.
The Code Attribute.
The Exceptions Attribute.
The InnerClasses Attribute.
The Synthetic Attribute.
The SourceFile Attribute.
The LineNumberTable Attribute.
The LocalVariableTable Attribute.
The Deprecated Attribute.
Constraints on Java Virtual Machine Code.
Static Constraints.
Structural Constraints.
Verification of class Files.
The Verification Process.
The Bytecode Verifier.
Values of Types long and double.
Instance Initialization Methods and Newly Created Objects.
Exception Handlers.
Exceptions and finally.
Limitations of the Java Virtual Machine.
The Runtime Constant Pool.
Virtual Machine Start-up.
Creation and Loading.
Loading Using the Bootstrap Class Loader.
Loading Using a User-defined Class Loader.
Creating Array Classes.
Loading Constraints.
Deriving a Class from a class File Representation.
Linking.
Verification.
Preparation.
Resolution.
Access Control.
Initialization.
Binding Native Method Implementations.
Assumptions: The Meaning of “Must.”
Reserved Opcodes.
Virtual Machine Errors.
Format of Instruction Descriptions.
Format of Examples.
Use of Constants, Local Variables, and Control Constructs.
Arithmetic.
Accessing the Runtime Constant Pool.
More Control Examples.
Receiving Arguments.
Invoking Methods.
Working with Class Instances.
Arrays.
Compiling Switches.
Operations on the Operand Stack.
Throwing and Handling Exceptions.
Compiling finally.
Synchronization.
Compiling Nested Classes and Interfaces.
Terminology and Framework.
Execution Order and Consistency.
Rules About Variables.
Nonatomic Treatment of double and long Variables.
Rules About Locks.
Rules About the Interaction of Locks and Variables.
Rules for volatile Variables.
Prescient Store Operations.
Discussion.
Example: Possible Swap.
Example: Out-of-Order Writes.
Threads.
Locks and Synchronization.
Wait Sets and Notification.
Index. 0201432943T04062001
The Java(TM) virtual machine specification has been written to fully document the design of the Java virtual machine. It is essential for compiler writers who wish to target the Java virtual machine and for programmers who want to implement a compatible Java virtual machine. It is also a definitive source for anyone who wants to know exactly how the Java programming language is implemented.
The Java virtual machine is an abstract machine. References to the Java virtual machine throughout this specification refer to this abstract machine rather than to Sun's or any other specific implementation. This book serves as documentation for a concrete implementation of the Java virtual machine only as a blueprint documents a house. An implementation of the Java virtual machine (known as a runtime interpreter) must embody this specification, but is constrained by it only where absolutely necessary.
The Java virtual machine specified here will support the Java programming language specified in The Java(TM) Language Specification (Addison-Wesley, 1996). It is compatible with the Java platform implemented by Sun's JDK(TM) releases 1.0.2 and 1.1 and the Java(R) 2 platform implemented by Sun's Java(R) 2 SDK, Standard Edition, v1.2 (formerly known as JDK release 1.2).
We intend that this specification should sufficiently document the Java virtual machine to make possible compatible clean-room implementations. If you are considering constructing your own Java virtual machine implementation, feel free to contact us to obtain assistance to ensure the 100% compatibility of your implementation.
Send comments on this specification or questions about implementing the Java virtual machine to our electronic mail address: jvm@java.sun.com. To learn the latest about the Java 2 platform, or to download the latest Java 2 SDK release, visit our World Wide Web site at http://java.sun.com. For updated information about the Java Series, including errata for The Java(TM) Virtual Machine Specification, and previews of forthcoming books, visit http://java.sun.com/Series
The virtual machine that evolved into the Java virtual machine was originally designed by James Gosling in 1992 to support the Oak programming language. The evolution into its present form occurred through the direct and indirect efforts of many people and spanned Sun's Green project, FirstPerson, Inc., the LiveOak project, the Java Products Group, JavaSoft, and today, Sun's Java Software. The authors are grateful to the many contributors and supporters.
This book began as internal project documentation. Kathy Walrath edited that early draft, helping to give the world its first look at the internals of the Java programming language. It was then converted to HTML by Mary Campione and was made available on our Web site before being expanded into book form.
The creation of The Java(TM) Virtual Machine Specification owes much to the support of the Java Products Group led by General Manager Ruth Hennigar, to the efforts of series editor Lisa Friendly, and to editor Mike Hendrickson and his group at Addison-Wesley. The many criticisms and suggestions received from reviewers of early online drafts, as well as drafts of the printed book, improved its quality immensely. We owe special thanks to Richard Tuck for his careful review of the manuscript and to the authors of The Java(TM) Language Specification, Addison-Wesley, 1996, for allowing us to quote extensively from that book. Particular thanks to Bill Joy whose comments, reviews, and guidance have contributed greatly to the completeness and accuracy of this book.
Notes on the Second EditionThe second edition of The Java(TM) Virtual Machine Specification brings the specification of the Java virtual machine up to date with the Java(R) 2 platform, v1.2. It also includes many corrections and clarifications that update the presentation of the specification without changing the logical specification itself. We have attempted to correct typos and errata (hopefully without introducing new ones) and to add more detail to the specification where it was vague or ambiguous. In particular, we corrected a number of inconsistencies between the first edition of The Java(TM) Virtual Machine Specification and The Java(TM) Language Specification.
We thank the many readers who combed through the first edition of this book and brought problems to our attention. Several individuals and groups deserve special thanks for pointing out problems or contributing directly to the new material:
Carla Schroer and her teams of compatibility testers in Cupertino, California, and Novosibirsk, Russia (with special thanks to Leonid Arbouzov and Alexei Kaigorodov), painstakingly wrote compatibility tests for each testable assertion in the first edition. In the process they uncovered many places where the original specification was unclear or incomplete.