Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7531109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T05:05:32+00:00 2026-05-30T05:05:32+00:00

I ‘m trying to use -XX:+UnlockDiagnosticVMOptions -XX:CompileCommand=print,*MyClass.myMethod command lines as described in this post

  • 0

I ‘m trying to use -XX:+UnlockDiagnosticVMOptions -XX:CompileCommand=print,*MyClass.myMethod command lines as described in this post.

It seems thats it’s available with open-jdk (https://wikis.oracle.com/display/HotSpotInternals/PrintAssembly).

How can I use those options (or similar equivalents) with oracle JDK7 and the JVM HotSpot?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T05:05:33+00:00Added an answer on May 30, 2026 at 5:05 am

    These instructions apply to Linux (Ubuntu 10.04.4 LTS), but should be applicable for your OS. After downloading Oracle JDK 7u3 and appropriately setting your JAVA_HOME and PATH environment variables, execute the following to check available options:

    java -XX:+AggressiveOpts -XX:+UnlockDiagnosticVMOptions -XX:+UnlockExperimentalVMOptions -XX:+PrintFlagsFinal -version
    

    You should see the UnlockDiagnosticVMOptions, CompileCommand and PrintAssembly options are available. Using the CompileCommand option will also enable the PrintAssembly option. However, you will need the HotSpot disassembler plugin for PrintAssembly to work; without it, you might see something like the following:

    $ java -version
    java version "1.7.0_03"
    Java(TM) SE Runtime Environment (build 1.7.0_03-b04)
    Java HotSpot(TM) Server VM (build 22.1-b02, mixed mode)
    $ java -server -XX:+UnlockDiagnosticVMOptions '-XX:CompileCommand=print,*Main.main' Main
    CompilerOracle: print *Main.main
    Java HotSpot(TM) Server VM warning: printing of assembly code is enabled; turning on DebugNonSafepoints to gain additional output
    Compiled method (c2)      68    1 %           Main::main @ 4 (49 bytes)
     total in heap  [0xb3a97548,0xb3a979ec] = 1188
     relocation     [0xb3a97610,0xb3a97624] = 20
     main code      [0xb3a97640,0xb3a97840] = 512
     stub code      [0xb3a97840,0xb3a97850] = 16
     oops           [0xb3a97850,0xb3a97858] = 8
     scopes data    [0xb3a97858,0xb3a97898] = 64
     scopes pcs     [0xb3a97898,0xb3a979e8] = 336
     dependencies   [0xb3a979e8,0xb3a979ec] = 4
    Could not load hsdis-i386.so; library not loadable; PrintAssembly is disabled
    OopMapSet contains 1 OopMaps
    

    To get the HotSpot disassembler plugin, you will need to build it. Looking at the OpenJDK 7u2 source, the hsdis plugin readme says:

    To use the plugin with a JVM, you need a new version that can load it.
    If the product mode of your JVM does not accept -XX:+PrintAssembly,
    you do not have a version that is new enough.

    To build this project you [need] a copy of GNU binutils to build against.

    In theory this should be buildable on Windows but getting a working
    GNU build environment on Windows has proven difficult.

    We have confirmed above that Oracle JDK 7u3 supports PrintAssembly. I followed the hsdis plugin readme instructions, downloaded GNU binutils 2.22, placed it in the hsdis build/binutils directory and ran make. This eventually produced the following error:

    hsdis.c:32:20: error: sysdep.h: No such file or directory
    

    To correct this, I changed hsdis.c using the following patch:

    diff -r 6259c6d3bbb7 src/share/tools/hsdis/hsdis.c
    --- a/src/share/tools/hsdis/hsdis.c Mon Dec 12 23:08:01 2011 -0800
    +++ b/src/share/tools/hsdis/hsdis.c Thu Feb 23 09:26:37 2012 -0500
    @@ -29,7 +29,7 @@
    
     #include "hsdis.h"
    
    -#include <sysdep.h>
    +#include <errno.h>
     #include <libiberty.h>
     #include <bfd.h>
     #include <dis-asm.h>
    

    Running make was then successful. Now just copy the hsdis-i386.so plugin in the hsdis build directory to the Oracle JDK 7u3 jre/lib/i386 directory.

    Now you can see the disassembled compiled code:

    $ java -server -XX:+UnlockDiagnosticVMOptions '-XX:CompileCommand=print,*Main.main' Main
    CompilerOracle: print *Main.main
    Java HotSpot(TM) Server VM warning: printing of assembly code is enabled; turning on DebugNonSafepoints to gain additional output
    Compiled method (c2)      68    1 %           Main::main @ 4 (49 bytes)
     total in heap  [0xb3999548,0xb39999ec] = 1188
     relocation     [0xb3999610,0xb3999624] = 20
     main code      [0xb3999640,0xb3999840] = 512
     stub code      [0xb3999840,0xb3999850] = 16
     oops           [0xb3999850,0xb3999858] = 8
     scopes data    [0xb3999858,0xb3999898] = 64
     scopes pcs     [0xb3999898,0xb39999e8] = 336
     dependencies   [0xb39999e8,0xb39999ec] = 4
    Loaded disassembler from [snip]/jdk1.7.0_03/jre/lib/i386/hsdis-i386.so
    Decoding compiled method 0xb3999548:
    Code:
    [Disassembling for mach='i386']
    [Entry Point]
    [Verified Entry Point]
    [Constants]
      # {method} 'main' '([Ljava/lang/String;)V' in 'Main'
      0xb3999640: call   0xb6ff8510         ;   {runtime_call}
      0xb3999645: data32 xchg %ax,%ax
      0xb3999648: mov    %eax,-0x3000(%esp)
      0xb399964f: push   %ebp
      0xb3999650: sub    $0x38,%esp
      0xb3999656: mov    %ecx,%esi
      0xb3999658: mov    0x4(%esi),%ebp
      0xb399965b: mov    0x8(%esi),%edi
      0xb399965e: mov    (%ecx),%esi
      0xb3999660: mov    %ecx,(%esp)
      0xb3999663: call   0xb7078cf0         ;*iload_3
    [snip]
      0xb399983e: hlt    
      0xb399983f: hlt    
    [Exception Handler]
    [Stub Code]
      0xb3999840: jmp    0xb39981e0         ;   {no_reloc}
    [Deopt Handler Code]
      0xb3999845: push   $0xb3999845        ;   {section_word}
      0xb399984a: jmp    0xb397e220         ;   {runtime_call}
      0xb399984f: .byte 0x0
    OopMapSet contains 1 OopMaps
    
    #0 
    OopMap{off=468}
    

    The test class I’ve used is:

    public class Main {
        public static void main(final String[] args) {
            long x = 0;
            for (int i = 0; i < 1000000; i++) {
                x += calculate(i);
            }
            System.out.println("x=" + x);
        }
    
        private static long calculate(final int i) {
            return (long)i * (long)i;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to create an if statement in PHP that prevents a single post
I am trying to create a RegEx expression that will successfully parse the following
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
Hi if i run my project its indicate this logcat error...how to solve this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
Does anyone know how can I replace this 2 symbol below from the string
I have just tried to save a simple *.rtf file with some websites and
I would like to count the length of a string with PHP. The string
I've got a string that has curly quotes in it. I'd like to replace
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.