惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
U
Unit 42
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
IT之家
IT之家
MyScale Blog
MyScale Blog
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
I
InfoQ
博客园 - 司徒正美

博客园 - 横刀天笑

基于TCPCopy的Dubbo服务引流工具-DubboCopy Netty中的坑(下篇) 编写明显没有错误的代码 Zookeeper-Zookeeper client Zookeeper-Zookeeper leader选举 Zookeeper-Zookeeper启动过程 Zookeeper-Zookeeper的配置 Zookeeper-Zookeeper可以干什么 Zookeeper--Zookeeper是什么 Linux虚拟文件系统(VFS) JVM Spec 4 为什么女生总是将手机遗落在卫生间 Java基础知识复习 普罗米修斯观后感 【转载】来自Clean Code的一段话,正好形容公司目前一个系统 UI自动化测试随笔 Bloom Filter算法 memcached源代码阅读笔记(二):网络处理部分 关于自动化测试
JVM Spec 1-3
横刀天笑 · 2012-09-27 · via 博客园 - 横刀天笑

2012-09-27 23:07  横刀天笑  阅读(914)  评论()    收藏  举报

Runtime areas 

Pc register 

  Point current code address

  undefine -> in native code 

Thread related

  JVM method stack

      expandable size

      fixed size 

  Exceptions

     StackOverflow

     OOM

       Can not expand

       Can not create new thread

  Frame

    Size: determined at compile time

Native method stack

Global

  Heap

    GC

    Exceptions:

       OOM 

  Method area

    Code

    Runtime constant pool

    String 

Invoke method

  invokespecial   invoke <init>, <cinit>, super.method

  invokevirtual   invoke instance method

  invokestaic      invoke staic method

  invokeinterface

Exception handler

Exception handler:

From   To   Target    Type

0         4       5         Class TestException

finally without catch

Exception handler

From   To    Target    Type

0         4        10        any

jsr: jump subroutine

finally handler as a subroutine

synchronization block

monitorenter

monitorexit 

finally handler