Displaying 2 results from an estimated 2 matches for "f_append".
Did you mean:
o_append
2010 Jun 24
0
[LLVMdev] [patch] New feature: debug info for function memory ranges (-jit-emit-debug-function-range)
...tDebugInfoFunctionRange && JITEmitDebugInfoFunctionRangeStream==NULL) {
+ std::string ErrorInfo;
+ static bool first_pass = true;
+ os = JITEmitDebugInfoFunctionRangeStream = new raw_fd_ostream("/tmp/llvm_debug_functions.txt", ErrorInfo, first_pass?0:raw_fd_ostream::F_Append);
+ if (!ErrorInfo.empty()) {
Please don't use statics.
-Chris
2010 Jun 22
2
[LLVMdev] [patch] New feature: debug info for function memory ranges (-jit-emit-debug-function-range)
On 06/19/2010 14:03, Yuri wrote:
> This new option (--jit-emit-debug-function-range) will allow to output
> function information for memory ranges that functions occupy in memory
> while they run in JIT. File format generated is like this:
> ...
> 0x5000000 0x5001000 function_name_is_here
> ...
>
> This feature is useful for external tools like valgrind and
>