struct compunit_symtab *compunit_symtab;
};
-/* Number of ranges within a block. */
-
-#define BLOCK_NRANGES(bl) (bl)->ranges ().size ()
-
/* Access range array for block BL. */
#define BLOCK_RANGE(bl) (bl)->ranges ().data ()
}
else
{
- int i;
- for (i = 0; i < BLOCK_NRANGES (b); i++)
+ bool found = false;
+ for (const blockrange &range : b->ranges ())
{
- if (BLOCK_RANGE (b)[i].start () <= mapped_pc
- && mapped_pc < BLOCK_RANGE (b)[i].end ())
+ if (range.start () <= mapped_pc && mapped_pc < range.end ())
{
- cache_pc_function_low = BLOCK_RANGE (b)[i].start ();
- cache_pc_function_high = BLOCK_RANGE (b)[i].end ();
+ cache_pc_function_low = range.start ();
+ cache_pc_function_high = range.end ();
+ found = true;
break;
}
}
/* Above loop should exit via the break. */
- gdb_assert (i < BLOCK_NRANGES (b));
+ gdb_assert (found);
}
{
CORE_ADDR entry_pc = BLOCK_ENTRY_PC (block);
- for (int i = 0; i < BLOCK_NRANGES (block); i++)
+ for (const blockrange &range : block->ranges ())
{
- if (BLOCK_RANGE (block)[i].start () <= entry_pc
- && entry_pc < BLOCK_RANGE (block)[i].end ())
+ if (range.start () <= entry_pc && entry_pc < range.end ())
{
if (address != nullptr)
- *address = BLOCK_RANGE (block)[i].start ();
+ *address = range.start ();
if (endaddr != nullptr)
- *endaddr = BLOCK_RANGE (block)[i].end ();
+ *endaddr = range.end ();
return status;
}
}
else
{
- for (int i = 0; i < BLOCK_NRANGES (block); i++)
+ for (const blockrange &range : block->ranges ())
{
- CORE_ADDR range_low = BLOCK_RANGE (block)[i].start ();
- CORE_ADDR range_high = BLOCK_RANGE (block)[i].end ();
+ CORE_ADDR range_low = range.start ();
+ CORE_ADDR range_high = range.end ();
+
gdb_printf (_("Address range %ps to %ps:\n"),
styled_string (address_style.style (),
paddress (gdbarch, range_low)),