diff --git a/lldb/include/lldb/Core/AddressRange.h b/lldb/include/lldb/Core/AddressRange.h index 2f1fdd5e1bbb9..4a019bfcfc3f4 100644 --- a/lldb/include/lldb/Core/AddressRange.h +++ b/lldb/include/lldb/Core/AddressRange.h @@ -156,6 +156,7 @@ class AddressRange { /// range, \b false otherwise. bool ContainsLoadAddress(lldb::addr_t load_addr, Target *target) const; + //------------------------------------------------------------------ /// Extends this range with \b rhs_range if it overlaps this range on the /// right side. The range overlaps on the right side if the base address /// of \b rhs_range lies within this range or if it's contiguous on its @@ -166,6 +167,7 @@ class AddressRange { /// /// @return /// Returns \b true if this range was extended, \b false otherwise. + //------------------------------------------------------------------ bool Extend(const AddressRange &rhs_range); /// Dump a description of this object to a Stream. diff --git a/lldb/include/lldb/Core/Disassembler.h b/lldb/include/lldb/Core/Disassembler.h index d704cea4c080d..ba9ca87832f6f 100644 --- a/lldb/include/lldb/Core/Disassembler.h +++ b/lldb/include/lldb/Core/Disassembler.h @@ -270,6 +270,7 @@ class InstructionList { lldb::InstructionSP GetInstructionAtIndex(size_t idx) const; + //------------------------------------------------------------------ /// Get the index of the next branch instruction. /// /// Given a list of instructions, find the next branch instruction @@ -291,6 +292,7 @@ class InstructionList { /// The instruction index of the first branch that is at or past /// \a start. Returns UINT32_MAX if no matching branches are /// found. + //------------------------------------------------------------------ uint32_t GetIndexOfNextBranchInstruction(uint32_t start, Target &target, bool ignore_calls) const; diff --git a/lldb/include/lldb/Symbol/Block.h b/lldb/include/lldb/Symbol/Block.h index 54e5ba312e03b..36d0944f12b04 100644 --- a/lldb/include/lldb/Symbol/Block.h +++ b/lldb/include/lldb/Symbol/Block.h @@ -185,6 +185,7 @@ class Block : public UserID, public SymbolContextScope { /// parent. Block *GetInlinedParent(); + //------------------------------------------------------------------ /// Get the inlined block at the given call site that contains this block. /// /// @param[in] find_call_site @@ -196,6 +197,7 @@ class Block : public UserID, public SymbolContextScope { /// it will return this block, otherwise the parent blocks will be /// searched to see if any is at the call site. nullptr will be returned /// if no block is found at the call site. + //------------------------------------------------------------------ Block * GetContainingInlinedBlockWithCallSite(const Declaration &find_call_site);