]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[gdb/symtab] Refactor condition in scan_attributes
authorTom de Vries <tdevries@suse.de>
Mon, 11 Dec 2023 14:41:26 +0000 (15:41 +0100)
committerTom Tromey <tom@tromey.com>
Tue, 16 Apr 2024 17:54:46 +0000 (11:54 -0600)
In scan_attributes there's code:
...
  if (new_reader->cu == reader->cu
      && new_info_ptr > watermark_ptr
      && *parent_entry == nullptr)
    ...
  else if (*parent_entry == nullptr)
    ...
...
that uses the "*parent_entry == nullptr" condition twice.

Make this somewhat more readable by factoring out the condition:
...
  if (*parent_entry == nullptr)
    {
      if (new_reader->cu == reader->cu
  && new_info_ptr > watermark_ptr)
...
      else
...
    }
...

This also allows us to factor out "form_addr (origin_offset, origin_is_dwz)".

Tested on x86_64-linux.

gdb/dwarf2/read.c

index b029c49a339988388936acdddf350cc118b4a5df..4c97fe123078e6c95afbab9835a29ddec9ae0aa0 100644 (file)
@@ -16266,15 +16266,17 @@ cooked_indexer::scan_attributes (dwarf2_per_cu_data *scanning_per_cu,
          const gdb_byte *new_info_ptr = (new_reader->buffer
                                          + to_underlying (origin_offset));
 
-         if (new_reader->cu == reader->cu
-             && new_info_ptr > watermark_ptr
-             && *parent_entry == nullptr)
-           *maybe_defer = form_addr (origin_offset, origin_is_dwz);
-         else if (*parent_entry == nullptr)
+         if (*parent_entry == nullptr)
            {
-             CORE_ADDR lookup = form_addr (origin_offset, origin_is_dwz);
-             void *obj = m_die_range_map.find (lookup);
-             *parent_entry = static_cast <cooked_index_entry *> (obj);
+             CORE_ADDR addr = form_addr (origin_offset, origin_is_dwz);
+             if (new_reader->cu == reader->cu
+                 && new_info_ptr > watermark_ptr)
+               *maybe_defer = addr;
+             else
+               {
+                 void *obj = m_die_range_map.find (addr);
+                 *parent_entry = static_cast <cooked_index_entry *> (obj);
+               }
            }
 
          unsigned int bytes_read;