Skip to content

Commit

Permalink
le: Comments and warning/debug messages added
Browse files Browse the repository at this point in the history
No impact on program flow.
  • Loading branch information
mefistotelis committed Jan 10, 2024
1 parent d330481 commit 9aa7967
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/le.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ LinearExecutable::Loader::load_fixup_record_offsets (void)
size_t n;
istream *is = this->is;

// The additional +1 record indicates the end of the Fixup Record Table
this->fixup_record_offsets.resize (this->le->header.page_count + 1);
is->seekg (this->header_offset
+ this->le->header.fixup_page_table_offset);
Expand Down Expand Up @@ -444,6 +445,10 @@ LinearExecutable::Loader::load_fixup_record_pages (size_t oi)
for (n = obj->first_page_index;
n < obj->first_page_index + obj->page_count; n++)
{
#ifdef DEBUG
// print object indices starting from 1 as defined by LE format
std::cerr << "Loading fixups for object " << oi + 1 << " page " << n << "." << std::endl;
#endif
offset = this->header_offset
+ this->le->header.fixup_record_table_offset
+ this->fixup_record_offsets[n];
Expand All @@ -457,6 +462,10 @@ LinearExecutable::Loader::load_fixup_record_pages (size_t oi)
{
if (end - offset < 2)
return false;
#ifdef DEBUG
std::cerr << "Loading fixup 0x" << std::hex << offset << " at page " << std::dec << n <<
"/" << obj->page_count << ", offset 0x" << std::hex << offset << ": ";
#endif

read_u8 (is, &addr_flags);
read_u8 (is, &reloc_flags);
Expand All @@ -483,6 +492,11 @@ LinearExecutable::Loader::load_fixup_record_pages (size_t oi)
<< (reloc_flags & 0x03) << ".\n";
}

if ((reloc_flags & 0x40) != 0) /* 16-bit Object Number/Module Ordinal Flag */
{
cerr << "16-bit object or module ordinal numbers are not supported.\n";
}

offset += 2;

if (end - offset < 3)
Expand Down Expand Up @@ -528,6 +542,9 @@ LinearExecutable::Loader::load_fixup_record_pages (size_t oi)
fixup.address = this->le->objects[obj_index].base_address
+ dst_off_32;

#ifdef DEBUG
std::cerr << "0x" << fixup.offset << " -> 0x" << fixup.address << std::endl;
#endif
this->le->fixups[oi][fixup.offset] = fixup;
this->le->fixup_addresses.insert (fixup.address);
}
Expand Down

0 comments on commit 9aa7967

Please sign in to comment.