Use bool in pc_in_* functions
authorTom Tromey <tom@tromey.com>
Wed, 18 Jan 2023 23:36:52 +0000 (16:36 -0700)
committerTom Tromey <tom@tromey.com>
Fri, 20 Jan 2023 18:02:23 +0000 (11:02 -0700)
I noticed that pc_in_unmapped_range had a weird return type -- it was
returning a CORE_ADDR but intending to return a bool.  This patch
changes all the pc_in_* functions to return bool instead.

gdb/gdbthread.h
gdb/objfiles.c
gdb/objfiles.h
gdb/symfile.c
gdb/symfile.h
gdb/thread.c

index 11d69fceab01ff26fd27ca6362ba8680da157972..c0f27a8a66effdfccb02a8e173d9be5c3845e163 100644 (file)
@@ -892,7 +892,7 @@ extern void delete_exited_threads (void);
 
 /* Return true if PC is in the stepping range of THREAD.  */
 
-int pc_in_thread_step_range (CORE_ADDR pc, struct thread_info *thread);
+bool pc_in_thread_step_range (CORE_ADDR pc, struct thread_info *thread);
 
 /* Enable storing stack temporaries for thread THR and disable and
    clear the stack temporaries on destruction.  Holds a strong
index 8e920c726f5f06f44901886fd59b3c0e253ed3d2..e4fe3562c12cecb2d58e5312d14d6c55b129a64c 100644 (file)
@@ -1208,18 +1208,13 @@ find_pc_section (CORE_ADDR pc)
 
 /* Return non-zero if PC is in a section called NAME.  */
 
-int
+bool
 pc_in_section (CORE_ADDR pc, const char *name)
 {
-  struct obj_section *s;
-  int retval = 0;
-
-  s = find_pc_section (pc);
-
-  retval = (s != NULL
-           && s->the_bfd_section->name != NULL
-           && strcmp (s->the_bfd_section->name, name) == 0);
-  return (retval);
+  struct obj_section *s = find_pc_section (pc);
+  return (s != nullptr
+         && s->the_bfd_section->name != nullptr
+         && strcmp (s->the_bfd_section->name, name) == 0);
 }
 \f
 
index 3b0f94197ff7ffe4b7fe9c11fde3a9df0a9539be..342aa09ac6afe23bc82181f2a1b6ee449a814ecc 100644 (file)
@@ -891,8 +891,8 @@ extern int have_minimal_symbols (void);
 
 extern struct obj_section *find_pc_section (CORE_ADDR pc);
 
-/* Return non-zero if PC is in a section called NAME.  */
-extern int pc_in_section (CORE_ADDR, const char *);
+/* Return true if PC is in a section called NAME.  */
+extern bool pc_in_section (CORE_ADDR, const char *);
 
 /* Return non-zero if PC is in a SVR4-style procedure linkage table
    section.  */
index 3e1aa40531944f4306324b6ad23c47be8003e1cb..181f859052a7aa79518904ad0238d77d0a816eea 100644 (file)
@@ -3022,7 +3022,7 @@ section_is_mapped (struct obj_section *osect)
 /* Function: pc_in_unmapped_range
    If PC falls into the lma range of SECTION, return true, else false.  */
 
-CORE_ADDR
+bool
 pc_in_unmapped_range (CORE_ADDR pc, struct obj_section *section)
 {
   if (section_is_overlay (section))
@@ -3035,26 +3035,26 @@ pc_in_unmapped_range (CORE_ADDR pc, struct obj_section *section)
 
       if (bfd_section_lma (bfd_section) + offset <= pc
          && pc < bfd_section_lma (bfd_section) + offset + size)
-       return 1;
+       return true;
     }
 
-  return 0;
+  return false;
 }
 
 /* Function: pc_in_mapped_range
    If PC falls into the vma range of SECTION, return true, else false.  */
 
-CORE_ADDR
+bool
 pc_in_mapped_range (CORE_ADDR pc, struct obj_section *section)
 {
   if (section_is_overlay (section))
     {
       if (section->addr () <= pc
          && pc < section->endaddr ())
-       return 1;
+       return true;
     }
 
-  return 0;
+  return false;
 }
 
 /* Return true if the mapped ranges of sections A and B overlap, false
index fb5fda795e328652d69ff1427d6848c7afc73ca6..81cf80d8719ac98a9e55421e41cc85bf68952f94 100644 (file)
@@ -296,10 +296,10 @@ extern int section_is_overlay (struct obj_section *);
 extern int section_is_mapped (struct obj_section *);
 
 /* Return true if pc belongs to section's VMA.  */
-extern CORE_ADDR pc_in_mapped_range (CORE_ADDR, struct obj_section *);
+extern bool pc_in_mapped_range (CORE_ADDR, struct obj_section *);
 
 /* Return true if pc belongs to section's LMA.  */
-extern CORE_ADDR pc_in_unmapped_range (CORE_ADDR, struct obj_section *);
+extern bool pc_in_unmapped_range (CORE_ADDR, struct obj_section *);
 
 /* Map an address from a section's LMA to its VMA.  */
 extern CORE_ADDR overlay_mapped_address (CORE_ADDR, struct obj_section *);
index 3ce7048035d321e945965c079f45c58fe39cbdb5..efcbe6496431a84ddf6eed4edc08d61c3cdb5c2c 100644 (file)
@@ -968,7 +968,7 @@ can_access_registers_thread (thread_info *thread)
   return true;
 }
 
-int
+bool
 pc_in_thread_step_range (CORE_ADDR pc, struct thread_info *thread)
 {
   return (pc >= thread->control.step_range_start