shopping cart
Call us:  800-878-7323 HELP
McAfee SECURE helps keep you safe from identity theft, credit card fraud, spyware, spam, viruses and online scams.
Powell's Q&A, Q&A | October 16, 2009

Gail Collins: IMG Powell's Q&A: Gail Collins



[My new book] starts in 1960 with a woman named Lois Rabinowitz, who was evicted from Manhattan traffic court for attempting to pay a parking ticket while wearing slacks. This was... Continue »
  1. $19.59 Sale Hardcover add to wish list

The Java Virtual Machine Specification (Java)

by Tim Lindholm

The Java Virtual Machine Specification (Java) Cover

ISBN13: 9780201432947
ISBN10: 0201432943
Condition: Standard
All Product Details

Only 1 left in stock at $24.50!

Synopses & Reviews

Publisher Comments:

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

Synopsis:

The nucleus of the Java programming language, the Java Virtual Machine is the technology responsible for Java's cross-platform delivery, the small size of its compiled code, and its security capabilities. Written by its designers and implementors, this book represents the complete and definitive specification for the Java Virtual Machine. It is an essential reference for compiler writers and Java Virtual Machine implementors. For all Java programmers, the book offers a unique and fascinating internal view of how Java really works. In this book, you will find comprehensive coverage of the Java Virtual Machine class file format and instruction set. In addition, directions for compiling for the Java Virtual Machine with numerous practical examples clarify how the Java Virtual Machine operates in practice. The book also demonstrates the Java Virtual Machine's powerful verification techniques. In all, the book provides sufficient detail to enable you to implement your own fully-compatible Java Virtual Machine.

About the Author

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

Table of Contents

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

Product Details

ISBN:
9780201432947
Subtitle:
tm Virtual Machine Specification
Author:
Lindholm, Tim
Author:
Yellin, Frank
Publisher:
Prentice Hall PTR
Location:
Reading, MA :
Subject:
Programming Languages - General
Subject:
Java (Computer program language)
Subject:
Programming Languages - Java
Subject:
Internet
Subject:
Virtual computer systems
Subject:
Java
Copyright:
Edition Number:
2
Edition Description:
Addison-Wesley
Series:
The Java Series
Binding:
Paperback
Grade Level:
Professional and scholarly
Language:
English
Illustrations:
Yes
Pages:
496
Dimensions:
853x815x103 194

Other books you might like

  1. $6.50 Used Trade Paper add to wish list
  2. $54.99 New Trade Paper add to wish list
  3. $20.00 Used Trade Paper add to wish list

    Java RMI

    William Grosso
  4. $21.75 Used Trade Paper add to wish list
  5. $3.20 Used Softcvr W/comp Media add to wish list
  6. $5.95 Used Trade Paper add to wish list

Related Aisles

  • back to top

Powell's City of Books is an independent bookstore in Portland, Oregon, that fills a whole city block with more than a million new, used, and out of print books. Shop those shelves — plus literally millions more books, DVDs, and eBooks — here at Powells.com.