Displaying 2 results from an estimated 2 matches for "e24457_01".
2013 Mar 06
3
[LLVMdev] embedding trace functions to generate variable values
...ang to embed
variable tracing instructions in the compiled output, so that on execution
of the program, a dump of various variables values over time is generated.
It's a little like the old unix program ctrace[1], but using LLVM, instead
of rewriting C !
[1] http://docs.oracle.com/cd/E24457_01/html/E22003/ctrace.1.html
Thanx in advance,
--Vardhan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130306/71334002/attachment.html>
2013 Mar 06
0
[LLVMdev] embedding trace functions to generate variable values
...e compiled output, so that on
> execution
> of the program, a dump of various variables values over time is
> generated.
>
> It's a little like the old unix program ctrace[1], but using LLVM,
> instead
> of rewriting C !
>
>
> [1] http://docs.oracle.com/cd/E24457_01/html/E22003/ctrace.1.html
> Thanx in advance,
No, I don't believe there is a tool quite like that in LLVM. However, we
have a research prototype dynamic backwards slicing tool called Giri
written with LLVM. Giri instruments a program to record all basic block
and loads/store executions...