Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Java 11 and 12 ??? New Features

You're reading from   Java 11 and 12 ??? New Features Learn about Project Amber and the latest developments in the Java language and platform

Arrow left icon
Product type Paperback
Published in Mar 2019
Publisher Packt
ISBN-13 9781789133271
Length 242 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Mala Gupta Mala Gupta
Author Profile Icon Mala Gupta
Mala Gupta
Arrow right icon
View More author details
Toc

Table of Contents (23) Chapters Close

Preface 1. Section 1: JDK 10 FREE CHAPTER
2. Type Inference 3. AppCDS 4. Garbage Collector Optimizations 5. Miscellaneous Improvements in JDK 10 6. Section 2: JDK 11
7. Local Variable Syntax for Lambda Parameters 8. Epsilon GC 9. The HTTP Client API 10. ZGC 11. Flight Recorder and Mission Control 12. Miscellaneous Improvements in JDK 11 13. Section 3: JDK 12
14. Switch Expressions 15. Miscellaneous Improvements in JDK 12 16. Section 4: Project Amber
17. Enhanced Enums in Project Amber 18. Data Classes and Their Usage 19. Raw String Literals 20. Lambda Leftovers 21. Pattern Matching 22. Other Books You May Enjoy

Colored pointers

Colored pointers are one of the core concepts of ZGC. It enables ZGC to find, mark, locate, and remap the objects. It doesn't support x32 platforms. Implementation of colored points needs virtual address masking, which could be accomplished either in the hardware, operating system, or software. The following diagram shows the 64-bit pointer layout:

As shown in the preceding diagram, the 64-bit object reference is divided as follows:

  • 18 bits: Unused bits
  • 1-bit: Finalizable
  • 1-bit: Remapped
  • 1-bit: Marked1
  • 1-bit: Marked0
  • 42 bits: Object Address

The first 18 bits are reserved for future use. The 42 bits can address up to 4 TB of address space. Now comes the remaining, intriguing, 4 bits. The Marked1 and Marked0 bits are used to mark objects for garbage collection. By setting the single bit for Remapped, an object can be marked not pointing to into the relocation...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime