search for: debug_line_info

Displaying 4 results from an estimated 4 matches for "debug_line_info".

2009 Jun 24
2
[LLVMdev] JITEventListener for eventual profiling and maybe gdb support
...oing to use, but I won't do that until there's a need. I've added EmittedFunctionDetails in this patch so that I don't have to change the NotifyFunctionEmitted() interface in a future patch. To record line number information, oprofile wants an array of structs of the form: struct debug_line_info { unsigned long vma; unsigned int lineno; /* The filename format is unspecified, absolute path, relative etc. */ char const * filename; }; so I'll add enough information to produce that to the EmittedFunctionDetails in a later patch. Chris mentioned that someone m...
2009 Jun 24
0
[LLVMdev] JITEventListener for eventual profiling and maybe gdb support
...hat until there's a need. > > I've added EmittedFunctionDetails in this patch so that I don't have > to change the NotifyFunctionEmitted() interface in a future patch. To > record line number information, oprofile wants an array of structs of > the form: > >  struct debug_line_info { >       unsigned long vma; >       unsigned int lineno; >       /* The filename format is unspecified, absolute path, relative etc. */ >       char const * filename; >  }; > > so I'll add enough information to produce that to the > EmittedFunctionDetails in a later pat...
2009 Jun 24
3
[LLVMdev] [llvm-commits] JITEventListener for eventual profiling and maybe gdb support
.... >> >> I've added EmittedFunctionDetails in this patch so that I don't have >> to change the NotifyFunctionEmitted() interface in a future patch. To >> record line number information, oprofile wants an array of structs of >> the form: >> >> struct debug_line_info { >> unsigned long vma; >> unsigned int lineno; >> /* The filename format is unspecified, absolute path, >> relative etc. */ >> char const * filename; >> }; >> >> so I'll add enough information to produce that to the &gt...
2009 Jun 25
0
[LLVMdev] [llvm-commits] JITEventListener for eventual profiling and maybe gdb support
...I've added EmittedFunctionDetails in this patch so that I don't have >>> to change the NotifyFunctionEmitted() interface in a future patch. To >>> record line number information, oprofile wants an array of structs of >>> the form: >>> >>>  struct debug_line_info { >>>       unsigned long vma; >>>       unsigned int lineno; >>>       /* The filename format is unspecified, absolute path, >>> relative etc. */ >>>       char const * filename; >>>  }; >>> >>> so I'll add enough informat...