[Lldb-commits] [PATCH] D133042: Add auto deduce source map setting

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 15 16:50:06 PDT 2022


clayborg added inline comments.


================
Comment at: lldb/source/Breakpoint/BreakpointResolverFileLine.cpp:225
+  const bool case_sensitive = request_file.IsCaseSensitive();
+  const bool full = !request_file.GetDirectory().IsEmpty();
+  for (uint32_t i = 0; i < sc_list.GetSize(); ++i) {
----------------
yinghuitan wrote:
> clayborg wrote:
> > If the directory is empty on the requested file, should we be doing anything here? Can we early return?
> This should be handled by check at line 221, right? If `request_file.GetDirectory().IsEmpty()` then `request_file.IsRelative()` should be true and early return already?
Then you can just set full to true all the time then right?


================
Comment at: lldb/source/Target/Target.cpp:405
   BreakpointResolverSP resolver_sp(new BreakpointResolverFileLine(
-      nullptr, offset, skip_prologue, location_spec));
+      nullptr, offset, skip_prologue, location_spec, removed_prefix_opt));
   return CreateBreakpoint(filter_sp, resolver_sp, internal, hardware, true);
----------------
yinghuitan wrote:
> clayborg wrote:
> > The breakpoint is initialized with NULL here. Does it get set to something valid before we try to use it somehow? I am worried we won't be able to get a target from the BreakpointResolver's stored breakpoint????
> It is initialized as nullptr here but `CreateBreakpoint()` call in next line will call `BreakpointResolver::SetBreakpoint()` to initialize it. Actually in `BreakpointResolver::GetBreakpoint()` explicitly has an assertion to ensure it can't be nullptr so I assume we should be safe here. 
> 
Sounds good. I looked around the code. Looks like the breakpoint in the constructor is used for the "create from StructuredData".


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D133042/new/

https://reviews.llvm.org/D133042



More information about the lldb-commits mailing list