show/hide this revision's text 2 added 225 characters in body

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)

show/hide this revision's text 1

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.