| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
[LLDB] Add a child property to compliment the existing parent property (#168619) I've been working on some scripts that evaluate the parent and child frame. It's been very annoying that the parent frame has a property but not the child. So I've added this to the extensions, I would've preferred to return None, but because the existing impl returns an invalid SBFrame, so I'm conforming to that API. `` (lldb) script Python Interactive Interpreter. To exit, type 'quit()', 'exit()' or Ctrl-D. >>> lldb.frame frame #0: 0x0000555555555200 fib.outmain >>> lldb.frame.parent frame #1: 0x00007ffff782a610 libc.so.6__libc_start_call_main + 128 >>> lldb.frame.parent.child frame #0: 0x0000555555555200 fib.outmain ``` | 8 个月前 | |
| 8 个月前 | ||
| 8 个月前 | ||
[lldb] Include SBLanguages in the SWIG bindings (#92470) | 2 年前 | |
[lldb] Avoid having to list all the headers in headers.swig (#131934) When adding SBLock, I realized you always have to add a new header in two places: LLDB.h and headers.swig. I can't think of a reason the latter can't use the umbrella header and avoid the duplication. | 1 年前 | |
[lldb] Introduce SBFrameList for lazy frame iteration (#166651) This patch introduces SBFrameList, a new SBAPI class that allows iterating over stack frames lazily without calling SBThread::GetFrameAtIndex in a loop. The new SBThread::GetFrames() method returns an SBFrameList that supports Python iteration (for frame in frame_list:), indexing (frame_list[0], frame_list[-1]), and length queries (len()). The implementation uses StackFrameListSP as the opaque pointer, sharing the thread's underlying frame list to ensure frames are materialized on-demand. This is particularly useful for ScriptedFrameProviders, where user scripts will be to iterate, filter, and replace frames lazily without materializing the entire stack upfront. Signed-off-by: Med Ismail Bennani <ismail@bennani.ma> | 8 个月前 | |
[lldb][NFCI] Remove unused swig macros These should have been removed in 662548c82683. | 3 年前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 8 个月前 | ||
| 8 个月前 | ||
| 8 个月前 | ||
| 2 年前 | ||
| 1 年前 | ||
| 8 个月前 | ||
| 3 年前 |