You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

OpenJDK documents

The JVM manages its own address space for several purposes.

  • Java heap
  • Metadata heap
  • Code cache
  • Compiler and runtime temporary storage

Most Java objects are allocated using "TLABs", which is short for thread local allocation buffer.

  • No labels