Warenkorb
Kostenloser Versand
Unsere Operationen sind klimaneutral

The Java? Virtual Machine Specification Tim Lindholm

The Java? Virtual Machine Specification von Tim Lindholm

The Java? Virtual Machine Specification Tim Lindholm


17.00
Zustand - Sehr Gut
Nur noch 1

Zusammenfassung

The Java Virtual Machine is the underlying technology responsible for Java's most distinctive features: cross-platform delivery, small compiled code and its security capabilities. This volume provides the complete specification for the VM and Java's class file format, and examples.

The Java? Virtual Machine Specification Zusammenfassung

The Java? Virtual Machine Specification Tim Lindholm

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. 0201432943B04062001

Über Tim Lindholm

Tim Lindholm, Distinguished Engineer in Java Software at Sun Microsystems, Inc., was an original member of the Java project at Sun. He was a key contributor to the Java programming language and remains the senior architect of the Java virtual machine and the Java 2 runtime environment. He is also the Technical Editor of The Java(TM) Series.

Frank Yellin, Staff Engineer in Embedded and Consumer at Sun Microsystems, Inc., was an original member of the Java project at Sun. He has spent a decade working on the runtime systems for interpreted and compiled languages. Previously he worked at Lucid, where he focused on multitasking, garbage collection, interrupts, and the compilation of Common Lisp.



0201432943AB04062001

Inhaltsverzeichnis



Preface.


1. Introduction.

A Bit of History.

The Java Virtual Machine.

Summary of Chapters.

Notation.



2. Java Programming Language Concepts.

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.



3. The Structure of the Java Virtual Machine.

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.



4. The class File Format.

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.



5. Loading, Linking, and Initializing.

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.



6. The Java Virtual Machine Instruction Set.

Assumptions: The Meaning of Must.

Reserved Opcodes.

Virtual Machine Errors.

Format of Instruction Descriptions.



7. Compiling for the Java Virtual Machine.

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.



8. Threads and Locks.

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.



9. Opcode Mnemonics by Opcode.


Appendix: Summary of Clarifications and Amendments.

Index. 0201432943T04062001

Zusätzliche Informationen

GOR003478055
9780201432947
0201432943
The Java? Virtual Machine Specification Tim Lindholm
Gebraucht - Sehr Gut
Broschiert
Pearson Education (US)
19990506
496
N/A
Die Abbildung des Buches dient nur Illustrationszwecken, die tatsächliche Bindung, das Cover und die Auflage können sich davon unterscheiden.
Dies ist ein gebrauchtes Buch. Es wurde schon einmal gelesen und weist von der früheren Nutzung Gebrauchsspuren auf. Wir gehen davon aus, dass es im Großen und Ganzen in einem sehr guten Zustand ist. Sollten Sie jedoch nicht vollständig zufrieden sein, setzen Sie sich bitte mit uns in Verbindung.