File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -156,6 +156,7 @@ class AddressRange {
156
156
// / range, \b false otherwise.
157
157
bool ContainsLoadAddress (lldb::addr_t load_addr, Target *target) const ;
158
158
159
+ // ------------------------------------------------------------------
159
160
// / Extends this range with \b rhs_range if it overlaps this range on the
160
161
// / right side. The range overlaps on the right side if the base address
161
162
// / of \b rhs_range lies within this range or if it's contiguous on its
@@ -166,6 +167,7 @@ class AddressRange {
166
167
// /
167
168
// / @return
168
169
// / Returns \b true if this range was extended, \b false otherwise.
170
+ // ------------------------------------------------------------------
169
171
bool Extend (const AddressRange &rhs_range);
170
172
171
173
// / Dump a description of this object to a Stream.
Original file line number Diff line number Diff line change @@ -270,6 +270,7 @@ class InstructionList {
270
270
271
271
lldb::InstructionSP GetInstructionAtIndex (size_t idx) const ;
272
272
273
+ // ------------------------------------------------------------------
273
274
// / Get the index of the next branch instruction.
274
275
// /
275
276
// / Given a list of instructions, find the next branch instruction
@@ -291,6 +292,7 @@ class InstructionList {
291
292
// / The instruction index of the first branch that is at or past
292
293
// / \a start. Returns UINT32_MAX if no matching branches are
293
294
// / found.
295
+ // ------------------------------------------------------------------
294
296
uint32_t GetIndexOfNextBranchInstruction (uint32_t start,
295
297
Target &target,
296
298
bool ignore_calls) const ;
Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ class Block : public UserID, public SymbolContextScope {
185
185
// / parent.
186
186
Block *GetInlinedParent ();
187
187
188
+ // ------------------------------------------------------------------
188
189
// / Get the inlined block at the given call site that contains this block.
189
190
// /
190
191
// / @param[in] find_call_site
@@ -196,6 +197,7 @@ class Block : public UserID, public SymbolContextScope {
196
197
// / it will return this block, otherwise the parent blocks will be
197
198
// / searched to see if any is at the call site. nullptr will be returned
198
199
// / if no block is found at the call site.
200
+ // ------------------------------------------------------------------
199
201
Block *
200
202
GetContainingInlinedBlockWithCallSite (const Declaration &find_call_site);
201
203
You can’t perform that action at this time.
0 commit comments