How can I see the machine code generated by v8? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T23:31:14Z http://stackoverflow.com/feeds/question/277423 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/277423/how-can-i-see-the-machine-code-generated-by-v8 3 How can I see the machine code generated by v8? estark 2008-11-10T09:31:58Z 2009-07-29T01:04:41Z <p>Does anybody know how I can see the actual machine code that <a href="http://code.google.com/p/v8/" rel="nofollow">v8</a> generates from Javascript? I've gotten as far as <code>Script::Compile()</code> in <code>src/api.cc</code> but I can't figure out where to go from there.</p> http://stackoverflow.com/questions/277423/how-can-i-see-the-machine-code-generated-by-v8/277807#277807 1 Answer by Mike G. for How can I see the machine code generated by v8? Mike G. 2008-11-10T12:59:33Z 2008-11-10T15:10:58Z <p>You're on the right track, I think.</p> <p>It looks like you need to get from Script::Compile to Compiler::Compile, which will lead you to the code generators (codegen*.cc and .h).</p> <p>All of this to say that, looking at codegen-ia32.cc, if you define ENABLE_DISASSEMBLER when you build, your disassembly should get printed, I think.</p> <p>Of course, all of this is just from a quick browse of an old copy of the source I have here, so YMMV, but I think this should work.</p> <p>(Looking at your post again, I see you're looking for the machine language, not the assembler -- I'm not sure, but you might have to modify the logic if you want the assembled code output rather than its disassembly)</p> http://stackoverflow.com/questions/277423/how-can-i-see-the-machine-code-generated-by-v8/1197559#1197559 1 Answer by sstock for How can I see the machine code generated by v8? sstock 2009-07-29T00:55:44Z 2009-07-29T01:01:26Z <p>I don't know how to invoke the disassembler from C++ code, but there is a quick-and-dirty way to get a disassembly from the shell.</p> <p>First, compile v8 with disassembler support:</p> <pre><code>scons [your v8 build options here] disassembler=on sample=shell </code></pre> <p>Now you can invoke the shell with the "--print_code" option:</p> <pre><code>./shell --print_code hello.js </code></pre> <p>Which should give you something like this:</p> <pre><code>--- Raw source --- print("hello world"); --- Code --- kind = FUNCTION Instructions (size = 134) 0x2ad0a77ceea0 0 55 push rbp 0x2ad0a77ceea1 1 488bec REX.W movq rbp,rsp 0x2ad0a77ceea4 4 56 push rsi 0x2ad0a77ceea5 5 57 push rdi 0x2ad0a77ceea6 6 49ba59c13da9d02a0000 REX.W movq r10,0x2ad0a93dc159 ;; object: 0xa93dc159 &lt;undefined&gt; 0x2ad0a77ceeb0 16 4952 REX.W push r10 0x2ad0a77ceeb2 18 49ba688b700000000000 REX.W movq r10,0x708b68 0x2ad0a77ceebc 28 493b22 REX.W cmpq rsp,[r10] 0x2ad0a77ceebf 31 0f824e000000 jc 115 (0x2ad0a77cef13) 0x2ad0a77ceec5 37 488b462f REX.W movq rax,[rsi+0x2f] 0x2ad0a77ceec9 41 4883ec18 REX.W subq rsp,0xlx 0x2ad0a77ceecd 45 49ba094b3ea9d02a0000 REX.W movq r10,0x2ad0a93e4b09 ;; object: 0xa93e4b09 &lt;String[5]: print&gt; 0x2ad0a77ceed7 55 4c8955e0 REX.W movq [rbp-0x20],r10 0x2ad0a77ceedb 59 488945d8 REX.W movq [rbp-0x28],rax 0x2ad0a77ceedf 63 49ba014d3ea9d02a0000 REX.W movq r10,0x2ad0a93e4d01 ;; object: 0xa93e4d01 &lt;String[11]: hello world&gt; 0x2ad0a77ceee9 73 4c8955d0 REX.W movq [rbp-0x30],r10 0x2ad0a77ceeed 77 49baa06c7ba7d02a0000 REX.W movq r10,0x2ad0a77b6ca0 ;; debug: statement 0 ;; code: contextual, CALL_IC, UNINITIALIZED, argc = 1 0x2ad0a77ceef7 87 49ffd2 REX.W call r10 0x2ad0a77ceefa 90 488b75f8 REX.W movq rsi,[rbp-0x8] 0x2ad0a77ceefe 94 4883c408 REX.W addq rsp,0xlx 0x2ad0a77cef02 98 488945e8 REX.W movq [rbp-0x18],rax 0x2ad0a77cef06 102 488be5 REX.W movq rsp,rbp ;; js return 0x2ad0a77cef09 105 5d pop rbp 0x2ad0a77cef0a 106 c20800 ret 0x8 0x2ad0a77cef0d 109 cc int3 0x2ad0a77cef0e 110 cc int3 0x2ad0a77cef0f 111 cc int3 0x2ad0a77cef10 112 cc int3 0x2ad0a77cef11 113 cc int3 0x2ad0a77cef12 114 cc int3 0x2ad0a77cef13 115 49ba60657ba7d02a0000 REX.W movq r10,0x2ad0a77b6560 ;; code: STUB, StackCheck, minor: 0 0x2ad0a77cef1d 125 49ffd2 REX.W call r10 0x2ad0a77cef20 128 488b7df0 REX.W movq rdi,[rbp-0x10] 0x2ad0a77cef24 132 eb9f jmp 37 (0x2ad0a77ceec5) RelocInfo (size = 10) 0x2ad0a77ceea8 embedded object (0xa93dc159 &lt;undefined&gt;) 0x2ad0a77ceecf embedded object (0xa93e4b09 &lt;String[5]: print&gt;) 0x2ad0a77ceee1 embedded object (0xa93e4d01 &lt;String[11]: hello world&gt;) 0x2ad0a77ceeed statement position (0) 0x2ad0a77ceeef code target (context) (CALL_IC) (0x2ad0a77b6ca0) 0x2ad0a77cef06 js return 0x2ad0a77cef15 code target (STUB) (0x2ad0a77b6560) hello world </code></pre> <p>Your output will vary, of course. The above is from the v8 trunk compiled for Linux x64.</p>