http://blog.csdn.net/unei66/article/details/26477629

JVM 有 HotSpot引擎可以对热代码路径进行有效的 JIT优化,大幅度提升计算密集代码的性能。默认一个方法至少被调用10k次以上才可能被JIT优化。

查看JIT工作情况

Java代码

  1. public class VolatileBarrierExample {
  2. long a;
  3. volatile long v1=1;
  4. volatile long v2=1;
  5. void readAndWrite(){
  6. long j=v1;
  7. long i=v2;
  8. a=i+j;
  9. v1=i+1;
  10. long v=v1;
  11. v2=j*2;
  12. }
  13. public static void main(String[] args){
  14. final VolatileBarrierExample ex=new VolatileBarrierExample();
  15. for(int i=0;i<50000;i++)
  16. ex.readAndWrite();
  17. }
  18. }

运行命令:

  1. java -XX:+PrintCompilation VolatileBarrierExample

输出:

  1. VM option '+PrintCompilation'
  2. 242    1             VolatileBarrierExample::readAndWrite (40 bytes)
  3. 249    1 %           VolatileBarrierExample::main @ 10 (27 bytes)

用如下命令行可以更多地了解内联优化的实际情况以及优化发生的级别:

  1. java -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintInlining -XX:+TieredCompilation VolatileBarrierExample

查看JIT生成的汇编代码

环境说明:

1.      CPU:Intel i7

2.      操作系统:Ubuntu 12.04-amd64

3.      JDK:openjdkversion "1.7.0-internal-fastdebug",我使用的是fastdebug版本,可以直接使用openjdk。

4.      hsdis  下载地址:https://kenai.com/projects/base-hsdis/downloads,也可自行下载源代码编译,将hsdis-*.so放在目录$JAVA_HOME/jre/lib/amd64/server下.

运行命令:

  1. java -XX:+UnlockDiagnosticVMOptions -XX:+PrintAssembly VolatileBarrierExample

产生的汇编代码

  1. VM option '+UnlockDiagnosticVMOptions'
  2. VM option '+PrintAssembly'
  3. OpenJDK 64-Bit Server VM warning: PrintAssembly is enabled; turning on DebugNonSafepoints to gain additional output
  4. Loaded disassembler from hsdis-amd64.so
  5. Decoding compiled method 0x00007fae110f5890:
  6. Code:
  7. [Disassembling for mach='i386:x86-64']
  8. [Entry Point]
  9. [Constants]
  10. # {method} 'readAndWrite' '()V' in 'VolatileBarrierExample'
  11. #           [sp+0x20]  (sp of caller)
  12. 0x00007fae110f59c0: mov    0x8(%rsi),%r10d
  13. 0x00007fae110f59c4: cmp    %r10,%rax
  14. 0x00007fae110f59c7: jne    0x00007fae110cd920  ;   {runtime_call}
  15. 0x00007fae110f59cd: nop
  16. 0x00007fae110f59ce: nop
  17. 0x00007fae110f59cf: nop
  18. [Verified Entry Point]
  19. 0x00007fae110f59d0: push   %rbp
  20. 0x00007fae110f59d1: sub    $0x10,%rsp
  21. 0x00007fae110f59d5: nop                       ;*synchronization entry
  22. ; - VolatileBarrierExample::readAndWrite@-1 (line 13)
  23. 0x00007fae110f59d6: mov    0x18(%rsi),%r10    ;*getfield v1
  24. ; - VolatileBarrierExample::readAndWrite@1 (line 13)
  25. 0x00007fae110f59da: mov    0x20(%rsi),%r11    ;*getfield v2
  26. ; - VolatileBarrierExample::readAndWrite@6 (line 14)
  27. 0x00007fae110f59de: mov    %r10,%r8
  28. 0x00007fae110f59e1: add    %r11,%r8
  29. 0x00007fae110f59e4: mov    %r8,0x10(%rsi)
  30. 0x00007fae110f59e8: shl    %r10
  31. 0x00007fae110f59eb: add    $0x1,%r11
  32. 0x00007fae110f59ef: mov    %r11,0x18(%rsi)
  33. 0x00007fae110f59f3: mov    %r10,0x20(%rsi)    ;*putfield v2
  34. ; - VolatileBarrierExample::readAndWrite@36 (line 18)
  35. 0x00007fae110f59f7: add    $0x10,%rsp
  36. 0x00007fae110f59fb: pop    %rbp
  37. 0x00007fae110f59fc: test   %eax,0xa6875fe(%rip)        # 0x00007fae1b77d000
  38. ;   {poll_return}
  39. ……….

如果只查看某个方法产生的汇编代码,可以使用命令:

  1. java -XX:+UnlockDiagnosticVMOptions -XX:CompileCommand=print,*VolatileBarrierExample.readAndWrite VolatileBarrierExample

如果运行命令是出现此错误:

Could not load hsdis-amd64.so; library notloadable; PrintAssembly is disabled

