Displaying 3 results from an estimated 3 matches for "disassem".
Did you mean:
disasm
2009 Jun 22
1
Debugging the crash of native dll
Hi,
Is there any way to disassemly the native dll as one of the dll is getting crashed while executing my application.I want to find out what is causing it to get crashed
2012 Jun 28
0
[LLVMdev] Counting instructions in MCJIT
...------------------------------------------------------===
45 asm-printer - Number of machine instrs printed
I tested this code on x86 32bit machine.
To verify above result, we can use gdb.
You can get information to debug jitted codes from
http://llvm.org/docs/DebuggingJITedCode.html.
(gdb) disassem
Dump of assembler code for function main:
0xb7c27060 <+0>: sub $0x1c,%esp
0xb7c27063 <+3>: movl $0x0,0x18(%esp)
0xb7c2706b <+11>: mov 0x20(%esp),%eax
0xb7c2706f <+15>: mov %eax,0x14(%esp)
0xb7c27073 <+19>: mov 0x24(%esp),%e...
2012 Jun 27
3
[LLVMdev] Counting instructions in MCJIT
Hi there,
I wondered whether anyone could give me any advice about counting
assembly instructions when using MCJIT?
For performance regression testing I would like to be able to count the
number of instructions generated during the jit compilation of a given
module.
The Statistic class, as far as I understand, cannot collect this data
per-module (per-ExecutionEngine/per-MCJIT), and there is