1. 引言
在上兩篇理解Class文件(1):手動解析常量池和[JVM]理解Class文件(2)中江掩,已經(jīng)對class文件中的大部分內(nèi)容做了解析拓春,接下來再看下class文件中剩下的最后兩個字段:methods和attributes
-
ClassFile結(jié)構(gòu)
ClassFile {
u4 magic;
u2 minor_version;
u2 major_version;
u2 constant_pool_count;
cp_info constant_pool[constant_pool_count-1];
u2 access_flags;
u2 this_class;
u2 super_class;
u2 interfaces_count;
u2 interfaces[interfaces_count];
u2 fields_count;
field_info fields[fields_count];
u2 methods_count;
method_info methods[methods_count];
u2 attributes_count;
attribute_info attributes[attributes_count];
}
-
示例TestClass文件
將生成的class文件用UltraEdit打開脓杉,可以清楚地看到Java編譯后生成的字節(jié)碼嫉父,我們要解析的內(nèi)容也就是這些字節(jié)碼棺牧。
00000000h: CA FE BA BE 00 00 00 33 00 12 0A 00 03 00 0E 07 ;
00000010h: 00 0F 07 00 10 01 00 04 54 45 53 54 01 00 12 4C ;
00000020h: 6A 61 76 61 2F 6C 61 6E 67 2F 53 74 72 69 6E 67 ;
00000030h: 3B 01 00 0D 43 6F 6E 73 74 61 6E 74 56 61 6C 75 ;
00000040h: 65 08 00 11 01 00 06 3C 69 6E 69 74 3E 01 00 03 ;
00000050h: 28 29 56 01 00 04 43 6F 64 65 01 00 0F 4C 69 6E ;
00000060h: 65 4E 75 6D 62 65 72 54 61 62 6C 65 01 00 0A 53 ;
00000070h: 6F 75 72 63 65 46 69 6C 65 01 00 0E 54 65 73 74 ;
00000080h: 43 6C 61 73 73 2E 6A 61 76 61 0C 00 08 00 09 01 ;
00000090h: 00 09 54 65 73 74 43 6C 61 73 73 01 00 10 6A 61 ;
000000a0h: 76 61 2F 6C 61 6E 67 2F 4F 62 6A 65 63 74 01 00 ;
000000b0h: 0B 74 65 73 74 20 73 74 72 69 6E 67 00 21 00 02 ;
000000c0h: 00 03 00 00 00 01 00 1A 00 04 00 05 00 01 00 06 ;
000000d0h: 00 00 00 02 00 07 00 01 00 01 00 08 00 09 00 01 ;
000000e0h: 00 0A 00 00 00 1D 00 01 00 01 00 00 00 05 2A B7 ;
000000f0h: 00 01 B1 00 00 00 01 00 0B 00 00 00 06 00 01 00 ;
00000100h: 00 00 02 00 01 00 0C 00 00 00 02 00 0D ;
-
TestClass常量池
2. methods_count呕臂、methods
-
** 2.1 method_info**
method_info {
u2 access_flags;
u2 name_index;
u2 descriptor_index;
u2 attributes_count;
attribute_info attributes[attributes_count];
}
雖然methods字段結(jié)構(gòu)體看起來很簡單,但是由于attribute_info中又嵌套了其他屬性查坪,導致這部分的解析過程會比想象中要復雜寸宏。先附上TestClass的methods解析示例圖,然后再來看各個字段代表的含義偿曙。
-
** 2.2 access_flags**
access_flags定義當前方法的訪問權限和基本屬性的掩碼標志氮凝,它的取值范圍和相應含義如下圖:
截止到attribute_name_index這個字段,前面部分都比較簡單望忆,對應字段含義如下:
Option | Values | Description |
---|---|---|
methods_count | 0x00 01 | 方法個數(shù)為1 |
access_flags | 0x00 01 | ACC_PUBLIC |
name_index | 0x00 08 | 對應常量池索引為8的常量罩阵,即<init> |
descriptor_index | 0x00 09 | 對應常量池索引為9竿秆,即()V |
attributes_count | 0x00 01 | 屬性個數(shù)為1 |
attribute_name_index | 0x00 0A | Code |
-
2.3 code
接下來,來看第一個表結(jié)構(gòu)Code
Code_attribute {
u2 attribute_name_index;
u4 attribute_length;
u2 max_stack;
u2 max_locals;
u4 code_length;
u1 code[code_length];
u2 exception_table_length; {
u2 start_pc;
u2 end_pc;
u2 handler_pc;
u2 catch_type;
} exception_table[exception_table_length];
u2 attributes_count;
attribute_info attributes[attributes_count];
}
Option | Values | Description |
---|---|---|
attribute_name_index | 0x00 0A | Code |
attribute_length | 0x00 00 00 0D | 當前屬性的長度稿壁,不包括開始的6個字節(jié)(即不包括attribute_name_index和attribute_length的長度) |
max_stack | 0x00 01 | 當前方法的操作數(shù)棧在運行執(zhí)行的任何時間點的最大深度 |
max_locals | 0x00 01 | 分配在當前方法引用的局部變量表中的局部變量個數(shù) |
code_length | 0x00 00 00 05 | 當前方法的code[]數(shù)組的字節(jié)數(shù) |
code[5] | 0x2A B7 00 01 B1 | 當前方法的Java虛擬機字節(jié)碼 |
exception_table_length | 0x00 00 | 給出了exception_table[]數(shù)組的成員個數(shù)量 |
attributes_count | 0x00 01 | Code屬性中attributes表的成員個數(shù) |
** Java虛擬機指令集**
在對code進行解析時幽钢,其中有一項code[5] = 2A B7 00 01 B1,這些值代表的是Java虛擬機字節(jié)碼傅是,分別對這5個指令進行解釋匪燕。這個指令對應的值,都可以在 Java虛擬機規(guī)范(Java SE 7)的第6章 Java虛擬機指令集搜索到喧笔。-
2A對應的指令為aload_0谎懦,表示將第0個Slot中為reference類型的本地變量推送到操作數(shù)棧頂。我們通過LocalVariableTable來查看slot對應的本地變量溃斋,第0個Slot中為reference類型的本地變量就是this
在前面的示例中界拦,使用javap解析出來的結(jié)果中沒有包含LocalVariableTable字段,需要在使用javac編譯java中時梗劫,加上-g的參數(shù)享甸,生成的class文件中才帶有LocalVariableTable的信息。
D:\TestClass>javac -g TestClass.java
D:\TestClass>javap -verbose TestClass
// 省略常量池部分
{
public TestClass();
flags: ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
0: aload_0
1: invokespecial #1 // Method java/lang/Object."<init>":()V
4: return
LineNumberTable:
line 2: 0
LocalVariableTable:
Start Length Slot Name Signature
0 5 0 this LTestClass;
}
-
B7對應的指令為invokespecial梳侨,表示已棧頂?shù)膔eference類型的數(shù)據(jù)所指向的對象作為方法的接收者蛉威,調(diào)用此對象的實例構(gòu)造方法、private方法或者它的父類方法走哺。invokespecial有一個u2類型的參數(shù)說明具體是調(diào)用的哪個方法蚯嫌。
00 01表示invokespecial的參數(shù),指向的是常量池中索引值為1的常量丙躏,即java/lang/Object."<init>":()V
-
B1對應的指令為return择示,表示返回此方法,并且返回值為void晒旅。這條指令執(zhí)行后栅盲,當前方法結(jié)束。
-
2.4 LineNumberTable_attribute
attribute_info {
u2 attribute_name_index;
u4 attribute_length;
u1 info[attribute_length];
}
由于attribute_name_index指向的是常量池中的LineNumberTable废恋,因此谈秫,該項attribute為LineNumberTable_attribute
LineNumberTable_attribute {
u2 attribute_name_index;
u4 attribute_length;
u2 line_number_table_length;
{
u2 start_pc;
u2 line_number;
} line_number_table[line_number_table_length];
}
Option | Values | Description |
---|---|---|
attribute_name_index | 0x0B | 指向常量池中的第11個常量,LineNumberTable |
attribute_length | 0x00 06 | 當前屬性的長度鱼鼓,不包括開始的6個字節(jié) |
line_number_table_length | 0x00 01 | line_number_table[]數(shù)組的成員個數(shù)為1 |
start_pc | 0x00 00 | code[]數(shù)組在該索引處的字符表示源文件中新的行的起點 |
line_number | 0x00 02 | line_number項的值必須與源文件的行數(shù)相匹配 |
3. attributes_count拟烫、attributes
attribute_info表結(jié)構(gòu)如下:
attribute_info {
u2 attribute_name_index;
u4 attribute_length;
u1 info[attribute_length];
}
由于attribute_name_index指向的是常量池中的SourceFile,因此迄本,該項attribute為SourceFile_attribute
SourceFile_attribute {
u2 attribute_name_index;
u4 attribute_length;
u2 sourcefile_index;
}
Option | Values | Description |
---|---|---|
attributes_count | 0x00 01 | 屬性個數(shù)為1 |
attribute_name_index | 0x00 0C | 指向常量池中的SourceFile |
attribute_length | 0x00 00 02 | 屬性長度2 |
sourcefile_index | 0x00 0D | 執(zhí)行常量池中的TestClass.java |
4. 參考
- 深入理解Java虛擬機:JVM高級特性與最佳實踐(第2版)
- Java虛擬機規(guī)范(Java SE 7).pdf
- javap doesn't show the type of the Collection