可以设置

  1. export LD_LIBRARY_PATH=$JAVA_HOME/jre/lib/amd64/server/

参考资料:

1. http://chaoslawful.info/archives/387

2. https://wikis.oracle.com/display/HotSpotInternals/PrintAssembly

使用hsdis查看jit生成的汇编代码的更多相关文章

  1. GCC生成的汇编代码

    假设我们写了一个C代码文件 code.c包含下面代码: int accum = 0; int sum(int x, int y){ int t = x + y; accum += t; return ...

  2. 利用hsdis和JITWatch查看分析HotSpot JIT compiler生成的汇编代码

    http://blog.csdn.net/hengyunabc/article/details/26898657

  3. 如何在windows平台下使用hsdis与jitwatch查看JIT后的汇编码

    1. 安装hsids 这一步比较麻烦,需要提前安装cygwin,以及下载openjdk的源码 具体步骤请参考下面的两篇文章 How to build hsdis-amd64.dll and hsdis ...

  4. 【JVM】-NO.110.JVM.1 -【hsdis jitwatch 生成查看汇编代码】

    Style:Mac Series:Java Since:2018-09-10 End:2018-09-10 Total Hours:1 Degree Of Diffculty:5 Degree Of ...

  5. 使用gcc不同选项来编译查看中间生成文件

    gcc编译C程序的总体流程如下图 用到的命令如下: .c---> .i gcc -E hello.c .c--->.s gcc -S hello.c .c--->.o gcc -c ...

  6. 分析一个C语言程序生成的汇编代码-《Linux内核分析》Week1作业

    署名信息 郭春阳 原创作品转载请注明出处 :<Linux内核分析>MOOC课程 http://mooc.study.163.com/course/USTC-1000029000 C源码 这 ...

  7. 解析c语言背后的汇编代码

    源码 很简单的c语言代码,作用是交换两个数: #include <stdio.h> void swap(int * a, int * b) { *a = *a + *b - (*b = * ...

  8. Keil 中关于C语言编译生成汇编代码函数名规则

    在keil 中 C语言的函数有带参数和不带参数之分. 一般的资料里说fun(void)类型的函数不带参数,所以,keil编译器生成的汇编的调用地址(函数名) 为fun.这没有错.事实上,不管C语言的函 ...

  9. 通过反汇编一个简单的C程序,分析汇编代码理解计算机是如何工作的

    实验一:通过反汇编一个简单的C程序,分析汇编代码理解计算机是如何工作的 学号:20135114 姓名:王朝宪 注: 原创作品转载请注明出处   <Linux内核分析>MOOC课程http: ...

随机推荐

  1. COGS2642 / Bzoj4590 [Shoi2015]自动刷题机

    Time Limit: 10 Sec  Memory Limit: 256 MBSubmit: 906  Solved: 321 Description 曾经发明了信号增幅仪的发明家SHTSC又公开了 ...

  2. 【洛谷 P1896】[SCOI2005]互不侵犯(状压dp)

    题目链接 题意:在N×N的棋盘里面放K个国王,使他们互不攻击,共有多少种摆放方案.国王能攻击到它上下左右,以及左上左下右上右下八个方向上附近的各一个格子,共8个格子. 这是道状压\(DP\)好题啊.. ...

  3. IE 6 position不支持fixed属性的解决方案

    抛出另一个问题:IE7已经支持position:fixed了,而IE6却不支持,解决这个问题的办法如下: 现在有一个元素的id是element,它需要实现fixed效果,我们既想要它在正常的浏览器下使 ...

  4. 转:布局【ViewGroup】

    转: http://www.cnblogs.com/leehyuan/p/3389527.html 像素单位的变化:是用dip,而不是px,主要用于宽高的设置 在Android中支持的描述大小区域的类 ...

  5. [Leetcode Week5]Word Ladder II

    Word Ladder II 题解 原创文章,拒绝转载 题目来源:https://leetcode.com/problems/word-ladder-ii/description/ Descripti ...

  6. POJ1220(大数进制转换)

    NUMBER BASE CONVERSION Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 4652   Accepted: ...

  7. 使用Redirector插件解决googleapis公共库加载的问题

    最近访问一些面向国外的网站总是会出现ajax.googleaips.com无法加载的情况.以下为加载stackoverflow时的情境: 图1 -无法加载的google公共库 问题的原因是谷歌没有在国 ...

  8. [ Linux 命令 ] grep

    一.grep是什么? Linux grep命令是用于查找文件里符合条件行的shell命令. 二.为什么要使用grep? 在查找文件内容时候,通过使用grep指定条件,可以快速定位到文件里字符串所在的行 ...

  9. 关于background

    background目前有size;  color;  image;  repeat;position;attachtment; 作用分别是一:调整背景大小. 语法:background-size:a ...

  10. 【SQL】数据库更新

    1.插入 INSERT INTO R(A1,A2,...An) VALUES(v1, v2, ...,vn) 如果插入了所有属性,并且按照定义的顺序给出,可以省略(A1,A2,...An) 可以只插入 ...