Does anybody know how I can see the actual machine code that v8 generates from Javascript? I've gotten as far as Script::Compile() in src/api.cc but I can't figure out where to go from there.
|
1
|
|
|||
|
|
|
|
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. First, compile v8 with disassembler support:
Now you can invoke the shell with the "--print_code" option:
Which should give you something like this:
Your output will vary, of course. The above is from the v8 trunk compiled for Linux x64. |
|||
|
|
|
|
You're on the right track, I think. 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). 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. 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. (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) |
|||
|
|
