| ... | @@ -1,12 +1,28 @@ | ... | @@ -1,12 +1,28 @@ |
| 1 | index: File.Index, | 1 | index: File.Index, |
| 2 | | 2 | |
| 3 | sections: std.MultiArrayList(Section) = .{}, | 3 | sections: std.MultiArrayList(Section) = .{}, |
| 4 | atoms: std.ArrayListUnmanaged(Atom.Index) = .{}, | 4 | atoms: std.ArrayListUnmanaged(Atom) = .{}, |
| 5 | symbols: std.ArrayListUnmanaged(Symbol.Index) = .{}, | 5 | atoms_indexes: std.ArrayListUnmanaged(Atom.Index) = .{}, |
| | 6 | atoms_extra: std.ArrayListUnmanaged(u32) = .{}, |
| | 7 | symtab: std.ArrayListUnmanaged(macho.nlist_64) = .{}, |
| | 8 | strtab: std.ArrayListUnmanaged(u8) = .{}, |
| | 9 | symbols: std.ArrayListUnmanaged(Symbol) = .{}, |
| | 10 | symbols_extra: std.ArrayListUnmanaged(u32) = .{}, |
| | 11 | globals: std.ArrayListUnmanaged(MachO.SymbolResolver.Index) = .{}, |
| 6 | | 12 | |
| 7 | objc_methnames: std.ArrayListUnmanaged(u8) = .{}, | 13 | objc_methnames: std.ArrayListUnmanaged(u8) = .{}, |
| 8 | objc_selrefs: [@sizeOf(u64)]u8 = [_]u8{0} ** @sizeOf(u64), | 14 | objc_selrefs: [@sizeOf(u64)]u8 = [_]u8{0} ** @sizeOf(u64), |
| 9 | | 15 | |
| | 16 | force_undefined: std.ArrayListUnmanaged(Symbol.Index) = .{}, |
| | 17 | entry_index: ?Symbol.Index = null, |
| | 18 | dyld_stub_binder_index: ?Symbol.Index = null, |
| | 19 | dyld_private: ?Symbol.Index = null, |
| | 20 | objc_msg_send_index: ?Symbol.Index = null, |
| | 21 | mh_execute_header_index: ?Symbol.Index = null, |
| | 22 | mh_dylib_header_index: ?Symbol.Index = null, |
| | 23 | dso_handle_index: ?Symbol.Index = null, |
| | 24 | boundary_symbols: std.ArrayListUnmanaged(Symbol.Index) = .{}, |
| | 25 | |
| 10 | output_symtab_ctx: MachO.SymtabCtx = .{}, | 26 | output_symtab_ctx: MachO.SymtabCtx = .{}, |
| 11 | | 27 | |
| 12 | pub fn deinit(self: *InternalObject, allocator: Allocator) void { | 28 | pub fn deinit(self: *InternalObject, allocator: Allocator) void { |
| ... | @@ -15,39 +31,224 @@ pub fn deinit(self: *InternalObject, allocator: Allocator) void { | ... | @@ -15,39 +31,224 @@ pub fn deinit(self: *InternalObject, allocator: Allocator) void { |
| 15 | } | 31 | } |
| 16 | self.sections.deinit(allocator); | 32 | self.sections.deinit(allocator); |
| 17 | self.atoms.deinit(allocator); | 33 | self.atoms.deinit(allocator); |
| | 34 | self.atoms_indexes.deinit(allocator); |
| | 35 | self.atoms_extra.deinit(allocator); |
| | 36 | self.symtab.deinit(allocator); |
| | 37 | self.strtab.deinit(allocator); |
| 18 | self.symbols.deinit(allocator); | 38 | self.symbols.deinit(allocator); |
| | 39 | self.symbols_extra.deinit(allocator); |
| | 40 | self.globals.deinit(allocator); |
| 19 | self.objc_methnames.deinit(allocator); | 41 | self.objc_methnames.deinit(allocator); |
| | 42 | self.force_undefined.deinit(allocator); |
| | 43 | self.boundary_symbols.deinit(allocator); |
| | 44 | } |
| | 45 | |
| | 46 | pub fn init(self: *InternalObject, allocator: Allocator) !void { |
| | 47 | // Atom at index 0 is reserved as null atom. |
| | 48 | try self.atoms.append(allocator, .{}); |
| | 49 | try self.atoms_extra.append(allocator, 0); |
| | 50 | // Null byte in strtab |
| | 51 | try self.strtab.append(allocator, 0); |
| 20 | } | 52 | } |
| 21 | | 53 | |
| 22 | pub fn addSymbol(self: *InternalObject, name: [:0]const u8, macho_file: *MachO) !Symbol.Index { | 54 | pub fn initSymbols(self: *InternalObject, macho_file: *MachO) !void { |
| | 55 | const createSymbol = struct { |
| | 56 | fn createSymbol(obj: *InternalObject, name: u32, args: struct { |
| | 57 | type: u8 = macho.N_UNDF | macho.N_EXT, |
| | 58 | desc: u16 = 0, |
| | 59 | }) Symbol.Index { |
| | 60 | const index = obj.addSymbolAssumeCapacity(); |
| | 61 | const symbol = &obj.symbols.items[index]; |
| | 62 | symbol.name = name; |
| | 63 | symbol.extra = obj.addSymbolExtraAssumeCapacity(.{}); |
| | 64 | symbol.flags.dyn_ref = args.desc & macho.REFERENCED_DYNAMICALLY != 0; |
| | 65 | symbol.visibility = if (args.type & macho.N_EXT != 0) blk: { |
| | 66 | break :blk if (args.type & macho.N_PEXT != 0) .hidden else .global; |
| | 67 | } else .local; |
| | 68 | |
| | 69 | const nlist_idx: u32 = @intCast(obj.symtab.items.len); |
| | 70 | const nlist = obj.symtab.addOneAssumeCapacity(); |
| | 71 | nlist.* = .{ |
| | 72 | .n_strx = name, |
| | 73 | .n_type = args.type, |
| | 74 | .n_sect = 0, |
| | 75 | .n_desc = args.desc, |
| | 76 | .n_value = 0, |
| | 77 | }; |
| | 78 | symbol.nlist_idx = nlist_idx; |
| | 79 | return index; |
| | 80 | } |
| | 81 | }.createSymbol; |
| | 82 | |
| 23 | const gpa = macho_file.base.comp.gpa; | 83 | const gpa = macho_file.base.comp.gpa; |
| 24 | try self.symbols.ensureUnusedCapacity(gpa, 1); | 84 | var nsyms = macho_file.base.comp.force_undefined_symbols.keys().len; |
| 25 | const off = try macho_file.strings.insert(gpa, name); | 85 | nsyms += 1; // dyld_stub_binder |
| 26 | const gop = try macho_file.getOrCreateGlobal(off); | 86 | nsyms += 1; // _objc_msgSend |
| 27 | self.symbols.addOneAssumeCapacity().* = gop.index; | 87 | if (!macho_file.base.isDynLib()) { |
| 28 | const sym = macho_file.getSymbol(gop.index); | 88 | nsyms += 1; // entry |
| 29 | sym.file = self.index; | 89 | nsyms += 1; // __mh_execute_header |
| 30 | sym.value = 0; | 90 | } else { |
| 31 | sym.atom = 0; | 91 | nsyms += 1; // __mh_dylib_header |
| 32 | sym.nlist_idx = 0; | 92 | } |
| 33 | sym.flags = .{ .global = true }; | 93 | nsyms += 1; // ___dso_handle |
| 34 | return gop.index; | 94 | nsyms += 1; // dyld_private |
| | 95 | |
| | 96 | try self.symbols.ensureTotalCapacityPrecise(gpa, nsyms); |
| | 97 | try self.symbols_extra.ensureTotalCapacityPrecise(gpa, nsyms * @sizeOf(Symbol.Extra)); |
| | 98 | try self.symtab.ensureTotalCapacityPrecise(gpa, nsyms); |
| | 99 | try self.globals.ensureTotalCapacityPrecise(gpa, nsyms); |
| | 100 | self.globals.resize(gpa, nsyms) catch unreachable; |
| | 101 | @memset(self.globals.items, 0); |
| | 102 | |
| | 103 | try self.force_undefined.ensureTotalCapacityPrecise(gpa, macho_file.base.comp.force_undefined_symbols.keys().len); |
| | 104 | for (macho_file.base.comp.force_undefined_symbols.keys()) |name| { |
| | 105 | self.force_undefined.addOneAssumeCapacity().* = createSymbol(self, try self.addString(gpa, name), .{}); |
| | 106 | } |
| | 107 | |
| | 108 | self.dyld_stub_binder_index = createSymbol(self, try self.addString(gpa, "dyld_stub_binder"), .{}); |
| | 109 | self.objc_msg_send_index = createSymbol(self, try self.addString(gpa, "_objc_msgSend"), .{}); |
| | 110 | |
| | 111 | if (!macho_file.base.isDynLib()) { |
| | 112 | self.entry_index = createSymbol(self, try self.addString(gpa, macho_file.entry_name orelse "_main"), .{}); |
| | 113 | self.mh_execute_header_index = createSymbol(self, try self.addString(gpa, "__mh_execute_header"), .{ |
| | 114 | .type = macho.N_SECT | macho.N_EXT, |
| | 115 | .desc = macho.REFERENCED_DYNAMICALLY, |
| | 116 | }); |
| | 117 | } else { |
| | 118 | self.mh_dylib_header_index = createSymbol(self, try self.addString(gpa, "__mh_dylib_header"), .{ |
| | 119 | .type = macho.N_SECT | macho.N_EXT, |
| | 120 | }); |
| | 121 | } |
| | 122 | |
| | 123 | self.dso_handle_index = createSymbol(self, try self.addString(gpa, "___dso_handle"), .{ |
| | 124 | .type = macho.N_SECT | macho.N_EXT, |
| | 125 | }); |
| | 126 | self.dyld_private_index = createSymbol(self, try self.addString(gpa, "dyld_private"), .{ |
| | 127 | .type = macho.N_SECT, |
| | 128 | }); |
| 35 | } | 129 | } |
| 36 | | 130 | |
| 37 | /// Creates a fake input sections __TEXT,__objc_methname and __DATA,__objc_selrefs. | 131 | pub fn resolveSymbols(self: *InternalObject, macho_file: *MachO) !void { |
| 38 | pub fn addObjcMsgsendSections(self: *InternalObject, sym_name: []const u8, macho_file: *MachO) !Atom.Index { | 132 | const tracy = trace(@src()); |
| 39 | const methname_atom_index = try self.addObjcMethnameSection(sym_name, macho_file); | 133 | defer tracy.end(); |
| 40 | return try self.addObjcSelrefsSection(methname_atom_index, macho_file); | 134 | |
| | 135 | const gpa = macho_file.base.comp.gpa; |
| | 136 | |
| | 137 | for (self.symtab.items, self.globals.items, 0..) |nlist, *global, i| { |
| | 138 | const gop = try macho_file.resolver.getOrPut(gpa, .{ |
| | 139 | .index = @intCast(i), |
| | 140 | .file = self.index, |
| | 141 | }, macho_file); |
| | 142 | if (!gop.found_existing) { |
| | 143 | gop.ref.* = .{ .index = 0, .file = 0 }; |
| | 144 | } |
| | 145 | global.* = gop.index; |
| | 146 | |
| | 147 | if (nlist.undf()) continue; |
| | 148 | if (gop.ref.getFile(macho_file) == null) { |
| | 149 | gop.ref.* = .{ .index = @intCast(i), .file = self.index }; |
| | 150 | continue; |
| | 151 | } |
| | 152 | |
| | 153 | if (self.asFile().getSymbolRank(.{ |
| | 154 | .archive = false, |
| | 155 | .weak = false, |
| | 156 | .tentative = false, |
| | 157 | }) < gop.ref.getSymbol(macho_file).?.getSymbolRank(macho_file)) { |
| | 158 | gop.ref.* = .{ .index = @intCast(i), .file = self.index }; |
| | 159 | } |
| | 160 | } |
| 41 | } | 161 | } |
| 42 | | 162 | |
| 43 | fn addObjcMethnameSection(self: *InternalObject, methname: []const u8, macho_file: *MachO) !Atom.Index { | 163 | pub fn resolveBoundarySymbols(self: *InternalObject, macho_file: *MachO) !void { |
| | 164 | const tracy = trace(@src()); |
| | 165 | defer tracy.end(); |
| | 166 | |
| 44 | const gpa = macho_file.base.comp.gpa; | 167 | const gpa = macho_file.base.comp.gpa; |
| 45 | const atom_index = try macho_file.addAtom(); | 168 | var boundary_symbols = std.StringArrayHashMap(MachO.Ref).init(gpa); |
| 46 | try self.atoms.append(gpa, atom_index); | 169 | defer boundary_symbols.deinit(); |
| | 170 | |
| | 171 | for (macho_file.objects.items) |index| { |
| | 172 | const object = macho_file.getFile(index).?.object; |
| | 173 | for (object.symbols.items, 0..) |sym, i| { |
| | 174 | const nlist = object.symtab.items(.nlist)[i]; |
| | 175 | if (!nlist.undf() or !nlist.ext()) continue; |
| | 176 | const ref = object.getSymbolRef(@intCast(i), macho_file); |
| | 177 | if (ref.getFile(macho_file) != null) continue; |
| | 178 | const name = sym.getName(macho_file); |
| | 179 | if (mem.startsWith(u8, name, "segment$start$") or |
| | 180 | mem.startsWith(u8, name, "segment$stop$") or |
| | 181 | mem.startsWith(u8, name, "section$start$") or |
| | 182 | mem.startsWith(u8, name, "section$stop$")) |
| | 183 | { |
| | 184 | const gop = try boundary_symbols.getOrPut(name); |
| | 185 | if (!gop.found_existing) { |
| | 186 | gop.value_ptr.* = .{ .index = @intCast(i), .file = index }; |
| | 187 | } |
| | 188 | } |
| | 189 | } |
| | 190 | } |
| | 191 | |
| | 192 | const nsyms = boundary_symbols.values().len; |
| | 193 | try self.boundary_symbols.ensureTotalCapacityPrecise(gpa, nsyms); |
| | 194 | try self.symbols.ensureUnusedCapacity(gpa, nsyms); |
| | 195 | try self.symtab.ensureUnusedCapacity(gpa, nsyms); |
| | 196 | try self.symbols_extra.ensureUnusedCapacity(gpa, nsyms * @sizeOf(Symbol.Extra)); |
| | 197 | try self.globals.ensureUnusedCapacity(gpa, nsyms); |
| | 198 | |
| | 199 | for (boundary_symbols.keys(), boundary_symbols.values()) |name, ref| { |
| | 200 | const name_off = try self.addString(gpa, name); |
| | 201 | const sym_index = self.addSymbolAssumeCapacity(); |
| | 202 | self.boundary_symbols.appendAssumeCapacity(sym_index); |
| | 203 | const sym = &self.symbols.items[sym_index]; |
| | 204 | sym.name = name_off; |
| | 205 | sym.visibility = .local; |
| | 206 | const nlist_idx: u32 = @intCast(self.symtab.items.len); |
| | 207 | const nlist = self.symtab.addOneAssumeCapacity(); |
| | 208 | nlist.* = .{ |
| | 209 | .n_strx = name_off.pos, |
| | 210 | .n_type = macho.N_SECT, |
| | 211 | .n_sect = 0, |
| | 212 | .n_desc = 0, |
| | 213 | .n_value = 0, |
| | 214 | }; |
| | 215 | sym.nlist_idx = nlist_idx; |
| | 216 | sym.extra = self.addSymbolExtraAssumeCapacity(.{}); |
| | 217 | |
| | 218 | const idx = ref.getFile(macho_file).?.object.globals.items[ref.index]; |
| | 219 | self.globals.addOneAssumeCapacity().* = idx; |
| | 220 | macho_file.resolver.values.items[idx - 1] = .{ .index = sym_index, .file = self.index }; |
| | 221 | } |
| | 222 | } |
| | 223 | |
| | 224 | pub fn markLive(self: *InternalObject, macho_file: *MachO) void { |
| | 225 | const tracy = trace(@src()); |
| | 226 | defer tracy.end(); |
| | 227 | |
| | 228 | for (0..self.symbols.items.len) |i| { |
| | 229 | const nlist = self.symtab.items[i]; |
| | 230 | if (!nlist.ext()) continue; |
| | 231 | |
| | 232 | const ref = self.getSymbolRef(@intCast(i), macho_file); |
| | 233 | const file = ref.getFile(macho_file) orelse continue; |
| | 234 | if (file == .object and !file.object.alive) { |
| | 235 | file.object.alive = true; |
| | 236 | file.object.markLive(macho_file); |
| | 237 | } |
| | 238 | } |
| | 239 | } |
| 47 | | 240 | |
| 48 | const atom = macho_file.getAtom(atom_index).?; | 241 | /// Creates a fake input sections __TEXT,__objc_methname and __DATA,__objc_selrefs. |
| 49 | atom.atom_index = atom_index; | 242 | pub fn addObjcMsgsendSections(self: *InternalObject, sym_name: []const u8, macho_file: *MachO) !Symbol.Index { |
| 50 | atom.file = self.index; | 243 | const methname_sym_index = try self.addObjcMethnameSection(sym_name, macho_file); |
| | 244 | return try self.addObjcSelrefsSection(methname_sym_index, macho_file); |
| | 245 | } |
| | 246 | |
| | 247 | fn addObjcMethnameSection(self: *InternalObject, methname: []const u8, macho_file: *MachO) !Symbol.Index { |
| | 248 | const gpa = macho_file.base.comp.gpa; |
| | 249 | const atom_index = try self.addAtom(gpa); |
| | 250 | try self.atoms_indexes.append(gpa, atom_index); |
| | 251 | const atom = self.getAtom(atom_index).?; |
| 51 | atom.size = methname.len + 1; | 252 | atom.size = methname.len + 1; |
| 52 | atom.alignment = .@"1"; | 253 | atom.alignment = .@"1"; |
| 53 | | 254 | |
| ... | @@ -63,19 +264,34 @@ fn addObjcMethnameSection(self: *InternalObject, methname: []const u8, macho_fil | ... | @@ -63,19 +264,34 @@ fn addObjcMethnameSection(self: *InternalObject, methname: []const u8, macho_fil |
| 63 | try self.objc_methnames.ensureUnusedCapacity(gpa, methname.len + 1); | 264 | try self.objc_methnames.ensureUnusedCapacity(gpa, methname.len + 1); |
| 64 | self.objc_methnames.writer(gpa).print("{s}\x00", .{methname}) catch unreachable; | 265 | self.objc_methnames.writer(gpa).print("{s}\x00", .{methname}) catch unreachable; |
| 65 | | 266 | |
| | 267 | const name_str = try self.addString(gpa, "ltmp"); |
| | 268 | const sym_index = try self.addSymbol(gpa); |
| | 269 | const sym = &self.symbols.items[sym_index]; |
| | 270 | sym.name = name_str; |
| | 271 | sym.atom_ref = .{ .index = atom_index, .file = self.index }; |
| | 272 | sym.extra = try self.addSymbolExtra(gpa, .{}); |
| | 273 | const nlist_idx: u32 = @intCast(self.symtab.items.len); |
| | 274 | const nlist = try self.symtab.addOne(gpa); |
| | 275 | nlist.* = .{ |
| | 276 | .n_strx = name_str.pos, |
| | 277 | .n_type = macho.N_SECT, |
| | 278 | .n_sect = @intCast(n_sect + 1), |
| | 279 | .n_desc = 0, |
| | 280 | .n_value = 0, |
| | 281 | }; |
| | 282 | sym.nlist_idx = nlist_idx; |
| | 283 | try self.globals.append(gpa, 0); |
| | 284 | |
| 66 | return atom_index; | 285 | return atom_index; |
| 67 | } | 286 | } |
| 68 | | 287 | |
| 69 | fn addObjcSelrefsSection(self: *InternalObject, methname_atom_index: Atom.Index, macho_file: *MachO) !Atom.Index { | 288 | fn addObjcSelrefsSection(self: *InternalObject, methname_sym_index: Symbol.Index, macho_file: *MachO) !Symbol.Index { |
| 70 | const gpa = macho_file.base.comp.gpa; | 289 | const gpa = macho_file.base.allocator; |
| 71 | const atom_index = try macho_file.addAtom(); | 290 | const atom_index = try self.addAtom(gpa); |
| 72 | try self.atoms.append(gpa, atom_index); | 291 | try self.atoms_indexes.append(gpa, atom_index); |
| 73 | | 292 | const atom = self.getAtom(atom_index).?; |
| 74 | const atom = macho_file.getAtom(atom_index).?; | | |
| 75 | atom.atom_index = atom_index; | | |
| 76 | atom.file = self.index; | | |
| 77 | atom.size = @sizeOf(u64); | 293 | atom.size = @sizeOf(u64); |
| 78 | atom.alignment = .@"8"; | 294 | atom.alignment = 3; |
| 79 | | 295 | |
| 80 | const n_sect = try self.addSection(gpa, "__DATA", "__objc_selrefs"); | 296 | const n_sect = try self.addSection(gpa, "__DATA", "__objc_selrefs"); |
| 81 | const sect = &self.sections.items(.header)[n_sect]; | 297 | const sect = &self.sections.items(.header)[n_sect]; |
| ... | @@ -89,9 +305,9 @@ fn addObjcSelrefsSection(self: *InternalObject, methname_atom_index: Atom.Index, | ... | @@ -89,9 +305,9 @@ fn addObjcSelrefsSection(self: *InternalObject, methname_atom_index: Atom.Index, |
| 89 | const relocs = &self.sections.items(.relocs)[n_sect]; | 305 | const relocs = &self.sections.items(.relocs)[n_sect]; |
| 90 | try relocs.ensureUnusedCapacity(gpa, 1); | 306 | try relocs.ensureUnusedCapacity(gpa, 1); |
| 91 | relocs.appendAssumeCapacity(.{ | 307 | relocs.appendAssumeCapacity(.{ |
| 92 | .tag = .local, | 308 | .tag = .@"extern", |
| 93 | .offset = 0, | 309 | .offset = 0, |
| 94 | .target = methname_atom_index, | 310 | .target = methname_sym_index, |
| 95 | .addend = 0, | 311 | .addend = 0, |
| 96 | .type = .unsigned, | 312 | .type = .unsigned, |
| 97 | .meta = .{ | 313 | .meta = .{ |
| ... | @@ -101,139 +317,283 @@ fn addObjcSelrefsSection(self: *InternalObject, methname_atom_index: Atom.Index, | ... | @@ -101,139 +317,283 @@ fn addObjcSelrefsSection(self: *InternalObject, methname_atom_index: Atom.Index, |
| 101 | .has_subtractor = false, | 317 | .has_subtractor = false, |
| 102 | }, | 318 | }, |
| 103 | }); | 319 | }); |
| 104 | try atom.addExtra(.{ .rel_index = 0, .rel_count = 1 }, macho_file); | 320 | atom.addExtra(.{ .rel_index = 0, .rel_count = 1 }, macho_file); |
| 105 | atom.flags.relocs = true; | 321 | |
| | 322 | const sym_index = try self.addSymbol(gpa); |
| | 323 | const sym = &self.symbols.items[sym_index]; |
| | 324 | sym.atom_ref = .{ .index = atom_index, .file = self.index }; |
| | 325 | sym.extra = try self.addSymbolExtra(gpa, .{}); |
| | 326 | const nlist_idx: u32 = @intCast(self.symtab.items.len); |
| | 327 | const nlist = try self.symtab.addOne(gpa); |
| | 328 | nlist.* = .{ |
| | 329 | .n_strx = 0, |
| | 330 | .n_type = macho.N_SECT, |
| | 331 | .n_sect = @intCast(n_sect + 1), |
| | 332 | .n_desc = 0, |
| | 333 | .n_value = 0, |
| | 334 | }; |
| | 335 | sym.nlist_idx = nlist_idx; |
| | 336 | try self.globals.append(gpa, 0); |
| | 337 | atom.addExtra(.{ .literal_symbol_index = sym_index }, macho_file); |
| 106 | | 338 | |
| 107 | return atom_index; | 339 | return sym_index; |
| | 340 | } |
| | 341 | |
| | 342 | pub fn resolveObjcMsgSendSymbols(self: *InternalObject, macho_file: *MachO) !void { |
| | 343 | const tracy = trace(@src()); |
| | 344 | defer tracy.end(); |
| | 345 | |
| | 346 | const gpa = macho_file.base.comp.gpa; |
| | 347 | |
| | 348 | var objc_msgsend_syms = std.StringArrayHashMap(MachO.Ref).init(gpa); |
| | 349 | defer objc_msgsend_syms.deinit(); |
| | 350 | |
| | 351 | for (macho_file.objects.items) |index| { |
| | 352 | const object = macho_file.getFile(index).?.object; |
| | 353 | |
| | 354 | for (object.symbols.items, 0..) |sym, i| { |
| | 355 | const nlist = object.symtab.items(.nlist)[i]; |
| | 356 | if (!nlist.ext()) continue; |
| | 357 | if (!nlist.undf()) continue; |
| | 358 | |
| | 359 | const ref = object.getSymbolRef(@intCast(i), macho_file); |
| | 360 | if (ref.getFile(macho_file) != null) continue; |
| | 361 | |
| | 362 | const name = sym.getName(macho_file); |
| | 363 | if (mem.startsWith(u8, name, "_objc_msgSend$")) { |
| | 364 | const gop = try objc_msgsend_syms.getOrPut(name); |
| | 365 | if (!gop.found_existing) { |
| | 366 | gop.value_ptr.* = .{ .index = @intCast(i), .file = index }; |
| | 367 | } |
| | 368 | } |
| | 369 | } |
| | 370 | } |
| | 371 | |
| | 372 | for (objc_msgsend_syms.keys(), objc_msgsend_syms.values()) |sym_name, ref| { |
| | 373 | const name = MachO.eatPrefix(sym_name, "_objc_msgSend$").?; |
| | 374 | const selrefs_index = try self.addObjcMsgsendSections(name, macho_file); |
| | 375 | |
| | 376 | const name_off = try self.addString(gpa, sym_name); |
| | 377 | const sym_index = try self.addSymbol(gpa); |
| | 378 | const sym = &self.symbols.items[sym_index]; |
| | 379 | sym.name = name_off; |
| | 380 | sym.visibility = .hidden; |
| | 381 | const nlist_idx: u32 = @intCast(self.symtab.items.len); |
| | 382 | const nlist = try self.symtab.addOne(gpa); |
| | 383 | nlist.* = .{ |
| | 384 | .n_strx = name_off, |
| | 385 | .n_type = macho.N_SECT | macho.N_EXT | macho.N_PEXT, |
| | 386 | .n_sect = 0, |
| | 387 | .n_desc = 0, |
| | 388 | .n_value = 0, |
| | 389 | }; |
| | 390 | sym.nlist_idx = nlist_idx; |
| | 391 | sym.extra = try self.addSymbolExtra(gpa, .{ .objc_selrefs = selrefs_index }); |
| | 392 | sym.setSectionFlags(.{ .objc_stubs = true }); |
| | 393 | |
| | 394 | const idx = ref.getFile(macho_file).?.object.globals.items[ref.index]; |
| | 395 | try self.globals.append(gpa, idx); |
| | 396 | macho_file.resolver.values.items[idx - 1] = .{ .index = sym_index, .file = self.index }; |
| | 397 | } |
| 108 | } | 398 | } |
| 109 | | 399 | |
| 110 | pub fn resolveLiterals(self: InternalObject, lp: *MachO.LiteralPool, macho_file: *MachO) !void { | 400 | pub fn resolveLiterals(self: *InternalObject, lp: *MachO.LiteralPool, macho_file: *MachO) !void { |
| | 401 | const tracy = trace(@src()); |
| | 402 | defer tracy.end(); |
| | 403 | |
| 111 | const gpa = macho_file.base.comp.gpa; | 404 | const gpa = macho_file.base.comp.gpa; |
| 112 | | 405 | |
| 113 | var buffer = std.ArrayList(u8).init(gpa); | 406 | var buffer = std.ArrayList(u8).init(gpa); |
| 114 | defer buffer.deinit(); | 407 | defer buffer.deinit(); |
| 115 | | 408 | |
| 116 | const slice = self.sections.slice(); | 409 | const slice = self.sections.slice(); |
| 117 | for (slice.items(.header), self.atoms.items, 0..) |header, atom_index, n_sect| { | 410 | for (slice.items(.header), self.getAtoms()) |header, atom_index| { |
| 118 | if (Object.isCstringLiteral(header) or Object.isFixedSizeLiteral(header)) { | 411 | if (!Object.isPtrLiteral(header)) continue; |
| 119 | const data = try self.getSectionData(@intCast(n_sect)); | 412 | const atom = self.getAtom(atom_index).?; |
| 120 | const atom = macho_file.getAtom(atom_index).?; | 413 | const relocs = atom.getRelocs(macho_file); |
| 121 | const res = try lp.insert(gpa, header.type(), data); | 414 | assert(relocs.len == 1); |
| 122 | if (!res.found_existing) { | 415 | const rel = relocs[0]; |
| 123 | res.atom.* = atom_index; | 416 | assert(rel.tag == .@"extern"); |
| 124 | } | 417 | const target = rel.getTargetSymbol(atom.*, macho_file).getAtom(macho_file).?; |
| 125 | atom.flags.literal_pool = true; | 418 | try buffer.ensureUnusedCapacity(target.size); |
| 126 | try atom.addExtra(.{ .literal_index = res.index }, macho_file); | 419 | buffer.resize(target.size) catch unreachable; |
| 127 | } else if (Object.isPtrLiteral(header)) { | 420 | @memcpy(buffer.items, self.getSectionData(target.n_sect)); |
| 128 | const atom = macho_file.getAtom(atom_index).?; | 421 | const res = try lp.insert(gpa, header.type(), buffer.items); |
| 129 | const relocs = atom.getRelocs(macho_file); | 422 | buffer.clearRetainingCapacity(); |
| 130 | assert(relocs.len == 1); | 423 | if (!res.found_existing) { |
| 131 | const rel = relocs[0]; | 424 | res.ref.* = .{ .index = atom.getExtra(macho_file).literal_symbol_index, .file = self.index }; |
| 132 | assert(rel.tag == .local); | 425 | } else { |
| 133 | const target = macho_file.getAtom(rel.target).?; | 426 | const lp_sym = lp.getSymbol(res.index, macho_file); |
| 134 | const addend = std.math.cast(u32, rel.addend) orelse return error.Overflow; | 427 | const lp_atom = lp_sym.getAtom(macho_file).?; |
| 135 | const target_size = std.math.cast(usize, target.size) orelse return error.Overflow; | 428 | lp_atom.alignment = @max(lp_atom.alignment, atom.alignment); |
| 136 | try buffer.ensureUnusedCapacity(target_size); | 429 | atom.flags.alive = false; |
| 137 | buffer.resize(target_size) catch unreachable; | | |
| 138 | try target.getData(macho_file, buffer.items); | | |
| 139 | const res = try lp.insert(gpa, header.type(), buffer.items[addend..]); | | |
| 140 | buffer.clearRetainingCapacity(); | | |
| 141 | if (!res.found_existing) { | | |
| 142 | res.atom.* = atom_index; | | |
| 143 | } | | |
| 144 | atom.flags.literal_pool = true; | | |
| 145 | try atom.addExtra(.{ .literal_index = res.index }, macho_file); | | |
| 146 | } | 430 | } |
| | 431 | atom.addExtra(.{ .literal_pool_index = res.index }, macho_file); |
| 147 | } | 432 | } |
| 148 | } | 433 | } |
| 149 | | 434 | |
| 150 | pub fn dedupLiterals(self: InternalObject, lp: MachO.LiteralPool, macho_file: *MachO) void { | 435 | pub fn dedupLiterals(self: *InternalObject, lp: MachO.LiteralPool, macho_file: *MachO) void { |
| 151 | for (self.atoms.items) |atom_index| { | 436 | const tracy = trace(@src()); |
| 152 | const atom = macho_file.getAtom(atom_index) orelse continue; | 437 | defer tracy.end(); |
| 153 | if (!atom.flags.alive) continue; | 438 | |
| 154 | if (!atom.flags.relocs) continue; | 439 | for (self.getAtoms()) |atom_index| { |
| | 440 | const atom = self.getAtom(atom_index) orelse continue; |
| | 441 | if (!atom.alive.load(.seq_cst)) continue; |
| 155 | | 442 | |
| 156 | const relocs = blk: { | 443 | const relocs = blk: { |
| 157 | const extra = atom.getExtra(macho_file).?; | 444 | const extra = atom.getExtra(macho_file); |
| 158 | const relocs = self.sections.items(.relocs)[atom.n_sect].items; | 445 | const relocs = self.sections.items(.relocs)[atom.n_sect].items; |
| 159 | break :blk relocs[extra.rel_index..][0..extra.rel_count]; | 446 | break :blk relocs[extra.rel_index..][0..extra.rel_count]; |
| 160 | }; | 447 | }; |
| 161 | for (relocs) |*rel| switch (rel.tag) { | 448 | for (relocs) |*rel| { |
| 162 | .local => { | 449 | if (rel.tag != .@"extern") continue; |
| 163 | const target = macho_file.getAtom(rel.target).?; | 450 | const target_sym_ref = rel.getTargetSymbolRef(atom.*, macho_file); |
| 164 | if (target.getLiteralPoolIndex(macho_file)) |lp_index| { | 451 | const file = target_sym_ref.getFile(macho_file) orelse continue; |
| 165 | const lp_atom = lp.getAtom(lp_index, macho_file); | 452 | if (file.getIndex() != self.index) continue; |
| 166 | if (target.atom_index != lp_atom.atom_index) { | 453 | const target_sym = target_sym_ref.getSymbol(macho_file).?; |
| 167 | lp_atom.alignment = lp_atom.alignment.max(target.alignment); | 454 | const target_atom = target_sym.getAtom(macho_file) orelse continue; |
| 168 | target.flags.alive = false; | 455 | if (!Object.isPtrLiteral(target_atom.getInputSection(macho_file))) continue; |
| 169 | rel.target = lp_atom.atom_index; | 456 | const lp_index = target_atom.getExtra(macho_file).literal_pool_index; |
| 170 | } | 457 | const lp_sym = lp.getSymbol(lp_index, macho_file); |
| 171 | } | 458 | const lp_atom_ref = lp_sym.atom_ref; |
| 172 | }, | 459 | if (target_atom.atom_index != lp_atom_ref.index or target_atom.file != lp_atom_ref.file) { |
| 173 | .@"extern" => { | 460 | target_sym.atom_ref = lp_atom_ref; |
| 174 | const target_sym = rel.getTargetSymbol(macho_file); | 461 | } |
| 175 | if (target_sym.getAtom(macho_file)) |target_atom| { | 462 | } |
| 176 | if (target_atom.getLiteralPoolIndex(macho_file)) |lp_index| { | 463 | } |
| 177 | const lp_atom = lp.getAtom(lp_index, macho_file); | 464 | |
| 178 | if (target_atom.atom_index != lp_atom.atom_index) { | 465 | for (self.symbols.items) |*sym| { |
| 179 | lp_atom.alignment = lp_atom.alignment.max(target_atom.alignment); | 466 | if (!sym.getSectionFlags().objc_stubs) continue; |
| 180 | target_atom.flags.alive = false; | 467 | const extra = sym.getExtra(macho_file); |
| 181 | target_sym.atom = lp_atom.atom_index; | 468 | const file = sym.getFile(macho_file).?; |
| 182 | } | 469 | if (file.getIndex() != self.index) continue; |
| 183 | } | 470 | const tsym = switch (file) { |
| 184 | } | 471 | .dylib => unreachable, |
| 185 | }, | 472 | inline else => |x| &x.symbols.items[extra.objc_selrefs], |
| 186 | }; | 473 | }; |
| | 474 | const atom = tsym.getAtom(macho_file) orelse continue; |
| | 475 | if (!Object.isPtrLiteral(atom.getInputSection(macho_file))) continue; |
| | 476 | const lp_index = atom.getExtra(macho_file).literal_pool_index; |
| | 477 | const lp_sym = lp.getSymbol(lp_index, macho_file); |
| | 478 | const lp_atom_ref = lp_sym.atom_ref; |
| | 479 | if (atom.atom_index != lp_atom_ref.index or atom.file != lp_atom_ref.file) { |
| | 480 | tsym.atom_ref = lp_atom_ref; |
| | 481 | } |
| 187 | } | 482 | } |
| | 483 | } |
| | 484 | |
| | 485 | pub fn scanRelocs(self: *InternalObject, macho_file: *MachO) void { |
| | 486 | const tracy = trace(@src()); |
| | 487 | defer tracy.end(); |
| 188 | | 488 | |
| 189 | for (self.symbols.items) |sym_index| { | 489 | if (self.getEntryRef(macho_file)) |ref| { |
| 190 | const sym = macho_file.getSymbol(sym_index); | 490 | if (ref.getFile(macho_file) != null) { |
| 191 | if (!sym.flags.objc_stubs) continue; | 491 | const sym = ref.getSymbol(macho_file).?; |
| 192 | var extra = sym.getExtra(macho_file).?; | 492 | if (sym.flags.import) sym.flags.stubs = true; |
| 193 | const atom = macho_file.getAtom(extra.objc_selrefs).?; | 493 | } |
| 194 | if (atom.getLiteralPoolIndex(macho_file)) |lp_index| { | 494 | } |
| 195 | const lp_atom = lp.getAtom(lp_index, macho_file); | 495 | if (self.getDyldStubBinderRef(macho_file)) |ref| { |
| 196 | if (atom.atom_index != lp_atom.atom_index) { | 496 | if (ref.getFile(macho_file) != null) { |
| 197 | lp_atom.alignment = lp_atom.alignment.max(atom.alignment); | 497 | const sym = ref.getSymbol(macho_file).?; |
| 198 | atom.flags.alive = false; | 498 | sym.flags.got = true; |
| 199 | extra.objc_selrefs = lp_atom.atom_index; | 499 | } |
| 200 | sym.setExtra(extra, macho_file); | 500 | } |
| | 501 | if (self.getObjcMsgSendRef(macho_file)) |ref| { |
| | 502 | if (ref.getFile(macho_file) != null) { |
| | 503 | const sym = ref.getSymbol(macho_file).?; |
| | 504 | // TODO is it always needed, or only if we are synthesising fast stubs |
| | 505 | sym.flags.got = true; |
| | 506 | } |
| | 507 | } |
| | 508 | } |
| | 509 | |
| | 510 | pub fn allocateSyntheticSymbols(self: *InternalObject, macho_file: *MachO) void { |
| | 511 | const text_seg = macho_file.getTextSegment(); |
| | 512 | |
| | 513 | if (self.mh_execute_header_index) |index| { |
| | 514 | const ref = self.getSymbolRef(index, macho_file); |
| | 515 | if (ref.getFile(macho_file)) |file| { |
| | 516 | if (file.getIndex() == self.index) { |
| | 517 | const sym = &self.symbols.items[index]; |
| | 518 | sym.value = text_seg.vmaddr; |
| | 519 | } |
| | 520 | } |
| | 521 | } |
| | 522 | |
| | 523 | if (macho_file.data_sect_index) |idx| { |
| | 524 | const sect = macho_file.sections.items(.header)[idx]; |
| | 525 | for (&[_]?Symbol.Index{ |
| | 526 | self.dso_handle_index, |
| | 527 | self.mh_dylib_header_index, |
| | 528 | self.dyld_private_index, |
| | 529 | }) |maybe_index| { |
| | 530 | if (maybe_index) |index| { |
| | 531 | const ref = self.getSymbolRef(index, macho_file); |
| | 532 | if (ref.getFile(macho_file)) |file| { |
| | 533 | if (file.getIndex() == self.index) { |
| | 534 | const sym = &self.symbols.items[index]; |
| | 535 | sym.value = sect.addr; |
| | 536 | sym.out_n_sect = idx; |
| | 537 | } |
| | 538 | } |
| 201 | } | 539 | } |
| 202 | } | 540 | } |
| 203 | } | 541 | } |
| 204 | } | 542 | } |
| 205 | | 543 | |
| 206 | pub fn calcSymtabSize(self: *InternalObject, macho_file: *MachO) !void { | 544 | pub fn calcSymtabSize(self: *InternalObject, macho_file: *MachO) void { |
| 207 | for (self.symbols.items) |sym_index| { | 545 | for (self.symbols.items, 0..) |*sym, i| { |
| 208 | const sym = macho_file.getSymbol(sym_index); | 546 | const ref = self.getSymbolRef(@intCast(i), macho_file); |
| 209 | if (sym.getFile(macho_file)) |file| if (file.getIndex() != self.index) continue; | 547 | const file = ref.getFile(macho_file) orelse continue; |
| | 548 | if (file.getIndex() != self.index) continue; |
| | 549 | if (sym.getName(macho_file).len == 0) continue; |
| 210 | sym.flags.output_symtab = true; | 550 | sym.flags.output_symtab = true; |
| 211 | if (sym.isLocal()) { | 551 | if (sym.isLocal()) { |
| 212 | try sym.addExtra(.{ .symtab = self.output_symtab_ctx.nlocals }, macho_file); | 552 | sym.addExtra(.{ .symtab = self.output_symtab_ctx.nlocals }, macho_file); |
| 213 | self.output_symtab_ctx.nlocals += 1; | 553 | self.output_symtab_ctx.nlocals += 1; |
| 214 | } else if (sym.flags.@"export") { | 554 | } else if (sym.flags.@"export") { |
| 215 | try sym.addExtra(.{ .symtab = self.output_symtab_ctx.nexports }, macho_file); | 555 | sym.addExtra(.{ .symtab = self.output_symtab_ctx.nexports }, macho_file); |
| 216 | self.output_symtab_ctx.nexports += 1; | 556 | self.output_symtab_ctx.nexports += 1; |
| 217 | } else { | 557 | } else { |
| 218 | assert(sym.flags.import); | 558 | assert(sym.flags.import); |
| 219 | try sym.addExtra(.{ .symtab = self.output_symtab_ctx.nimports }, macho_file); | 559 | sym.addExtra(.{ .symtab = self.output_symtab_ctx.nimports }, macho_file); |
| 220 | self.output_symtab_ctx.nimports += 1; | 560 | self.output_symtab_ctx.nimports += 1; |
| 221 | } | 561 | } |
| 222 | self.output_symtab_ctx.strsize += @as(u32, @intCast(sym.getName(macho_file).len + 1)); | 562 | self.output_symtab_ctx.strsize += @as(u32, @intCast(sym.getName(macho_file).len + 1)); |
| 223 | } | 563 | } |
| 224 | } | 564 | } |
| 225 | | 565 | |
| 226 | pub fn writeSymtab(self: InternalObject, macho_file: *MachO, ctx: anytype) void { | 566 | pub fn writeAtoms(self: *InternalObject, macho_file: *MachO) !void { |
| 227 | for (self.symbols.items) |sym_index| { | 567 | const tracy = trace(@src()); |
| 228 | const sym = macho_file.getSymbol(sym_index); | 568 | defer tracy.end(); |
| 229 | if (sym.getFile(macho_file)) |file| if (file.getIndex() != self.index) continue; | 569 | |
| | 570 | for (self.getAtoms()) |atom_index| { |
| | 571 | const atom = self.getAtom(atom_index) orelse continue; |
| | 572 | if (!atom.alive.load(.seq_cst)) continue; |
| | 573 | const sect = atom.getInputSection(macho_file); |
| | 574 | if (sect.isZerofill()) continue; |
| | 575 | const off = atom.value; |
| | 576 | const buffer = macho_file.sections.items(.out)[atom.out_n_sect].items[off..][0..atom.size]; |
| | 577 | @memcpy(buffer, self.getSectionData(atom.n_sect)); |
| | 578 | try atom.resolveRelocs(macho_file, buffer); |
| | 579 | } |
| | 580 | } |
| | 581 | |
| | 582 | pub fn writeSymtab(self: InternalObject, macho_file: *MachO) void { |
| | 583 | var n_strx = self.output_symtab_ctx.stroff; |
| | 584 | for (self.symbols.items, 0..) |sym, i| { |
| | 585 | const ref = self.getSymbolRef(@intCast(i), macho_file); |
| | 586 | const file = ref.getFile(macho_file) orelse continue; |
| | 587 | if (file.getIndex() != self.index) continue; |
| 230 | const idx = sym.getOutputSymtabIndex(macho_file) orelse continue; | 588 | const idx = sym.getOutputSymtabIndex(macho_file) orelse continue; |
| 231 | const n_strx = @as(u32, @intCast(ctx.strtab.items.len)); | 589 | const out_sym = &macho_file.symtab.items[idx]; |
| 232 | ctx.strtab.appendSliceAssumeCapacity(sym.getName(macho_file)); | | |
| 233 | ctx.strtab.appendAssumeCapacity(0); | | |
| 234 | const out_sym = &ctx.symtab.items[idx]; | | |
| 235 | out_sym.n_strx = n_strx; | 590 | out_sym.n_strx = n_strx; |
| 236 | sym.setOutputSym(macho_file, out_sym); | 591 | sym.setOutputSym(macho_file, out_sym); |
| | 592 | const name = sym.getName(macho_file); |
| | 593 | @memcpy(macho_file.strtab.items[n_strx..][0..name.len], name); |
| | 594 | n_strx += @intCast(name.len); |
| | 595 | macho_file.strtab.items[n_strx] = 0; |
| | 596 | n_strx += 1; |
| 237 | } | 597 | } |
| 238 | } | 598 | } |
| 239 | | 599 | |
| ... | @@ -262,32 +622,167 @@ fn getSectionData(self: *const InternalObject, index: u32) error{Overflow}![]con | ... | @@ -262,32 +622,167 @@ fn getSectionData(self: *const InternalObject, index: u32) error{Overflow}![]con |
| 262 | @panic("ref to non-existent section"); | 622 | @panic("ref to non-existent section"); |
| 263 | } | 623 | } |
| 264 | | 624 | |
| 265 | pub fn getAtomData(self: *const InternalObject, atom: Atom, buffer: []u8) error{Overflow}!void { | 625 | pub fn addString(self: *InternalObject, allocator: Allocator, name: []const u8) !u32 { |
| 266 | assert(buffer.len == atom.size); | 626 | const off: u32 = @intCast(self.strtab.items.len); |
| 267 | const data = try self.getSectionData(atom.n_sect); | 627 | try self.strtab.ensureUnusedCapacity(allocator, name.len + 1); |
| 268 | const off = std.math.cast(usize, atom.off) orelse return error.Overflow; | 628 | self.strtab.appendSliceAssumeCapacity(name); |
| 269 | const size = std.math.cast(usize, atom.size) orelse return error.Overflow; | 629 | self.strtab.appendAssumeCapacity(0); |
| 270 | @memcpy(buffer, data[off..][0..size]); | 630 | return off; |
| 271 | } | | |
| 272 | | | |
| 273 | pub fn getAtomRelocs(self: *const InternalObject, atom: Atom, macho_file: *MachO) []const Relocation { | | |
| 274 | if (!atom.flags.relocs) return &[0]Relocation{}; | | |
| 275 | const extra = atom.getExtra(macho_file).?; | | |
| 276 | const relocs = self.sections.items(.relocs)[atom.n_sect]; | | |
| 277 | return relocs.items[extra.rel_index..][0..extra.rel_count]; | | |
| 278 | } | 631 | } |
| 279 | | 632 | |
| 280 | pub fn getString(self: InternalObject, off: u32) [:0]const u8 { | 633 | pub fn getString(self: InternalObject, off: u32) [:0]const u8 { |
| 281 | _ = self; | 634 | assert(off < self.strtab.items.len); |
| 282 | _ = off; | 635 | return mem.sliceTo(@as([*:0]const u8, @ptrCast(self.strtab.items.ptr + off)), 0); |
| 283 | // We don't have any local strings for synthetic atoms. | | |
| 284 | return ""; | | |
| 285 | } | 636 | } |
| 286 | | 637 | |
| 287 | pub fn asFile(self: *InternalObject) File { | 638 | pub fn asFile(self: *InternalObject) File { |
| 288 | return .{ .internal = self }; | 639 | return .{ .internal = self }; |
| 289 | } | 640 | } |
| 290 | | 641 | |
| | 642 | fn addAtom(self: *InternalObject, allocator: Allocator) !Atom.Index { |
| | 643 | const atom_index: Atom.Index = @intCast(self.atoms.items.len); |
| | 644 | const atom = try self.atoms.addOne(allocator); |
| | 645 | atom.* = .{ |
| | 646 | .file = self.index, |
| | 647 | .atom_index = atom_index, |
| | 648 | .extra = try self.addAtomExtra(allocator, .{}), |
| | 649 | }; |
| | 650 | return atom_index; |
| | 651 | } |
| | 652 | |
| | 653 | pub fn getAtom(self: *InternalObject, atom_index: Atom.Index) ?*Atom { |
| | 654 | if (atom_index == 0) return null; |
| | 655 | assert(atom_index < self.atoms.items.len); |
| | 656 | return &self.atoms.items[atom_index]; |
| | 657 | } |
| | 658 | |
| | 659 | pub fn getAtoms(self: InternalObject) []const Atom.Index { |
| | 660 | return self.atoms_indexes.items; |
| | 661 | } |
| | 662 | |
| | 663 | fn addAtomExtra(self: *InternalObject, allocator: Allocator, extra: Atom.Extra) !u32 { |
| | 664 | const fields = @typeInfo(Atom.Extra).Struct.fields; |
| | 665 | try self.atoms_extra.ensureUnusedCapacity(allocator, fields.len); |
| | 666 | return self.addAtomExtraAssumeCapacity(extra); |
| | 667 | } |
| | 668 | |
| | 669 | fn addAtomExtraAssumeCapacity(self: *InternalObject, extra: Atom.Extra) u32 { |
| | 670 | const index = @as(u32, @intCast(self.atoms_extra.items.len)); |
| | 671 | const fields = @typeInfo(Atom.Extra).Struct.fields; |
| | 672 | inline for (fields) |field| { |
| | 673 | self.atoms_extra.appendAssumeCapacity(switch (field.type) { |
| | 674 | u32 => @field(extra, field.name), |
| | 675 | else => @compileError("bad field type"), |
| | 676 | }); |
| | 677 | } |
| | 678 | return index; |
| | 679 | } |
| | 680 | |
| | 681 | pub fn getAtomExtra(self: InternalObject, index: u32) Atom.Extra { |
| | 682 | const fields = @typeInfo(Atom.Extra).Struct.fields; |
| | 683 | var i: usize = index; |
| | 684 | var result: Atom.Extra = undefined; |
| | 685 | inline for (fields) |field| { |
| | 686 | @field(result, field.name) = switch (field.type) { |
| | 687 | u32 => self.atoms_extra.items[i], |
| | 688 | else => @compileError("bad field type"), |
| | 689 | }; |
| | 690 | i += 1; |
| | 691 | } |
| | 692 | return result; |
| | 693 | } |
| | 694 | |
| | 695 | pub fn setAtomExtra(self: *InternalObject, index: u32, extra: Atom.Extra) void { |
| | 696 | assert(index > 0); |
| | 697 | const fields = @typeInfo(Atom.Extra).Struct.fields; |
| | 698 | inline for (fields, 0..) |field, i| { |
| | 699 | self.atoms_extra.items[index + i] = switch (field.type) { |
| | 700 | u32 => @field(extra, field.name), |
| | 701 | else => @compileError("bad field type"), |
| | 702 | }; |
| | 703 | } |
| | 704 | } |
| | 705 | |
| | 706 | pub fn getEntryRef(self: InternalObject, macho_file: *MachO) ?MachO.Ref { |
| | 707 | const index = self.entry_index orelse return null; |
| | 708 | return self.getSymbolRef(index, macho_file); |
| | 709 | } |
| | 710 | |
| | 711 | pub fn getDyldStubBinderRef(self: InternalObject, macho_file: *MachO) ?MachO.Ref { |
| | 712 | const index = self.dyld_stub_binder_index orelse return null; |
| | 713 | return self.getSymbolRef(index, macho_file); |
| | 714 | } |
| | 715 | |
| | 716 | pub fn getDyldPrivateRef(self: InternalObject, macho_file: *MachO) ?MachO.Ref { |
| | 717 | const index = self.dyld_private_index orelse return null; |
| | 718 | return self.getSymbolRef(index, macho_file); |
| | 719 | } |
| | 720 | |
| | 721 | pub fn getObjcMsgSendRef(self: InternalObject, macho_file: *MachO) ?MachO.Ref { |
| | 722 | const index = self.objc_msg_send_index orelse return null; |
| | 723 | return self.getSymbolRef(index, macho_file); |
| | 724 | } |
| | 725 | |
| | 726 | pub fn addSymbol(self: *InternalObject, allocator: Allocator) !Symbol.Index { |
| | 727 | try self.symbols.ensureUnusedCapacity(allocator, 1); |
| | 728 | return self.addSymbolAssumeCapacity(); |
| | 729 | } |
| | 730 | |
| | 731 | pub fn addSymbolAssumeCapacity(self: *InternalObject) Symbol.Index { |
| | 732 | const index: Symbol.Index = @intCast(self.symbols.items.len); |
| | 733 | const symbol = self.symbols.addOneAssumeCapacity(); |
| | 734 | symbol.* = .{ .file = self.index }; |
| | 735 | return index; |
| | 736 | } |
| | 737 | |
| | 738 | pub fn getSymbolRef(self: InternalObject, index: Symbol.Index, macho_file: *MachO) MachO.Ref { |
| | 739 | const global_index = self.globals.items[index]; |
| | 740 | if (macho_file.resolver.get(global_index)) |ref| return ref; |
| | 741 | return .{ .index = index, .file = self.index }; |
| | 742 | } |
| | 743 | |
| | 744 | pub fn addSymbolExtra(self: *InternalObject, allocator: Allocator, extra: Symbol.Extra) !u32 { |
| | 745 | const fields = @typeInfo(Symbol.Extra).Struct.fields; |
| | 746 | try self.symbols_extra.ensureUnusedCapacity(allocator, fields.len); |
| | 747 | return self.addSymbolExtraAssumeCapacity(extra); |
| | 748 | } |
| | 749 | |
| | 750 | fn addSymbolExtraAssumeCapacity(self: *InternalObject, extra: Symbol.Extra) u32 { |
| | 751 | const index = @as(u32, @intCast(self.symbols_extra.items.len)); |
| | 752 | const fields = @typeInfo(Symbol.Extra).Struct.fields; |
| | 753 | inline for (fields) |field| { |
| | 754 | self.symbols_extra.appendAssumeCapacity(switch (field.type) { |
| | 755 | u32 => @field(extra, field.name), |
| | 756 | else => @compileError("bad field type"), |
| | 757 | }); |
| | 758 | } |
| | 759 | return index; |
| | 760 | } |
| | 761 | |
| | 762 | pub fn getSymbolExtra(self: InternalObject, index: u32) Symbol.Extra { |
| | 763 | const fields = @typeInfo(Symbol.Extra).Struct.fields; |
| | 764 | var i: usize = index; |
| | 765 | var result: Symbol.Extra = undefined; |
| | 766 | inline for (fields) |field| { |
| | 767 | @field(result, field.name) = switch (field.type) { |
| | 768 | u32 => self.symbols_extra.items[i], |
| | 769 | else => @compileError("bad field type"), |
| | 770 | }; |
| | 771 | i += 1; |
| | 772 | } |
| | 773 | return result; |
| | 774 | } |
| | 775 | |
| | 776 | pub fn setSymbolExtra(self: *InternalObject, index: u32, extra: Symbol.Extra) void { |
| | 777 | const fields = @typeInfo(Symbol.Extra).Struct.fields; |
| | 778 | inline for (fields, 0..) |field, i| { |
| | 779 | self.symbols_extra.items[index + i] = switch (field.type) { |
| | 780 | u32 => @field(extra, field.name), |
| | 781 | else => @compileError("bad field type"), |
| | 782 | }; |
| | 783 | } |
| | 784 | } |
| | 785 | |
| 291 | const FormatContext = struct { | 786 | const FormatContext = struct { |
| 292 | self: *InternalObject, | 787 | self: *InternalObject, |
| 293 | macho_file: *MachO, | 788 | macho_file: *MachO, |
| ... | @@ -309,8 +804,8 @@ fn formatAtoms( | ... | @@ -309,8 +804,8 @@ fn formatAtoms( |
| 309 | _ = unused_fmt_string; | 804 | _ = unused_fmt_string; |
| 310 | _ = options; | 805 | _ = options; |
| 311 | try writer.writeAll(" atoms\n"); | 806 | try writer.writeAll(" atoms\n"); |
| 312 | for (ctx.self.atoms.items) |atom_index| { | 807 | for (ctx.self.getAtoms()) |atom_index| { |
| 313 | const atom = ctx.macho_file.getAtom(atom_index).?; | 808 | const atom = ctx.self.getAtom(atom_index) orelse continue; |
| 314 | try writer.print(" {}\n", .{atom.fmt(ctx.macho_file)}); | 809 | try writer.print(" {}\n", .{atom.fmt(ctx.macho_file)}); |
| 315 | } | 810 | } |
| 316 | } | 811 | } |
| ... | @@ -330,10 +825,17 @@ fn formatSymtab( | ... | @@ -330,10 +825,17 @@ fn formatSymtab( |
| 330 | ) !void { | 825 | ) !void { |
| 331 | _ = unused_fmt_string; | 826 | _ = unused_fmt_string; |
| 332 | _ = options; | 827 | _ = options; |
| | 828 | const macho_file = ctx.macho_file; |
| | 829 | const self = ctx.self; |
| 333 | try writer.writeAll(" symbols\n"); | 830 | try writer.writeAll(" symbols\n"); |
| 334 | for (ctx.self.symbols.items) |index| { | 831 | for (self.symbols.items, 0..) |sym, i| { |
| 335 | const global = ctx.macho_file.getSymbol(index); | 832 | const ref = self.getSymbolRef(@intCast(i), macho_file); |
| 336 | try writer.print(" {}\n", .{global.fmt(ctx.macho_file)}); | 833 | if (ref.getFile(macho_file) == null) { |
| | 834 | // TODO any better way of handling this? |
| | 835 | try writer.print(" {s} : unclaimed\n", .{sym.getName(macho_file)}); |
| | 836 | } else { |
| | 837 | try writer.print(" {}\n", .{ref.getSymbol(macho_file).?.fmt(macho_file)}); |
| | 838 | } |
| 337 | } | 839 | } |
| 338 | } | 840 | } |
| 339 | | 841 | |
| ... | @@ -352,6 +854,7 @@ const assert = std.debug.assert; | ... | @@ -352,6 +854,7 @@ const assert = std.debug.assert; |
| 352 | const macho = std.macho; | 854 | const macho = std.macho; |
| 353 | const mem = std.mem; | 855 | const mem = std.mem; |
| 354 | const std = @import("std"); | 856 | const std = @import("std"); |
| | 857 | const trace = @import("../../tracy.zig").trace; |
| 355 | | 858 | |
| 356 | const Allocator = std.mem.Allocator; | 859 | const Allocator = std.mem.Allocator; |
| 357 | const Atom = @import("Atom.zig"); | 860 | const Atom = @import("Atom.zig"); |