Displaying 2 results from an estimated 2 matches for "createmcjitdebuginfoparser".
2014 Aug 12
3
[LLVMdev] MCJIT debugger registration interface.
...that wrap this class to parse the contained debug info.
My intent is that use of this API would look something like:
ExecutionEngine EE = ...;
DebugInfoListener DI = new DebugInfoListener(...);
EE->addEventListener(DI);
EE->addModule(Foo);
EE->addModule(Bar);
MCJITDebugInfoParser DIP = createMCJITDebugInfoParser(DI);
DIP...;
Any thoughts/comments on this (admittedly very vague) proposal are very welcome. Assuming it sounds reasonable so far, I'm going to start hacking up some patches and basic use cases to serve as a basis for further discussion (and a tutorial if the eventual proposal is adopted).
C...
2014 Aug 11
2
[LLVMdev] MCJIT debugger registration interface.
On Sun, Aug 10, 2014 at 3:37 PM, Filip Pizlo <fpizlo at apple.com> wrote:
>
>
>> On Aug 10, 2014, at 3:07 PM, Eric Christopher <echristo at gmail.com> wrote:
>>
>>> On Sun, Aug 10, 2014 at 1:43 PM, Filip Pizlo <fpizlo at apple.com> wrote:
>>> I think this ignores the real problem with the MCJIT debugging interface: it doesn't give MCJIT