Commit b6caab63cb
Changed files (1)
src
link
Elf
src/link/Elf/AtomList.zig
@@ -0,0 +1,206 @@
+value: i64 = 0,
+size: u64 = 0,
+alignment: Atom.Alignment = .@"1",
+output_section_index: u32 = 0,
+atoms: std.ArrayListUnmanaged(Elf.Ref) = .{},
+
+pub fn deinit(list: *AtomList, allocator: Allocator) void {
+ list.atoms.deinit(allocator);
+}
+
+pub fn address(list: AtomList, elf_file: *Elf) i64 {
+ const shdr = elf_file.sections.items(.shdr)[list.output_section_index];
+ return @as(i64, @intCast(shdr.sh_addr)) + list.value;
+}
+
+pub fn offset(list: AtomList, elf_file: *Elf) u64 {
+ const shdr = elf_file.sections.items(.shdr)[list.output_section_index];
+ return shdr.sh_offset + @as(u64, @intCast(list.value));
+}
+
+pub fn updateSize(list: *AtomList, elf_file: *Elf) void {
+ for (list.atoms.items) |ref| {
+ const atom_ptr = elf_file.atom(ref).?;
+ assert(atom_ptr.alive);
+ const off = atom_ptr.alignment.forward(list.size);
+ const padding = off - list.size;
+ atom_ptr.value = @intCast(off);
+ list.size += padding + atom_ptr.size;
+ list.alignment = list.alignment.max(atom_ptr.alignment);
+ }
+}
+
+pub fn allocate(list: *AtomList, elf_file: *Elf) !void {
+ const alloc_res = try elf_file.allocateChunk(.{
+ .shndx = list.output_section_index,
+ .size = list.size,
+ .alignment = list.alignment,
+ .requires_padding = false,
+ });
+ list.value = @intCast(alloc_res.value);
+
+ const slice = elf_file.sections.slice();
+ const shdr = &slice.items(.shdr)[list.output_section_index];
+ const last_atom_ref = &slice.items(.last_atom)[list.output_section_index];
+
+ const expand_section = if (elf_file.atom(alloc_res.placement)) |placement_atom|
+ placement_atom.nextAtom(elf_file) == null
+ else
+ true;
+ if (expand_section) last_atom_ref.* = list.lastAtom(elf_file).ref();
+ shdr.sh_addralign = @max(shdr.sh_addralign, list.alignment.toByteUnits().?);
+
+ // FIXME:JK this currently ignores Thunks as valid chunks.
+ {
+ var idx: usize = 0;
+ while (idx < list.atoms.items.len) : (idx += 1) {
+ const curr_atom_ptr = elf_file.atom(list.atoms.items[idx]).?;
+ if (idx > 0) {
+ curr_atom_ptr.prev_atom_ref = list.atoms.items[idx - 1];
+ }
+ if (idx + 1 < list.atoms.items.len) {
+ curr_atom_ptr.next_atom_ref = list.atoms.items[idx + 1];
+ }
+ }
+ }
+
+ if (elf_file.atom(alloc_res.placement)) |placement_atom| {
+ list.firstAtom(elf_file).prev_atom_ref = placement_atom.ref();
+ list.lastAtom(elf_file).next_atom_ref = placement_atom.next_atom_ref;
+ placement_atom.next_atom_ref = list.firstAtom(elf_file).ref();
+ }
+
+ // FIXME:JK if we had a link from Atom to parent AtomList we would not need to update Atom's value or osec index
+ for (list.atoms.items) |ref| {
+ const atom_ptr = elf_file.atom(ref).?;
+ atom_ptr.output_section_index = list.output_section_index;
+ atom_ptr.value += list.value;
+ }
+}
+
+pub fn write(list: AtomList, buffer: *std.ArrayList(u8), undefs: anytype, elf_file: *Elf) !void {
+ const gpa = elf_file.base.comp.gpa;
+ const osec = elf_file.sections.items(.shdr)[list.output_section_index];
+ assert(osec.sh_type != elf.SHT_NOBITS);
+
+ log.debug("writing atoms in section '{s}'", .{elf_file.getShString(osec.sh_name)});
+
+ try buffer.ensureUnusedCapacity(list.size);
+ buffer.appendNTimesAssumeCapacity(0, list.size);
+
+ for (list.atoms.items) |ref| {
+ const atom_ptr = elf_file.atom(ref).?;
+ assert(atom_ptr.alive);
+
+ const off = math.cast(usize, atom_ptr.value - list.value) orelse return error.Overflow;
+ const size = math.cast(usize, atom_ptr.size) orelse return error.Overflow;
+
+ log.debug(" atom({}) at 0x{x}", .{ ref, list.offset(elf_file) + off });
+
+ const object = atom_ptr.file(elf_file).?.object;
+ const code = try object.codeDecompressAlloc(elf_file, ref.index);
+ defer gpa.free(code);
+ const out_code = buffer.items[off..][0..size];
+ @memcpy(out_code, code);
+
+ if (osec.sh_flags & elf.SHF_ALLOC == 0)
+ try atom_ptr.resolveRelocsNonAlloc(elf_file, out_code, undefs)
+ else
+ try atom_ptr.resolveRelocsAlloc(elf_file, out_code);
+ }
+
+ try elf_file.base.file.?.pwriteAll(buffer.items, list.offset(elf_file));
+ buffer.clearRetainingCapacity();
+}
+
+pub fn writeRelocatable(list: AtomList, buffer: *std.ArrayList(u8), elf_file: *Elf) !void {
+ const gpa = elf_file.base.comp.gpa;
+ const osec = elf_file.sections.items(.shdr)[list.output_section_index];
+ assert(osec.sh_type != elf.SHT_NOBITS);
+
+ log.debug("writing atoms in section '{s}'", .{elf_file.getShString(osec.sh_name)});
+
+ try buffer.ensureUnusedCapacity(list.size);
+ buffer.appendNTimesAssumeCapacity(0, list.size);
+
+ for (list.atoms.items) |ref| {
+ const atom_ptr = elf_file.atom(ref).?;
+ assert(atom_ptr.alive);
+
+ const off = math.cast(usize, atom_ptr.value - list.value) orelse return error.Overflow;
+ const size = math.cast(usize, atom_ptr.size) orelse return error.Overflow;
+
+ log.debug(" atom({}) at 0x{x}", .{ ref, list.offset(elf_file) + off });
+
+ const object = atom_ptr.file(elf_file).?.object;
+ const code = try object.codeDecompressAlloc(elf_file, ref.index);
+ defer gpa.free(code);
+ const out_code = buffer.items[off..][0..size];
+ @memcpy(out_code, code);
+ }
+
+ try elf_file.base.file.?.pwriteAll(buffer.items, list.offset(elf_file));
+ buffer.clearRetainingCapacity();
+}
+
+pub fn firstAtom(list: AtomList, elf_file: *Elf) *Atom {
+ assert(list.atoms.items.len > 0);
+ return elf_file.atom(list.atoms.items[0]).?;
+}
+
+pub fn lastAtom(list: AtomList, elf_file: *Elf) *Atom {
+ assert(list.atoms.items.len > 0);
+ return elf_file.atom(list.atoms.items[list.atoms.items.len - 1]).?;
+}
+
+pub fn format(
+ list: AtomList,
+ comptime unused_fmt_string: []const u8,
+ options: std.fmt.FormatOptions,
+ writer: anytype,
+) !void {
+ _ = list;
+ _ = unused_fmt_string;
+ _ = options;
+ _ = writer;
+ @compileError("do not format AtomList directly");
+}
+
+const FormatCtx = struct { AtomList, *Elf };
+
+pub fn fmt(list: AtomList, elf_file: *Elf) std.fmt.Formatter(format2) {
+ return .{ .data = .{ list, elf_file } };
+}
+
+fn format2(
+ ctx: FormatCtx,
+ comptime unused_fmt_string: []const u8,
+ options: std.fmt.FormatOptions,
+ writer: anytype,
+) !void {
+ _ = unused_fmt_string;
+ _ = options;
+ const list, const elf_file = ctx;
+ try writer.print("list : @{x} : shdr({d}) : align({x}) : size({x})", .{
+ list.address(elf_file), list.output_section_index,
+ list.alignment.toByteUnits() orelse 0, list.size,
+ });
+ try writer.writeAll(" : atoms{ ");
+ for (list.atoms.items, 0..) |ref, i| {
+ try writer.print("{}", .{ref});
+ if (i < list.atoms.items.len - 1) try writer.writeAll(", ");
+ }
+ try writer.writeAll(" }");
+}
+
+const assert = std.debug.assert;
+const elf = std.elf;
+const log = std.log.scoped(.link);
+const math = std.math;
+const std = @import("std");
+
+const Allocator = std.mem.Allocator;
+const Atom = @import("Atom.zig");
+const AtomList = @This();
+const Elf = @import("../Elf.zig");
+const Object = @import("Object.zig");