summaryrefslogtreecommitdiff
path: root/bxgen.c
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2024-07-24 16:08:26 +0200
committerMitya Selivanov <automainint@guattari.tech>2024-07-24 16:08:26 +0200
commite7d395dfd16f44ce4bbc4c99b173f93c8c6fb96f (patch)
tree3f50ff1110c6149515a59ed420c850492f99dca7 /bxgen.c
parent6a213202a41d744464ba7f19ce4781beb3e8fef8 (diff)
downloadbxgen-e7d395dfd16f44ce4bbc4c99b173f93c8c6fb96f.zip
Cleanup
Diffstat (limited to 'bxgen.c')
-rwxr-xr-xbxgen.c35
1 files changed, 24 insertions, 11 deletions
diff --git a/bxgen.c b/bxgen.c
index bf0eda7..4234631 100755
--- a/bxgen.c
+++ b/bxgen.c
@@ -2423,16 +2423,29 @@ void unit_write(Pool *pool, i64 unit, u16 target, i64 io_out, void *io_user_data
.address = relx.symbol.value.offset,
};
- i64 A = relx.addent; // Represents the addend used to compute the value of the relocatable field.
- i64 B = pool->section_addresses[dst_index]; // Represents the base address at which a shared object has been loaded into memory during execution. Generally, a shared object is built with a 0 base virtual address, but the execution address will be different.
- i64 G = symbol.address - base_address - data_offset; // Represents the offset into the global offset table at which the relocation entry's symbol will reside during execution.
- i64 GOT = base_address + data_offset; // Represents the address of the global offset table.
- i64 L = base_address + data_offset; // Represents the place (section offset or address) of the Procedure Linkage Table entry for a symbol.
- i64 P = pool->section_addresses[dst_index] + relx.offset; // Represents the place (section offset or address) of the storage unit being relocated (computed using r_offset).
- i64 S = symbol.address; // Represents the value of the symbol whose index resides in the relocation entry.
-
u8 *dst = buf.begin + elf_section(buf, dst_index).data.offset + relx.offset;
+ // Represents the addend used to compute the value of the relocatable field.
+ i64 A = relx.addent;
+
+ // Represents the base address at which a shared object has been loaded into memory during execution. Generally, a shared object is built with a 0 base virtual address, but the execution address will be different.
+ i64 B = pool->section_addresses[dst_index];
+
+ // Represents the offset into the global offset table at which the relocation entry's symbol will reside during execution.
+ i64 G = symbol.address - base_address - data_offset;
+
+ // Represents the address of the global offset table.
+ i64 GOT = base_address + data_offset;
+
+ // Represents the place (section offset or address) of the Procedure Linkage Table entry for a symbol.
+ i64 L = base_address + data_offset;
+
+ // Represents the place (section offset or address) of the storage unit being relocated (computed using r_offset).
+ i64 P = pool->section_addresses[dst_index] + relx.offset;
+
+ // Represents the value of the symbol whose index resides in the relocation entry.
+ i64 S = symbol.address;
+
switch (relx.type) {
#define ADD_(BITS, OP) \
do { \
@@ -2442,16 +2455,16 @@ void unit_write(Pool *pool, i64 unit, u16 target, i64 io_out, void *io_user_data
#define TODO_ BX_FAIL("Not implemented",)
- case R_X86_64_NONE: /* do nothing */ break;
+ case R_X86_64_NONE: /* Do nothing */ break;
case R_X86_64_64: ADD_(64, S + A); break;
case R_X86_64_PC32: ADD_(32, S + A - P); break;
case R_X86_64_GOT32: ADD_(32, G + A); break;
case R_X86_64_PLT32: ADD_(32, L + A - P); break;
- case R_X86_64_COPY: /* do nothing */ break;
+ case R_X86_64_COPY: /* Do nothing */ break;
case R_X86_64_GLOB_DAT: ADD_(64, S); break;
case R_X86_64_JUMP_SLOT: ADD_(64, S); break;
case R_X86_64_RELATIVE: ADD_(64, B + A); break;
- case R_X86_64_GOTPCREL: ADD_(64, G + GOT + A - P); break;
+ case R_X86_64_GOTPCREL: ADD_(32, G + GOT + A - P); break;
case R_X86_64_32: ADD_(32, S + A); break;
case R_X86_64_32S: ADD_(32, S + A); break;
case R_X86_64_16: ADD_(16, S + A); break;