Java字节码(.class文件)格式详解(一)
转自:http://www.blogjava.net/dlevin/archive/2011/09/05/358033.html小介:去年在读《深入解析jvm》的时候写的,记得当时还想着用自己的代码解析字节码的,最后只完成了一部分。现在都不知道还有没有保留着,貌似apache有现成的bcel工程可以做这件事。当时也只是为了学习。这份资料主要参考《深入解析jvm》和《java虚拟机规范》貌似是1
转自:http://www.blogjava.net/dlevin/archive/2011/09/05/358033.html
小介:去年在读《深入解析jvm》的时候写的,记得当时还想着用自己的代码解析字节码的,最后只完成了一部分。现在都不知道还有没有保留着,貌似apache有现成的bcel工程可以做这件事。当时也只是为了学习。这份资料主要参考《深入解析jvm》和《java虚拟机规范》貌似是1.2版本的,整理出来的。里面包含了一些自己的理解和用实际代码的测试。有兴趣的童鞋可以研究研究。嘿嘿。要有错误也希望能为小弟指点出来,感激不尽。:)
1.总体格式
class file format
type
descriptor
remark
u4
magic
0xcafebabe
u2
minor_version
u2
major_version
u2
constant_pool_count
cp_info
constant_pool[cosntant_pool_count – 1]
index 0 is invalid
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]
2.格式详解
2.1magic
magic被称为“魔数”,用来标识.class文件的开头。所有合法的.class字节码都应该是该数开头,占4个字节。
2.2major_version.minor_version
major_version.minor_version合在一起形成当前.class文件的版本号,该版本号一般由编译器产生,并且由sun定义。如59.0。它们一起占4个字节。
2.3constant_pool
在java字节码中,有一个常量池,用来存放不同类型的常量。由于java设计的目的之一就是字节码需要经网络传输的,因而字节码需要比较紧凑,以减少网络传输的流量和时间。常量池的存在则可以让一些相同类型的值通过索引的方式从常量池中找到,而不是在不同地方有不同拷贝,缩减了字节码的大小。
每个常量池中的项是通过cp_info的类型来表示的,它的格式如下:
cp_info format
type
descriptor
remark
u1
tag
u1
info[]
这里tag用来表示当前常量池不同类型的项。info中存放常量池项中存放的数据。
tag中表示的数据类型:
constant_class_info(7)、
constant_integer_info(3)、
constant_long_info(5)、
constant_float_info(4)、
constant_double_info(6)、
constant_string_info(8)、
constant_fieldref_info(9)、
constant_methodref_info(10)、
constant_interfacemethodref_info(11)、
constant_nameandtype_info(12)、
constant_utf8_info(1)、
注:在java字节码中,所有boolean、byte、char、short类型都是用int类型存放,因而在常量池中没有和它们对应的项。
2.3.1constant_class_info
用于记录类或接口名(used to represent a class or an interface)
constant_class_info format
type
descriptor
remark
u1
tag
constant_class (7)
u2
name_index
constant_pool中的索引,constant_utf8_info类型。表示类或接口名。
注:在java字节码中,类和接口名不同于源码中的名字,详见附件a.
2.3.2constant_integer_info
用于记录int类型的常量值(represent 4-byte numeric (int) constants:)
constant_integer_info
type
descriptor
remark
u1
tag
constant_integer (3)
u4
bytes
整型常量值
2.3.3constant_long_info
用于记录long类型的常量值(represent 8-byte numeric (long) constants:)
constant_long_info
type
descriptor
remark
u1
tag
constant_long (5)
u4
high_bytes
长整型的高四位值
u4
low_bytes
长整型的低四位值
2.3.4constant_float_info
用于记录float类型的常量值(represent 4-byte numeric (float) constants:)
constant_float_info
type
descriptor
remark
u1
tag
constant_float(4)
u4
bytes
单精度浮点型常量值
几个特殊值:0x7f800000 => float.positive_infinity、0xff800000 => float.negative_infinity、
0x7f800001 to 0x7fffffff => float.nan、0xff800001 to 0xffffffff => float.nan
2.3.5constant_double_info
用于记录double类型的常量值(represent 8-byte numeric (double) constants:)
constant_double_info
type
descriptor
remark
u1
tag
constant_double(6)
u4
high_bytes
双精度浮点的高四位值
u4
low_bytes
双精度浮点的低四位值
几个特殊值:0x7ff0000000000000l => double.positive_infinity、
0xfff0000000000000l => double.negative_infinity
0x7ff0000000000001l to 0x7fffffffffffffffl => double.nan 、
0xfff0000000000001l to 0xffffffffffffffffl => double.nan
2.3.6constant_string_info
用于记录常量字符串的值(represent constant objects of the type string:)
constant_string_info
type
descriptor
remark
u1
tag
constant_string(8)
u2
string_index
constant_pool中的索引,constant_utf8_info类型。表示string类型值。
2.3.7constant_fieldref_info
用于记录字段信息(包括类或接口中定义的字段以及代码中使用到的字段)。
constant_fieldref_info
type
descriptor
remark
u1
tag
constant_fieldref(9)
u2
class_index
constant_pool中的索引,constant_class_info类型。记录定义该字段的类或接口。
u2
name_and_type_index
constant_pool中的索引,constant_nameandtype_info类型。指定类或接口中的字段名(name)和字段描述符(descriptor)。
2.3.8constant_methodref_info
用于记录方法信息(包括类中定义的方法以及代码中使用到的方法)。
constant_methodref_info
type
descriptor
remark
u1
tag
constant_methodref(10)
u2
class_index
constant_pool中的索引,constant_class_info类型。记录定义该方法的类。
u2
name_and_type_index
constant_pool中的索引,constant_nameandtype_info类型。指定类中扽方法名(name)和方法描述符(descriptor)。
2.3.9constant_interfacemethodref_info
用于记录接口中的方法信息(包括接口中定义的方法以及代码中使用到的方法)。
constant_interfacemethodref_info
type
descriptor
remark
u1
tag
constant_interfacemethodref(11)
u2
class_index
constant_pool中的索引,constant_class_info类型。记录定义该方法的接口。
u2
name_and_type_index
constant_pool中的索引,constant_nameandtype_info类型。指定接口中的方法名(name)和方法描述符(descriptor)。
2.3.10constant_nameandtype_info
记录方法或字段的名称(name)和描述符(descriptor)(represent a field or method, without indicating which class or interface type it belongs to:)。
constant_nameandtype_info
type
descriptor
remark
u1
tag
constant_nameandtype (12)
u2
name_index
constant_pool中的索引,constant_utf8_info类型。指定字段或方法的名称。
u2
descriptor_index
constant_pool中的索引,constant_utf8_info类型。指定字段或方法的描述符(见附录c)
2.3.11constant_utf8_info
记录字符串的值(represent constant string values. string content is encoded in modified utf-8.)
modifie
d utf-8 refer to :
cle.com/javase/1.4.2/docs/api/java/io/datainputstream.html
constant_utf8_info
type
descriptor
remark
u1
tag
constant_utf8 (1)
u2
length
bytes所代表
的字符串的长度
u1
bytes[length]
字符串的byte数据,可以通过datainputstream中的readutf()方法(实例方法或静态方法读取该二进制的字符串的值。)
2.4access_flags
指定类或接口的访问权限。
类或接口的访问权限
flag name
value
remarks
acc_public
0x0001
pubilc,包外可访问。
acc_final
0x0010
final,不能有子类。
acc_super
0x0020
用于兼容早期编译器,新编译器都设置该标记,以在使用 invokespecial指令时对子类方法做特定处理。
acc_interface
0x0200
接口,同时需要设置:acc_abstract。不可同时设置:acc_final、acc_super、acc_enum
acc_abstract
0x0400
抽象类,无法实例化。不可和acc_final同时设置。
acc_synthetic
0x1000
synthetic,由编译器产生,不存在于源代码中。
acc_annotation
0x2000
注解类型(annotation),需同时设置:acc_interface、acc_abstract
acc_enum
0x4000
枚举类型
2.5this_class
this_class是指向constant pool的索引值,该值必须是constant_class_info类型,指定当前字节码定义的类或接口。
2.6super_class
super_class是指向constant pool的索引值,该值必须是constant_class_info类型,指定当前字节码定义的类或接口的直接父类。只有object类才没有直接父类,此时该索引值为0。并且父类不能是final类型。接口的父类都是object类。
2.7interfaces
interfaces数组记录所有当前类或接口直接实现的接口。interfaces数组中的每项值都是一个指向constant pool的索引值,这些值必须是constant_class_info类型。数组中接口的顺序和源代码中接口定义的顺序相同。
2.8fields
fields数组记录了类或接口中的所有字段,包括实例字段和静态字段,但不包含父类或父接口中定义的字段。fields数组中每项都是field_info类型值,它描述了字段的详细信息,如名称、描述符、字段中的attribute等。
field_info
type
descriptor
remark
u2
access_flags
记录字段的访问权限。见2.8.1
u2
name_index
constant_pool中的索引,constant_utf8_info类型。指定字段的名称。
u2
descriptor_index
constant_pool中的索引,constant_utf8_info类型,指定字段的描述符(见附录c)。
u2
attributes_count
attributes包含的项目数。
attribute_info
attributes[attributes_count]
字段中包含的attribute集合。见2.8.2-2.8.7
注:fields中的项目和constant_fieldref_info中的项目部分信息是相同的,他们主要的区别是constant_fieldref_info中的项目不仅包含了类或接口中定义的字段,还包括在字节码中使用到的字段信息。不过这里很奇怪,为什么field_info结构中不把name_index和descriptor_index合并成fieldref_index,这样的class文件不是更加紧凑吗??不知道这是sun因为某些原因故意这样设计还是这是他们的失误??
2.8.1字段访问权限
字段的访问权限
flag name
value
remarks
acc_public
0x0001
pubilc,包外可访问。
acc_private
0x0002
private,只可在类内访问。
acc_protected
0x0004
protected,类内和子类中可访问。
acc_static
0x0008
static,静态。
acc_final
0x0010
final,常量。
acc_voilatie
0x0040
volatile,直接读写内存,不可被缓存。不可和acc_final一起使用。
acc_transient
0x0080
transient,在序列化中被忽略的字段。
acc_synthetic
0x1000
synthetic,由编译器产生,不存在于源代码中。
acc_enum
0x4000
enum,枚举类型字段
注:接口中的字段必须同时设置:acc_public、acc_static、acc_final
2.8.2constantvalue attribute (jvm识别)
constantvalue attribute
type
descriptor
remark
u2
attribute_name_index
constant_pool中的索引,constant_utf8_info类型。指定attribute的名称(“constantvalue”)。
u4
attribute_length
该attribute内容的字节长度(固定值:2)
u2
constant_value_index
constant_pool中的索引,
constant_integer_info(int,boolean,char、short、byte)、
constant_float_info(float)、
constant_double_info(double)、
constant_long_info(long)
constant_string_info(string)类型
每个常量字段(final,静态常量或实例常量)都包含有且仅有一个constantvalue attribute。constantvalue attribute结构用于存储一个字段的常量值。
对一个静态常量字段,该常量值会在类或接口被初始化之前,由jvm负责赋给他们,即它在任何静态字段之前被赋值。
对一个非静态常量字段,该值会被虚拟机忽略,它的赋值由生成的实例初始化函数()实现。如类:
class a {
public static final int fa = 10;
public final int fa2 = 30;
private static int sa = 20;
static {
sa = 30;
}
}
生成的字节码如下:
// compiled from test.java (version 1.6 : 50.0, super bit)
class org.levin.insidejvm.miscs.staticinit.a {
public static final int fa = 10;
public final int fa2 = 30;
private static int sa;
static {};
0 bipush 20
2 putstatic org.levin.insidejvm.miscs.staticinit.a.sa : int [16]
5 bipush 30
7 putstatic org.levin.insidejvm.miscs.staticinit.a.sa : int [16]
10 return
public a();
0 aload_0 [this]
1 invokespecial java.lang.object() [21]
4 aload_0 [this]
5 bipush 30
7 putfield org.levin.insidejvm.miscs.staticinit.a.fa2 : int [23]
10 return
2.8.3synthetic attribute
参考2.11.1
2.8.4signature attribute
参考2.11.2
2.8.5deprecated attribute
参考2.11.3
2.8.6runtimevisibleannotations attribute
参考2.11.4
2.8.7runtimeinvisibleannotations attribute
参考2.11.5
如果你喜欢我喜欢的,你关心我关心的,大家交个朋友,一起分享,交流,进步。
我的邮箱:rollenholt#qq.com
我的新浪微博:http://weibo.com/rollenholt
我的腾讯微博:http://t.qq.com/rollenholt
绿色通道:好文要顶关注我收藏该文与我联系
======================================================
在最后,我邀请大家参加新浪APP,就是新浪免费送大家的一个空间,支持PHP+MySql,免费二级域名,免费域名绑定 这个是我邀请的地址,您通过这个链接注册即为我的好友,并获赠云豆500个,价值5元哦!短网址是http://t.cn/SXOiLh我创建的小站每天访客已经达到2000+了,每天挂广告赚50+元哦,呵呵,饭钱不愁了,\(^o^)/
更多推荐
所有评论(0)