| ... | ... | @@ -35,8 +35,7 @@ const LibStub = @import("tapi.zig").LibStub; |
| 35 | 35 | const Liveness = @import("../Liveness.zig"); |
| 36 | 36 | const LlvmObject = @import("../codegen/llvm.zig").Object; |
| 37 | 37 | const Module = @import("../Module.zig"); |
| 38 | | const StringIndexAdapter = std.hash_map.StringIndexAdapter; |
| 39 | | const StringIndexContext = std.hash_map.StringIndexContext; |
| 38 | const StringTable = @import("strtab.zig").StringTable; |
| 40 | 39 | const Trie = @import("MachO/Trie.zig"); |
| 41 | 40 | const Type = @import("../type.zig").Type; |
| 42 | 41 | const TypedValue = @import("../TypedValue.zig"); |
| ... | ... | @@ -52,13 +51,13 @@ pub const SearchStrategy = enum { |
| 52 | 51 | dylibs_first, |
| 53 | 52 | }; |
| 54 | 53 | |
| 54 | pub const N_DESC_GCED: u16 = @bitCast(u16, @as(i16, -1)); |
| 55 | |
| 55 | 56 | const SystemLib = struct { |
| 56 | 57 | needed: bool = false, |
| 57 | 58 | weak: bool = false, |
| 58 | 59 | }; |
| 59 | 60 | |
| 60 | | const N_DESC_GCED: u16 = @bitCast(u16, @as(i16, -1)); |
| 61 | | |
| 62 | 61 | base: File, |
| 63 | 62 | |
| 64 | 63 | /// If this is not null, an object file is created by LLVM and linked with LLD afterwards. |
| ... | ... | @@ -153,40 +152,28 @@ rustc_section_index: ?u16 = null, |
| 153 | 152 | rustc_section_size: u64 = 0, |
| 154 | 153 | |
| 155 | 154 | locals: std.ArrayListUnmanaged(macho.nlist_64) = .{}, |
| 156 | | globals: std.ArrayListUnmanaged(macho.nlist_64) = .{}, |
| 157 | | undefs: std.ArrayListUnmanaged(macho.nlist_64) = .{}, |
| 158 | | symbol_resolver: std.AutoHashMapUnmanaged(u32, SymbolWithLoc) = .{}, |
| 159 | | unresolved: std.AutoArrayHashMapUnmanaged(u32, enum { |
| 160 | | none, |
| 161 | | stub, |
| 162 | | got, |
| 163 | | }) = .{}, |
| 164 | | tentatives: std.AutoArrayHashMapUnmanaged(u32, void) = .{}, |
| 155 | globals: std.StringArrayHashMapUnmanaged(SymbolWithLoc) = .{}, |
| 156 | unresolved: std.AutoArrayHashMapUnmanaged(u32, void) = .{}, |
| 165 | 157 | |
| 166 | 158 | locals_free_list: std.ArrayListUnmanaged(u32) = .{}, |
| 167 | | globals_free_list: std.ArrayListUnmanaged(u32) = .{}, |
| 168 | 159 | |
| 169 | 160 | dyld_stub_binder_index: ?u32 = null, |
| 170 | 161 | dyld_private_atom: ?*Atom = null, |
| 171 | 162 | stub_helper_preamble_atom: ?*Atom = null, |
| 172 | 163 | |
| 173 | | mh_execute_header_sym_index: ?u32 = null, |
| 174 | | dso_handle_sym_index: ?u32 = null, |
| 175 | | |
| 176 | | strtab: std.ArrayListUnmanaged(u8) = .{}, |
| 177 | | strtab_dir: std.HashMapUnmanaged(u32, void, StringIndexContext, std.hash_map.default_max_load_percentage) = .{}, |
| 164 | strtab: StringTable(.link) = .{}, |
| 178 | 165 | |
| 179 | 166 | tlv_ptr_entries: std.ArrayListUnmanaged(Entry) = .{}, |
| 180 | 167 | tlv_ptr_entries_free_list: std.ArrayListUnmanaged(u32) = .{}, |
| 181 | | tlv_ptr_entries_table: std.AutoArrayHashMapUnmanaged(Atom.Relocation.Target, u32) = .{}, |
| 168 | tlv_ptr_entries_table: std.AutoArrayHashMapUnmanaged(SymbolWithLoc, u32) = .{}, |
| 182 | 169 | |
| 183 | 170 | got_entries: std.ArrayListUnmanaged(Entry) = .{}, |
| 184 | 171 | got_entries_free_list: std.ArrayListUnmanaged(u32) = .{}, |
| 185 | | got_entries_table: std.AutoArrayHashMapUnmanaged(Atom.Relocation.Target, u32) = .{}, |
| 172 | got_entries_table: std.AutoArrayHashMapUnmanaged(SymbolWithLoc, u32) = .{}, |
| 186 | 173 | |
| 187 | | stubs: std.ArrayListUnmanaged(*Atom) = .{}, |
| 174 | stubs: std.ArrayListUnmanaged(Entry) = .{}, |
| 188 | 175 | stubs_free_list: std.ArrayListUnmanaged(u32) = .{}, |
| 189 | | stubs_table: std.AutoArrayHashMapUnmanaged(u32, u32) = .{}, |
| 176 | stubs_table: std.AutoArrayHashMapUnmanaged(SymbolWithLoc, u32) = .{}, |
| 190 | 177 | |
| 191 | 178 | error_flags: File.ErrorFlags = File.ErrorFlags{}, |
| 192 | 179 | |
| ... | ... | @@ -194,12 +181,6 @@ load_commands_dirty: bool = false, |
| 194 | 181 | sections_order_dirty: bool = false, |
| 195 | 182 | has_dices: bool = false, |
| 196 | 183 | has_stabs: bool = false, |
| 197 | | /// A helper var to indicate if we are at the start of the incremental updates, or |
| 198 | | /// already somewhere further along the update-and-run chain. |
| 199 | | /// TODO once we add opening a prelinked output binary from file, this will become |
| 200 | | /// obsolete as we will carry on where we left off. |
| 201 | | cold_start: bool = false, |
| 202 | | invalidate_relocs: bool = false, |
| 203 | 184 | |
| 204 | 185 | section_ordinals: std.AutoArrayHashMapUnmanaged(MatchingSection, void) = .{}, |
| 205 | 186 | |
| ... | ... | @@ -223,12 +204,10 @@ atom_free_lists: std.AutoHashMapUnmanaged(MatchingSection, std.ArrayListUnmanage |
| 223 | 204 | /// Pointer to the last allocated atom |
| 224 | 205 | atoms: std.AutoHashMapUnmanaged(MatchingSection, *Atom) = .{}, |
| 225 | 206 | |
| 226 | | /// List of atoms that are owned directly by the linker. |
| 227 | | /// Currently these are only atoms that are the result of linking |
| 228 | | /// object files. Atoms which take part in incremental linking are |
| 229 | | /// at present owned by Module.Decl. |
| 230 | | /// TODO consolidate this. |
| 207 | /// List of atoms that are either synthetic or map directly to the Zig source program. |
| 231 | 208 | managed_atoms: std.ArrayListUnmanaged(*Atom) = .{}, |
| 209 | |
| 210 | /// Table of atoms indexed by the symbol index. |
| 232 | 211 | atom_by_index_table: std.AutoHashMapUnmanaged(u32, *Atom) = .{}, |
| 233 | 212 | |
| 234 | 213 | /// Table of unnamed constants associated with a parent `Decl`. |
| ... | ... | @@ -259,9 +238,10 @@ unnamed_const_atoms: UnnamedConstTable = .{}, |
| 259 | 238 | decls: std.AutoArrayHashMapUnmanaged(Module.Decl.Index, ?MatchingSection) = .{}, |
| 260 | 239 | |
| 261 | 240 | gc_roots: std.AutoHashMapUnmanaged(*Atom, void) = .{}, |
| 241 | gc_sections: std.AutoHashMapUnmanaged(MatchingSection, void) = .{}, |
| 262 | 242 | |
| 263 | 243 | const Entry = struct { |
| 264 | | target: Atom.Relocation.Target, |
| 244 | target: SymbolWithLoc, |
| 265 | 245 | atom: *Atom, |
| 266 | 246 | }; |
| 267 | 247 | |
| ... | ... | @@ -273,15 +253,12 @@ const PendingUpdate = union(enum) { |
| 273 | 253 | add_got_entry: u32, |
| 274 | 254 | }; |
| 275 | 255 | |
| 276 | | const SymbolWithLoc = struct { |
| 277 | | // Table where the symbol can be found. |
| 278 | | where: enum { |
| 279 | | global, |
| 280 | | undef, |
| 281 | | }, |
| 282 | | where_index: u32, |
| 283 | | local_sym_index: u32 = 0, |
| 284 | | file: ?u16 = null, // null means Zig module |
| 256 | pub const SymbolWithLoc = struct { |
| 257 | // Index into the respective symbol table. |
| 258 | sym_index: u32, |
| 259 | |
| 260 | // null means it's a synthetic global. |
| 261 | file: ?u32 = null, |
| 285 | 262 | }; |
| 286 | 263 | |
| 287 | 264 | /// When allocating, the ideal_capacity is calculated by |
| ... | ... | @@ -389,7 +366,7 @@ pub fn openPath(allocator: Allocator, options: link.Options) !*MachO { |
| 389 | 366 | .n_desc = 0, |
| 390 | 367 | .n_value = 0, |
| 391 | 368 | }); |
| 392 | | try self.strtab.append(allocator, 0); |
| 369 | try self.strtab.buffer.append(allocator, 0); |
| 393 | 370 | |
| 394 | 371 | try self.populateMissingMetadata(); |
| 395 | 372 | |
| ... | ... | @@ -524,7 +501,6 @@ pub fn flushModule(self: *MachO, comp: *Compilation, prog_node: *std.Progress.No |
| 524 | 501 | const is_dyn_lib = self.base.options.link_mode == .Dynamic and is_lib; |
| 525 | 502 | const is_exe_or_dyn_lib = is_dyn_lib or self.base.options.output_mode == .Exe; |
| 526 | 503 | const stack_size = self.base.options.stack_size_override orelse 0; |
| 527 | | const allow_undef = is_dyn_lib and (self.base.options.allow_shlib_undefined orelse false); |
| 528 | 504 | |
| 529 | 505 | const id_symlink_basename = "zld.id"; |
| 530 | 506 | const cache_dir_handle = blk: { |
| ... | ... | @@ -541,7 +517,6 @@ pub fn flushModule(self: *MachO, comp: *Compilation, prog_node: *std.Progress.No |
| 541 | 517 | defer if (!self.base.options.disable_lld_caching) man.deinit(); |
| 542 | 518 | |
| 543 | 519 | var digest: [Cache.hex_digest_len]u8 = undefined; |
| 544 | | var needs_full_relink = true; |
| 545 | 520 | |
| 546 | 521 | cache: { |
| 547 | 522 | if ((use_stage1 and self.base.options.disable_lld_caching) or self.base.options.cache_mode == .whole) |
| ... | ... | @@ -610,14 +585,6 @@ pub fn flushModule(self: *MachO, comp: *Compilation, prog_node: *std.Progress.No |
| 610 | 585 | return; |
| 611 | 586 | } else { |
| 612 | 587 | log.debug("MachO Zld digest={s} match", .{std.fmt.fmtSliceHexLower(&digest)}); |
| 613 | | if (!self.cold_start) { |
| 614 | | log.debug(" no need to relink objects", .{}); |
| 615 | | needs_full_relink = false; |
| 616 | | } else { |
| 617 | | log.debug(" TODO parse prelinked binary and continue linking where we left off", .{}); |
| 618 | | // TODO until such time however, perform a full relink of objects. |
| 619 | | needs_full_relink = true; |
| 620 | | } |
| 621 | 588 | } |
| 622 | 589 | } |
| 623 | 590 | log.debug("MachO Zld prev_digest={s} new_digest={s}", .{ |
| ... | ... | @@ -672,441 +639,373 @@ pub fn flushModule(self: *MachO, comp: *Compilation, prog_node: *std.Progress.No |
| 672 | 639 | .n_desc = 0, |
| 673 | 640 | .n_value = 0, |
| 674 | 641 | }); |
| 675 | | try self.strtab.append(self.base.allocator, 0); |
| 642 | try self.strtab.buffer.append(self.base.allocator, 0); |
| 676 | 643 | try self.populateMissingMetadata(); |
| 677 | 644 | } |
| 678 | 645 | |
| 679 | 646 | var lib_not_found = false; |
| 680 | 647 | var framework_not_found = false; |
| 681 | 648 | |
| 682 | | if (needs_full_relink) { |
| 683 | | for (self.objects.items) |*object| { |
| 684 | | object.free(self.base.allocator, self); |
| 685 | | object.deinit(self.base.allocator); |
| 686 | | } |
| 687 | | self.objects.clearRetainingCapacity(); |
| 649 | // Positional arguments to the linker such as object files and static archives. |
| 650 | var positionals = std.ArrayList([]const u8).init(arena); |
| 651 | try positionals.ensureUnusedCapacity(self.base.options.objects.len); |
| 688 | 652 | |
| 689 | | for (self.archives.items) |*archive| { |
| 690 | | archive.deinit(self.base.allocator); |
| 691 | | } |
| 692 | | self.archives.clearRetainingCapacity(); |
| 653 | var must_link_archives = std.StringArrayHashMap(void).init(arena); |
| 654 | try must_link_archives.ensureUnusedCapacity(self.base.options.objects.len); |
| 693 | 655 | |
| 694 | | for (self.dylibs.items) |*dylib| { |
| 695 | | dylib.deinit(self.base.allocator); |
| 696 | | } |
| 697 | | self.dylibs.clearRetainingCapacity(); |
| 698 | | self.dylibs_map.clearRetainingCapacity(); |
| 699 | | self.referenced_dylibs.clearRetainingCapacity(); |
| 700 | | |
| 701 | | { |
| 702 | | var to_remove = std.ArrayList(u32).init(self.base.allocator); |
| 703 | | defer to_remove.deinit(); |
| 704 | | var it = self.symbol_resolver.iterator(); |
| 705 | | while (it.next()) |entry| { |
| 706 | | const key = entry.key_ptr.*; |
| 707 | | const value = entry.value_ptr.*; |
| 708 | | if (value.file != null) { |
| 709 | | try to_remove.append(key); |
| 710 | | } |
| 711 | | } |
| 712 | | |
| 713 | | for (to_remove.items) |key| { |
| 714 | | if (self.symbol_resolver.fetchRemove(key)) |entry| { |
| 715 | | const resolv = entry.value; |
| 716 | | switch (resolv.where) { |
| 717 | | .global => { |
| 718 | | self.globals_free_list.append(self.base.allocator, resolv.where_index) catch {}; |
| 719 | | const sym = &self.globals.items[resolv.where_index]; |
| 720 | | sym.n_strx = 0; |
| 721 | | sym.n_type = 0; |
| 722 | | sym.n_value = 0; |
| 723 | | }, |
| 724 | | .undef => { |
| 725 | | const sym = &self.undefs.items[resolv.where_index]; |
| 726 | | sym.n_strx = 0; |
| 727 | | sym.n_desc = 0; |
| 728 | | }, |
| 729 | | } |
| 730 | | if (self.got_entries_table.get(.{ .global = entry.key })) |i| { |
| 731 | | self.got_entries_free_list.append(self.base.allocator, @intCast(u32, i)) catch {}; |
| 732 | | self.got_entries.items[i] = .{ .target = .{ .local = 0 }, .atom = undefined }; |
| 733 | | _ = self.got_entries_table.swapRemove(.{ .global = entry.key }); |
| 734 | | } |
| 735 | | if (self.stubs_table.get(entry.key)) |i| { |
| 736 | | self.stubs_free_list.append(self.base.allocator, @intCast(u32, i)) catch {}; |
| 737 | | self.stubs.items[i] = undefined; |
| 738 | | _ = self.stubs_table.swapRemove(entry.key); |
| 739 | | } |
| 740 | | } |
| 741 | | } |
| 656 | for (self.base.options.objects) |obj| { |
| 657 | if (must_link_archives.contains(obj.path)) continue; |
| 658 | if (obj.must_link) { |
| 659 | _ = must_link_archives.getOrPutAssumeCapacity(obj.path); |
| 660 | } else { |
| 661 | _ = positionals.appendAssumeCapacity(obj.path); |
| 742 | 662 | } |
| 743 | | // Invalidate all relocs |
| 744 | | // TODO we only need to invalidate the backlinks to the relinked atoms from |
| 745 | | // the relocatable object files. |
| 746 | | self.invalidate_relocs = true; |
| 747 | | |
| 748 | | // Positional arguments to the linker such as object files and static archives. |
| 749 | | var positionals = std.ArrayList([]const u8).init(arena); |
| 750 | | try positionals.ensureUnusedCapacity(self.base.options.objects.len); |
| 663 | } |
| 751 | 664 | |
| 752 | | var must_link_archives = std.StringArrayHashMap(void).init(arena); |
| 753 | | try must_link_archives.ensureUnusedCapacity(self.base.options.objects.len); |
| 665 | for (comp.c_object_table.keys()) |key| { |
| 666 | try positionals.append(key.status.success.object_path); |
| 667 | } |
| 754 | 668 | |
| 755 | | for (self.base.options.objects) |obj| { |
| 756 | | if (must_link_archives.contains(obj.path)) continue; |
| 757 | | if (obj.must_link) { |
| 758 | | _ = must_link_archives.getOrPutAssumeCapacity(obj.path); |
| 759 | | } else { |
| 760 | | _ = positionals.appendAssumeCapacity(obj.path); |
| 761 | | } |
| 762 | | } |
| 669 | if (module_obj_path) |p| { |
| 670 | try positionals.append(p); |
| 671 | } |
| 763 | 672 | |
| 764 | | for (comp.c_object_table.keys()) |key| { |
| 765 | | try positionals.append(key.status.success.object_path); |
| 766 | | } |
| 673 | if (comp.compiler_rt_lib) |lib| { |
| 674 | try positionals.append(lib.full_object_path); |
| 675 | } |
| 767 | 676 | |
| 768 | | if (module_obj_path) |p| { |
| 769 | | try positionals.append(p); |
| 770 | | } |
| 677 | // libc++ dep |
| 678 | if (self.base.options.link_libcpp) { |
| 679 | try positionals.append(comp.libcxxabi_static_lib.?.full_object_path); |
| 680 | try positionals.append(comp.libcxx_static_lib.?.full_object_path); |
| 681 | } |
| 771 | 682 | |
| 772 | | if (comp.compiler_rt_lib) |lib| { |
| 773 | | try positionals.append(lib.full_object_path); |
| 774 | | } |
| 683 | // Shared and static libraries passed via `-l` flag. |
| 684 | var candidate_libs = std.StringArrayHashMap(SystemLib).init(arena); |
| 775 | 685 | |
| 776 | | // libc++ dep |
| 777 | | if (self.base.options.link_libcpp) { |
| 778 | | try positionals.append(comp.libcxxabi_static_lib.?.full_object_path); |
| 779 | | try positionals.append(comp.libcxx_static_lib.?.full_object_path); |
| 686 | const system_lib_names = self.base.options.system_libs.keys(); |
| 687 | for (system_lib_names) |system_lib_name| { |
| 688 | // By this time, we depend on these libs being dynamically linked libraries and not static libraries |
| 689 | // (the check for that needs to be earlier), but they could be full paths to .dylib files, in which |
| 690 | // case we want to avoid prepending "-l". |
| 691 | if (Compilation.classifyFileExt(system_lib_name) == .shared_library) { |
| 692 | try positionals.append(system_lib_name); |
| 693 | continue; |
| 780 | 694 | } |
| 781 | 695 | |
| 782 | | // Shared and static libraries passed via `-l` flag. |
| 783 | | var candidate_libs = std.StringArrayHashMap(SystemLib).init(arena); |
| 784 | | |
| 785 | | const system_lib_names = self.base.options.system_libs.keys(); |
| 786 | | for (system_lib_names) |system_lib_name| { |
| 787 | | // By this time, we depend on these libs being dynamically linked libraries and not static libraries |
| 788 | | // (the check for that needs to be earlier), but they could be full paths to .dylib files, in which |
| 789 | | // case we want to avoid prepending "-l". |
| 790 | | if (Compilation.classifyFileExt(system_lib_name) == .shared_library) { |
| 791 | | try positionals.append(system_lib_name); |
| 792 | | continue; |
| 793 | | } |
| 794 | | |
| 795 | | const system_lib_info = self.base.options.system_libs.get(system_lib_name).?; |
| 796 | | try candidate_libs.put(system_lib_name, .{ |
| 797 | | .needed = system_lib_info.needed, |
| 798 | | .weak = system_lib_info.weak, |
| 799 | | }); |
| 800 | | } |
| 696 | const system_lib_info = self.base.options.system_libs.get(system_lib_name).?; |
| 697 | try candidate_libs.put(system_lib_name, .{ |
| 698 | .needed = system_lib_info.needed, |
| 699 | .weak = system_lib_info.weak, |
| 700 | }); |
| 701 | } |
| 801 | 702 | |
| 802 | | var lib_dirs = std.ArrayList([]const u8).init(arena); |
| 803 | | for (self.base.options.lib_dirs) |dir| { |
| 804 | | if (try resolveSearchDir(arena, dir, self.base.options.sysroot)) |search_dir| { |
| 805 | | try lib_dirs.append(search_dir); |
| 806 | | } else { |
| 807 | | log.warn("directory not found for '-L{s}'", .{dir}); |
| 808 | | } |
| 703 | var lib_dirs = std.ArrayList([]const u8).init(arena); |
| 704 | for (self.base.options.lib_dirs) |dir| { |
| 705 | if (try resolveSearchDir(arena, dir, self.base.options.sysroot)) |search_dir| { |
| 706 | try lib_dirs.append(search_dir); |
| 707 | } else { |
| 708 | log.warn("directory not found for '-L{s}'", .{dir}); |
| 809 | 709 | } |
| 710 | } |
| 810 | 711 | |
| 811 | | var libs = std.StringArrayHashMap(SystemLib).init(arena); |
| 812 | | |
| 813 | | // Assume ld64 default -search_paths_first if no strategy specified. |
| 814 | | const search_strategy = self.base.options.search_strategy orelse .paths_first; |
| 815 | | outer: for (candidate_libs.keys()) |lib_name| { |
| 816 | | switch (search_strategy) { |
| 817 | | .paths_first => { |
| 818 | | // Look in each directory for a dylib (stub first), and then for archive |
| 819 | | for (lib_dirs.items) |dir| { |
| 820 | | for (&[_][]const u8{ ".tbd", ".dylib", ".a" }) |ext| { |
| 821 | | if (try resolveLib(arena, dir, lib_name, ext)) |full_path| { |
| 822 | | try libs.put(full_path, candidate_libs.get(lib_name).?); |
| 823 | | continue :outer; |
| 824 | | } |
| 712 | var libs = std.StringArrayHashMap(SystemLib).init(arena); |
| 713 | |
| 714 | // Assume ld64 default -search_paths_first if no strategy specified. |
| 715 | const search_strategy = self.base.options.search_strategy orelse .paths_first; |
| 716 | outer: for (candidate_libs.keys()) |lib_name| { |
| 717 | switch (search_strategy) { |
| 718 | .paths_first => { |
| 719 | // Look in each directory for a dylib (stub first), and then for archive |
| 720 | for (lib_dirs.items) |dir| { |
| 721 | for (&[_][]const u8{ ".tbd", ".dylib", ".a" }) |ext| { |
| 722 | if (try resolveLib(arena, dir, lib_name, ext)) |full_path| { |
| 723 | try libs.put(full_path, candidate_libs.get(lib_name).?); |
| 724 | continue :outer; |
| 825 | 725 | } |
| 826 | | } else { |
| 827 | | log.warn("library not found for '-l{s}'", .{lib_name}); |
| 828 | | lib_not_found = true; |
| 829 | 726 | } |
| 830 | | }, |
| 831 | | .dylibs_first => { |
| 832 | | // First, look for a dylib in each search dir |
| 833 | | for (lib_dirs.items) |dir| { |
| 834 | | for (&[_][]const u8{ ".tbd", ".dylib" }) |ext| { |
| 835 | | if (try resolveLib(arena, dir, lib_name, ext)) |full_path| { |
| 836 | | try libs.put(full_path, candidate_libs.get(lib_name).?); |
| 837 | | continue :outer; |
| 838 | | } |
| 839 | | } |
| 840 | | } else for (lib_dirs.items) |dir| { |
| 841 | | if (try resolveLib(arena, dir, lib_name, ".a")) |full_path| { |
| 727 | } else { |
| 728 | log.warn("library not found for '-l{s}'", .{lib_name}); |
| 729 | lib_not_found = true; |
| 730 | } |
| 731 | }, |
| 732 | .dylibs_first => { |
| 733 | // First, look for a dylib in each search dir |
| 734 | for (lib_dirs.items) |dir| { |
| 735 | for (&[_][]const u8{ ".tbd", ".dylib" }) |ext| { |
| 736 | if (try resolveLib(arena, dir, lib_name, ext)) |full_path| { |
| 842 | 737 | try libs.put(full_path, candidate_libs.get(lib_name).?); |
| 843 | | } else { |
| 844 | | log.warn("library not found for '-l{s}'", .{lib_name}); |
| 845 | | lib_not_found = true; |
| 738 | continue :outer; |
| 846 | 739 | } |
| 847 | 740 | } |
| 848 | | }, |
| 849 | | } |
| 741 | } else for (lib_dirs.items) |dir| { |
| 742 | if (try resolveLib(arena, dir, lib_name, ".a")) |full_path| { |
| 743 | try libs.put(full_path, candidate_libs.get(lib_name).?); |
| 744 | } else { |
| 745 | log.warn("library not found for '-l{s}'", .{lib_name}); |
| 746 | lib_not_found = true; |
| 747 | } |
| 748 | } |
| 749 | }, |
| 850 | 750 | } |
| 751 | } |
| 851 | 752 | |
| 852 | | if (lib_not_found) { |
| 853 | | log.warn("Library search paths:", .{}); |
| 854 | | for (lib_dirs.items) |dir| { |
| 855 | | log.warn(" {s}", .{dir}); |
| 856 | | } |
| 753 | if (lib_not_found) { |
| 754 | log.warn("Library search paths:", .{}); |
| 755 | for (lib_dirs.items) |dir| { |
| 756 | log.warn(" {s}", .{dir}); |
| 857 | 757 | } |
| 758 | } |
| 858 | 759 | |
| 859 | | // If we were given the sysroot, try to look there first for libSystem.B.{dylib, tbd}. |
| 860 | | var libsystem_available = false; |
| 861 | | if (self.base.options.sysroot != null) blk: { |
| 862 | | // Try stub file first. If we hit it, then we're done as the stub file |
| 863 | | // re-exports every single symbol definition. |
| 864 | | for (lib_dirs.items) |dir| { |
| 865 | | if (try resolveLib(arena, dir, "System", ".tbd")) |full_path| { |
| 866 | | try libs.put(full_path, .{ .needed = true }); |
| 760 | // If we were given the sysroot, try to look there first for libSystem.B.{dylib, tbd}. |
| 761 | var libsystem_available = false; |
| 762 | if (self.base.options.sysroot != null) blk: { |
| 763 | // Try stub file first. If we hit it, then we're done as the stub file |
| 764 | // re-exports every single symbol definition. |
| 765 | for (lib_dirs.items) |dir| { |
| 766 | if (try resolveLib(arena, dir, "System", ".tbd")) |full_path| { |
| 767 | try libs.put(full_path, .{ .needed = true }); |
| 768 | libsystem_available = true; |
| 769 | break :blk; |
| 770 | } |
| 771 | } |
| 772 | // If we didn't hit the stub file, try .dylib next. However, libSystem.dylib |
| 773 | // doesn't export libc.dylib which we'll need to resolve subsequently also. |
| 774 | for (lib_dirs.items) |dir| { |
| 775 | if (try resolveLib(arena, dir, "System", ".dylib")) |libsystem_path| { |
| 776 | if (try resolveLib(arena, dir, "c", ".dylib")) |libc_path| { |
| 777 | try libs.put(libsystem_path, .{ .needed = true }); |
| 778 | try libs.put(libc_path, .{ .needed = true }); |
| 867 | 779 | libsystem_available = true; |
| 868 | 780 | break :blk; |
| 869 | 781 | } |
| 870 | 782 | } |
| 871 | | // If we didn't hit the stub file, try .dylib next. However, libSystem.dylib |
| 872 | | // doesn't export libc.dylib which we'll need to resolve subsequently also. |
| 873 | | for (lib_dirs.items) |dir| { |
| 874 | | if (try resolveLib(arena, dir, "System", ".dylib")) |libsystem_path| { |
| 875 | | if (try resolveLib(arena, dir, "c", ".dylib")) |libc_path| { |
| 876 | | try libs.put(libsystem_path, .{ .needed = true }); |
| 877 | | try libs.put(libc_path, .{ .needed = true }); |
| 878 | | libsystem_available = true; |
| 879 | | break :blk; |
| 880 | | } |
| 881 | | } |
| 882 | | } |
| 883 | | } |
| 884 | | if (!libsystem_available) { |
| 885 | | const libsystem_name = try std.fmt.allocPrint(arena, "libSystem.{d}.tbd", .{ |
| 886 | | self.base.options.target.os.version_range.semver.min.major, |
| 887 | | }); |
| 888 | | const full_path = try comp.zig_lib_directory.join(arena, &[_][]const u8{ |
| 889 | | "libc", "darwin", libsystem_name, |
| 890 | | }); |
| 891 | | try libs.put(full_path, .{ .needed = true }); |
| 892 | 783 | } |
| 784 | } |
| 785 | if (!libsystem_available) { |
| 786 | const libsystem_name = try std.fmt.allocPrint(arena, "libSystem.{d}.tbd", .{ |
| 787 | self.base.options.target.os.version_range.semver.min.major, |
| 788 | }); |
| 789 | const full_path = try comp.zig_lib_directory.join(arena, &[_][]const u8{ |
| 790 | "libc", "darwin", libsystem_name, |
| 791 | }); |
| 792 | try libs.put(full_path, .{ .needed = true }); |
| 793 | } |
| 893 | 794 | |
| 894 | | // frameworks |
| 895 | | var framework_dirs = std.ArrayList([]const u8).init(arena); |
| 896 | | for (self.base.options.framework_dirs) |dir| { |
| 897 | | if (try resolveSearchDir(arena, dir, self.base.options.sysroot)) |search_dir| { |
| 898 | | try framework_dirs.append(search_dir); |
| 899 | | } else { |
| 900 | | log.warn("directory not found for '-F{s}'", .{dir}); |
| 901 | | } |
| 795 | // frameworks |
| 796 | var framework_dirs = std.ArrayList([]const u8).init(arena); |
| 797 | for (self.base.options.framework_dirs) |dir| { |
| 798 | if (try resolveSearchDir(arena, dir, self.base.options.sysroot)) |search_dir| { |
| 799 | try framework_dirs.append(search_dir); |
| 800 | } else { |
| 801 | log.warn("directory not found for '-F{s}'", .{dir}); |
| 902 | 802 | } |
| 803 | } |
| 903 | 804 | |
| 904 | | outer: for (self.base.options.frameworks.keys()) |f_name| { |
| 905 | | for (framework_dirs.items) |dir| { |
| 906 | | for (&[_][]const u8{ ".tbd", ".dylib", "" }) |ext| { |
| 907 | | if (try resolveFramework(arena, dir, f_name, ext)) |full_path| { |
| 908 | | const info = self.base.options.frameworks.get(f_name).?; |
| 909 | | try libs.put(full_path, .{ |
| 910 | | .needed = info.needed, |
| 911 | | .weak = info.weak, |
| 912 | | }); |
| 913 | | continue :outer; |
| 914 | | } |
| 805 | outer: for (self.base.options.frameworks.keys()) |f_name| { |
| 806 | for (framework_dirs.items) |dir| { |
| 807 | for (&[_][]const u8{ ".tbd", ".dylib", "" }) |ext| { |
| 808 | if (try resolveFramework(arena, dir, f_name, ext)) |full_path| { |
| 809 | const info = self.base.options.frameworks.get(f_name).?; |
| 810 | try libs.put(full_path, .{ |
| 811 | .needed = info.needed, |
| 812 | .weak = info.weak, |
| 813 | }); |
| 814 | continue :outer; |
| 915 | 815 | } |
| 916 | | } else { |
| 917 | | log.warn("framework not found for '-framework {s}'", .{f_name}); |
| 918 | | framework_not_found = true; |
| 919 | 816 | } |
| 817 | } else { |
| 818 | log.warn("framework not found for '-framework {s}'", .{f_name}); |
| 819 | framework_not_found = true; |
| 920 | 820 | } |
| 821 | } |
| 921 | 822 | |
| 922 | | if (framework_not_found) { |
| 923 | | log.warn("Framework search paths:", .{}); |
| 924 | | for (framework_dirs.items) |dir| { |
| 925 | | log.warn(" {s}", .{dir}); |
| 926 | | } |
| 823 | if (framework_not_found) { |
| 824 | log.warn("Framework search paths:", .{}); |
| 825 | for (framework_dirs.items) |dir| { |
| 826 | log.warn(" {s}", .{dir}); |
| 927 | 827 | } |
| 828 | } |
| 928 | 829 | |
| 929 | | // rpaths |
| 930 | | var rpath_table = std.StringArrayHashMap(void).init(arena); |
| 931 | | for (self.base.options.rpath_list) |rpath| { |
| 932 | | if (rpath_table.contains(rpath)) continue; |
| 933 | | const cmdsize = @intCast(u32, mem.alignForwardGeneric( |
| 934 | | u64, |
| 935 | | @sizeOf(macho.rpath_command) + rpath.len + 1, |
| 936 | | @sizeOf(u64), |
| 937 | | )); |
| 938 | | var rpath_cmd = macho.emptyGenericCommandWithData(macho.rpath_command{ |
| 939 | | .cmdsize = cmdsize, |
| 940 | | .path = @sizeOf(macho.rpath_command), |
| 941 | | }); |
| 942 | | rpath_cmd.data = try self.base.allocator.alloc(u8, cmdsize - rpath_cmd.inner.path); |
| 943 | | mem.set(u8, rpath_cmd.data, 0); |
| 944 | | mem.copy(u8, rpath_cmd.data, rpath); |
| 945 | | try self.load_commands.append(self.base.allocator, .{ .rpath = rpath_cmd }); |
| 946 | | try rpath_table.putNoClobber(rpath, {}); |
| 947 | | self.load_commands_dirty = true; |
| 948 | | } |
| 830 | // rpaths |
| 831 | var rpath_table = std.StringArrayHashMap(void).init(arena); |
| 832 | for (self.base.options.rpath_list) |rpath| { |
| 833 | if (rpath_table.contains(rpath)) continue; |
| 834 | const cmdsize = @intCast(u32, mem.alignForwardGeneric( |
| 835 | u64, |
| 836 | @sizeOf(macho.rpath_command) + rpath.len + 1, |
| 837 | @sizeOf(u64), |
| 838 | )); |
| 839 | var rpath_cmd = macho.emptyGenericCommandWithData(macho.rpath_command{ |
| 840 | .cmdsize = cmdsize, |
| 841 | .path = @sizeOf(macho.rpath_command), |
| 842 | }); |
| 843 | rpath_cmd.data = try self.base.allocator.alloc(u8, cmdsize - rpath_cmd.inner.path); |
| 844 | mem.set(u8, rpath_cmd.data, 0); |
| 845 | mem.copy(u8, rpath_cmd.data, rpath); |
| 846 | try self.load_commands.append(self.base.allocator, .{ .rpath = rpath_cmd }); |
| 847 | try rpath_table.putNoClobber(rpath, {}); |
| 848 | self.load_commands_dirty = true; |
| 849 | } |
| 949 | 850 | |
| 950 | | // code signature and entitlements |
| 951 | | if (self.base.options.entitlements) |path| { |
| 952 | | if (self.code_signature) |*csig| { |
| 953 | | try csig.addEntitlements(self.base.allocator, path); |
| 954 | | csig.code_directory.ident = self.base.options.emit.?.sub_path; |
| 955 | | } else { |
| 956 | | var csig = CodeSignature.init(self.page_size); |
| 957 | | try csig.addEntitlements(self.base.allocator, path); |
| 958 | | csig.code_directory.ident = self.base.options.emit.?.sub_path; |
| 959 | | self.code_signature = csig; |
| 960 | | } |
| 851 | // code signature and entitlements |
| 852 | if (self.base.options.entitlements) |path| { |
| 853 | if (self.code_signature) |*csig| { |
| 854 | try csig.addEntitlements(self.base.allocator, path); |
| 855 | csig.code_directory.ident = self.base.options.emit.?.sub_path; |
| 856 | } else { |
| 857 | var csig = CodeSignature.init(self.page_size); |
| 858 | try csig.addEntitlements(self.base.allocator, path); |
| 859 | csig.code_directory.ident = self.base.options.emit.?.sub_path; |
| 860 | self.code_signature = csig; |
| 961 | 861 | } |
| 862 | } |
| 962 | 863 | |
| 963 | | if (self.base.options.verbose_link) { |
| 964 | | var argv = std.ArrayList([]const u8).init(arena); |
| 965 | | |
| 966 | | try argv.append("zig"); |
| 967 | | try argv.append("ld"); |
| 968 | | |
| 969 | | if (is_exe_or_dyn_lib) { |
| 970 | | try argv.append("-dynamic"); |
| 971 | | } |
| 972 | | |
| 973 | | if (is_dyn_lib) { |
| 974 | | try argv.append("-dylib"); |
| 864 | if (self.base.options.verbose_link) { |
| 865 | var argv = std.ArrayList([]const u8).init(arena); |
| 975 | 866 | |
| 976 | | if (self.base.options.install_name) |install_name| { |
| 977 | | try argv.append("-install_name"); |
| 978 | | try argv.append(install_name); |
| 979 | | } |
| 980 | | } |
| 867 | try argv.append("zig"); |
| 868 | try argv.append("ld"); |
| 981 | 869 | |
| 982 | | if (self.base.options.sysroot) |syslibroot| { |
| 983 | | try argv.append("-syslibroot"); |
| 984 | | try argv.append(syslibroot); |
| 985 | | } |
| 870 | if (is_exe_or_dyn_lib) { |
| 871 | try argv.append("-dynamic"); |
| 872 | } |
| 986 | 873 | |
| 987 | | for (rpath_table.keys()) |rpath| { |
| 988 | | try argv.append("-rpath"); |
| 989 | | try argv.append(rpath); |
| 990 | | } |
| 874 | if (is_dyn_lib) { |
| 875 | try argv.append("-dylib"); |
| 991 | 876 | |
| 992 | | if (self.base.options.pagezero_size) |pagezero_size| { |
| 993 | | try argv.append("-pagezero_size"); |
| 994 | | try argv.append(try std.fmt.allocPrint(arena, "0x{x}", .{pagezero_size})); |
| 877 | if (self.base.options.install_name) |install_name| { |
| 878 | try argv.append("-install_name"); |
| 879 | try argv.append(install_name); |
| 995 | 880 | } |
| 881 | } |
| 996 | 882 | |
| 997 | | if (self.base.options.search_strategy) |strat| switch (strat) { |
| 998 | | .paths_first => try argv.append("-search_paths_first"), |
| 999 | | .dylibs_first => try argv.append("-search_dylibs_first"), |
| 1000 | | }; |
| 883 | if (self.base.options.sysroot) |syslibroot| { |
| 884 | try argv.append("-syslibroot"); |
| 885 | try argv.append(syslibroot); |
| 886 | } |
| 1001 | 887 | |
| 1002 | | if (self.base.options.headerpad_size) |headerpad_size| { |
| 1003 | | try argv.append("-headerpad_size"); |
| 1004 | | try argv.append(try std.fmt.allocPrint(arena, "0x{x}", .{headerpad_size})); |
| 1005 | | } |
| 888 | for (rpath_table.keys()) |rpath| { |
| 889 | try argv.append("-rpath"); |
| 890 | try argv.append(rpath); |
| 891 | } |
| 1006 | 892 | |
| 1007 | | if (self.base.options.headerpad_max_install_names) { |
| 1008 | | try argv.append("-headerpad_max_install_names"); |
| 1009 | | } |
| 893 | if (self.base.options.pagezero_size) |pagezero_size| { |
| 894 | try argv.append("-pagezero_size"); |
| 895 | try argv.append(try std.fmt.allocPrint(arena, "0x{x}", .{pagezero_size})); |
| 896 | } |
| 1010 | 897 | |
| 1011 | | if (self.base.options.gc_sections) |is_set| { |
| 1012 | | if (is_set) { |
| 1013 | | try argv.append("-dead_strip"); |
| 1014 | | } |
| 1015 | | } |
| 898 | if (self.base.options.search_strategy) |strat| switch (strat) { |
| 899 | .paths_first => try argv.append("-search_paths_first"), |
| 900 | .dylibs_first => try argv.append("-search_dylibs_first"), |
| 901 | }; |
| 1016 | 902 | |
| 1017 | | if (self.base.options.dead_strip_dylibs) { |
| 1018 | | try argv.append("-dead_strip_dylibs"); |
| 1019 | | } |
| 903 | if (self.base.options.headerpad_size) |headerpad_size| { |
| 904 | try argv.append("-headerpad_size"); |
| 905 | try argv.append(try std.fmt.allocPrint(arena, "0x{x}", .{headerpad_size})); |
| 906 | } |
| 1020 | 907 | |
| 1021 | | if (self.base.options.entry) |entry| { |
| 1022 | | try argv.append("-e"); |
| 1023 | | try argv.append(entry); |
| 1024 | | } |
| 908 | if (self.base.options.headerpad_max_install_names) { |
| 909 | try argv.append("-headerpad_max_install_names"); |
| 910 | } |
| 1025 | 911 | |
| 1026 | | for (self.base.options.objects) |obj| { |
| 1027 | | try argv.append(obj.path); |
| 912 | if (self.base.options.gc_sections) |is_set| { |
| 913 | if (is_set) { |
| 914 | try argv.append("-dead_strip"); |
| 1028 | 915 | } |
| 916 | } |
| 1029 | 917 | |
| 1030 | | for (comp.c_object_table.keys()) |key| { |
| 1031 | | try argv.append(key.status.success.object_path); |
| 1032 | | } |
| 918 | if (self.base.options.dead_strip_dylibs) { |
| 919 | try argv.append("-dead_strip_dylibs"); |
| 920 | } |
| 1033 | 921 | |
| 1034 | | if (module_obj_path) |p| { |
| 1035 | | try argv.append(p); |
| 1036 | | } |
| 922 | if (self.base.options.entry) |entry| { |
| 923 | try argv.append("-e"); |
| 924 | try argv.append(entry); |
| 925 | } |
| 1037 | 926 | |
| 1038 | | if (comp.compiler_rt_lib) |lib| { |
| 1039 | | try argv.append(lib.full_object_path); |
| 1040 | | } |
| 927 | for (self.base.options.objects) |obj| { |
| 928 | try argv.append(obj.path); |
| 929 | } |
| 1041 | 930 | |
| 1042 | | if (self.base.options.link_libcpp) { |
| 1043 | | try argv.append(comp.libcxxabi_static_lib.?.full_object_path); |
| 1044 | | try argv.append(comp.libcxx_static_lib.?.full_object_path); |
| 1045 | | } |
| 931 | for (comp.c_object_table.keys()) |key| { |
| 932 | try argv.append(key.status.success.object_path); |
| 933 | } |
| 1046 | 934 | |
| 1047 | | try argv.append("-o"); |
| 1048 | | try argv.append(full_out_path); |
| 935 | if (module_obj_path) |p| { |
| 936 | try argv.append(p); |
| 937 | } |
| 1049 | 938 | |
| 1050 | | try argv.append("-lSystem"); |
| 1051 | | try argv.append("-lc"); |
| 939 | if (comp.compiler_rt_lib) |lib| { |
| 940 | try argv.append(lib.full_object_path); |
| 941 | } |
| 1052 | 942 | |
| 1053 | | for (self.base.options.system_libs.keys()) |l_name| { |
| 1054 | | const info = self.base.options.system_libs.get(l_name).?; |
| 1055 | | const arg = if (info.needed) |
| 1056 | | try std.fmt.allocPrint(arena, "-needed-l{s}", .{l_name}) |
| 1057 | | else if (info.weak) |
| 1058 | | try std.fmt.allocPrint(arena, "-weak-l{s}", .{l_name}) |
| 1059 | | else |
| 1060 | | try std.fmt.allocPrint(arena, "-l{s}", .{l_name}); |
| 1061 | | try argv.append(arg); |
| 1062 | | } |
| 943 | if (self.base.options.link_libcpp) { |
| 944 | try argv.append(comp.libcxxabi_static_lib.?.full_object_path); |
| 945 | try argv.append(comp.libcxx_static_lib.?.full_object_path); |
| 946 | } |
| 1063 | 947 | |
| 1064 | | for (self.base.options.lib_dirs) |lib_dir| { |
| 1065 | | try argv.append(try std.fmt.allocPrint(arena, "-L{s}", .{lib_dir})); |
| 1066 | | } |
| 948 | try argv.append("-o"); |
| 949 | try argv.append(full_out_path); |
| 950 | |
| 951 | try argv.append("-lSystem"); |
| 952 | try argv.append("-lc"); |
| 953 | |
| 954 | for (self.base.options.system_libs.keys()) |l_name| { |
| 955 | const info = self.base.options.system_libs.get(l_name).?; |
| 956 | const arg = if (info.needed) |
| 957 | try std.fmt.allocPrint(arena, "-needed-l{s}", .{l_name}) |
| 958 | else if (info.weak) |
| 959 | try std.fmt.allocPrint(arena, "-weak-l{s}", .{l_name}) |
| 960 | else |
| 961 | try std.fmt.allocPrint(arena, "-l{s}", .{l_name}); |
| 962 | try argv.append(arg); |
| 963 | } |
| 1067 | 964 | |
| 1068 | | for (self.base.options.frameworks.keys()) |framework| { |
| 1069 | | const info = self.base.options.frameworks.get(framework).?; |
| 1070 | | const arg = if (info.needed) |
| 1071 | | try std.fmt.allocPrint(arena, "-needed_framework {s}", .{framework}) |
| 1072 | | else if (info.weak) |
| 1073 | | try std.fmt.allocPrint(arena, "-weak_framework {s}", .{framework}) |
| 1074 | | else |
| 1075 | | try std.fmt.allocPrint(arena, "-framework {s}", .{framework}); |
| 1076 | | try argv.append(arg); |
| 1077 | | } |
| 965 | for (self.base.options.lib_dirs) |lib_dir| { |
| 966 | try argv.append(try std.fmt.allocPrint(arena, "-L{s}", .{lib_dir})); |
| 967 | } |
| 1078 | 968 | |
| 1079 | | for (self.base.options.framework_dirs) |framework_dir| { |
| 1080 | | try argv.append(try std.fmt.allocPrint(arena, "-F{s}", .{framework_dir})); |
| 1081 | | } |
| 969 | for (self.base.options.frameworks.keys()) |framework| { |
| 970 | const info = self.base.options.frameworks.get(framework).?; |
| 971 | const arg = if (info.needed) |
| 972 | try std.fmt.allocPrint(arena, "-needed_framework {s}", .{framework}) |
| 973 | else if (info.weak) |
| 974 | try std.fmt.allocPrint(arena, "-weak_framework {s}", .{framework}) |
| 975 | else |
| 976 | try std.fmt.allocPrint(arena, "-framework {s}", .{framework}); |
| 977 | try argv.append(arg); |
| 978 | } |
| 1082 | 979 | |
| 1083 | | if (allow_undef) { |
| 1084 | | try argv.append("-undefined"); |
| 1085 | | try argv.append("dynamic_lookup"); |
| 1086 | | } |
| 980 | for (self.base.options.framework_dirs) |framework_dir| { |
| 981 | try argv.append(try std.fmt.allocPrint(arena, "-F{s}", .{framework_dir})); |
| 982 | } |
| 1087 | 983 | |
| 1088 | | for (must_link_archives.keys()) |lib| { |
| 1089 | | try argv.append(try std.fmt.allocPrint(arena, "-force_load {s}", .{lib})); |
| 1090 | | } |
| 984 | if (is_dyn_lib and (self.base.options.allow_shlib_undefined orelse false)) { |
| 985 | try argv.append("-undefined"); |
| 986 | try argv.append("dynamic_lookup"); |
| 987 | } |
| 1091 | 988 | |
| 1092 | | Compilation.dump_argv(argv.items); |
| 989 | for (must_link_archives.keys()) |lib| { |
| 990 | try argv.append(try std.fmt.allocPrint(arena, "-force_load {s}", .{lib})); |
| 1093 | 991 | } |
| 1094 | 992 | |
| 1095 | | var dependent_libs = std.fifo.LinearFifo(struct { |
| 1096 | | id: Dylib.Id, |
| 1097 | | parent: u16, |
| 1098 | | }, .Dynamic).init(self.base.allocator); |
| 1099 | | defer dependent_libs.deinit(); |
| 1100 | | try self.parseInputFiles(positionals.items, self.base.options.sysroot, &dependent_libs); |
| 1101 | | try self.parseAndForceLoadStaticArchives(must_link_archives.keys()); |
| 1102 | | try self.parseLibs(libs.keys(), libs.values(), self.base.options.sysroot, &dependent_libs); |
| 1103 | | try self.parseDependentLibs(self.base.options.sysroot, &dependent_libs); |
| 993 | Compilation.dump_argv(argv.items); |
| 1104 | 994 | } |
| 1105 | 995 | |
| 996 | var dependent_libs = std.fifo.LinearFifo(struct { |
| 997 | id: Dylib.Id, |
| 998 | parent: u16, |
| 999 | }, .Dynamic).init(self.base.allocator); |
| 1000 | defer dependent_libs.deinit(); |
| 1001 | try self.parseInputFiles(positionals.items, self.base.options.sysroot, &dependent_libs); |
| 1002 | try self.parseAndForceLoadStaticArchives(must_link_archives.keys()); |
| 1003 | try self.parseLibs(libs.keys(), libs.values(), self.base.options.sysroot, &dependent_libs); |
| 1004 | try self.parseDependentLibs(self.base.options.sysroot, &dependent_libs); |
| 1005 | |
| 1106 | 1006 | try self.createMhExecuteHeaderSymbol(); |
| 1107 | 1007 | for (self.objects.items) |*object, object_id| { |
| 1108 | | if (object.analyzed) continue; |
| 1109 | | try self.resolveSymbolsInObject(@intCast(u16, object_id)); |
| 1008 | try self.resolveSymbolsInObject(object, @intCast(u16, object_id)); |
| 1110 | 1009 | } |
| 1111 | 1010 | |
| 1112 | 1011 | try self.resolveSymbolsInArchives(); |
| ... | ... | @@ -1116,44 +1015,8 @@ pub fn flushModule(self: *MachO, comp: *Compilation, prog_node: *std.Progress.No |
| 1116 | 1015 | try self.resolveSymbolsInDylibs(); |
| 1117 | 1016 | try self.createDsoHandleSymbol(); |
| 1118 | 1017 | try self.addCodeSignatureLC(); |
| 1018 | try self.resolveSymbolsAtLoading(); |
| 1119 | 1019 | |
| 1120 | | { |
| 1121 | | var next_sym: usize = 0; |
| 1122 | | while (next_sym < self.unresolved.count()) { |
| 1123 | | const sym = &self.undefs.items[self.unresolved.keys()[next_sym]]; |
| 1124 | | const sym_name = self.getString(sym.n_strx); |
| 1125 | | const resolv = self.symbol_resolver.get(sym.n_strx) orelse unreachable; |
| 1126 | | |
| 1127 | | if (sym.discarded()) { |
| 1128 | | sym.* = .{ |
| 1129 | | .n_strx = 0, |
| 1130 | | .n_type = macho.N_UNDF, |
| 1131 | | .n_sect = 0, |
| 1132 | | .n_desc = 0, |
| 1133 | | .n_value = 0, |
| 1134 | | }; |
| 1135 | | _ = self.unresolved.swapRemove(resolv.where_index); |
| 1136 | | continue; |
| 1137 | | } else if (allow_undef) { |
| 1138 | | const n_desc = @bitCast( |
| 1139 | | u16, |
| 1140 | | macho.BIND_SPECIAL_DYLIB_FLAT_LOOKUP * @intCast(i16, macho.N_SYMBOL_RESOLVER), |
| 1141 | | ); |
| 1142 | | // TODO allow_shlib_undefined is an ELF flag so figure out macOS specific flags too. |
| 1143 | | sym.n_type = macho.N_EXT; |
| 1144 | | sym.n_desc = n_desc; |
| 1145 | | _ = self.unresolved.swapRemove(resolv.where_index); |
| 1146 | | continue; |
| 1147 | | } |
| 1148 | | |
| 1149 | | log.err("undefined reference to symbol '{s}'", .{sym_name}); |
| 1150 | | if (resolv.file) |file| { |
| 1151 | | log.err(" first referenced in '{s}'", .{self.objects.items[file].name}); |
| 1152 | | } |
| 1153 | | |
| 1154 | | next_sym += 1; |
| 1155 | | } |
| 1156 | | } |
| 1157 | 1020 | if (self.unresolved.count() > 0) { |
| 1158 | 1021 | return error.UndefinedSymbolReference; |
| 1159 | 1022 | } |
| ... | ... | @@ -1165,35 +1028,40 @@ pub fn flushModule(self: *MachO, comp: *Compilation, prog_node: *std.Progress.No |
| 1165 | 1028 | } |
| 1166 | 1029 | |
| 1167 | 1030 | try self.createTentativeDefAtoms(); |
| 1168 | | try self.parseObjectsIntoAtoms(); |
| 1169 | 1031 | |
| 1170 | 1032 | const use_llvm = build_options.have_llvm and self.base.options.use_llvm; |
| 1171 | 1033 | if (use_llvm or use_stage1) { |
| 1172 | | self.logAtoms(); |
| 1034 | for (self.objects.items) |*object, object_id| { |
| 1035 | try object.splitIntoAtomsWhole(self, @intCast(u32, object_id)); |
| 1036 | } |
| 1037 | |
| 1173 | 1038 | try self.gcAtoms(); |
| 1174 | 1039 | try self.pruneAndSortSections(); |
| 1175 | 1040 | try self.allocateSegments(); |
| 1176 | | try self.allocateLocals(); |
| 1041 | try self.allocateSymbols(); |
| 1042 | } else { |
| 1043 | // TODO incremental mode: parsing objects into atoms |
| 1177 | 1044 | } |
| 1178 | 1045 | |
| 1179 | 1046 | try self.allocateSpecialSymbols(); |
| 1180 | | try self.allocateGlobals(); |
| 1181 | 1047 | |
| 1182 | | if (build_options.enable_logging or true) { |
| 1048 | if (build_options.enable_logging) { |
| 1183 | 1049 | self.logSymtab(); |
| 1184 | 1050 | self.logSectionOrdinals(); |
| 1185 | 1051 | self.logAtoms(); |
| 1186 | 1052 | } |
| 1187 | 1053 | |
| 1188 | 1054 | if (use_llvm or use_stage1) { |
| 1189 | | try self.writeAllAtoms(); |
| 1055 | try self.writeAtomsWhole(); |
| 1190 | 1056 | } else { |
| 1191 | | try self.writeAtoms(); |
| 1057 | // try self.writeAtoms(); |
| 1192 | 1058 | } |
| 1193 | 1059 | |
| 1194 | 1060 | if (self.rustc_section_index) |id| { |
| 1195 | | const seg = &self.load_commands.items[self.data_segment_cmd_index.?].segment; |
| 1196 | | const sect = &seg.sections.items[id]; |
| 1061 | const sect = self.getSectionPtr(.{ |
| 1062 | .seg = self.data_segment_cmd_index.?, |
| 1063 | .sect = id, |
| 1064 | }); |
| 1197 | 1065 | sect.size = self.rustc_section_size; |
| 1198 | 1066 | } |
| 1199 | 1067 | |
| ... | ... | @@ -1234,10 +1102,10 @@ pub fn flushModule(self: *MachO, comp: *Compilation, prog_node: *std.Progress.No |
| 1234 | 1102 | try self.writeCodeSignature(csig); // code signing always comes last |
| 1235 | 1103 | } |
| 1236 | 1104 | |
| 1237 | | if (build_options.enable_link_snapshots) { |
| 1238 | | if (self.base.options.enable_link_snapshots) |
| 1239 | | try self.snapshotState(); |
| 1240 | | } |
| 1105 | // if (build_options.enable_link_snapshots) { |
| 1106 | // if (self.base.options.enable_link_snapshots) |
| 1107 | // try self.snapshotState(); |
| 1108 | // } |
| 1241 | 1109 | } |
| 1242 | 1110 | |
| 1243 | 1111 | cache: { |
| ... | ... | @@ -1256,8 +1124,6 @@ pub fn flushModule(self: *MachO, comp: *Compilation, prog_node: *std.Progress.No |
| 1256 | 1124 | // other processes clobbering it. |
| 1257 | 1125 | self.base.lock = man.toOwnedLock(); |
| 1258 | 1126 | } |
| 1259 | | |
| 1260 | | self.cold_start = false; |
| 1261 | 1127 | } |
| 1262 | 1128 | |
| 1263 | 1129 | fn resolveSearchDir( |
| ... | ... | @@ -1521,7 +1387,7 @@ fn parseInputFiles(self: *MachO, files: []const []const u8, syslibroot: ?[]const |
| 1521 | 1387 | .syslibroot = syslibroot, |
| 1522 | 1388 | })) continue; |
| 1523 | 1389 | |
| 1524 | | log.warn("unknown filetype for positional input file: '{s}'", .{file_name}); |
| 1390 | log.debug("unknown filetype for positional input file: '{s}'", .{file_name}); |
| 1525 | 1391 | } |
| 1526 | 1392 | } |
| 1527 | 1393 | |
| ... | ... | @@ -1536,7 +1402,7 @@ fn parseAndForceLoadStaticArchives(self: *MachO, files: []const []const u8) !voi |
| 1536 | 1402 | log.debug("parsing and force loading static archive '{s}'", .{full_path}); |
| 1537 | 1403 | |
| 1538 | 1404 | if (try self.parseArchive(full_path, true)) continue; |
| 1539 | | log.warn("unknown filetype: expected static archive: '{s}'", .{file_name}); |
| 1405 | log.debug("unknown filetype: expected static archive: '{s}'", .{file_name}); |
| 1540 | 1406 | } |
| 1541 | 1407 | } |
| 1542 | 1408 | |
| ... | ... | @@ -1557,7 +1423,7 @@ fn parseLibs( |
| 1557 | 1423 | })) continue; |
| 1558 | 1424 | if (try self.parseArchive(lib, false)) continue; |
| 1559 | 1425 | |
| 1560 | | log.warn("unknown filetype for a library: '{s}'", .{lib}); |
| 1426 | log.debug("unknown filetype for a library: '{s}'", .{lib}); |
| 1561 | 1427 | } |
| 1562 | 1428 | } |
| 1563 | 1429 | |
| ... | ... | @@ -1601,7 +1467,7 @@ fn parseDependentLibs(self: *MachO, syslibroot: ?[]const u8, dependent_libs: any |
| 1601 | 1467 | }); |
| 1602 | 1468 | if (did_parse_successfully) break; |
| 1603 | 1469 | } else { |
| 1604 | | log.warn("unable to resolve dependency {s}", .{dep_id.id.name}); |
| 1470 | log.debug("unable to resolve dependency {s}", .{dep_id.id.name}); |
| 1605 | 1471 | } |
| 1606 | 1472 | } |
| 1607 | 1473 | } |
| ... | ... | @@ -2172,34 +2038,31 @@ pub fn getMatchingSection(self: *MachO, sect: macho.section_64) !?MatchingSectio |
| 2172 | 2038 | return res; |
| 2173 | 2039 | } |
| 2174 | 2040 | |
| 2175 | | pub fn createEmptyAtom(self: *MachO, local_sym_index: u32, size: u64, alignment: u32) !*Atom { |
| 2041 | pub fn createEmptyAtom(gpa: Allocator, sym_index: u32, size: u64, alignment: u32) !*Atom { |
| 2176 | 2042 | const size_usize = math.cast(usize, size) orelse return error.Overflow; |
| 2177 | | const atom = try self.base.allocator.create(Atom); |
| 2178 | | errdefer self.base.allocator.destroy(atom); |
| 2043 | const atom = try gpa.create(Atom); |
| 2044 | errdefer gpa.destroy(atom); |
| 2179 | 2045 | atom.* = Atom.empty; |
| 2180 | | atom.local_sym_index = local_sym_index; |
| 2046 | atom.sym_index = sym_index; |
| 2181 | 2047 | atom.size = size; |
| 2182 | 2048 | atom.alignment = alignment; |
| 2183 | 2049 | |
| 2184 | | try atom.code.resize(self.base.allocator, size_usize); |
| 2050 | try atom.code.resize(gpa, size_usize); |
| 2185 | 2051 | mem.set(u8, atom.code.items, 0); |
| 2186 | 2052 | |
| 2187 | | try self.atom_by_index_table.putNoClobber(self.base.allocator, local_sym_index, atom); |
| 2188 | | try self.managed_atoms.append(self.base.allocator, atom); |
| 2189 | 2053 | return atom; |
| 2190 | 2054 | } |
| 2191 | 2055 | |
| 2192 | 2056 | pub fn writeAtom(self: *MachO, atom: *Atom, match: MatchingSection) !void { |
| 2193 | | const seg = self.load_commands.items[match.seg].segment; |
| 2194 | | const sect = seg.sections.items[match.sect]; |
| 2195 | | const sym = self.locals.items[atom.local_sym_index]; |
| 2057 | const sect = self.getSection(match); |
| 2058 | const sym = atom.getSymbol(self); |
| 2196 | 2059 | const file_offset = sect.offset + sym.n_value - sect.addr; |
| 2197 | 2060 | try atom.resolveRelocs(self); |
| 2198 | | log.debug("writing atom for symbol {s} at file offset 0x{x}", .{ self.getString(sym.n_strx), file_offset }); |
| 2061 | log.debug("writing atom for symbol {s} at file offset 0x{x}", .{ atom.getName(self), file_offset }); |
| 2199 | 2062 | try self.base.file.?.pwriteAll(atom.code.items, file_offset); |
| 2200 | 2063 | } |
| 2201 | 2064 | |
| 2202 | | fn allocateLocals(self: *MachO) !void { |
| 2065 | fn allocateSymbols(self: *MachO) !void { |
| 2203 | 2066 | var it = self.atoms.iterator(); |
| 2204 | 2067 | while (it.next()) |entry| { |
| 2205 | 2068 | const match = entry.key_ptr.*; |
| ... | ... | @@ -2209,30 +2072,25 @@ fn allocateLocals(self: *MachO) !void { |
| 2209 | 2072 | atom = prev; |
| 2210 | 2073 | } |
| 2211 | 2074 | |
| 2212 | | const n_sect = @intCast(u8, self.section_ordinals.getIndex(match).? + 1); |
| 2213 | | const seg = self.load_commands.items[match.seg].segment; |
| 2214 | | const sect = seg.sections.items[match.sect]; |
| 2075 | const n_sect = self.getSectionOrdinal(match); |
| 2076 | const sect = self.getSection(match); |
| 2215 | 2077 | var base_vaddr = sect.addr; |
| 2216 | 2078 | |
| 2217 | | log.debug("allocating local symbols in {s},{s}", .{ sect.segName(), sect.sectName() }); |
| 2079 | log.debug("allocating local symbols in sect({d}, '{s},{s}')", .{ n_sect, sect.segName(), sect.sectName() }); |
| 2218 | 2080 | |
| 2219 | 2081 | while (true) { |
| 2220 | 2082 | const alignment = try math.powi(u32, 2, atom.alignment); |
| 2221 | 2083 | base_vaddr = mem.alignForwardGeneric(u64, base_vaddr, alignment); |
| 2222 | 2084 | |
| 2223 | | const sym = &self.locals.items[atom.local_sym_index]; |
| 2085 | const sym = atom.getSymbolPtr(self); |
| 2224 | 2086 | sym.n_value = base_vaddr; |
| 2225 | 2087 | sym.n_sect = n_sect; |
| 2226 | 2088 | |
| 2227 | | log.debug(" {d}: {s} allocated at 0x{x}", .{ |
| 2228 | | atom.local_sym_index, |
| 2229 | | self.getString(sym.n_strx), |
| 2230 | | base_vaddr, |
| 2231 | | }); |
| 2089 | log.debug(" ATOM(%{d}, '{s}') @{x}", .{ atom.sym_index, atom.getName(self), base_vaddr }); |
| 2232 | 2090 | |
| 2233 | 2091 | // Update each symbol contained within the atom |
| 2234 | 2092 | for (atom.contained.items) |sym_at_off| { |
| 2235 | | const contained_sym = &self.locals.items[sym_at_off.local_sym_index]; |
| 2093 | const contained_sym = self.getSymbolPtr(.{ .sym_index = sym_at_off.sym_index, .file = atom.file }); |
| 2236 | 2094 | contained_sym.n_value = base_vaddr + sym_at_off.offset; |
| 2237 | 2095 | contained_sym.n_sect = n_sect; |
| 2238 | 2096 | } |
| ... | ... | @@ -2250,11 +2108,11 @@ fn shiftLocalsByOffset(self: *MachO, match: MatchingSection, offset: i64) !void |
| 2250 | 2108 | var atom = self.atoms.get(match) orelse return; |
| 2251 | 2109 | |
| 2252 | 2110 | while (true) { |
| 2253 | | const atom_sym = &self.locals.items[atom.local_sym_index]; |
| 2111 | const atom_sym = &self.locals.items[atom.sym_index]; |
| 2254 | 2112 | atom_sym.n_value = @intCast(u64, @intCast(i64, atom_sym.n_value) + offset); |
| 2255 | 2113 | |
| 2256 | 2114 | for (atom.contained.items) |sym_at_off| { |
| 2257 | | const contained_sym = &self.locals.items[sym_at_off.local_sym_index]; |
| 2115 | const contained_sym = &self.locals.items[sym_at_off.sym_index]; |
| 2258 | 2116 | contained_sym.n_value = @intCast(u64, @intCast(i64, contained_sym.n_value) + offset); |
| 2259 | 2117 | } |
| 2260 | 2118 | |
| ... | ... | @@ -2265,53 +2123,30 @@ fn shiftLocalsByOffset(self: *MachO, match: MatchingSection, offset: i64) !void |
| 2265 | 2123 | } |
| 2266 | 2124 | |
| 2267 | 2125 | fn allocateSpecialSymbols(self: *MachO) !void { |
| 2268 | | for (&[_]?u32{ |
| 2269 | | self.mh_execute_header_sym_index, |
| 2270 | | self.dso_handle_sym_index, |
| 2271 | | }) |maybe_sym_index| { |
| 2272 | | const sym_index = maybe_sym_index orelse continue; |
| 2273 | | const sym = &self.locals.items[sym_index]; |
| 2126 | for (&[_][]const u8{ |
| 2127 | "___dso_handle", |
| 2128 | "__mh_execute_header", |
| 2129 | }) |name| { |
| 2130 | const global = self.globals.get(name) orelse continue; |
| 2131 | const sym = self.getSymbolPtr(global); |
| 2274 | 2132 | const seg = self.load_commands.items[self.text_segment_cmd_index.?].segment; |
| 2275 | | sym.n_sect = @intCast(u8, self.section_ordinals.getIndex(.{ |
| 2133 | sym.n_sect = self.getSectionOrdinal(.{ |
| 2276 | 2134 | .seg = self.text_segment_cmd_index.?, |
| 2277 | 2135 | .sect = 0, |
| 2278 | | }).? + 1); |
| 2136 | }); |
| 2279 | 2137 | sym.n_value = seg.inner.vmaddr; |
| 2280 | 2138 | |
| 2281 | 2139 | log.debug("allocating {s} at the start of {s}", .{ |
| 2282 | | self.getString(sym.n_strx), |
| 2140 | name, |
| 2283 | 2141 | seg.inner.segName(), |
| 2284 | 2142 | }); |
| 2285 | 2143 | } |
| 2286 | 2144 | } |
| 2287 | 2145 | |
| 2288 | | fn allocateGlobals(self: *MachO) !void { |
| 2289 | | log.debug("allocating global symbols", .{}); |
| 2290 | | |
| 2291 | | var sym_it = self.symbol_resolver.valueIterator(); |
| 2292 | | while (sym_it.next()) |resolv| { |
| 2293 | | if (resolv.where != .global) continue; |
| 2294 | | |
| 2295 | | assert(resolv.local_sym_index != 0); |
| 2296 | | const local_sym = self.locals.items[resolv.local_sym_index]; |
| 2297 | | const sym = &self.globals.items[resolv.where_index]; |
| 2298 | | sym.n_value = local_sym.n_value; |
| 2299 | | sym.n_sect = local_sym.n_sect; |
| 2300 | | |
| 2301 | | log.debug(" {d}: {s} allocated at 0x{x}", .{ |
| 2302 | | resolv.where_index, |
| 2303 | | self.getString(sym.n_strx), |
| 2304 | | local_sym.n_value, |
| 2305 | | }); |
| 2306 | | } |
| 2307 | | } |
| 2308 | | |
| 2309 | | fn writeAllAtoms(self: *MachO) !void { |
| 2146 | fn writeAtomsWhole(self: *MachO) !void { |
| 2310 | 2147 | var it = self.atoms.iterator(); |
| 2311 | 2148 | while (it.next()) |entry| { |
| 2312 | | const match = entry.key_ptr.*; |
| 2313 | | const seg = self.load_commands.items[match.seg].segment; |
| 2314 | | const sect = seg.sections.items[match.sect]; |
| 2149 | const sect = self.getSection(entry.key_ptr.*); |
| 2315 | 2150 | var atom: *Atom = entry.value_ptr.*; |
| 2316 | 2151 | |
| 2317 | 2152 | if (sect.flags == macho.S_ZEROFILL or sect.flags == macho.S_THREAD_LOCAL_ZEROFILL) continue; |
| ... | ... | @@ -2327,20 +2162,28 @@ fn writeAllAtoms(self: *MachO) !void { |
| 2327 | 2162 | } |
| 2328 | 2163 | |
| 2329 | 2164 | while (true) { |
| 2330 | | const atom_sym = self.locals.items[atom.local_sym_index]; |
| 2165 | const this_sym = atom.getSymbol(self); |
| 2331 | 2166 | const padding_size: usize = if (atom.next) |next| blk: { |
| 2332 | | const next_sym = self.locals.items[next.local_sym_index]; |
| 2333 | | const size = next_sym.n_value - (atom_sym.n_value + atom.size); |
| 2167 | const next_sym = next.getSymbol(self); |
| 2168 | const size = next_sym.n_value - (this_sym.n_value + atom.size); |
| 2334 | 2169 | break :blk math.cast(usize, size) orelse return error.Overflow; |
| 2335 | 2170 | } else 0; |
| 2336 | 2171 | |
| 2337 | | log.debug(" (adding atom {s} to buffer: {})", .{ self.getString(atom_sym.n_strx), atom_sym }); |
| 2172 | log.debug(" (adding ATOM(%{d}, '{s}') from object({d}) to buffer)", .{ |
| 2173 | atom.sym_index, |
| 2174 | atom.getName(self), |
| 2175 | atom.file, |
| 2176 | }); |
| 2177 | if (padding_size > 0) { |
| 2178 | log.debug(" (with padding {x})", .{padding_size}); |
| 2179 | } |
| 2338 | 2180 | |
| 2339 | 2181 | try atom.resolveRelocs(self); |
| 2340 | 2182 | buffer.appendSliceAssumeCapacity(atom.code.items); |
| 2341 | 2183 | |
| 2342 | 2184 | var i: usize = 0; |
| 2343 | 2185 | while (i < padding_size) : (i += 1) { |
| 2186 | // TODO with NOPs |
| 2344 | 2187 | buffer.appendAssumeCapacity(0); |
| 2345 | 2188 | } |
| 2346 | 2189 | |
| ... | ... | @@ -2388,8 +2231,7 @@ fn writeAtoms(self: *MachO) !void { |
| 2388 | 2231 | var it = self.atoms.iterator(); |
| 2389 | 2232 | while (it.next()) |entry| { |
| 2390 | 2233 | const match = entry.key_ptr.*; |
| 2391 | | const seg = self.load_commands.items[match.seg].segment; |
| 2392 | | const sect = seg.sections.items[match.sect]; |
| 2234 | const sect = self.getSection(match); |
| 2393 | 2235 | var atom: *Atom = entry.value_ptr.*; |
| 2394 | 2236 | |
| 2395 | 2237 | // TODO handle zerofill in stage2 |
| ... | ... | @@ -2410,17 +2252,19 @@ fn writeAtoms(self: *MachO) !void { |
| 2410 | 2252 | } |
| 2411 | 2253 | } |
| 2412 | 2254 | |
| 2413 | | pub fn createGotAtom(self: *MachO, target: Atom.Relocation.Target) !*Atom { |
| 2414 | | const local_sym_index = @intCast(u32, self.locals.items.len); |
| 2415 | | try self.locals.append(self.base.allocator, .{ |
| 2255 | pub fn createGotAtom(self: *MachO, target: SymbolWithLoc) !*Atom { |
| 2256 | const gpa = self.base.allocator; |
| 2257 | const sym_index = @intCast(u32, self.locals.items.len); |
| 2258 | try self.locals.append(gpa, .{ |
| 2416 | 2259 | .n_strx = 0, |
| 2417 | 2260 | .n_type = macho.N_SECT, |
| 2418 | 2261 | .n_sect = 0, |
| 2419 | 2262 | .n_desc = 0, |
| 2420 | 2263 | .n_value = 0, |
| 2421 | 2264 | }); |
| 2422 | | const atom = try self.createEmptyAtom(local_sym_index, @sizeOf(u64), 3); |
| 2423 | | try atom.relocs.append(self.base.allocator, .{ |
| 2265 | |
| 2266 | const atom = try MachO.createEmptyAtom(gpa, sym_index, @sizeOf(u64), 3); |
| 2267 | try atom.relocs.append(gpa, .{ |
| 2424 | 2268 | .offset = 0, |
| 2425 | 2269 | .target = target, |
| 2426 | 2270 | .addend = 0, |
| ... | ... | @@ -2433,35 +2277,59 @@ pub fn createGotAtom(self: *MachO, target: Atom.Relocation.Target) !*Atom { |
| 2433 | 2277 | else => unreachable, |
| 2434 | 2278 | }, |
| 2435 | 2279 | }); |
| 2436 | | switch (target) { |
| 2437 | | .local => { |
| 2438 | | try atom.rebases.append(self.base.allocator, 0); |
| 2439 | | }, |
| 2440 | | .global => |n_strx| { |
| 2441 | | try atom.bindings.append(self.base.allocator, .{ |
| 2442 | | .n_strx = n_strx, |
| 2443 | | .offset = 0, |
| 2444 | | }); |
| 2445 | | }, |
| 2280 | |
| 2281 | const target_sym = self.getSymbol(target); |
| 2282 | if (target_sym.undf()) { |
| 2283 | const global_index = @intCast(u32, self.globals.getIndex(self.getSymbolName(target)).?); |
| 2284 | try atom.bindings.append(gpa, .{ |
| 2285 | .global_index = global_index, |
| 2286 | .offset = 0, |
| 2287 | }); |
| 2288 | } else { |
| 2289 | try atom.rebases.append(gpa, 0); |
| 2446 | 2290 | } |
| 2291 | |
| 2292 | try self.managed_atoms.append(gpa, atom); |
| 2293 | try self.atom_by_index_table.putNoClobber(gpa, sym_index, atom); |
| 2294 | |
| 2295 | try self.allocateAtomCommon(atom, .{ |
| 2296 | .seg = self.data_const_segment_cmd_index.?, |
| 2297 | .sect = self.got_section_index.?, |
| 2298 | }); |
| 2299 | |
| 2447 | 2300 | return atom; |
| 2448 | 2301 | } |
| 2449 | 2302 | |
| 2450 | | pub fn createTlvPtrAtom(self: *MachO, target: Atom.Relocation.Target) !*Atom { |
| 2451 | | const local_sym_index = @intCast(u32, self.locals.items.len); |
| 2452 | | try self.locals.append(self.base.allocator, .{ |
| 2303 | pub fn createTlvPtrAtom(self: *MachO, target: SymbolWithLoc) !*Atom { |
| 2304 | const gpa = self.base.allocator; |
| 2305 | const sym_index = @intCast(u32, self.locals.items.len); |
| 2306 | try self.locals.append(gpa, .{ |
| 2453 | 2307 | .n_strx = 0, |
| 2454 | 2308 | .n_type = macho.N_SECT, |
| 2455 | 2309 | .n_sect = 0, |
| 2456 | 2310 | .n_desc = 0, |
| 2457 | 2311 | .n_value = 0, |
| 2458 | 2312 | }); |
| 2459 | | const atom = try self.createEmptyAtom(local_sym_index, @sizeOf(u64), 3); |
| 2460 | | assert(target == .global); |
| 2461 | | try atom.bindings.append(self.base.allocator, .{ |
| 2462 | | .n_strx = target.global, |
| 2313 | |
| 2314 | const atom = try MachO.createEmptyAtom(gpa, sym_index, @sizeOf(u64), 3); |
| 2315 | const target_sym = self.getSymbol(target); |
| 2316 | assert(target_sym.undf()); |
| 2317 | const global_index = @intCast(u32, self.globals.getIndex(self.getSymbolName(target)).?); |
| 2318 | try atom.bindings.append(gpa, .{ |
| 2319 | .global_index = global_index, |
| 2463 | 2320 | .offset = 0, |
| 2464 | 2321 | }); |
| 2322 | |
| 2323 | try self.managed_atoms.append(gpa, atom); |
| 2324 | try self.atom_by_index_table.putNoClobber(gpa, sym_index, atom); |
| 2325 | |
| 2326 | const match = (try self.getMatchingSection(.{ |
| 2327 | .segname = makeStaticString("__DATA"), |
| 2328 | .sectname = makeStaticString("__thread_ptrs"), |
| 2329 | .flags = macho.S_THREAD_LOCAL_VARIABLE_POINTERS, |
| 2330 | })).?; |
| 2331 | try self.allocateAtomCommon(atom, match); |
| 2332 | |
| 2465 | 2333 | return atom; |
| 2466 | 2334 | } |
| 2467 | 2335 | |
| ... | ... | @@ -2469,34 +2337,32 @@ fn createDyldPrivateAtom(self: *MachO) !void { |
| 2469 | 2337 | if (self.dyld_stub_binder_index == null) return; |
| 2470 | 2338 | if (self.dyld_private_atom != null) return; |
| 2471 | 2339 | |
| 2472 | | const local_sym_index = @intCast(u32, self.locals.items.len); |
| 2473 | | const sym = try self.locals.addOne(self.base.allocator); |
| 2474 | | sym.* = .{ |
| 2340 | const gpa = self.base.allocator; |
| 2341 | const sym_index = @intCast(u32, self.locals.items.len); |
| 2342 | try self.locals.append(gpa, .{ |
| 2475 | 2343 | .n_strx = 0, |
| 2476 | 2344 | .n_type = macho.N_SECT, |
| 2477 | 2345 | .n_sect = 0, |
| 2478 | 2346 | .n_desc = 0, |
| 2479 | 2347 | .n_value = 0, |
| 2480 | | }; |
| 2481 | | const atom = try self.createEmptyAtom(local_sym_index, @sizeOf(u64), 3); |
| 2348 | }); |
| 2349 | const atom = try MachO.createEmptyAtom(gpa, sym_index, @sizeOf(u64), 3); |
| 2482 | 2350 | self.dyld_private_atom = atom; |
| 2483 | | const match = MatchingSection{ |
| 2351 | |
| 2352 | try self.allocateAtomCommon(atom, .{ |
| 2484 | 2353 | .seg = self.data_segment_cmd_index.?, |
| 2485 | 2354 | .sect = self.data_section_index.?, |
| 2486 | | }; |
| 2487 | | if (self.needs_prealloc) { |
| 2488 | | const vaddr = try self.allocateAtom(atom, @sizeOf(u64), 8, match); |
| 2489 | | log.debug("allocated {s} atom at 0x{x}", .{ self.getString(sym.n_strx), vaddr }); |
| 2490 | | sym.n_value = vaddr; |
| 2491 | | } else try self.addAtomToSection(atom, match); |
| 2355 | }); |
| 2492 | 2356 | |
| 2493 | | sym.n_sect = @intCast(u8, self.section_ordinals.getIndex(match).? + 1); |
| 2357 | try self.managed_atoms.append(gpa, atom); |
| 2358 | try self.atom_by_index_table.putNoClobber(gpa, sym_index, atom); |
| 2494 | 2359 | } |
| 2495 | 2360 | |
| 2496 | 2361 | fn createStubHelperPreambleAtom(self: *MachO) !void { |
| 2497 | 2362 | if (self.dyld_stub_binder_index == null) return; |
| 2498 | 2363 | if (self.stub_helper_preamble_atom != null) return; |
| 2499 | 2364 | |
| 2365 | const gpa = self.base.allocator; |
| 2500 | 2366 | const arch = self.base.options.target.cpu.arch; |
| 2501 | 2367 | const size: u64 = switch (arch) { |
| 2502 | 2368 | .x86_64 => 15, |
| ... | ... | @@ -2508,17 +2374,16 @@ fn createStubHelperPreambleAtom(self: *MachO) !void { |
| 2508 | 2374 | .aarch64 => 2, |
| 2509 | 2375 | else => unreachable, |
| 2510 | 2376 | }; |
| 2511 | | const local_sym_index = @intCast(u32, self.locals.items.len); |
| 2512 | | const sym = try self.locals.addOne(self.base.allocator); |
| 2513 | | sym.* = .{ |
| 2377 | const sym_index = @intCast(u32, self.locals.items.len); |
| 2378 | try self.locals.append(gpa, .{ |
| 2514 | 2379 | .n_strx = 0, |
| 2515 | 2380 | .n_type = macho.N_SECT, |
| 2516 | 2381 | .n_sect = 0, |
| 2517 | 2382 | .n_desc = 0, |
| 2518 | 2383 | .n_value = 0, |
| 2519 | | }; |
| 2520 | | const atom = try self.createEmptyAtom(local_sym_index, size, alignment); |
| 2521 | | const dyld_private_sym_index = self.dyld_private_atom.?.local_sym_index; |
| 2384 | }); |
| 2385 | const atom = try MachO.createEmptyAtom(gpa, sym_index, size, alignment); |
| 2386 | const dyld_private_sym_index = self.dyld_private_atom.?.sym_index; |
| 2522 | 2387 | switch (arch) { |
| 2523 | 2388 | .x86_64 => { |
| 2524 | 2389 | try atom.relocs.ensureUnusedCapacity(self.base.allocator, 2); |
| ... | ... | @@ -2528,7 +2393,7 @@ fn createStubHelperPreambleAtom(self: *MachO) !void { |
| 2528 | 2393 | atom.code.items[2] = 0x1d; |
| 2529 | 2394 | atom.relocs.appendAssumeCapacity(.{ |
| 2530 | 2395 | .offset = 3, |
| 2531 | | .target = .{ .local = dyld_private_sym_index }, |
| 2396 | .target = .{ .sym_index = dyld_private_sym_index, .file = null }, |
| 2532 | 2397 | .addend = 0, |
| 2533 | 2398 | .subtractor = null, |
| 2534 | 2399 | .pcrel = true, |
| ... | ... | @@ -2543,7 +2408,7 @@ fn createStubHelperPreambleAtom(self: *MachO) !void { |
| 2543 | 2408 | atom.code.items[10] = 0x25; |
| 2544 | 2409 | atom.relocs.appendAssumeCapacity(.{ |
| 2545 | 2410 | .offset = 11, |
| 2546 | | .target = .{ .global = self.undefs.items[self.dyld_stub_binder_index.?].n_strx }, |
| 2411 | .target = .{ .sym_index = self.dyld_stub_binder_index.?, .file = null }, |
| 2547 | 2412 | .addend = 0, |
| 2548 | 2413 | .subtractor = null, |
| 2549 | 2414 | .pcrel = true, |
| ... | ... | @@ -2557,7 +2422,7 @@ fn createStubHelperPreambleAtom(self: *MachO) !void { |
| 2557 | 2422 | mem.writeIntLittle(u32, atom.code.items[0..][0..4], aarch64.Instruction.adrp(.x17, 0).toU32()); |
| 2558 | 2423 | atom.relocs.appendAssumeCapacity(.{ |
| 2559 | 2424 | .offset = 0, |
| 2560 | | .target = .{ .local = dyld_private_sym_index }, |
| 2425 | .target = .{ .sym_index = dyld_private_sym_index, .file = null }, |
| 2561 | 2426 | .addend = 0, |
| 2562 | 2427 | .subtractor = null, |
| 2563 | 2428 | .pcrel = true, |
| ... | ... | @@ -2568,7 +2433,7 @@ fn createStubHelperPreambleAtom(self: *MachO) !void { |
| 2568 | 2433 | mem.writeIntLittle(u32, atom.code.items[4..][0..4], aarch64.Instruction.add(.x17, .x17, 0, false).toU32()); |
| 2569 | 2434 | atom.relocs.appendAssumeCapacity(.{ |
| 2570 | 2435 | .offset = 4, |
| 2571 | | .target = .{ .local = dyld_private_sym_index }, |
| 2436 | .target = .{ .sym_index = dyld_private_sym_index, .file = null }, |
| 2572 | 2437 | .addend = 0, |
| 2573 | 2438 | .subtractor = null, |
| 2574 | 2439 | .pcrel = false, |
| ... | ... | @@ -2586,7 +2451,7 @@ fn createStubHelperPreambleAtom(self: *MachO) !void { |
| 2586 | 2451 | mem.writeIntLittle(u32, atom.code.items[12..][0..4], aarch64.Instruction.adrp(.x16, 0).toU32()); |
| 2587 | 2452 | atom.relocs.appendAssumeCapacity(.{ |
| 2588 | 2453 | .offset = 12, |
| 2589 | | .target = .{ .global = self.undefs.items[self.dyld_stub_binder_index.?].n_strx }, |
| 2454 | .target = .{ .sym_index = self.dyld_stub_binder_index.?, .file = null }, |
| 2590 | 2455 | .addend = 0, |
| 2591 | 2456 | .subtractor = null, |
| 2592 | 2457 | .pcrel = true, |
| ... | ... | @@ -2601,7 +2466,7 @@ fn createStubHelperPreambleAtom(self: *MachO) !void { |
| 2601 | 2466 | ).toU32()); |
| 2602 | 2467 | atom.relocs.appendAssumeCapacity(.{ |
| 2603 | 2468 | .offset = 16, |
| 2604 | | .target = .{ .global = self.undefs.items[self.dyld_stub_binder_index.?].n_strx }, |
| 2469 | .target = .{ .sym_index = self.dyld_stub_binder_index.?, .file = null }, |
| 2605 | 2470 | .addend = 0, |
| 2606 | 2471 | .subtractor = null, |
| 2607 | 2472 | .pcrel = false, |
| ... | ... | @@ -2614,22 +2479,18 @@ fn createStubHelperPreambleAtom(self: *MachO) !void { |
| 2614 | 2479 | else => unreachable, |
| 2615 | 2480 | } |
| 2616 | 2481 | self.stub_helper_preamble_atom = atom; |
| 2617 | | const match = MatchingSection{ |
| 2482 | |
| 2483 | try self.allocateAtomCommon(atom, .{ |
| 2618 | 2484 | .seg = self.text_segment_cmd_index.?, |
| 2619 | 2485 | .sect = self.stub_helper_section_index.?, |
| 2620 | | }; |
| 2621 | | |
| 2622 | | if (self.needs_prealloc) { |
| 2623 | | const alignment_pow_2 = try math.powi(u32, 2, atom.alignment); |
| 2624 | | const vaddr = try self.allocateAtom(atom, atom.size, alignment_pow_2, match); |
| 2625 | | log.debug("allocated {s} atom at 0x{x}", .{ self.getString(sym.n_strx), vaddr }); |
| 2626 | | sym.n_value = vaddr; |
| 2627 | | } else try self.addAtomToSection(atom, match); |
| 2486 | }); |
| 2628 | 2487 | |
| 2629 | | sym.n_sect = @intCast(u8, self.section_ordinals.getIndex(match).? + 1); |
| 2488 | try self.managed_atoms.append(gpa, atom); |
| 2489 | try self.atom_by_index_table.putNoClobber(gpa, sym_index, atom); |
| 2630 | 2490 | } |
| 2631 | 2491 | |
| 2632 | 2492 | pub fn createStubHelperAtom(self: *MachO) !*Atom { |
| 2493 | const gpa = self.base.allocator; |
| 2633 | 2494 | const arch = self.base.options.target.cpu.arch; |
| 2634 | 2495 | const stub_size: u4 = switch (arch) { |
| 2635 | 2496 | .x86_64 => 10, |
| ... | ... | @@ -2641,16 +2502,16 @@ pub fn createStubHelperAtom(self: *MachO) !*Atom { |
| 2641 | 2502 | .aarch64 => 2, |
| 2642 | 2503 | else => unreachable, |
| 2643 | 2504 | }; |
| 2644 | | const local_sym_index = @intCast(u32, self.locals.items.len); |
| 2645 | | try self.locals.append(self.base.allocator, .{ |
| 2505 | const sym_index = @intCast(u32, self.locals.items.len); |
| 2506 | try self.locals.append(gpa, .{ |
| 2646 | 2507 | .n_strx = 0, |
| 2647 | 2508 | .n_type = macho.N_SECT, |
| 2648 | 2509 | .n_sect = 0, |
| 2649 | 2510 | .n_desc = 0, |
| 2650 | 2511 | .n_value = 0, |
| 2651 | 2512 | }); |
| 2652 | | const atom = try self.createEmptyAtom(local_sym_index, stub_size, alignment); |
| 2653 | | try atom.relocs.ensureTotalCapacity(self.base.allocator, 1); |
| 2513 | const atom = try MachO.createEmptyAtom(gpa, sym_index, stub_size, alignment); |
| 2514 | try atom.relocs.ensureTotalCapacity(gpa, 1); |
| 2654 | 2515 | |
| 2655 | 2516 | switch (arch) { |
| 2656 | 2517 | .x86_64 => { |
| ... | ... | @@ -2661,7 +2522,7 @@ pub fn createStubHelperAtom(self: *MachO) !*Atom { |
| 2661 | 2522 | atom.code.items[5] = 0xe9; |
| 2662 | 2523 | atom.relocs.appendAssumeCapacity(.{ |
| 2663 | 2524 | .offset = 6, |
| 2664 | | .target = .{ .local = self.stub_helper_preamble_atom.?.local_sym_index }, |
| 2525 | .target = .{ .sym_index = self.stub_helper_preamble_atom.?.sym_index, .file = null }, |
| 2665 | 2526 | .addend = 0, |
| 2666 | 2527 | .subtractor = null, |
| 2667 | 2528 | .pcrel = true, |
| ... | ... | @@ -2683,7 +2544,7 @@ pub fn createStubHelperAtom(self: *MachO) !*Atom { |
| 2683 | 2544 | mem.writeIntLittle(u32, atom.code.items[4..8], aarch64.Instruction.b(0).toU32()); |
| 2684 | 2545 | atom.relocs.appendAssumeCapacity(.{ |
| 2685 | 2546 | .offset = 4, |
| 2686 | | .target = .{ .local = self.stub_helper_preamble_atom.?.local_sym_index }, |
| 2547 | .target = .{ .sym_index = self.stub_helper_preamble_atom.?.sym_index, .file = null }, |
| 2687 | 2548 | .addend = 0, |
| 2688 | 2549 | .subtractor = null, |
| 2689 | 2550 | .pcrel = true, |
| ... | ... | @@ -2695,22 +2556,32 @@ pub fn createStubHelperAtom(self: *MachO) !*Atom { |
| 2695 | 2556 | else => unreachable, |
| 2696 | 2557 | } |
| 2697 | 2558 | |
| 2559 | try self.managed_atoms.append(gpa, atom); |
| 2560 | try self.atom_by_index_table.putNoClobber(gpa, sym_index, atom); |
| 2561 | |
| 2562 | try self.allocateAtomCommon(atom, .{ |
| 2563 | .seg = self.text_segment_cmd_index.?, |
| 2564 | .sect = self.stub_helper_section_index.?, |
| 2565 | }); |
| 2566 | |
| 2698 | 2567 | return atom; |
| 2699 | 2568 | } |
| 2700 | 2569 | |
| 2701 | | pub fn createLazyPointerAtom(self: *MachO, stub_sym_index: u32, n_strx: u32) !*Atom { |
| 2702 | | const local_sym_index = @intCast(u32, self.locals.items.len); |
| 2703 | | try self.locals.append(self.base.allocator, .{ |
| 2570 | pub fn createLazyPointerAtom(self: *MachO, stub_sym_index: u32, target: SymbolWithLoc) !*Atom { |
| 2571 | const gpa = self.base.allocator; |
| 2572 | const sym_index = @intCast(u32, self.locals.items.len); |
| 2573 | const global_index = @intCast(u32, self.globals.getIndex(self.getSymbolName(target)).?); |
| 2574 | try self.locals.append(gpa, .{ |
| 2704 | 2575 | .n_strx = 0, |
| 2705 | 2576 | .n_type = macho.N_SECT, |
| 2706 | 2577 | .n_sect = 0, |
| 2707 | 2578 | .n_desc = 0, |
| 2708 | 2579 | .n_value = 0, |
| 2709 | 2580 | }); |
| 2710 | | const atom = try self.createEmptyAtom(local_sym_index, @sizeOf(u64), 3); |
| 2711 | | try atom.relocs.append(self.base.allocator, .{ |
| 2581 | const atom = try MachO.createEmptyAtom(gpa, sym_index, @sizeOf(u64), 3); |
| 2582 | try atom.relocs.append(gpa, .{ |
| 2712 | 2583 | .offset = 0, |
| 2713 | | .target = .{ .local = stub_sym_index }, |
| 2584 | .target = .{ .sym_index = stub_sym_index, .file = null }, |
| 2714 | 2585 | .addend = 0, |
| 2715 | 2586 | .subtractor = null, |
| 2716 | 2587 | .pcrel = false, |
| ... | ... | @@ -2721,15 +2592,25 @@ pub fn createLazyPointerAtom(self: *MachO, stub_sym_index: u32, n_strx: u32) !*A |
| 2721 | 2592 | else => unreachable, |
| 2722 | 2593 | }, |
| 2723 | 2594 | }); |
| 2724 | | try atom.rebases.append(self.base.allocator, 0); |
| 2725 | | try atom.lazy_bindings.append(self.base.allocator, .{ |
| 2726 | | .n_strx = n_strx, |
| 2595 | try atom.rebases.append(gpa, 0); |
| 2596 | try atom.lazy_bindings.append(gpa, .{ |
| 2597 | .global_index = global_index, |
| 2727 | 2598 | .offset = 0, |
| 2728 | 2599 | }); |
| 2600 | |
| 2601 | try self.managed_atoms.append(gpa, atom); |
| 2602 | try self.atom_by_index_table.putNoClobber(gpa, sym_index, atom); |
| 2603 | |
| 2604 | try self.allocateAtomCommon(atom, .{ |
| 2605 | .seg = self.data_segment_cmd_index.?, |
| 2606 | .sect = self.la_symbol_ptr_section_index.?, |
| 2607 | }); |
| 2608 | |
| 2729 | 2609 | return atom; |
| 2730 | 2610 | } |
| 2731 | 2611 | |
| 2732 | 2612 | pub fn createStubAtom(self: *MachO, laptr_sym_index: u32) !*Atom { |
| 2613 | const gpa = self.base.allocator; |
| 2733 | 2614 | const arch = self.base.options.target.cpu.arch; |
| 2734 | 2615 | const alignment: u2 = switch (arch) { |
| 2735 | 2616 | .x86_64 => 0, |
| ... | ... | @@ -2741,23 +2622,23 @@ pub fn createStubAtom(self: *MachO, laptr_sym_index: u32) !*Atom { |
| 2741 | 2622 | .aarch64 => 3 * @sizeOf(u32), |
| 2742 | 2623 | else => unreachable, // unhandled architecture type |
| 2743 | 2624 | }; |
| 2744 | | const local_sym_index = @intCast(u32, self.locals.items.len); |
| 2745 | | try self.locals.append(self.base.allocator, .{ |
| 2625 | const sym_index = @intCast(u32, self.locals.items.len); |
| 2626 | try self.locals.append(gpa, .{ |
| 2746 | 2627 | .n_strx = 0, |
| 2747 | 2628 | .n_type = macho.N_SECT, |
| 2748 | 2629 | .n_sect = 0, |
| 2749 | 2630 | .n_desc = 0, |
| 2750 | 2631 | .n_value = 0, |
| 2751 | 2632 | }); |
| 2752 | | const atom = try self.createEmptyAtom(local_sym_index, stub_size, alignment); |
| 2633 | const atom = try MachO.createEmptyAtom(gpa, sym_index, stub_size, alignment); |
| 2753 | 2634 | switch (arch) { |
| 2754 | 2635 | .x86_64 => { |
| 2755 | 2636 | // jmp |
| 2756 | 2637 | atom.code.items[0] = 0xff; |
| 2757 | 2638 | atom.code.items[1] = 0x25; |
| 2758 | | try atom.relocs.append(self.base.allocator, .{ |
| 2639 | try atom.relocs.append(gpa, .{ |
| 2759 | 2640 | .offset = 2, |
| 2760 | | .target = .{ .local = laptr_sym_index }, |
| 2641 | .target = .{ .sym_index = laptr_sym_index, .file = null }, |
| 2761 | 2642 | .addend = 0, |
| 2762 | 2643 | .subtractor = null, |
| 2763 | 2644 | .pcrel = true, |
| ... | ... | @@ -2766,12 +2647,12 @@ pub fn createStubAtom(self: *MachO, laptr_sym_index: u32) !*Atom { |
| 2766 | 2647 | }); |
| 2767 | 2648 | }, |
| 2768 | 2649 | .aarch64 => { |
| 2769 | | try atom.relocs.ensureTotalCapacity(self.base.allocator, 2); |
| 2650 | try atom.relocs.ensureTotalCapacity(gpa, 2); |
| 2770 | 2651 | // adrp x16, pages |
| 2771 | 2652 | mem.writeIntLittle(u32, atom.code.items[0..4], aarch64.Instruction.adrp(.x16, 0).toU32()); |
| 2772 | 2653 | atom.relocs.appendAssumeCapacity(.{ |
| 2773 | 2654 | .offset = 0, |
| 2774 | | .target = .{ .local = laptr_sym_index }, |
| 2655 | .target = .{ .sym_index = laptr_sym_index, .file = null }, |
| 2775 | 2656 | .addend = 0, |
| 2776 | 2657 | .subtractor = null, |
| 2777 | 2658 | .pcrel = true, |
| ... | ... | @@ -2786,7 +2667,7 @@ pub fn createStubAtom(self: *MachO, laptr_sym_index: u32) !*Atom { |
| 2786 | 2667 | ).toU32()); |
| 2787 | 2668 | atom.relocs.appendAssumeCapacity(.{ |
| 2788 | 2669 | .offset = 4, |
| 2789 | | .target = .{ .local = laptr_sym_index }, |
| 2670 | .target = .{ .sym_index = laptr_sym_index, .file = null }, |
| 2790 | 2671 | .addend = 0, |
| 2791 | 2672 | .subtractor = null, |
| 2792 | 2673 | .pcrel = false, |
| ... | ... | @@ -2798,101 +2679,121 @@ pub fn createStubAtom(self: *MachO, laptr_sym_index: u32) !*Atom { |
| 2798 | 2679 | }, |
| 2799 | 2680 | else => unreachable, |
| 2800 | 2681 | } |
| 2682 | |
| 2683 | try self.managed_atoms.append(gpa, atom); |
| 2684 | try self.atom_by_index_table.putNoClobber(gpa, sym_index, atom); |
| 2685 | |
| 2686 | try self.allocateAtomCommon(atom, .{ |
| 2687 | .seg = self.text_segment_cmd_index.?, |
| 2688 | .sect = self.stubs_section_index.?, |
| 2689 | }); |
| 2690 | |
| 2801 | 2691 | return atom; |
| 2802 | 2692 | } |
| 2803 | 2693 | |
| 2804 | 2694 | fn createTentativeDefAtoms(self: *MachO) !void { |
| 2805 | | if (self.tentatives.count() == 0) return; |
| 2806 | | // Convert any tentative definition into a regular symbol and allocate |
| 2807 | | // text blocks for each tentative definition. |
| 2808 | | while (self.tentatives.popOrNull()) |entry| { |
| 2695 | const gpa = self.base.allocator; |
| 2696 | |
| 2697 | for (self.globals.values()) |global| { |
| 2698 | const sym = self.getSymbolPtr(global); |
| 2699 | if (!sym.tentative()) continue; |
| 2700 | |
| 2701 | log.debug("creating tentative definition for ATOM(%{d}, '{s}') in object({d})", .{ |
| 2702 | global.sym_index, self.getSymbolName(global), global.file, |
| 2703 | }); |
| 2704 | |
| 2705 | // Convert any tentative definition into a regular symbol and allocate |
| 2706 | // text blocks for each tentative definition. |
| 2809 | 2707 | const match = MatchingSection{ |
| 2810 | 2708 | .seg = self.data_segment_cmd_index.?, |
| 2811 | 2709 | .sect = self.bss_section_index.?, |
| 2812 | 2710 | }; |
| 2813 | | _ = try self.section_ordinals.getOrPut(self.base.allocator, match); |
| 2814 | | |
| 2815 | | const global_sym = &self.globals.items[entry.key]; |
| 2816 | | const size = global_sym.n_value; |
| 2817 | | const alignment = (global_sym.n_desc >> 8) & 0x0f; |
| 2711 | _ = try self.section_ordinals.getOrPut(gpa, match); |
| 2818 | 2712 | |
| 2819 | | global_sym.n_value = 0; |
| 2820 | | global_sym.n_desc = 0; |
| 2821 | | global_sym.n_sect = @intCast(u8, self.section_ordinals.getIndex(match).? + 1); |
| 2713 | const size = sym.n_value; |
| 2714 | const alignment = (sym.n_desc >> 8) & 0x0f; |
| 2822 | 2715 | |
| 2823 | | const local_sym_index = @intCast(u32, self.locals.items.len); |
| 2824 | | const local_sym = try self.locals.addOne(self.base.allocator); |
| 2825 | | local_sym.* = .{ |
| 2826 | | .n_strx = global_sym.n_strx, |
| 2827 | | .n_type = macho.N_SECT, |
| 2828 | | .n_sect = global_sym.n_sect, |
| 2716 | sym.* = .{ |
| 2717 | .n_strx = sym.n_strx, |
| 2718 | .n_type = macho.N_SECT | macho.N_EXT, |
| 2719 | .n_sect = 0, |
| 2829 | 2720 | .n_desc = 0, |
| 2830 | 2721 | .n_value = 0, |
| 2831 | 2722 | }; |
| 2832 | 2723 | |
| 2833 | | const resolv = self.symbol_resolver.getPtr(local_sym.n_strx) orelse unreachable; |
| 2834 | | resolv.local_sym_index = local_sym_index; |
| 2724 | const atom = try MachO.createEmptyAtom(gpa, global.sym_index, size, alignment); |
| 2725 | atom.file = global.file; |
| 2835 | 2726 | |
| 2836 | | const atom = try self.createEmptyAtom(local_sym_index, size, alignment); |
| 2727 | try self.allocateAtomCommon(atom, match); |
| 2837 | 2728 | |
| 2838 | | if (self.needs_prealloc) { |
| 2839 | | const alignment_pow_2 = try math.powi(u32, 2, alignment); |
| 2840 | | const vaddr = try self.allocateAtom(atom, size, alignment_pow_2, match); |
| 2841 | | local_sym.n_value = vaddr; |
| 2842 | | global_sym.n_value = vaddr; |
| 2843 | | } else try self.addAtomToSection(atom, match); |
| 2844 | | } |
| 2845 | | } |
| 2729 | if (global.file) |file| { |
| 2730 | const object = &self.objects.items[file]; |
| 2846 | 2731 | |
| 2847 | | fn createDsoHandleSymbol(self: *MachO) !void { |
| 2848 | | if (self.dso_handle_sym_index != null) return; |
| 2732 | try atom.contained.append(gpa, .{ |
| 2733 | .sym_index = global.sym_index, |
| 2734 | .offset = 0, |
| 2735 | .stab = if (object.debug_info) |_| .static else null, |
| 2736 | }); |
| 2849 | 2737 | |
| 2850 | | const n_strx = self.strtab_dir.getKeyAdapted(@as([]const u8, "___dso_handle"), StringIndexAdapter{ |
| 2851 | | .bytes = &self.strtab, |
| 2852 | | }) orelse return; |
| 2738 | try object.managed_atoms.append(gpa, atom); |
| 2739 | try object.atom_by_index_table.putNoClobber(gpa, global.sym_index, atom); |
| 2740 | } else { |
| 2741 | try self.managed_atoms.append(gpa, atom); |
| 2742 | try self.atom_by_index_table.putNoClobber(gpa, global.sym_index, atom); |
| 2743 | } |
| 2744 | } |
| 2745 | } |
| 2853 | 2746 | |
| 2854 | | const resolv = self.symbol_resolver.getPtr(n_strx) orelse return; |
| 2855 | | if (resolv.where != .undef) return; |
| 2747 | fn createMhExecuteHeaderSymbol(self: *MachO) !void { |
| 2748 | if (self.base.options.output_mode != .Exe) return; |
| 2749 | if (self.globals.contains("__mh_execute_header")) return; |
| 2856 | 2750 | |
| 2857 | | const undef = &self.undefs.items[resolv.where_index]; |
| 2858 | | const local_sym_index = @intCast(u32, self.locals.items.len); |
| 2859 | | var nlist = macho.nlist_64{ |
| 2860 | | .n_strx = undef.n_strx, |
| 2861 | | .n_type = macho.N_SECT, |
| 2751 | const gpa = self.base.allocator; |
| 2752 | const name = try gpa.dupe(u8, "__mh_execute_header"); |
| 2753 | const n_strx = try self.strtab.insert(gpa, name); |
| 2754 | const sym_index = @intCast(u32, self.locals.items.len); |
| 2755 | try self.locals.append(gpa, .{ |
| 2756 | .n_strx = n_strx, |
| 2757 | .n_type = macho.N_SECT | macho.N_EXT, |
| 2862 | 2758 | .n_sect = 0, |
| 2863 | 2759 | .n_desc = 0, |
| 2864 | 2760 | .n_value = 0, |
| 2865 | | }; |
| 2866 | | try self.locals.append(self.base.allocator, nlist); |
| 2867 | | const global_sym_index = @intCast(u32, self.globals.items.len); |
| 2868 | | nlist.n_type |= macho.N_EXT; |
| 2869 | | nlist.n_desc = macho.N_WEAK_DEF; |
| 2870 | | try self.globals.append(self.base.allocator, nlist); |
| 2871 | | self.dso_handle_sym_index = local_sym_index; |
| 2872 | | |
| 2873 | | assert(self.unresolved.swapRemove(resolv.where_index)); |
| 2761 | }); |
| 2762 | try self.globals.putNoClobber(gpa, name, .{ |
| 2763 | .sym_index = sym_index, |
| 2764 | .file = null, |
| 2765 | }); |
| 2766 | } |
| 2874 | 2767 | |
| 2875 | | undef.* = .{ |
| 2876 | | .n_strx = 0, |
| 2877 | | .n_type = macho.N_UNDF, |
| 2768 | fn createDsoHandleSymbol(self: *MachO) !void { |
| 2769 | const global = self.globals.getPtr("___dso_handle") orelse return; |
| 2770 | const sym = self.getSymbolPtr(global.*); |
| 2771 | if (!sym.undf()) return; |
| 2772 | |
| 2773 | const gpa = self.base.allocator; |
| 2774 | const n_strx = try self.strtab.insert(gpa, "___dso_handle"); |
| 2775 | const sym_index = @intCast(u32, self.locals.items.len); |
| 2776 | try self.locals.append(gpa, .{ |
| 2777 | .n_strx = n_strx, |
| 2778 | .n_type = macho.N_SECT | macho.N_EXT, |
| 2878 | 2779 | .n_sect = 0, |
| 2879 | | .n_desc = 0, |
| 2780 | .n_desc = macho.N_WEAK_DEF, |
| 2880 | 2781 | .n_value = 0, |
| 2782 | }); |
| 2783 | global.* = .{ |
| 2784 | .sym_index = sym_index, |
| 2785 | .file = null, |
| 2881 | 2786 | }; |
| 2882 | | resolv.* = .{ |
| 2883 | | .where = .global, |
| 2884 | | .where_index = global_sym_index, |
| 2885 | | .local_sym_index = local_sym_index, |
| 2886 | | }; |
| 2787 | _ = self.unresolved.swapRemove(@intCast(u32, self.globals.getIndex("___dso_handle").?)); |
| 2887 | 2788 | } |
| 2888 | 2789 | |
| 2889 | | fn resolveSymbolsInObject(self: *MachO, object_id: u16) !void { |
| 2890 | | const object = &self.objects.items[object_id]; |
| 2790 | fn resolveSymbolsInObject(self: *MachO, object: *Object, object_id: u16) !void { |
| 2791 | const gpa = self.base.allocator; |
| 2891 | 2792 | |
| 2892 | 2793 | log.debug("resolving symbols in '{s}'", .{object.name}); |
| 2893 | 2794 | |
| 2894 | | for (object.symtab) |sym, id| { |
| 2895 | | const sym_id = @intCast(u32, id); |
| 2795 | for (object.symtab.items) |sym, index| { |
| 2796 | const sym_index = @intCast(u32, index); |
| 2896 | 2797 | const sym_name = object.getString(sym.n_strx); |
| 2897 | 2798 | |
| 2898 | 2799 | if (sym.stab()) { |
| ... | ... | @@ -2916,170 +2817,81 @@ fn resolveSymbolsInObject(self: *MachO, object_id: u16) !void { |
| 2916 | 2817 | return error.UnhandledSymbolType; |
| 2917 | 2818 | } |
| 2918 | 2819 | |
| 2919 | | if (sym.sect()) { |
| 2920 | | // Defined symbol regardless of scope lands in the locals symbol table. |
| 2921 | | const local_sym_index = @intCast(u32, self.locals.items.len); |
| 2922 | | try self.locals.append(self.base.allocator, .{ |
| 2923 | | .n_strx = if (symbolIsTemp(sym, sym_name)) 0 else try self.makeString(sym_name), |
| 2924 | | .n_type = macho.N_SECT, |
| 2925 | | .n_sect = 0, |
| 2926 | | .n_desc = 0, |
| 2927 | | .n_value = sym.n_value, |
| 2820 | if (sym.sect() and !sym.ext()) { |
| 2821 | log.debug("symbol '{s}' local to object {s}; skipping...", .{ |
| 2822 | sym_name, |
| 2823 | object.name, |
| 2928 | 2824 | }); |
| 2929 | | try object.symbol_mapping.putNoClobber(self.base.allocator, sym_id, local_sym_index); |
| 2930 | | try object.reverse_symbol_mapping.putNoClobber(self.base.allocator, local_sym_index, sym_id); |
| 2931 | | |
| 2932 | | // If the symbol's scope is not local aka translation unit, then we need work out |
| 2933 | | // if we should save the symbol as a global, or potentially flag the error. |
| 2934 | | if (!sym.ext()) continue; |
| 2935 | | |
| 2936 | | const n_strx = try self.makeString(sym_name); |
| 2937 | | const local = self.locals.items[local_sym_index]; |
| 2938 | | const resolv = self.symbol_resolver.getPtr(n_strx) orelse { |
| 2939 | | const global_sym_index = @intCast(u32, self.globals.items.len); |
| 2940 | | try self.globals.append(self.base.allocator, .{ |
| 2941 | | .n_strx = n_strx, |
| 2942 | | .n_type = sym.n_type, |
| 2943 | | .n_sect = 0, |
| 2944 | | .n_desc = sym.n_desc, |
| 2945 | | .n_value = sym.n_value, |
| 2946 | | }); |
| 2947 | | try self.symbol_resolver.putNoClobber(self.base.allocator, n_strx, .{ |
| 2948 | | .where = .global, |
| 2949 | | .where_index = global_sym_index, |
| 2950 | | .local_sym_index = local_sym_index, |
| 2951 | | .file = object_id, |
| 2952 | | }); |
| 2953 | | continue; |
| 2954 | | }; |
| 2955 | | |
| 2956 | | switch (resolv.where) { |
| 2957 | | .global => { |
| 2958 | | const global = &self.globals.items[resolv.where_index]; |
| 2959 | | |
| 2960 | | if (global.tentative()) { |
| 2961 | | assert(self.tentatives.swapRemove(resolv.where_index)); |
| 2962 | | } else if (!(sym.weakDef() or sym.pext()) and !(global.weakDef() or global.pext())) { |
| 2963 | | log.err("symbol '{s}' defined multiple times", .{sym_name}); |
| 2964 | | if (resolv.file) |file| { |
| 2965 | | log.err(" first definition in '{s}'", .{self.objects.items[file].name}); |
| 2966 | | } |
| 2967 | | log.err(" next definition in '{s}'", .{object.name}); |
| 2968 | | return error.MultipleSymbolDefinitions; |
| 2969 | | } else if (sym.weakDef() or sym.pext()) continue; // Current symbol is weak, so skip it. |
| 2970 | | |
| 2971 | | // Otherwise, update the resolver and the global symbol. |
| 2972 | | global.n_type = sym.n_type; |
| 2973 | | resolv.local_sym_index = local_sym_index; |
| 2974 | | resolv.file = object_id; |
| 2825 | continue; |
| 2826 | } |
| 2975 | 2827 | |
| 2976 | | continue; |
| 2977 | | }, |
| 2978 | | .undef => { |
| 2979 | | const undef = &self.undefs.items[resolv.where_index]; |
| 2980 | | undef.* = .{ |
| 2981 | | .n_strx = 0, |
| 2982 | | .n_type = macho.N_UNDF, |
| 2983 | | .n_sect = 0, |
| 2984 | | .n_desc = 0, |
| 2985 | | .n_value = 0, |
| 2986 | | }; |
| 2987 | | assert(self.unresolved.swapRemove(resolv.where_index)); |
| 2988 | | }, |
| 2989 | | } |
| 2828 | const name = try gpa.dupe(u8, sym_name); |
| 2829 | const global_index = @intCast(u32, self.globals.values().len); |
| 2830 | const gop = try self.globals.getOrPut(gpa, name); |
| 2831 | defer if (gop.found_existing) gpa.free(name); |
| 2990 | 2832 | |
| 2991 | | const global_sym_index = @intCast(u32, self.globals.items.len); |
| 2992 | | try self.globals.append(self.base.allocator, .{ |
| 2993 | | .n_strx = local.n_strx, |
| 2994 | | .n_type = sym.n_type, |
| 2995 | | .n_sect = 0, |
| 2996 | | .n_desc = sym.n_desc, |
| 2997 | | .n_value = sym.n_value, |
| 2998 | | }); |
| 2999 | | resolv.* = .{ |
| 3000 | | .where = .global, |
| 3001 | | .where_index = global_sym_index, |
| 3002 | | .local_sym_index = local_sym_index, |
| 2833 | if (!gop.found_existing) { |
| 2834 | gop.value_ptr.* = .{ |
| 2835 | .sym_index = sym_index, |
| 3003 | 2836 | .file = object_id, |
| 3004 | 2837 | }; |
| 3005 | | } else if (sym.tentative()) { |
| 3006 | | // Symbol is a tentative definition. |
| 3007 | | const n_strx = try self.makeString(sym_name); |
| 3008 | | const resolv = self.symbol_resolver.getPtr(n_strx) orelse { |
| 3009 | | const global_sym_index = @intCast(u32, self.globals.items.len); |
| 3010 | | try self.globals.append(self.base.allocator, .{ |
| 3011 | | .n_strx = try self.makeString(sym_name), |
| 3012 | | .n_type = sym.n_type, |
| 3013 | | .n_sect = 0, |
| 3014 | | .n_desc = sym.n_desc, |
| 3015 | | .n_value = sym.n_value, |
| 3016 | | }); |
| 3017 | | try self.symbol_resolver.putNoClobber(self.base.allocator, n_strx, .{ |
| 3018 | | .where = .global, |
| 3019 | | .where_index = global_sym_index, |
| 3020 | | .file = object_id, |
| 3021 | | }); |
| 3022 | | _ = try self.tentatives.getOrPut(self.base.allocator, global_sym_index); |
| 3023 | | continue; |
| 3024 | | }; |
| 3025 | | |
| 3026 | | switch (resolv.where) { |
| 3027 | | .global => { |
| 3028 | | const global = &self.globals.items[resolv.where_index]; |
| 3029 | | if (!global.tentative()) continue; |
| 3030 | | if (global.n_value >= sym.n_value) continue; |
| 3031 | | |
| 3032 | | global.n_desc = sym.n_desc; |
| 3033 | | global.n_value = sym.n_value; |
| 3034 | | resolv.file = object_id; |
| 3035 | | }, |
| 3036 | | .undef => { |
| 3037 | | const undef = &self.undefs.items[resolv.where_index]; |
| 3038 | | const global_sym_index = @intCast(u32, self.globals.items.len); |
| 3039 | | try self.globals.append(self.base.allocator, .{ |
| 3040 | | .n_strx = undef.n_strx, |
| 3041 | | .n_type = sym.n_type, |
| 3042 | | .n_sect = 0, |
| 3043 | | .n_desc = sym.n_desc, |
| 3044 | | .n_value = sym.n_value, |
| 3045 | | }); |
| 3046 | | _ = try self.tentatives.getOrPut(self.base.allocator, global_sym_index); |
| 3047 | | assert(self.unresolved.swapRemove(resolv.where_index)); |
| 3048 | | |
| 3049 | | resolv.* = .{ |
| 3050 | | .where = .global, |
| 3051 | | .where_index = global_sym_index, |
| 3052 | | .file = object_id, |
| 3053 | | }; |
| 3054 | | undef.* = .{ |
| 3055 | | .n_strx = 0, |
| 3056 | | .n_type = macho.N_UNDF, |
| 3057 | | .n_sect = 0, |
| 3058 | | .n_desc = 0, |
| 3059 | | .n_value = 0, |
| 3060 | | }; |
| 3061 | | }, |
| 2838 | if (sym.undf() and !sym.tentative()) { |
| 2839 | try self.unresolved.putNoClobber(gpa, global_index, {}); |
| 3062 | 2840 | } |
| 3063 | | } else { |
| 3064 | | // Symbol is undefined. |
| 3065 | | const n_strx = try self.makeString(sym_name); |
| 3066 | | if (self.symbol_resolver.contains(n_strx)) continue; |
| 2841 | continue; |
| 2842 | } |
| 3067 | 2843 | |
| 3068 | | const undef_sym_index = @intCast(u32, self.undefs.items.len); |
| 3069 | | try self.undefs.append(self.base.allocator, .{ |
| 3070 | | .n_strx = try self.makeString(sym_name), |
| 3071 | | .n_type = macho.N_UNDF, |
| 3072 | | .n_sect = 0, |
| 3073 | | .n_desc = sym.n_desc, |
| 3074 | | .n_value = 0, |
| 3075 | | }); |
| 3076 | | try self.symbol_resolver.putNoClobber(self.base.allocator, n_strx, .{ |
| 3077 | | .where = .undef, |
| 3078 | | .where_index = undef_sym_index, |
| 3079 | | .file = object_id, |
| 3080 | | }); |
| 3081 | | try self.unresolved.putNoClobber(self.base.allocator, undef_sym_index, .none); |
| 2844 | const global = gop.value_ptr.*; |
| 2845 | const global_sym = self.getSymbol(global); |
| 2846 | |
| 2847 | // Cases to consider: sym vs global_sym |
| 2848 | // 1. strong(sym) and strong(global_sym) => error |
| 2849 | // 2. strong(sym) and weak(global_sym) => sym |
| 2850 | // 3. strong(sym) and tentative(global_sym) => sym |
| 2851 | // 4. strong(sym) and undf(global_sym) => sym |
| 2852 | // 5. weak(sym) and strong(global_sym) => global_sym |
| 2853 | // 6. weak(sym) and tentative(global_sym) => sym |
| 2854 | // 7. weak(sym) and undf(global_sym) => sym |
| 2855 | // 8. tentative(sym) and strong(global_sym) => global_sym |
| 2856 | // 9. tentative(sym) and weak(global_sym) => global_sym |
| 2857 | // 10. tentative(sym) and tentative(global_sym) => pick larger |
| 2858 | // 11. tentative(sym) and undf(global_sym) => sym |
| 2859 | // 12. undf(sym) and * => global_sym |
| 2860 | // |
| 2861 | // Reduces to: |
| 2862 | // 1. strong(sym) and strong(global_sym) => error |
| 2863 | // 2. * and strong(global_sym) => global_sym |
| 2864 | // 3. weak(sym) and weak(global_sym) => global_sym |
| 2865 | // 4. tentative(sym) and tentative(global_sym) => pick larger |
| 2866 | // 5. undf(sym) and * => global_sym |
| 2867 | // 6. else => sym |
| 2868 | |
| 2869 | const sym_is_strong = sym.sect() and !(sym.weakDef() or sym.pext()); |
| 2870 | const global_is_strong = global_sym.sect() and !(global_sym.weakDef() or global_sym.pext()); |
| 2871 | const sym_is_weak = sym.sect() and (sym.weakDef() or sym.pext()); |
| 2872 | const global_is_weak = global_sym.sect() and (global_sym.weakDef() or global_sym.pext()); |
| 2873 | |
| 2874 | if (sym_is_strong and global_is_strong) { |
| 2875 | log.err("symbol '{s}' defined multiple times", .{sym_name}); |
| 2876 | if (global.file) |file| { |
| 2877 | log.err(" first definition in '{s}'", .{self.objects.items[file].name}); |
| 2878 | } |
| 2879 | log.err(" next definition in '{s}'", .{object.name}); |
| 2880 | return error.MultipleSymbolDefinitions; |
| 2881 | } |
| 2882 | if (global_is_strong) continue; |
| 2883 | if (sym_is_weak and global_is_weak) continue; |
| 2884 | if (sym.tentative() and global_sym.tentative()) { |
| 2885 | if (global_sym.n_value >= sym.n_value) continue; |
| 3082 | 2886 | } |
| 2887 | if (sym.undf() and !sym.tentative()) continue; |
| 2888 | |
| 2889 | _ = self.unresolved.swapRemove(@intCast(u32, self.globals.getIndex(name).?)); |
| 2890 | |
| 2891 | gop.value_ptr.* = .{ |
| 2892 | .sym_index = sym_index, |
| 2893 | .file = object_id, |
| 2894 | }; |
| 3083 | 2895 | } |
| 3084 | 2896 | } |
| 3085 | 2897 | |
| ... | ... | @@ -3088,8 +2900,8 @@ fn resolveSymbolsInArchives(self: *MachO) !void { |
| 3088 | 2900 | |
| 3089 | 2901 | var next_sym: usize = 0; |
| 3090 | 2902 | loop: while (next_sym < self.unresolved.count()) { |
| 3091 | | const sym = self.undefs.items[self.unresolved.keys()[next_sym]]; |
| 3092 | | const sym_name = self.getString(sym.n_strx); |
| 2903 | const global = self.globals.values()[self.unresolved.keys()[next_sym]]; |
| 2904 | const sym_name = self.getSymbolName(global); |
| 3093 | 2905 | |
| 3094 | 2906 | for (self.archives.items) |archive| { |
| 3095 | 2907 | // Check if the entry exists in a static archive. |
| ... | ... | @@ -3102,7 +2914,7 @@ fn resolveSymbolsInArchives(self: *MachO) !void { |
| 3102 | 2914 | const object_id = @intCast(u16, self.objects.items.len); |
| 3103 | 2915 | const object = try self.objects.addOne(self.base.allocator); |
| 3104 | 2916 | object.* = try archive.parseObject(self.base.allocator, self.base.options.target, offsets.items[0]); |
| 3105 | | try self.resolveSymbolsInObject(object_id); |
| 2917 | try self.resolveSymbolsInObject(object, object_id); |
| 3106 | 2918 | |
| 3107 | 2919 | continue :loop; |
| 3108 | 2920 | } |
| ... | ... | @@ -3116,8 +2928,10 @@ fn resolveSymbolsInDylibs(self: *MachO) !void { |
| 3116 | 2928 | |
| 3117 | 2929 | var next_sym: usize = 0; |
| 3118 | 2930 | loop: while (next_sym < self.unresolved.count()) { |
| 3119 | | const sym = self.undefs.items[self.unresolved.keys()[next_sym]]; |
| 3120 | | const sym_name = self.getString(sym.n_strx); |
| 2931 | const global_index = self.unresolved.keys()[next_sym]; |
| 2932 | const global = self.globals.values()[global_index]; |
| 2933 | const sym = self.getSymbolPtr(global); |
| 2934 | const sym_name = self.getSymbolName(global); |
| 3121 | 2935 | |
| 3122 | 2936 | for (self.dylibs.items) |dylib, id| { |
| 3123 | 2937 | if (!dylib.symbols.contains(sym_name)) continue; |
| ... | ... | @@ -3129,69 +2943,14 @@ fn resolveSymbolsInDylibs(self: *MachO) !void { |
| 3129 | 2943 | } |
| 3130 | 2944 | |
| 3131 | 2945 | const ordinal = self.referenced_dylibs.getIndex(dylib_id) orelse unreachable; |
| 3132 | | const resolv = self.symbol_resolver.getPtr(sym.n_strx) orelse unreachable; |
| 3133 | | const undef = &self.undefs.items[resolv.where_index]; |
| 3134 | | undef.n_type |= macho.N_EXT; |
| 3135 | | undef.n_desc = @intCast(u16, ordinal + 1) * macho.N_SYMBOL_RESOLVER; |
| 2946 | sym.n_type |= macho.N_EXT; |
| 2947 | sym.n_desc = @intCast(u16, ordinal + 1) * macho.N_SYMBOL_RESOLVER; |
| 3136 | 2948 | |
| 3137 | 2949 | if (dylib.weak) { |
| 3138 | | undef.n_desc |= macho.N_WEAK_REF; |
| 2950 | sym.n_desc |= macho.N_WEAK_REF; |
| 3139 | 2951 | } |
| 3140 | 2952 | |
| 3141 | | if (self.unresolved.fetchSwapRemove(resolv.where_index)) |entry| outer_blk: { |
| 3142 | | switch (entry.value) { |
| 3143 | | .none => {}, |
| 3144 | | .got => return error.TODOGotHint, |
| 3145 | | .stub => { |
| 3146 | | if (self.stubs_table.contains(sym.n_strx)) break :outer_blk; |
| 3147 | | const stub_helper_atom = blk: { |
| 3148 | | const match = MatchingSection{ |
| 3149 | | .seg = self.text_segment_cmd_index.?, |
| 3150 | | .sect = self.stub_helper_section_index.?, |
| 3151 | | }; |
| 3152 | | const atom = try self.createStubHelperAtom(); |
| 3153 | | const atom_sym = &self.locals.items[atom.local_sym_index]; |
| 3154 | | const alignment = try math.powi(u32, 2, atom.alignment); |
| 3155 | | const vaddr = try self.allocateAtom(atom, atom.size, alignment, match); |
| 3156 | | atom_sym.n_value = vaddr; |
| 3157 | | atom_sym.n_sect = @intCast(u8, self.section_ordinals.getIndex(match).? + 1); |
| 3158 | | break :blk atom; |
| 3159 | | }; |
| 3160 | | const laptr_atom = blk: { |
| 3161 | | const match = MatchingSection{ |
| 3162 | | .seg = self.data_segment_cmd_index.?, |
| 3163 | | .sect = self.la_symbol_ptr_section_index.?, |
| 3164 | | }; |
| 3165 | | const atom = try self.createLazyPointerAtom( |
| 3166 | | stub_helper_atom.local_sym_index, |
| 3167 | | sym.n_strx, |
| 3168 | | ); |
| 3169 | | const atom_sym = &self.locals.items[atom.local_sym_index]; |
| 3170 | | const alignment = try math.powi(u32, 2, atom.alignment); |
| 3171 | | const vaddr = try self.allocateAtom(atom, atom.size, alignment, match); |
| 3172 | | atom_sym.n_value = vaddr; |
| 3173 | | atom_sym.n_sect = @intCast(u8, self.section_ordinals.getIndex(match).? + 1); |
| 3174 | | break :blk atom; |
| 3175 | | }; |
| 3176 | | const stub_atom = blk: { |
| 3177 | | const match = MatchingSection{ |
| 3178 | | .seg = self.text_segment_cmd_index.?, |
| 3179 | | .sect = self.stubs_section_index.?, |
| 3180 | | }; |
| 3181 | | const atom = try self.createStubAtom(laptr_atom.local_sym_index); |
| 3182 | | const atom_sym = &self.locals.items[atom.local_sym_index]; |
| 3183 | | const alignment = try math.powi(u32, 2, atom.alignment); |
| 3184 | | const vaddr = try self.allocateAtom(atom, atom.size, alignment, match); |
| 3185 | | atom_sym.n_value = vaddr; |
| 3186 | | atom_sym.n_sect = @intCast(u8, self.section_ordinals.getIndex(match).? + 1); |
| 3187 | | break :blk atom; |
| 3188 | | }; |
| 3189 | | const stub_index = @intCast(u32, self.stubs.items.len); |
| 3190 | | try self.stubs.append(self.base.allocator, stub_atom); |
| 3191 | | try self.stubs_table.putNoClobber(self.base.allocator, sym.n_strx, stub_index); |
| 3192 | | }, |
| 3193 | | } |
| 3194 | | } |
| 2953 | assert(self.unresolved.swapRemove(global_index)); |
| 3195 | 2954 | |
| 3196 | 2955 | continue :loop; |
| 3197 | 2956 | } |
| ... | ... | @@ -3200,39 +2959,46 @@ fn resolveSymbolsInDylibs(self: *MachO) !void { |
| 3200 | 2959 | } |
| 3201 | 2960 | } |
| 3202 | 2961 | |
| 3203 | | fn createMhExecuteHeaderSymbol(self: *MachO) !void { |
| 3204 | | if (self.base.options.output_mode != .Exe) return; |
| 3205 | | if (self.mh_execute_header_sym_index != null) return; |
| 2962 | fn resolveSymbolsAtLoading(self: *MachO) !void { |
| 2963 | const is_lib = self.base.options.output_mode == .Lib; |
| 2964 | const is_dyn_lib = self.base.options.link_mode == .Dynamic and is_lib; |
| 2965 | const allow_undef = is_dyn_lib and (self.base.options.allow_shlib_undefined orelse false); |
| 3206 | 2966 | |
| 3207 | | const n_strx = try self.makeString("__mh_execute_header"); |
| 3208 | | const local_sym_index = @intCast(u32, self.locals.items.len); |
| 3209 | | var nlist = macho.nlist_64{ |
| 3210 | | .n_strx = n_strx, |
| 3211 | | .n_type = macho.N_SECT, |
| 3212 | | .n_sect = 0, |
| 3213 | | .n_desc = 0, |
| 3214 | | .n_value = 0, |
| 3215 | | }; |
| 3216 | | try self.locals.append(self.base.allocator, nlist); |
| 3217 | | self.mh_execute_header_sym_index = local_sym_index; |
| 2967 | var next_sym: usize = 0; |
| 2968 | while (next_sym < self.unresolved.count()) { |
| 2969 | const global_index = self.unresolved.keys()[next_sym]; |
| 2970 | const global = self.globals.values()[global_index]; |
| 2971 | const sym = self.getSymbolPtr(global); |
| 2972 | const sym_name = self.getSymbolName(global); |
| 2973 | |
| 2974 | if (sym.discarded()) { |
| 2975 | sym.* = .{ |
| 2976 | .n_strx = 0, |
| 2977 | .n_type = macho.N_UNDF, |
| 2978 | .n_sect = 0, |
| 2979 | .n_desc = 0, |
| 2980 | .n_value = 0, |
| 2981 | }; |
| 2982 | _ = self.unresolved.swapRemove(global_index); |
| 2983 | continue; |
| 2984 | } else if (allow_undef) { |
| 2985 | const n_desc = @bitCast( |
| 2986 | u16, |
| 2987 | macho.BIND_SPECIAL_DYLIB_FLAT_LOOKUP * @intCast(i16, macho.N_SYMBOL_RESOLVER), |
| 2988 | ); |
| 2989 | // TODO allow_shlib_undefined is an ELF flag so figure out macOS specific flags too. |
| 2990 | sym.n_type = macho.N_EXT; |
| 2991 | sym.n_desc = n_desc; |
| 2992 | _ = self.unresolved.swapRemove(global_index); |
| 2993 | continue; |
| 2994 | } |
| 3218 | 2995 | |
| 3219 | | if (self.symbol_resolver.getPtr(n_strx)) |resolv| { |
| 3220 | | const global = &self.globals.items[resolv.where_index]; |
| 3221 | | if (!(global.weakDef() or !global.pext())) { |
| 3222 | | log.err("symbol '__mh_execute_header' defined multiple times", .{}); |
| 3223 | | return error.MultipleSymbolDefinitions; |
| 2996 | log.err("undefined reference to symbol '{s}'", .{sym_name}); |
| 2997 | if (global.file) |file| { |
| 2998 | log.err(" first referenced in '{s}'", .{self.objects.items[file].name}); |
| 3224 | 2999 | } |
| 3225 | | resolv.local_sym_index = local_sym_index; |
| 3226 | | } else { |
| 3227 | | const global_sym_index = @intCast(u32, self.globals.items.len); |
| 3228 | | nlist.n_type |= macho.N_EXT; |
| 3229 | | try self.globals.append(self.base.allocator, nlist); |
| 3230 | | try self.symbol_resolver.putNoClobber(self.base.allocator, n_strx, .{ |
| 3231 | | .where = .global, |
| 3232 | | .where_index = global_sym_index, |
| 3233 | | .local_sym_index = local_sym_index, |
| 3234 | | .file = null, |
| 3235 | | }); |
| 3000 | |
| 3001 | next_sym += 1; |
| 3236 | 3002 | } |
| 3237 | 3003 | } |
| 3238 | 3004 | |
| ... | ... | @@ -3240,21 +3006,20 @@ fn resolveDyldStubBinder(self: *MachO) !void { |
| 3240 | 3006 | if (self.dyld_stub_binder_index != null) return; |
| 3241 | 3007 | if (self.unresolved.count() == 0) return; // no need for a stub binder if we don't have any imports |
| 3242 | 3008 | |
| 3243 | | const n_strx = try self.makeString("dyld_stub_binder"); |
| 3244 | | const sym_index = @intCast(u32, self.undefs.items.len); |
| 3245 | | try self.undefs.append(self.base.allocator, .{ |
| 3009 | const gpa = self.base.allocator; |
| 3010 | const n_strx = try self.strtab.insert(gpa, "dyld_stub_binder"); |
| 3011 | const sym_index = @intCast(u32, self.locals.items.len); |
| 3012 | try self.locals.append(gpa, .{ |
| 3246 | 3013 | .n_strx = n_strx, |
| 3247 | 3014 | .n_type = macho.N_UNDF, |
| 3248 | 3015 | .n_sect = 0, |
| 3249 | 3016 | .n_desc = 0, |
| 3250 | 3017 | .n_value = 0, |
| 3251 | 3018 | }); |
| 3252 | | try self.symbol_resolver.putNoClobber(self.base.allocator, n_strx, .{ |
| 3253 | | .where = .undef, |
| 3254 | | .where_index = sym_index, |
| 3255 | | }); |
| 3256 | | const sym = &self.undefs.items[sym_index]; |
| 3257 | | const sym_name = self.getString(n_strx); |
| 3019 | const sym_name = try gpa.dupe(u8, "dyld_stub_binder"); |
| 3020 | const global = SymbolWithLoc{ .sym_index = sym_index, .file = null }; |
| 3021 | try self.globals.putNoClobber(gpa, sym_name, global); |
| 3022 | const sym = &self.locals.items[sym_index]; |
| 3258 | 3023 | |
| 3259 | 3024 | for (self.dylibs.items) |dylib, id| { |
| 3260 | 3025 | if (!dylib.symbols.contains(sym_name)) continue; |
| ... | ... | @@ -3275,197 +3040,13 @@ fn resolveDyldStubBinder(self: *MachO) !void { |
| 3275 | 3040 | |
| 3276 | 3041 | if (self.dyld_stub_binder_index == null) { |
| 3277 | 3042 | log.err("undefined reference to symbol '{s}'", .{sym_name}); |
| 3278 | | return error.UndefinedSymbolReference; |
| 3279 | | } |
| 3280 | | |
| 3281 | | // Add dyld_stub_binder as the final GOT entry. |
| 3282 | | const target = Atom.Relocation.Target{ .global = n_strx }; |
| 3283 | | const atom = try self.createGotAtom(target); |
| 3284 | | const got_index = @intCast(u32, self.got_entries.items.len); |
| 3285 | | try self.got_entries.append(self.base.allocator, .{ .target = target, .atom = atom }); |
| 3286 | | try self.got_entries_table.putNoClobber(self.base.allocator, target, got_index); |
| 3287 | | const match = MatchingSection{ |
| 3288 | | .seg = self.data_const_segment_cmd_index.?, |
| 3289 | | .sect = self.got_section_index.?, |
| 3290 | | }; |
| 3291 | | const atom_sym = &self.locals.items[atom.local_sym_index]; |
| 3292 | | |
| 3293 | | if (self.needs_prealloc) { |
| 3294 | | const vaddr = try self.allocateAtom(atom, @sizeOf(u64), 8, match); |
| 3295 | | log.debug("allocated {s} atom at 0x{x}", .{ self.getString(sym.n_strx), vaddr }); |
| 3296 | | atom_sym.n_value = vaddr; |
| 3297 | | } else try self.addAtomToSection(atom, match); |
| 3298 | | |
| 3299 | | atom_sym.n_sect = @intCast(u8, self.section_ordinals.getIndex(match).? + 1); |
| 3300 | | } |
| 3301 | | |
| 3302 | | fn parseObjectsIntoAtoms(self: *MachO) !void { |
| 3303 | | // TODO I need to see if I can simplify this logic, or perhaps split it into two functions: |
| 3304 | | // one for non-prealloc traditional path, and one for incremental prealloc path. |
| 3305 | | const tracy = trace(@src()); |
| 3306 | | defer tracy.end(); |
| 3307 | | |
| 3308 | | var parsed_atoms = std.AutoArrayHashMap(MatchingSection, *Atom).init(self.base.allocator); |
| 3309 | | defer parsed_atoms.deinit(); |
| 3310 | | |
| 3311 | | var first_atoms = std.AutoArrayHashMap(MatchingSection, *Atom).init(self.base.allocator); |
| 3312 | | defer first_atoms.deinit(); |
| 3313 | | |
| 3314 | | var section_metadata = std.AutoHashMap(MatchingSection, struct { |
| 3315 | | size: u64, |
| 3316 | | alignment: u32, |
| 3317 | | }).init(self.base.allocator); |
| 3318 | | defer section_metadata.deinit(); |
| 3319 | | |
| 3320 | | for (self.objects.items) |*object| { |
| 3321 | | if (object.analyzed) continue; |
| 3322 | | |
| 3323 | | try object.parseIntoAtoms(self.base.allocator, self); |
| 3324 | | |
| 3325 | | var it = object.end_atoms.iterator(); |
| 3326 | | while (it.next()) |entry| { |
| 3327 | | const match = entry.key_ptr.*; |
| 3328 | | var atom = entry.value_ptr.*; |
| 3329 | | |
| 3330 | | while (atom.prev) |prev| { |
| 3331 | | atom = prev; |
| 3332 | | } |
| 3333 | | |
| 3334 | | const first_atom = atom; |
| 3335 | | |
| 3336 | | const seg = self.load_commands.items[match.seg].segment; |
| 3337 | | const sect = seg.sections.items[match.sect]; |
| 3338 | | const metadata = try section_metadata.getOrPut(match); |
| 3339 | | if (!metadata.found_existing) { |
| 3340 | | metadata.value_ptr.* = .{ |
| 3341 | | .size = sect.size, |
| 3342 | | .alignment = sect.@"align", |
| 3343 | | }; |
| 3344 | | } |
| 3345 | | |
| 3346 | | log.debug("{s},{s}", .{ sect.segName(), sect.sectName() }); |
| 3347 | | |
| 3348 | | while (true) { |
| 3349 | | const alignment = try math.powi(u32, 2, atom.alignment); |
| 3350 | | const curr_size = metadata.value_ptr.size; |
| 3351 | | const curr_size_aligned = mem.alignForwardGeneric(u64, curr_size, alignment); |
| 3352 | | metadata.value_ptr.size = curr_size_aligned + atom.size; |
| 3353 | | metadata.value_ptr.alignment = math.max(metadata.value_ptr.alignment, atom.alignment); |
| 3354 | | |
| 3355 | | const sym = self.locals.items[atom.local_sym_index]; |
| 3356 | | log.debug(" {s}: n_value=0x{x}, size=0x{x}, alignment=0x{x}", .{ |
| 3357 | | self.getString(sym.n_strx), |
| 3358 | | sym.n_value, |
| 3359 | | atom.size, |
| 3360 | | atom.alignment, |
| 3361 | | }); |
| 3362 | | |
| 3363 | | if (atom.next) |next| { |
| 3364 | | atom = next; |
| 3365 | | } else break; |
| 3366 | | } |
| 3367 | | |
| 3368 | | if (parsed_atoms.getPtr(match)) |last| { |
| 3369 | | last.*.next = first_atom; |
| 3370 | | first_atom.prev = last.*; |
| 3371 | | last.* = first_atom; |
| 3372 | | } |
| 3373 | | _ = try parsed_atoms.put(match, atom); |
| 3374 | | |
| 3375 | | if (!first_atoms.contains(match)) { |
| 3376 | | try first_atoms.putNoClobber(match, first_atom); |
| 3377 | | } |
| 3378 | | } |
| 3379 | | |
| 3380 | | object.analyzed = true; |
| 3381 | | } |
| 3382 | | |
| 3383 | | var it = section_metadata.iterator(); |
| 3384 | | while (it.next()) |entry| { |
| 3385 | | const match = entry.key_ptr.*; |
| 3386 | | const metadata = entry.value_ptr.*; |
| 3387 | | const seg = &self.load_commands.items[match.seg].segment; |
| 3388 | | const sect = &seg.sections.items[match.sect]; |
| 3389 | | log.debug("{s},{s} => size: 0x{x}, alignment: 0x{x}", .{ |
| 3390 | | sect.segName(), |
| 3391 | | sect.sectName(), |
| 3392 | | metadata.size, |
| 3393 | | metadata.alignment, |
| 3394 | | }); |
| 3395 | | |
| 3396 | | sect.@"align" = math.max(sect.@"align", metadata.alignment); |
| 3397 | | const needed_size = @intCast(u32, metadata.size); |
| 3398 | | |
| 3399 | | if (self.needs_prealloc) { |
| 3400 | | try self.growSection(match, needed_size); |
| 3401 | | } |
| 3402 | | sect.size = needed_size; |
| 3403 | | } |
| 3404 | | |
| 3405 | | for (&[_]?u16{ |
| 3406 | | self.text_segment_cmd_index, |
| 3407 | | self.data_const_segment_cmd_index, |
| 3408 | | self.data_segment_cmd_index, |
| 3409 | | }) |maybe_seg_id| { |
| 3410 | | const seg_id = maybe_seg_id orelse continue; |
| 3411 | | const seg = self.load_commands.items[seg_id].segment; |
| 3412 | | |
| 3413 | | for (seg.sections.items) |sect, sect_id| { |
| 3414 | | const match = MatchingSection{ |
| 3415 | | .seg = seg_id, |
| 3416 | | .sect = @intCast(u16, sect_id), |
| 3417 | | }; |
| 3418 | | if (!section_metadata.contains(match)) continue; |
| 3419 | | |
| 3420 | | var base_vaddr = if (self.atoms.get(match)) |last| blk: { |
| 3421 | | const last_atom_sym = self.locals.items[last.local_sym_index]; |
| 3422 | | break :blk last_atom_sym.n_value + last.size; |
| 3423 | | } else sect.addr; |
| 3424 | | |
| 3425 | | if (self.atoms.getPtr(match)) |last| { |
| 3426 | | const first_atom = first_atoms.get(match).?; |
| 3427 | | last.*.next = first_atom; |
| 3428 | | first_atom.prev = last.*; |
| 3429 | | last.* = first_atom; |
| 3430 | | } |
| 3431 | | _ = try self.atoms.put(self.base.allocator, match, parsed_atoms.get(match).?); |
| 3432 | | |
| 3433 | | if (!self.needs_prealloc) continue; |
| 3434 | | |
| 3435 | | const n_sect = @intCast(u8, self.section_ordinals.getIndex(match).? + 1); |
| 3436 | | |
| 3437 | | var atom = first_atoms.get(match).?; |
| 3438 | | while (true) { |
| 3439 | | const alignment = try math.powi(u32, 2, atom.alignment); |
| 3440 | | base_vaddr = mem.alignForwardGeneric(u64, base_vaddr, alignment); |
| 3441 | | |
| 3442 | | const sym = &self.locals.items[atom.local_sym_index]; |
| 3443 | | sym.n_value = base_vaddr; |
| 3444 | | sym.n_sect = n_sect; |
| 3445 | | |
| 3446 | | log.debug(" {s}: start=0x{x}, end=0x{x}, size=0x{x}, alignment=0x{x}", .{ |
| 3447 | | self.getString(sym.n_strx), |
| 3448 | | base_vaddr, |
| 3449 | | base_vaddr + atom.size, |
| 3450 | | atom.size, |
| 3451 | | atom.alignment, |
| 3452 | | }); |
| 3453 | | |
| 3454 | | // Update each symbol contained within the atom |
| 3455 | | for (atom.contained.items) |sym_at_off| { |
| 3456 | | const contained_sym = &self.locals.items[sym_at_off.local_sym_index]; |
| 3457 | | contained_sym.n_value = base_vaddr + sym_at_off.offset; |
| 3458 | | contained_sym.n_sect = n_sect; |
| 3459 | | } |
| 3460 | | |
| 3461 | | base_vaddr += atom.size; |
| 3462 | | |
| 3463 | | if (atom.next) |next| { |
| 3464 | | atom = next; |
| 3465 | | } else break; |
| 3466 | | } |
| 3467 | | } |
| 3043 | return error.UndefinedSymbolReference; |
| 3468 | 3044 | } |
| 3045 | |
| 3046 | // Add dyld_stub_binder as the final GOT entry. |
| 3047 | const got_index = try self.allocateGotEntry(global); |
| 3048 | const got_atom = try self.createGotAtom(global); |
| 3049 | self.got_entries.items[got_index].atom = got_atom; |
| 3469 | 3050 | } |
| 3470 | 3051 | |
| 3471 | 3052 | fn addLoadDylibLC(self: *MachO, id: u16) !void { |
| ... | ... | @@ -3503,15 +3084,11 @@ fn setEntryPoint(self: *MachO) !void { |
| 3503 | 3084 | |
| 3504 | 3085 | const seg = self.load_commands.items[self.text_segment_cmd_index.?].segment; |
| 3505 | 3086 | const entry_name = self.base.options.entry orelse "_main"; |
| 3506 | | const n_strx = self.strtab_dir.getKeyAdapted(entry_name, StringIndexAdapter{ |
| 3507 | | .bytes = &self.strtab, |
| 3508 | | }) orelse { |
| 3087 | const global = self.globals.get(entry_name) orelse { |
| 3509 | 3088 | log.err("entrypoint '{s}' not found", .{entry_name}); |
| 3510 | 3089 | return error.MissingMainEntrypoint; |
| 3511 | 3090 | }; |
| 3512 | | const resolv = self.symbol_resolver.get(n_strx) orelse unreachable; |
| 3513 | | assert(resolv.where == .global); |
| 3514 | | const sym = self.globals.items[resolv.where_index]; |
| 3091 | const sym = self.getSymbol(global); |
| 3515 | 3092 | const ec = &self.load_commands.items[self.main_cmd_index.?].main; |
| 3516 | 3093 | ec.entryoff = @intCast(u32, sym.n_value - seg.inner.vmaddr); |
| 3517 | 3094 | ec.stacksize = self.base.options.stack_size_override orelse 0; |
| ... | ... | @@ -3538,17 +3115,13 @@ pub fn deinit(self: *MachO) void { |
| 3538 | 3115 | self.stubs.deinit(self.base.allocator); |
| 3539 | 3116 | self.stubs_free_list.deinit(self.base.allocator); |
| 3540 | 3117 | self.stubs_table.deinit(self.base.allocator); |
| 3541 | | self.strtab_dir.deinit(self.base.allocator); |
| 3542 | 3118 | self.strtab.deinit(self.base.allocator); |
| 3543 | | self.undefs.deinit(self.base.allocator); |
| 3544 | 3119 | self.globals.deinit(self.base.allocator); |
| 3545 | | self.globals_free_list.deinit(self.base.allocator); |
| 3546 | 3120 | self.locals.deinit(self.base.allocator); |
| 3547 | 3121 | self.locals_free_list.deinit(self.base.allocator); |
| 3548 | | self.symbol_resolver.deinit(self.base.allocator); |
| 3549 | 3122 | self.unresolved.deinit(self.base.allocator); |
| 3550 | | self.tentatives.deinit(self.base.allocator); |
| 3551 | 3123 | self.gc_roots.deinit(self.base.allocator); |
| 3124 | self.gc_sections.deinit(self.base.allocator); |
| 3552 | 3125 | |
| 3553 | 3126 | for (self.objects.items) |*object| { |
| 3554 | 3127 | object.deinit(self.base.allocator); |
| ... | ... | @@ -3662,7 +3235,7 @@ fn freeAtom(self: *MachO, atom: *Atom, match: MatchingSection, owns_atom: bool) |
| 3662 | 3235 | if (atom.prev) |prev| { |
| 3663 | 3236 | prev.next = atom.next; |
| 3664 | 3237 | |
| 3665 | | if (!already_have_free_list_node and prev.freeListEligible(self.*)) { |
| 3238 | if (!already_have_free_list_node and prev.freeListEligible(self)) { |
| 3666 | 3239 | // The free list is heuristics, it doesn't have to be perfect, so we can ignore |
| 3667 | 3240 | // the OOM here. |
| 3668 | 3241 | free_list.append(self.base.allocator, prev) catch {}; |
| ... | ... | @@ -3692,9 +3265,9 @@ fn shrinkAtom(self: *MachO, atom: *Atom, new_block_size: u64, match: MatchingSec |
| 3692 | 3265 | } |
| 3693 | 3266 | |
| 3694 | 3267 | fn growAtom(self: *MachO, atom: *Atom, new_atom_size: u64, alignment: u64, match: MatchingSection) !u64 { |
| 3695 | | const sym = self.locals.items[atom.local_sym_index]; |
| 3268 | const sym = self.locals.items[atom.sym_index]; |
| 3696 | 3269 | const align_ok = mem.alignBackwardGeneric(u64, sym.n_value, alignment) == sym.n_value; |
| 3697 | | const need_realloc = !align_ok or new_atom_size > atom.capacity(self.*); |
| 3270 | const need_realloc = !align_ok or new_atom_size > atom.capacity(self); |
| 3698 | 3271 | if (!need_realloc) return sym.n_value; |
| 3699 | 3272 | return self.allocateAtom(atom, new_atom_size, alignment, match); |
| 3700 | 3273 | } |
| ... | ... | @@ -3725,7 +3298,7 @@ fn allocateLocalSymbol(self: *MachO) !u32 { |
| 3725 | 3298 | return index; |
| 3726 | 3299 | } |
| 3727 | 3300 | |
| 3728 | | pub fn allocateGotEntry(self: *MachO, target: Atom.Relocation.Target) !u32 { |
| 3301 | pub fn allocateGotEntry(self: *MachO, target: SymbolWithLoc) !u32 { |
| 3729 | 3302 | try self.got_entries.ensureUnusedCapacity(self.base.allocator, 1); |
| 3730 | 3303 | |
| 3731 | 3304 | const index = blk: { |
| ... | ... | @@ -3740,16 +3313,13 @@ pub fn allocateGotEntry(self: *MachO, target: Atom.Relocation.Target) !u32 { |
| 3740 | 3313 | } |
| 3741 | 3314 | }; |
| 3742 | 3315 | |
| 3743 | | self.got_entries.items[index] = .{ |
| 3744 | | .target = target, |
| 3745 | | .atom = undefined, |
| 3746 | | }; |
| 3316 | self.got_entries.items[index] = .{ .target = target, .atom = undefined }; |
| 3747 | 3317 | try self.got_entries_table.putNoClobber(self.base.allocator, target, index); |
| 3748 | 3318 | |
| 3749 | 3319 | return index; |
| 3750 | 3320 | } |
| 3751 | 3321 | |
| 3752 | | pub fn allocateStubEntry(self: *MachO, n_strx: u32) !u32 { |
| 3322 | pub fn allocateStubEntry(self: *MachO, target: SymbolWithLoc) !u32 { |
| 3753 | 3323 | try self.stubs.ensureUnusedCapacity(self.base.allocator, 1); |
| 3754 | 3324 | |
| 3755 | 3325 | const index = blk: { |
| ... | ... | @@ -3764,13 +3334,13 @@ pub fn allocateStubEntry(self: *MachO, n_strx: u32) !u32 { |
| 3764 | 3334 | } |
| 3765 | 3335 | }; |
| 3766 | 3336 | |
| 3767 | | self.stubs.items[index] = undefined; |
| 3768 | | try self.stubs_table.putNoClobber(self.base.allocator, n_strx, index); |
| 3337 | self.stubs.items[index] = .{ .target = target, .atom = undefined }; |
| 3338 | try self.stubs_table.putNoClobber(self.base.allocator, target, index); |
| 3769 | 3339 | |
| 3770 | 3340 | return index; |
| 3771 | 3341 | } |
| 3772 | 3342 | |
| 3773 | | pub fn allocateTlvPtrEntry(self: *MachO, target: Atom.Relocation.Target) !u32 { |
| 3343 | pub fn allocateTlvPtrEntry(self: *MachO, target: SymbolWithLoc) !u32 { |
| 3774 | 3344 | try self.tlv_ptr_entries.ensureUnusedCapacity(self.base.allocator, 1); |
| 3775 | 3345 | |
| 3776 | 3346 | const index = blk: { |
| ... | ... | @@ -3794,16 +3364,14 @@ pub fn allocateTlvPtrEntry(self: *MachO, target: Atom.Relocation.Target) !u32 { |
| 3794 | 3364 | pub fn allocateDeclIndexes(self: *MachO, decl_index: Module.Decl.Index) !void { |
| 3795 | 3365 | if (self.llvm_object) |_| return; |
| 3796 | 3366 | const decl = self.base.options.module.?.declPtr(decl_index); |
| 3797 | | if (decl.link.macho.local_sym_index != 0) return; |
| 3367 | if (decl.link.macho.sym_index != 0) return; |
| 3798 | 3368 | |
| 3799 | | decl.link.macho.local_sym_index = try self.allocateLocalSymbol(); |
| 3800 | | try self.atom_by_index_table.putNoClobber(self.base.allocator, decl.link.macho.local_sym_index, &decl.link.macho); |
| 3369 | decl.link.macho.sym_index = try self.allocateLocalSymbol(); |
| 3370 | try self.atom_by_index_table.putNoClobber(self.base.allocator, decl.link.macho.sym_index, &decl.link.macho); |
| 3801 | 3371 | try self.decls.putNoClobber(self.base.allocator, decl_index, null); |
| 3802 | 3372 | |
| 3803 | | const got_target = .{ .local = decl.link.macho.local_sym_index }; |
| 3804 | | const got_index = try self.allocateGotEntry(got_target); |
| 3805 | | const got_atom = try self.createGotAtom(got_target); |
| 3806 | | self.got_entries.items[got_index].atom = got_atom; |
| 3373 | const got_target = .{ .sym_index = decl.link.macho.sym_index, .file = null }; |
| 3374 | _ = try self.allocateGotEntry(got_target); |
| 3807 | 3375 | } |
| 3808 | 3376 | |
| 3809 | 3377 | pub fn updateFunc(self: *MachO, module: *Module, func: *Module.Fn, air: Air, liveness: Liveness) !void { |
| ... | ... | @@ -3877,8 +3445,9 @@ pub fn lowerUnnamedConst(self: *MachO, typed_value: TypedValue, decl_index: Modu |
| 3877 | 3445 | var code_buffer = std.ArrayList(u8).init(self.base.allocator); |
| 3878 | 3446 | defer code_buffer.deinit(); |
| 3879 | 3447 | |
| 3448 | const gpa = self.base.allocator; |
| 3880 | 3449 | const module = self.base.options.module.?; |
| 3881 | | const gop = try self.unnamed_const_atoms.getOrPut(self.base.allocator, decl_index); |
| 3450 | const gop = try self.unnamed_const_atoms.getOrPut(gpa, decl_index); |
| 3882 | 3451 | if (!gop.found_existing) { |
| 3883 | 3452 | gop.value_ptr.* = .{}; |
| 3884 | 3453 | } |
| ... | ... | @@ -3886,24 +3455,32 @@ pub fn lowerUnnamedConst(self: *MachO, typed_value: TypedValue, decl_index: Modu |
| 3886 | 3455 | |
| 3887 | 3456 | const decl = module.declPtr(decl_index); |
| 3888 | 3457 | const decl_name = try decl.getFullyQualifiedName(module); |
| 3889 | | defer self.base.allocator.free(decl_name); |
| 3458 | defer gpa.free(decl_name); |
| 3890 | 3459 | |
| 3891 | 3460 | const name_str_index = blk: { |
| 3892 | 3461 | const index = unnamed_consts.items.len; |
| 3893 | | const name = try std.fmt.allocPrint(self.base.allocator, "__unnamed_{s}_{d}", .{ decl_name, index }); |
| 3894 | | defer self.base.allocator.free(name); |
| 3895 | | break :blk try self.makeString(name); |
| 3462 | const name = try std.fmt.allocPrint(gpa, "__unnamed_{s}_{d}", .{ decl_name, index }); |
| 3463 | defer gpa.free(name); |
| 3464 | break :blk try self.strtab.insert(gpa, name); |
| 3896 | 3465 | }; |
| 3897 | | const name = self.getString(name_str_index); |
| 3466 | const name = self.strtab.get(name_str_index); |
| 3898 | 3467 | |
| 3899 | 3468 | log.debug("allocating symbol indexes for {s}", .{name}); |
| 3900 | 3469 | |
| 3901 | 3470 | const required_alignment = typed_value.ty.abiAlignment(self.base.options.target); |
| 3902 | | const local_sym_index = try self.allocateLocalSymbol(); |
| 3903 | | const atom = try self.createEmptyAtom(local_sym_index, @sizeOf(u64), math.log2(required_alignment)); |
| 3471 | const sym_index = try self.allocateLocalSymbol(); |
| 3472 | const atom = try MachO.createEmptyAtom( |
| 3473 | gpa, |
| 3474 | sym_index, |
| 3475 | @sizeOf(u64), |
| 3476 | math.log2(required_alignment), |
| 3477 | ); |
| 3478 | |
| 3479 | try self.managed_atoms.append(gpa, atom); |
| 3480 | try self.atom_by_index_table.putNoClobber(gpa, sym_index, atom); |
| 3904 | 3481 | |
| 3905 | 3482 | const res = try codegen.generateSymbol(&self.base, decl.srcLoc(), typed_value, &code_buffer, .none, .{ |
| 3906 | | .parent_atom_index = local_sym_index, |
| 3483 | .parent_atom_index = sym_index, |
| 3907 | 3484 | }); |
| 3908 | 3485 | const code = switch (res) { |
| 3909 | 3486 | .externally_managed => |x| x, |
| ... | ... | @@ -3917,7 +3494,7 @@ pub fn lowerUnnamedConst(self: *MachO, typed_value: TypedValue, decl_index: Modu |
| 3917 | 3494 | }; |
| 3918 | 3495 | |
| 3919 | 3496 | atom.code.clearRetainingCapacity(); |
| 3920 | | try atom.code.appendSlice(self.base.allocator, code); |
| 3497 | try atom.code.appendSlice(gpa, code); |
| 3921 | 3498 | |
| 3922 | 3499 | const match = try self.getMatchingSectionAtom( |
| 3923 | 3500 | atom, |
| ... | ... | @@ -3933,18 +3510,18 @@ pub fn lowerUnnamedConst(self: *MachO, typed_value: TypedValue, decl_index: Modu |
| 3933 | 3510 | |
| 3934 | 3511 | errdefer self.freeAtom(atom, match, true); |
| 3935 | 3512 | |
| 3936 | | const symbol = &self.locals.items[atom.local_sym_index]; |
| 3513 | const symbol = &self.locals.items[atom.sym_index]; |
| 3937 | 3514 | symbol.* = .{ |
| 3938 | 3515 | .n_strx = name_str_index, |
| 3939 | 3516 | .n_type = macho.N_SECT, |
| 3940 | | .n_sect = @intCast(u8, self.section_ordinals.getIndex(match).?) + 1, |
| 3517 | .n_sect = self.getSectionOrdinal(match), |
| 3941 | 3518 | .n_desc = 0, |
| 3942 | 3519 | .n_value = addr, |
| 3943 | 3520 | }; |
| 3944 | 3521 | |
| 3945 | | try unnamed_consts.append(self.base.allocator, atom); |
| 3522 | try unnamed_consts.append(gpa, atom); |
| 3946 | 3523 | |
| 3947 | | return atom.local_sym_index; |
| 3524 | return atom.sym_index; |
| 3948 | 3525 | } |
| 3949 | 3526 | |
| 3950 | 3527 | pub fn updateDecl(self: *MachO, module: *Module, decl_index: Module.Decl.Index) !void { |
| ... | ... | @@ -3986,14 +3563,14 @@ pub fn updateDecl(self: *MachO, module: *Module, decl_index: Module.Decl.Index) |
| 3986 | 3563 | }, &code_buffer, .{ |
| 3987 | 3564 | .dwarf = ds, |
| 3988 | 3565 | }, .{ |
| 3989 | | .parent_atom_index = decl.link.macho.local_sym_index, |
| 3566 | .parent_atom_index = decl.link.macho.sym_index, |
| 3990 | 3567 | }) |
| 3991 | 3568 | else |
| 3992 | 3569 | try codegen.generateSymbol(&self.base, decl.srcLoc(), .{ |
| 3993 | 3570 | .ty = decl.ty, |
| 3994 | 3571 | .val = decl_val, |
| 3995 | 3572 | }, &code_buffer, .none, .{ |
| 3996 | | .parent_atom_index = decl.link.macho.local_sym_index, |
| 3573 | .parent_atom_index = decl.link.macho.sym_index, |
| 3997 | 3574 | }); |
| 3998 | 3575 | |
| 3999 | 3576 | const code = blk: { |
| ... | ... | @@ -4168,8 +3745,7 @@ fn getMatchingSectionAtom( |
| 4168 | 3745 | .@"align" = align_log_2, |
| 4169 | 3746 | })).?; |
| 4170 | 3747 | }; |
| 4171 | | const seg = self.load_commands.items[match.seg].segment; |
| 4172 | | const sect = seg.sections.items[match.sect]; |
| 3748 | const sect = self.getSection(match); |
| 4173 | 3749 | log.debug(" allocating atom '{s}' in '{s},{s}' ({d},{d})", .{ |
| 4174 | 3750 | name, |
| 4175 | 3751 | sect.segName(), |
| ... | ... | @@ -4184,8 +3760,8 @@ fn placeDecl(self: *MachO, decl_index: Module.Decl.Index, code_len: usize) !*mac |
| 4184 | 3760 | const module = self.base.options.module.?; |
| 4185 | 3761 | const decl = module.declPtr(decl_index); |
| 4186 | 3762 | const required_alignment = decl.getAlignment(self.base.options.target); |
| 4187 | | assert(decl.link.macho.local_sym_index != 0); // Caller forgot to call allocateDeclIndexes() |
| 4188 | | const symbol = &self.locals.items[decl.link.macho.local_sym_index]; |
| 3763 | assert(decl.link.macho.sym_index != 0); // Caller forgot to call allocateDeclIndexes() |
| 3764 | const symbol = &self.locals.items[decl.link.macho.sym_index]; |
| 4189 | 3765 | |
| 4190 | 3766 | const sym_name = try decl.getFullyQualifiedName(module); |
| 4191 | 3767 | defer self.base.allocator.free(sym_name); |
| ... | ... | @@ -4203,7 +3779,7 @@ fn placeDecl(self: *MachO, decl_index: Module.Decl.Index, code_len: usize) !*mac |
| 4203 | 3779 | const match = decl_ptr.*.?; |
| 4204 | 3780 | |
| 4205 | 3781 | if (decl.link.macho.size != 0) { |
| 4206 | | const capacity = decl.link.macho.capacity(self.*); |
| 3782 | const capacity = decl.link.macho.capacity(self); |
| 4207 | 3783 | const need_realloc = code_len > capacity or !mem.isAlignedGeneric(u64, symbol.n_value, required_alignment); |
| 4208 | 3784 | |
| 4209 | 3785 | if (need_realloc) { |
| ... | ... | @@ -4217,12 +3793,12 @@ fn placeDecl(self: *MachO, decl_index: Module.Decl.Index, code_len: usize) !*mac |
| 4217 | 3793 | decl.link.macho.size = code_len; |
| 4218 | 3794 | decl.link.macho.dirty = true; |
| 4219 | 3795 | |
| 4220 | | symbol.n_strx = try self.makeString(sym_name); |
| 3796 | symbol.n_strx = try self.strtab.insert(self.base.allocator, sym_name); |
| 4221 | 3797 | symbol.n_type = macho.N_SECT; |
| 4222 | 3798 | symbol.n_sect = @intCast(u8, self.text_section_index.?) + 1; |
| 4223 | 3799 | symbol.n_desc = 0; |
| 4224 | 3800 | } else { |
| 4225 | | const name_str_index = try self.makeString(sym_name); |
| 3801 | const name_str_index = try self.strtab.insert(self.base.allocator, sym_name); |
| 4226 | 3802 | const addr = try self.allocateAtom(&decl.link.macho, code_len, required_alignment, match); |
| 4227 | 3803 | |
| 4228 | 3804 | log.debug("allocated atom for {s} at 0x{x}", .{ sym_name, addr }); |
| ... | ... | @@ -4233,22 +3809,18 @@ fn placeDecl(self: *MachO, decl_index: Module.Decl.Index, code_len: usize) !*mac |
| 4233 | 3809 | symbol.* = .{ |
| 4234 | 3810 | .n_strx = name_str_index, |
| 4235 | 3811 | .n_type = macho.N_SECT, |
| 4236 | | .n_sect = @intCast(u8, self.section_ordinals.getIndex(match).?) + 1, |
| 3812 | .n_sect = self.getSectionOrdinal(match), |
| 4237 | 3813 | .n_desc = 0, |
| 4238 | 3814 | .n_value = addr, |
| 4239 | 3815 | }; |
| 4240 | | const got_index = self.got_entries_table.get(.{ .local = decl.link.macho.local_sym_index }).?; |
| 4241 | | const got_atom = self.got_entries.items[got_index].atom; |
| 4242 | | const got_sym = &self.locals.items[got_atom.local_sym_index]; |
| 4243 | | const vaddr = try self.allocateAtom(got_atom, @sizeOf(u64), 8, .{ |
| 4244 | | .seg = self.data_const_segment_cmd_index.?, |
| 4245 | | .sect = self.got_section_index.?, |
| 4246 | | }); |
| 4247 | | got_sym.n_value = vaddr; |
| 4248 | | got_sym.n_sect = @intCast(u8, self.section_ordinals.getIndex(.{ |
| 4249 | | .seg = self.data_const_segment_cmd_index.?, |
| 4250 | | .sect = self.got_section_index.?, |
| 4251 | | }).? + 1); |
| 3816 | |
| 3817 | const got_target = SymbolWithLoc{ |
| 3818 | .sym_index = decl.link.macho.sym_index, |
| 3819 | .file = null, |
| 3820 | }; |
| 3821 | const got_index = self.got_entries_table.get(got_target).?; |
| 3822 | const got_atom = try self.createGotAtom(got_target); |
| 3823 | self.got_entries.items[got_index].atom = got_atom; |
| 4252 | 3824 | } |
| 4253 | 3825 | |
| 4254 | 3826 | return symbol; |
| ... | ... | @@ -4278,8 +3850,8 @@ pub fn updateDeclExports( |
| 4278 | 3850 | |
| 4279 | 3851 | try self.globals.ensureUnusedCapacity(self.base.allocator, exports.len); |
| 4280 | 3852 | const decl = module.declPtr(decl_index); |
| 4281 | | if (decl.link.macho.local_sym_index == 0) return; |
| 4282 | | const decl_sym = &self.locals.items[decl.link.macho.local_sym_index]; |
| 3853 | if (decl.link.macho.sym_index == 0) return; |
| 3854 | const decl_sym = &self.locals.items[decl.link.macho.sym_index]; |
| 4283 | 3855 | |
| 4284 | 3856 | for (exports) |exp| { |
| 4285 | 3857 | const exp_name = try std.fmt.allocPrint(self.base.allocator, "_{s}", .{exp.options.name}); |
| ... | ... | @@ -4316,46 +3888,47 @@ pub fn updateDeclExports( |
| 4316 | 3888 | } |
| 4317 | 3889 | |
| 4318 | 3890 | const is_weak = exp.options.linkage == .Internal or exp.options.linkage == .Weak; |
| 4319 | | const n_strx = try self.makeString(exp_name); |
| 4320 | | if (self.symbol_resolver.getPtr(n_strx)) |resolv| { |
| 4321 | | switch (resolv.where) { |
| 4322 | | .global => { |
| 4323 | | if (resolv.local_sym_index == decl.link.macho.local_sym_index) continue; |
| 4324 | | |
| 4325 | | const sym = &self.globals.items[resolv.where_index]; |
| 4326 | | |
| 4327 | | if (sym.tentative()) { |
| 4328 | | assert(self.tentatives.swapRemove(resolv.where_index)); |
| 4329 | | } else if (!is_weak and !(sym.weakDef() or sym.pext())) { |
| 4330 | | _ = try module.failed_exports.put( |
| 4331 | | module.gpa, |
| 4332 | | exp, |
| 4333 | | try Module.ErrorMsg.create( |
| 4334 | | self.base.allocator, |
| 4335 | | decl.srcLoc(), |
| 4336 | | \\LinkError: symbol '{s}' defined multiple times |
| 4337 | | \\ first definition in '{s}' |
| 4338 | | , |
| 4339 | | .{ exp_name, self.objects.items[resolv.file.?].name }, |
| 4340 | | ), |
| 4341 | | ); |
| 4342 | | continue; |
| 4343 | | } else if (is_weak) continue; // Current symbol is weak, so skip it. |
| 4344 | | |
| 4345 | | // Otherwise, update the resolver and the global symbol. |
| 4346 | | sym.n_type = macho.N_SECT | macho.N_EXT; |
| 4347 | | resolv.local_sym_index = decl.link.macho.local_sym_index; |
| 4348 | | resolv.file = null; |
| 4349 | | exp.link.macho.sym_index = resolv.where_index; |
| 4350 | | |
| 4351 | | continue; |
| 4352 | | }, |
| 4353 | | .undef => { |
| 4354 | | assert(self.unresolved.swapRemove(resolv.where_index)); |
| 4355 | | _ = self.symbol_resolver.remove(n_strx); |
| 4356 | | }, |
| 4357 | | } |
| 4358 | | } |
| 3891 | _ = is_weak; |
| 3892 | const n_strx = try self.strtab.insert(self.base.allocator, exp_name); |
| 3893 | // if (self.symbol_resolver.getPtr(n_strx)) |resolv| { |
| 3894 | // switch (resolv.where) { |
| 3895 | // .global => { |
| 3896 | // if (resolv.sym_index == decl.link.macho.sym_index) continue; |
| 3897 | |
| 3898 | // const sym = &self.globals.items[resolv.where_index]; |
| 3899 | |
| 3900 | // if (sym.tentative()) { |
| 3901 | // assert(self.tentatives.swapRemove(resolv.where_index)); |
| 3902 | // } else if (!is_weak and !(sym.weakDef() or sym.pext())) { |
| 3903 | // _ = try module.failed_exports.put( |
| 3904 | // module.gpa, |
| 3905 | // exp, |
| 3906 | // try Module.ErrorMsg.create( |
| 3907 | // self.base.allocator, |
| 3908 | // decl.srcLoc(), |
| 3909 | // \\LinkError: symbol '{s}' defined multiple times |
| 3910 | // \\ first definition in '{s}' |
| 3911 | // , |
| 3912 | // .{ exp_name, self.objects.items[resolv.file.?].name }, |
| 3913 | // ), |
| 3914 | // ); |
| 3915 | // continue; |
| 3916 | // } else if (is_weak) continue; // Current symbol is weak, so skip it. |
| 3917 | |
| 3918 | // // Otherwise, update the resolver and the global symbol. |
| 3919 | // sym.n_type = macho.N_SECT | macho.N_EXT; |
| 3920 | // resolv.sym_index = decl.link.macho.sym_index; |
| 3921 | // resolv.file = null; |
| 3922 | // exp.link.macho.sym_index = resolv.where_index; |
| 3923 | |
| 3924 | // continue; |
| 3925 | // }, |
| 3926 | // .undef => { |
| 3927 | // assert(self.unresolved.swapRemove(resolv.where_index)); |
| 3928 | // _ = self.symbol_resolver.remove(n_strx); |
| 3929 | // }, |
| 3930 | // } |
| 3931 | // } |
| 4359 | 3932 | |
| 4360 | 3933 | var n_type: u8 = macho.N_SECT | macho.N_EXT; |
| 4361 | 3934 | var n_desc: u16 = 0; |
| ... | ... | @@ -4377,41 +3950,44 @@ pub fn updateDeclExports( |
| 4377 | 3950 | else => unreachable, |
| 4378 | 3951 | } |
| 4379 | 3952 | |
| 4380 | | const global_sym_index = if (exp.link.macho.sym_index) |i| i else blk: { |
| 4381 | | const i = if (self.globals_free_list.popOrNull()) |i| i else inner: { |
| 4382 | | _ = self.globals.addOneAssumeCapacity(); |
| 4383 | | break :inner @intCast(u32, self.globals.items.len - 1); |
| 4384 | | }; |
| 4385 | | break :blk i; |
| 4386 | | }; |
| 4387 | | const sym = &self.globals.items[global_sym_index]; |
| 3953 | const global_sym_index: u32 = 0; |
| 3954 | // const global_sym_index = if (exp.link.macho.sym_index) |i| i else blk: { |
| 3955 | // const i = if (self.globals_free_list.popOrNull()) |i| i else inner: { |
| 3956 | // _ = self.globals.addOneAssumeCapacity(); |
| 3957 | // break :inner @intCast(u32, self.globals.items.len - 1); |
| 3958 | // }; |
| 3959 | // break :blk i; |
| 3960 | // }; |
| 3961 | const sym = &self.locals.items[global_sym_index]; |
| 4388 | 3962 | sym.* = .{ |
| 4389 | | .n_strx = try self.makeString(exp_name), |
| 3963 | .n_strx = try self.strtab.insert(self.base.allocator, exp_name), |
| 4390 | 3964 | .n_type = n_type, |
| 4391 | 3965 | .n_sect = @intCast(u8, self.text_section_index.?) + 1, |
| 4392 | 3966 | .n_desc = n_desc, |
| 4393 | 3967 | .n_value = decl_sym.n_value, |
| 4394 | 3968 | }; |
| 4395 | 3969 | exp.link.macho.sym_index = global_sym_index; |
| 3970 | _ = n_strx; |
| 4396 | 3971 | |
| 4397 | | try self.symbol_resolver.putNoClobber(self.base.allocator, n_strx, .{ |
| 4398 | | .where = .global, |
| 4399 | | .where_index = global_sym_index, |
| 4400 | | .local_sym_index = decl.link.macho.local_sym_index, |
| 4401 | | }); |
| 3972 | // try self.symbol_resolver.putNoClobber(self.base.allocator, n_strx, .{ |
| 3973 | // .where = .global, |
| 3974 | // .where_index = global_sym_index, |
| 3975 | // .sym_index = decl.link.macho.sym_index, |
| 3976 | // }); |
| 4402 | 3977 | } |
| 4403 | 3978 | } |
| 4404 | 3979 | |
| 4405 | 3980 | pub fn deleteExport(self: *MachO, exp: Export) void { |
| 4406 | 3981 | if (self.llvm_object) |_| return; |
| 4407 | 3982 | const sym_index = exp.sym_index orelse return; |
| 4408 | | self.globals_free_list.append(self.base.allocator, sym_index) catch {}; |
| 4409 | | const global = &self.globals.items[sym_index]; |
| 4410 | | log.debug("deleting export '{s}': {}", .{ self.getString(global.n_strx), global }); |
| 4411 | | assert(self.symbol_resolver.remove(global.n_strx)); |
| 4412 | | global.n_type = 0; |
| 4413 | | global.n_strx = 0; |
| 4414 | | global.n_value = 0; |
| 3983 | _ = sym_index; |
| 3984 | // self.globals_free_list.append(self.base.allocator, sym_index) catch {}; |
| 3985 | // const global = &self.globals.items[sym_index]; |
| 3986 | // log.warn("deleting export '{s}': {}", .{ self.getString(global.n_strx), global }); |
| 3987 | // assert(self.symbol_resolver.remove(global.n_strx)); |
| 3988 | // global.n_type = 0; |
| 3989 | // global.n_strx = 0; |
| 3990 | // global.n_value = 0; |
| 4415 | 3991 | } |
| 4416 | 3992 | |
| 4417 | 3993 | fn freeUnnamedConsts(self: *MachO, decl_index: Module.Decl.Index) void { |
| ... | ... | @@ -4421,11 +3997,11 @@ fn freeUnnamedConsts(self: *MachO, decl_index: Module.Decl.Index) void { |
| 4421 | 3997 | .seg = self.text_segment_cmd_index.?, |
| 4422 | 3998 | .sect = self.text_const_section_index.?, |
| 4423 | 3999 | }, true); |
| 4424 | | self.locals_free_list.append(self.base.allocator, atom.local_sym_index) catch {}; |
| 4425 | | self.locals.items[atom.local_sym_index].n_type = 0; |
| 4426 | | _ = self.atom_by_index_table.remove(atom.local_sym_index); |
| 4427 | | log.debug(" adding local symbol index {d} to free list", .{atom.local_sym_index}); |
| 4428 | | atom.local_sym_index = 0; |
| 4000 | self.locals_free_list.append(self.base.allocator, atom.sym_index) catch {}; |
| 4001 | self.locals.items[atom.sym_index].n_type = 0; |
| 4002 | _ = self.atom_by_index_table.remove(atom.sym_index); |
| 4003 | log.debug(" adding local symbol index {d} to free list", .{atom.sym_index}); |
| 4004 | atom.sym_index = 0; |
| 4429 | 4005 | } |
| 4430 | 4006 | unnamed_consts.clearAndFree(self.base.allocator); |
| 4431 | 4007 | } |
| ... | ... | @@ -4443,29 +4019,30 @@ pub fn freeDecl(self: *MachO, decl_index: Module.Decl.Index) void { |
| 4443 | 4019 | self.freeUnnamedConsts(decl_index); |
| 4444 | 4020 | } |
| 4445 | 4021 | // Appending to free lists is allowed to fail because the free lists are heuristics based anyway. |
| 4446 | | if (decl.link.macho.local_sym_index != 0) { |
| 4447 | | self.locals_free_list.append(self.base.allocator, decl.link.macho.local_sym_index) catch {}; |
| 4022 | if (decl.link.macho.sym_index != 0) { |
| 4023 | self.locals_free_list.append(self.base.allocator, decl.link.macho.sym_index) catch {}; |
| 4448 | 4024 | |
| 4449 | 4025 | // Try freeing GOT atom if this decl had one |
| 4450 | | if (self.got_entries_table.get(.{ .local = decl.link.macho.local_sym_index })) |got_index| { |
| 4026 | const got_target = SymbolWithLoc{ .sym_index = decl.link.macho.sym_index, .file = null }; |
| 4027 | if (self.got_entries_table.get(got_target)) |got_index| { |
| 4451 | 4028 | self.got_entries_free_list.append(self.base.allocator, @intCast(u32, got_index)) catch {}; |
| 4452 | | self.got_entries.items[got_index] = .{ .target = .{ .local = 0 }, .atom = undefined }; |
| 4453 | | _ = self.got_entries_table.swapRemove(.{ .local = decl.link.macho.local_sym_index }); |
| 4029 | self.got_entries.items[got_index] = .{ .target = .{ .sym_index = 0, .file = null }, .atom = undefined }; |
| 4030 | _ = self.got_entries_table.swapRemove(got_target); |
| 4454 | 4031 | |
| 4455 | 4032 | if (self.d_sym) |*d_sym| { |
| 4456 | | d_sym.swapRemoveRelocs(decl.link.macho.local_sym_index); |
| 4033 | d_sym.swapRemoveRelocs(decl.link.macho.sym_index); |
| 4457 | 4034 | } |
| 4458 | 4035 | |
| 4459 | 4036 | log.debug(" adding GOT index {d} to free list (target local@{d})", .{ |
| 4460 | 4037 | got_index, |
| 4461 | | decl.link.macho.local_sym_index, |
| 4038 | decl.link.macho.sym_index, |
| 4462 | 4039 | }); |
| 4463 | 4040 | } |
| 4464 | 4041 | |
| 4465 | | self.locals.items[decl.link.macho.local_sym_index].n_type = 0; |
| 4466 | | _ = self.atom_by_index_table.remove(decl.link.macho.local_sym_index); |
| 4467 | | log.debug(" adding local symbol index {d} to free list", .{decl.link.macho.local_sym_index}); |
| 4468 | | decl.link.macho.local_sym_index = 0; |
| 4042 | self.locals.items[decl.link.macho.sym_index].n_type = 0; |
| 4043 | _ = self.atom_by_index_table.remove(decl.link.macho.sym_index); |
| 4044 | log.debug(" adding local symbol index {d} to free list", .{decl.link.macho.sym_index}); |
| 4045 | decl.link.macho.sym_index = 0; |
| 4469 | 4046 | } |
| 4470 | 4047 | if (self.d_sym) |*d_sym| { |
| 4471 | 4048 | d_sym.dwarf.freeDecl(decl); |
| ... | ... | @@ -4477,12 +4054,12 @@ pub fn getDeclVAddr(self: *MachO, decl_index: Module.Decl.Index, reloc_info: Fil |
| 4477 | 4054 | const decl = mod.declPtr(decl_index); |
| 4478 | 4055 | |
| 4479 | 4056 | assert(self.llvm_object == null); |
| 4480 | | assert(decl.link.macho.local_sym_index != 0); |
| 4057 | assert(decl.link.macho.sym_index != 0); |
| 4481 | 4058 | |
| 4482 | 4059 | const atom = self.atom_by_index_table.get(reloc_info.parent_atom_index).?; |
| 4483 | 4060 | try atom.relocs.append(self.base.allocator, .{ |
| 4484 | 4061 | .offset = @intCast(u32, reloc_info.offset), |
| 4485 | | .target = .{ .local = decl.link.macho.local_sym_index }, |
| 4062 | .target = .{ .sym_index = decl.link.macho.sym_index, .file = null }, |
| 4486 | 4063 | .addend = reloc_info.addend, |
| 4487 | 4064 | .subtractor = null, |
| 4488 | 4065 | .pcrel = false, |
| ... | ... | @@ -5019,8 +4596,6 @@ fn populateMissingMetadata(self: *MachO) !void { |
| 5019 | 4596 | }); |
| 5020 | 4597 | self.load_commands_dirty = true; |
| 5021 | 4598 | } |
| 5022 | | |
| 5023 | | self.cold_start = true; |
| 5024 | 4599 | } |
| 5025 | 4600 | |
| 5026 | 4601 | fn calcMinHeaderpad(self: *MachO) u64 { |
| ... | ... | @@ -5121,7 +4696,7 @@ fn allocateSegment(self: *MachO, maybe_index: ?u16, indices: []const ?u16, init_ |
| 5121 | 4696 | |
| 5122 | 4697 | // Allocate the sections according to their alignment at the beginning of the segment. |
| 5123 | 4698 | var start = init_size; |
| 5124 | | for (seg.sections.items) |*sect, sect_id| { |
| 4699 | for (seg.sections.items) |*sect| { |
| 5125 | 4700 | const is_zerofill = sect.flags == macho.S_ZEROFILL or sect.flags == macho.S_THREAD_LOCAL_ZEROFILL; |
| 5126 | 4701 | const use_llvm = build_options.have_llvm and self.base.options.use_llvm; |
| 5127 | 4702 | const use_stage1 = build_options.is_stage1 and self.base.options.use_stage1; |
| ... | ... | @@ -5129,32 +4704,12 @@ fn allocateSegment(self: *MachO, maybe_index: ?u16, indices: []const ?u16, init_ |
| 5129 | 4704 | const start_aligned = mem.alignForwardGeneric(u64, start, alignment); |
| 5130 | 4705 | |
| 5131 | 4706 | // TODO handle zerofill sections in stage2 |
| 5132 | | sect.offset = if (is_zerofill and (use_stage1 or use_llvm)) 0 else @intCast(u32, seg.inner.fileoff + start_aligned); |
| 4707 | sect.offset = if (is_zerofill and (use_stage1 or use_llvm)) |
| 4708 | 0 |
| 4709 | else |
| 4710 | @intCast(u32, seg.inner.fileoff + start_aligned); |
| 5133 | 4711 | sect.addr = seg.inner.vmaddr + start_aligned; |
| 5134 | 4712 | |
| 5135 | | // Recalculate section size given the allocated start address |
| 5136 | | sect.size = if (self.atoms.get(.{ |
| 5137 | | .seg = index, |
| 5138 | | .sect = @intCast(u16, sect_id), |
| 5139 | | })) |last_atom| blk: { |
| 5140 | | var atom = last_atom; |
| 5141 | | while (atom.prev) |prev| { |
| 5142 | | atom = prev; |
| 5143 | | } |
| 5144 | | |
| 5145 | | var base_addr = sect.addr; |
| 5146 | | |
| 5147 | | while (true) { |
| 5148 | | const atom_alignment = try math.powi(u32, 2, atom.alignment); |
| 5149 | | base_addr = mem.alignForwardGeneric(u64, base_addr, atom_alignment) + atom.size; |
| 5150 | | if (atom.next) |next| { |
| 5151 | | atom = next; |
| 5152 | | } else break; |
| 5153 | | } |
| 5154 | | |
| 5155 | | break :blk base_addr - sect.addr; |
| 5156 | | } else 0; |
| 5157 | | |
| 5158 | 4713 | start = start_aligned + sect.size; |
| 5159 | 4714 | |
| 5160 | 4715 | if (!(is_zerofill and (use_stage1 or use_llvm))) { |
| ... | ... | @@ -5410,12 +4965,30 @@ fn getSectionMaxAlignment(self: *MachO, segment_id: u16, start_sect_id: u16) !u3 |
| 5410 | 4965 | return max_alignment; |
| 5411 | 4966 | } |
| 5412 | 4967 | |
| 5413 | | fn allocateAtom(self: *MachO, atom: *Atom, new_atom_size: u64, alignment: u64, match: MatchingSection) !u64 { |
| 4968 | fn allocateAtomCommon(self: *MachO, atom: *Atom, match: MatchingSection) !void { |
| 4969 | const sym = atom.getSymbolPtr(self); |
| 4970 | if (self.needs_prealloc) { |
| 4971 | const size = atom.size; |
| 4972 | const alignment = try math.powi(u32, 2, atom.alignment); |
| 4973 | const vaddr = try self.allocateAtom(atom, size, alignment, match); |
| 4974 | const sym_name = atom.getName(self); |
| 4975 | log.debug("allocated {s} atom at 0x{x}", .{ sym_name, vaddr }); |
| 4976 | sym.n_value = vaddr; |
| 4977 | } else try self.addAtomToSection(atom, match); |
| 4978 | sym.n_sect = self.getSectionOrdinal(match); |
| 4979 | } |
| 4980 | |
| 4981 | fn allocateAtom( |
| 4982 | self: *MachO, |
| 4983 | atom: *Atom, |
| 4984 | new_atom_size: u64, |
| 4985 | alignment: u64, |
| 4986 | match: MatchingSection, |
| 4987 | ) !u64 { |
| 5414 | 4988 | const tracy = trace(@src()); |
| 5415 | 4989 | defer tracy.end(); |
| 5416 | 4990 | |
| 5417 | | const seg = &self.load_commands.items[match.seg].segment; |
| 5418 | | const sect = &seg.sections.items[match.sect]; |
| 4991 | const sect = self.getSectionPtr(match); |
| 5419 | 4992 | var free_list = self.atom_free_lists.get(match).?; |
| 5420 | 4993 | const needs_padding = match.seg == self.text_segment_cmd_index.? and match.sect == self.text_section_index.?; |
| 5421 | 4994 | const new_atom_ideal_capacity = if (needs_padding) padToIdeal(new_atom_size) else new_atom_size; |
| ... | ... | @@ -5436,8 +5009,8 @@ fn allocateAtom(self: *MachO, atom: *Atom, new_atom_size: u64, alignment: u64, m |
| 5436 | 5009 | const big_atom = free_list.items[i]; |
| 5437 | 5010 | // We now have a pointer to a live atom that has too much capacity. |
| 5438 | 5011 | // Is it enough that we could fit this new atom? |
| 5439 | | const sym = self.locals.items[big_atom.local_sym_index]; |
| 5440 | | const capacity = big_atom.capacity(self.*); |
| 5012 | const sym = self.locals.items[big_atom.sym_index]; |
| 5013 | const capacity = big_atom.capacity(self); |
| 5441 | 5014 | const ideal_capacity = if (needs_padding) padToIdeal(capacity) else capacity; |
| 5442 | 5015 | const ideal_capacity_end_vaddr = math.add(u64, sym.n_value, ideal_capacity) catch ideal_capacity; |
| 5443 | 5016 | const capacity_end_vaddr = sym.n_value + capacity; |
| ... | ... | @@ -5447,7 +5020,7 @@ fn allocateAtom(self: *MachO, atom: *Atom, new_atom_size: u64, alignment: u64, m |
| 5447 | 5020 | // Additional bookkeeping here to notice if this free list node |
| 5448 | 5021 | // should be deleted because the atom that it points to has grown to take up |
| 5449 | 5022 | // more of the extra capacity. |
| 5450 | | if (!big_atom.freeListEligible(self.*)) { |
| 5023 | if (!big_atom.freeListEligible(self)) { |
| 5451 | 5024 | _ = free_list.swapRemove(i); |
| 5452 | 5025 | } else { |
| 5453 | 5026 | i += 1; |
| ... | ... | @@ -5467,7 +5040,7 @@ fn allocateAtom(self: *MachO, atom: *Atom, new_atom_size: u64, alignment: u64, m |
| 5467 | 5040 | } |
| 5468 | 5041 | break :blk new_start_vaddr; |
| 5469 | 5042 | } else if (self.atoms.get(match)) |last| { |
| 5470 | | const last_symbol = self.locals.items[last.local_sym_index]; |
| 5043 | const last_symbol = self.locals.items[last.sym_index]; |
| 5471 | 5044 | const ideal_capacity = if (needs_padding) padToIdeal(last.size) else last.size; |
| 5472 | 5045 | const ideal_capacity_end_vaddr = last_symbol.n_value + ideal_capacity; |
| 5473 | 5046 | const new_start_vaddr = mem.alignForwardGeneric(u64, ideal_capacity_end_vaddr, alignment); |
| ... | ... | @@ -5516,7 +5089,7 @@ fn allocateAtom(self: *MachO, atom: *Atom, new_atom_size: u64, alignment: u64, m |
| 5516 | 5089 | return vaddr; |
| 5517 | 5090 | } |
| 5518 | 5091 | |
| 5519 | | fn addAtomToSection(self: *MachO, atom: *Atom, match: MatchingSection) !void { |
| 5092 | pub fn addAtomToSection(self: *MachO, atom: *Atom, match: MatchingSection) !void { |
| 5520 | 5093 | if (self.atoms.getPtr(match)) |last| { |
| 5521 | 5094 | last.*.next = atom; |
| 5522 | 5095 | atom.prev = last.*; |
| ... | ... | @@ -5524,34 +5097,38 @@ fn addAtomToSection(self: *MachO, atom: *Atom, match: MatchingSection) !void { |
| 5524 | 5097 | } else { |
| 5525 | 5098 | try self.atoms.putNoClobber(self.base.allocator, match, atom); |
| 5526 | 5099 | } |
| 5527 | | const seg = &self.load_commands.items[match.seg].segment; |
| 5528 | | const sect = &seg.sections.items[match.sect]; |
| 5529 | | sect.size += atom.size; |
| 5100 | const sect = self.getSectionPtr(match); |
| 5101 | const atom_alignment = try math.powi(u32, 2, atom.alignment); |
| 5102 | const aligned_end_addr = mem.alignForwardGeneric(u64, sect.size, atom_alignment); |
| 5103 | const padding = aligned_end_addr - sect.size; |
| 5104 | sect.size += padding + atom.size; |
| 5105 | sect.@"align" = @maximum(sect.@"align", atom.alignment); |
| 5530 | 5106 | } |
| 5531 | 5107 | |
| 5532 | 5108 | pub fn getGlobalSymbol(self: *MachO, name: []const u8) !u32 { |
| 5533 | | const sym_name = try std.fmt.allocPrint(self.base.allocator, "_{s}", .{name}); |
| 5534 | | defer self.base.allocator.free(sym_name); |
| 5535 | | const n_strx = try self.makeString(sym_name); |
| 5536 | | |
| 5537 | | if (!self.symbol_resolver.contains(n_strx)) { |
| 5538 | | log.debug("adding new extern function '{s}'", .{sym_name}); |
| 5539 | | const sym_index = @intCast(u32, self.undefs.items.len); |
| 5540 | | try self.undefs.append(self.base.allocator, .{ |
| 5541 | | .n_strx = n_strx, |
| 5542 | | .n_type = macho.N_UNDF, |
| 5543 | | .n_sect = 0, |
| 5544 | | .n_desc = 0, |
| 5545 | | .n_value = 0, |
| 5546 | | }); |
| 5547 | | try self.symbol_resolver.putNoClobber(self.base.allocator, n_strx, .{ |
| 5548 | | .where = .undef, |
| 5549 | | .where_index = sym_index, |
| 5550 | | }); |
| 5551 | | try self.unresolved.putNoClobber(self.base.allocator, sym_index, .stub); |
| 5109 | const gpa = self.base.allocator; |
| 5110 | const sym_name = try std.fmt.allocPrint(gpa, "_{s}", .{name}); |
| 5111 | defer gpa.free(sym_name); |
| 5112 | |
| 5113 | if (self.globals.getIndex(sym_name)) |global_index| { |
| 5114 | return @intCast(u32, global_index); |
| 5552 | 5115 | } |
| 5553 | 5116 | |
| 5554 | | return n_strx; |
| 5117 | const n_strx = try self.strtab.insert(gpa, sym_name); |
| 5118 | const sym_index = @intCast(u32, self.locals.items.len); |
| 5119 | try self.locals.append(gpa, .{ |
| 5120 | .n_strx = n_strx, |
| 5121 | .n_type = macho.N_UNDF, |
| 5122 | .n_sect = 0, |
| 5123 | .n_desc = 0, |
| 5124 | .n_value = 0, |
| 5125 | }); |
| 5126 | try self.globals.putNoClobber(gpa, sym_name, .{ |
| 5127 | .sym_index = sym_index, |
| 5128 | .file = null, |
| 5129 | }); |
| 5130 | const global_index = self.globals.getIndex(sym_name).?; |
| 5131 | return @intCast(u32, global_index); |
| 5555 | 5132 | } |
| 5556 | 5133 | |
| 5557 | 5134 | fn getSegmentAllocBase(self: MachO, indices: []const ?u16) struct { vmaddr: u64, fileoff: u64 } { |
| ... | ... | @@ -5579,15 +5156,44 @@ fn pruneAndSortSectionsInSegment(self: *MachO, maybe_seg_id: *?u16, indices: []* |
| 5579 | 5156 | |
| 5580 | 5157 | for (indices) |maybe_index| { |
| 5581 | 5158 | const old_idx = maybe_index.* orelse continue; |
| 5582 | | const sect = sections[old_idx]; |
| 5159 | const sect = &sections[old_idx]; |
| 5160 | |
| 5161 | // Recalculate section alignment and size if required. |
| 5162 | const match = MatchingSection{ |
| 5163 | .seg = seg_id, |
| 5164 | .sect = old_idx, |
| 5165 | }; |
| 5166 | if (self.gc_sections.get(match)) |_| blk: { |
| 5167 | sect.@"align" = 0; |
| 5168 | sect.size = 0; |
| 5169 | |
| 5170 | var atom = self.atoms.get(match) orelse break :blk; |
| 5171 | |
| 5172 | while (atom.prev) |prev| { |
| 5173 | atom = prev; |
| 5174 | } |
| 5175 | |
| 5176 | while (true) { |
| 5177 | const atom_alignment = try math.powi(u32, 2, atom.alignment); |
| 5178 | const aligned_end_addr = mem.alignForwardGeneric(u64, sect.size, atom_alignment); |
| 5179 | const padding = aligned_end_addr - sect.size; |
| 5180 | sect.size += padding + atom.size; |
| 5181 | sect.@"align" = @maximum(sect.@"align", atom.alignment); |
| 5182 | |
| 5183 | if (atom.next) |next| { |
| 5184 | atom = next; |
| 5185 | } else break; |
| 5186 | } |
| 5187 | } |
| 5188 | |
| 5583 | 5189 | if (sect.size == 0) { |
| 5584 | | log.warn("pruning section {s},{s}", .{ sect.segName(), sect.sectName() }); |
| 5190 | log.debug("pruning section {s},{s}", .{ sect.segName(), sect.sectName() }); |
| 5585 | 5191 | maybe_index.* = null; |
| 5586 | 5192 | seg.inner.cmdsize -= @sizeOf(macho.section_64); |
| 5587 | 5193 | seg.inner.nsects -= 1; |
| 5588 | 5194 | } else { |
| 5589 | 5195 | maybe_index.* = @intCast(u16, seg.sections.items.len); |
| 5590 | | seg.sections.appendAssumeCapacity(sect); |
| 5196 | seg.sections.appendAssumeCapacity(sect.*); |
| 5591 | 5197 | } |
| 5592 | 5198 | try mapping.putNoClobber(old_idx, maybe_index.*); |
| 5593 | 5199 | } |
| ... | ... | @@ -5614,7 +5220,7 @@ fn pruneAndSortSectionsInSegment(self: *MachO, maybe_seg_id: *?u16, indices: []* |
| 5614 | 5220 | |
| 5615 | 5221 | if (seg.inner.nsects == 0 and !mem.eql(u8, "__TEXT", seg.inner.segName())) { |
| 5616 | 5222 | // Segment has now become empty, so mark it as such |
| 5617 | | log.warn("marking segment {s} as dead", .{seg.inner.segName()}); |
| 5223 | log.debug("marking segment {s} as dead", .{seg.inner.segName()}); |
| 5618 | 5224 | seg.inner.cmd = @intToEnum(macho.LC, 0); |
| 5619 | 5225 | maybe_seg_id.* = null; |
| 5620 | 5226 | } |
| ... | ... | @@ -5697,36 +5303,22 @@ fn pruneAndSortSections(self: *MachO) !void { |
| 5697 | 5303 | } |
| 5698 | 5304 | |
| 5699 | 5305 | fn gcAtoms(self: *MachO) !void { |
| 5700 | | const dead_strip = self.base.options.gc_sections orelse false; |
| 5306 | const dead_strip = self.base.options.gc_sections orelse return; |
| 5701 | 5307 | if (!dead_strip) return; |
| 5702 | 5308 | |
| 5309 | const gpa = self.base.allocator; |
| 5310 | |
| 5703 | 5311 | // Add all exports as GC roots |
| 5704 | | for (self.globals.items) |sym| { |
| 5705 | | if (sym.n_type == 0) continue; |
| 5706 | | const resolv = self.symbol_resolver.get(sym.n_strx).?; |
| 5707 | | assert(resolv.where == .global); |
| 5708 | | const gc_root = self.atom_by_index_table.get(resolv.local_sym_index) orelse { |
| 5709 | | log.warn("skipping {s}", .{self.getString(sym.n_strx)}); |
| 5312 | for (self.globals.values()) |global| { |
| 5313 | const sym = self.getSymbol(global); |
| 5314 | if (!sym.sect()) continue; |
| 5315 | const gc_root = self.getAtomForSymbol(global) orelse { |
| 5316 | log.debug("skipping {s}", .{self.getSymbolName(global)}); |
| 5710 | 5317 | continue; |
| 5711 | 5318 | }; |
| 5712 | | _ = try self.gc_roots.getOrPut(self.base.allocator, gc_root); |
| 5319 | _ = try self.gc_roots.getOrPut(gpa, gc_root); |
| 5713 | 5320 | } |
| 5714 | 5321 | |
| 5715 | | // if (self.tlv_ptrs_section_index) |sect| { |
| 5716 | | // var atom = self.atoms.get(.{ |
| 5717 | | // .seg = self.data_segment_cmd_index.?, |
| 5718 | | // .sect = sect, |
| 5719 | | // }).?; |
| 5720 | | |
| 5721 | | // while (true) { |
| 5722 | | // _ = try self.gc_roots.getOrPut(self.base.allocator, atom); |
| 5723 | | |
| 5724 | | // if (atom.prev) |prev| { |
| 5725 | | // atom = prev; |
| 5726 | | // } else break; |
| 5727 | | // } |
| 5728 | | // } |
| 5729 | | |
| 5730 | 5322 | // Add any atom targeting an import as GC root |
| 5731 | 5323 | var atoms_it = self.atoms.iterator(); |
| 5732 | 5324 | while (atoms_it.next()) |entry| { |
| ... | ... | @@ -5734,19 +5326,13 @@ fn gcAtoms(self: *MachO) !void { |
| 5734 | 5326 | |
| 5735 | 5327 | while (true) { |
| 5736 | 5328 | for (atom.relocs.items) |rel| { |
| 5737 | | if ((try Atom.getTargetAtom(rel, self)) == null) switch (rel.target) { |
| 5738 | | .local => {}, |
| 5739 | | .global => |n_strx| { |
| 5740 | | const resolv = self.symbol_resolver.get(n_strx).?; |
| 5741 | | switch (resolv.where) { |
| 5742 | | .global => {}, |
| 5743 | | .undef => { |
| 5744 | | _ = try self.gc_roots.getOrPut(self.base.allocator, atom); |
| 5745 | | break; |
| 5746 | | }, |
| 5747 | | } |
| 5748 | | }, |
| 5749 | | }; |
| 5329 | if ((try rel.getTargetAtom(self)) == null) { |
| 5330 | const target_sym = self.getSymbol(rel.target); |
| 5331 | if (target_sym.undf()) { |
| 5332 | _ = try self.gc_roots.getOrPut(gpa, atom); |
| 5333 | break; |
| 5334 | } |
| 5335 | } |
| 5750 | 5336 | } |
| 5751 | 5337 | |
| 5752 | 5338 | if (atom.prev) |prev| { |
| ... | ... | @@ -5755,15 +5341,15 @@ fn gcAtoms(self: *MachO) !void { |
| 5755 | 5341 | } |
| 5756 | 5342 | } |
| 5757 | 5343 | |
| 5758 | | var stack = std.ArrayList(*Atom).init(self.base.allocator); |
| 5344 | var stack = std.ArrayList(*Atom).init(gpa); |
| 5759 | 5345 | defer stack.deinit(); |
| 5760 | 5346 | try stack.ensureUnusedCapacity(self.gc_roots.count()); |
| 5761 | 5347 | |
| 5762 | | var retained = std.AutoHashMap(*Atom, void).init(self.base.allocator); |
| 5348 | var retained = std.AutoHashMap(*Atom, void).init(gpa); |
| 5763 | 5349 | defer retained.deinit(); |
| 5764 | 5350 | try retained.ensureUnusedCapacity(self.gc_roots.count()); |
| 5765 | 5351 | |
| 5766 | | log.warn("GC roots:", .{}); |
| 5352 | log.debug("GC roots:", .{}); |
| 5767 | 5353 | var gc_roots_it = self.gc_roots.keyIterator(); |
| 5768 | 5354 | while (gc_roots_it.next()) |gc_root| { |
| 5769 | 5355 | self.logAtom(gc_root.*); |
| ... | ... | @@ -5772,15 +5358,15 @@ fn gcAtoms(self: *MachO) !void { |
| 5772 | 5358 | retained.putAssumeCapacityNoClobber(gc_root.*, {}); |
| 5773 | 5359 | } |
| 5774 | 5360 | |
| 5775 | | log.warn("walking tree...", .{}); |
| 5361 | log.debug("walking tree...", .{}); |
| 5776 | 5362 | while (stack.popOrNull()) |source_atom| { |
| 5777 | 5363 | for (source_atom.relocs.items) |rel| { |
| 5778 | | if (try Atom.getTargetAtom(rel, self)) |target_atom| { |
| 5364 | if (try rel.getTargetAtom(self)) |target_atom| { |
| 5779 | 5365 | const gop = try retained.getOrPut(target_atom); |
| 5780 | 5366 | if (!gop.found_existing) { |
| 5781 | | log.warn(" RETAINED ATOM(%{d}) -> ATOM(%{d})", .{ |
| 5782 | | source_atom.local_sym_index, |
| 5783 | | target_atom.local_sym_index, |
| 5367 | log.debug(" RETAINED ATOM(%{d}) -> ATOM(%{d})", .{ |
| 5368 | source_atom.sym_index, |
| 5369 | target_atom.sym_index, |
| 5784 | 5370 | }); |
| 5785 | 5371 | try stack.append(target_atom); |
| 5786 | 5372 | } |
| ... | ... | @@ -5808,58 +5394,38 @@ fn gcAtoms(self: *MachO) !void { |
| 5808 | 5394 | } |
| 5809 | 5395 | } |
| 5810 | 5396 | |
| 5811 | | const seg = &self.load_commands.items[match.seg].segment; |
| 5812 | | const sect = &seg.sections.items[match.sect]; |
| 5397 | const sect = self.getSectionPtr(match); |
| 5813 | 5398 | var atom = entry.value_ptr.*; |
| 5814 | 5399 | |
| 5815 | | log.warn("GCing atoms in {s},{s}", .{ sect.segName(), sect.sectName() }); |
| 5400 | log.debug("GCing atoms in {s},{s}", .{ sect.segName(), sect.sectName() }); |
| 5816 | 5401 | |
| 5817 | 5402 | while (true) { |
| 5818 | 5403 | const orig_prev = atom.prev; |
| 5819 | 5404 | |
| 5820 | 5405 | if (!retained.contains(atom)) { |
| 5821 | 5406 | // Dead atom; remove. |
| 5822 | | log.warn(" DEAD ATOM(%{d})", .{atom.local_sym_index}); |
| 5407 | log.debug(" DEAD ATOM(%{d})", .{atom.sym_index}); |
| 5823 | 5408 | |
| 5824 | | const sym = &self.locals.items[atom.local_sym_index]; |
| 5409 | const sym = atom.getSymbolPtr(self); |
| 5825 | 5410 | sym.n_desc = N_DESC_GCED; |
| 5826 | 5411 | |
| 5827 | | if (self.symbol_resolver.getPtr(sym.n_strx)) |resolv| { |
| 5828 | | if (resolv.local_sym_index == atom.local_sym_index) { |
| 5829 | | const global = &self.globals.items[resolv.where_index]; |
| 5830 | | global.n_desc = N_DESC_GCED; |
| 5831 | | } |
| 5832 | | } |
| 5833 | | |
| 5834 | | for (self.got_entries.items) |got_entry| { |
| 5835 | | if (got_entry.atom == atom) { |
| 5836 | | _ = self.got_entries_table.swapRemove(got_entry.target); |
| 5837 | | break; |
| 5838 | | } |
| 5839 | | } |
| 5840 | | |
| 5841 | | for (self.stubs.items) |stub, i| { |
| 5842 | | if (stub == atom) { |
| 5843 | | _ = self.stubs_table.swapRemove(@intCast(u32, i)); |
| 5844 | | break; |
| 5845 | | } |
| 5846 | | } |
| 5412 | // TODO add full bookkeeping here |
| 5413 | const global = SymbolWithLoc{ .sym_index = atom.sym_index, .file = atom.file }; |
| 5414 | _ = self.got_entries_table.swapRemove(global); |
| 5415 | _ = self.stubs_table.swapRemove(global); |
| 5416 | _ = self.tlv_ptr_entries_table.swapRemove(global); |
| 5847 | 5417 | |
| 5848 | 5418 | for (atom.contained.items) |sym_off| { |
| 5849 | | const inner = &self.locals.items[sym_off.local_sym_index]; |
| 5419 | const inner = self.getSymbolPtr(.{ |
| 5420 | .sym_index = sym_off.sym_index, |
| 5421 | .file = atom.file, |
| 5422 | }); |
| 5850 | 5423 | inner.n_desc = N_DESC_GCED; |
| 5851 | | |
| 5852 | | if (self.symbol_resolver.getPtr(inner.n_strx)) |resolv| { |
| 5853 | | if (resolv.local_sym_index == atom.local_sym_index) { |
| 5854 | | const global = &self.globals.items[resolv.where_index]; |
| 5855 | | global.n_desc = N_DESC_GCED; |
| 5856 | | } |
| 5857 | | } |
| 5858 | 5424 | } |
| 5859 | | |
| 5860 | | log.warn(" BEFORE size = {x}", .{sect.size}); |
| 5425 | // If we want to enable GC for incremental codepath, we need to take into |
| 5426 | // account any padding that might have been left here. |
| 5861 | 5427 | sect.size -= atom.size; |
| 5862 | | log.warn(" AFTER size = {x}", .{sect.size}); |
| 5428 | |
| 5863 | 5429 | if (atom.prev) |prev| { |
| 5864 | 5430 | prev.next = atom.next; |
| 5865 | 5431 | } |
| ... | ... | @@ -5870,6 +5436,8 @@ fn gcAtoms(self: *MachO) !void { |
| 5870 | 5436 | // The section will be GCed in the next step. |
| 5871 | 5437 | entry.value_ptr.* = if (atom.prev) |prev| prev else undefined; |
| 5872 | 5438 | } |
| 5439 | |
| 5440 | _ = try self.gc_sections.getOrPut(gpa, match); |
| 5873 | 5441 | } |
| 5874 | 5442 | |
| 5875 | 5443 | if (orig_prev) |prev| { |
| ... | ... | @@ -5885,7 +5453,11 @@ fn updateSectionOrdinals(self: *MachO) !void { |
| 5885 | 5453 | const tracy = trace(@src()); |
| 5886 | 5454 | defer tracy.end(); |
| 5887 | 5455 | |
| 5888 | | var ordinal_remap = std.AutoHashMap(u8, u8).init(self.base.allocator); |
| 5456 | log.debug("updating section ordinals", .{}); |
| 5457 | |
| 5458 | const gpa = self.base.allocator; |
| 5459 | |
| 5460 | var ordinal_remap = std.AutoHashMap(u8, u8).init(gpa); |
| 5889 | 5461 | defer ordinal_remap.deinit(); |
| 5890 | 5462 | var ordinals: std.AutoArrayHashMapUnmanaged(MatchingSection, void) = .{}; |
| 5891 | 5463 | |
| ... | ... | @@ -5897,27 +5469,38 @@ fn updateSectionOrdinals(self: *MachO) !void { |
| 5897 | 5469 | }) |maybe_index| { |
| 5898 | 5470 | const index = maybe_index orelse continue; |
| 5899 | 5471 | const seg = self.load_commands.items[index].segment; |
| 5900 | | for (seg.sections.items) |_, sect_id| { |
| 5472 | for (seg.sections.items) |sect, sect_id| { |
| 5901 | 5473 | const match = MatchingSection{ |
| 5902 | 5474 | .seg = @intCast(u16, index), |
| 5903 | 5475 | .sect = @intCast(u16, sect_id), |
| 5904 | 5476 | }; |
| 5905 | | const old_ordinal = @intCast(u8, self.section_ordinals.getIndex(match).? + 1); |
| 5477 | const old_ordinal = self.getSectionOrdinal(match); |
| 5906 | 5478 | new_ordinal += 1; |
| 5479 | log.debug("'{s},{s}': sect({d}, '_,_') => sect({d}, '_,_')", .{ |
| 5480 | sect.segName(), |
| 5481 | sect.sectName(), |
| 5482 | old_ordinal, |
| 5483 | new_ordinal, |
| 5484 | }); |
| 5907 | 5485 | try ordinal_remap.putNoClobber(old_ordinal, new_ordinal); |
| 5908 | | try ordinals.putNoClobber(self.base.allocator, match, {}); |
| 5486 | try ordinals.putNoClobber(gpa, match, {}); |
| 5909 | 5487 | } |
| 5910 | 5488 | } |
| 5911 | 5489 | |
| 5912 | 5490 | for (self.locals.items) |*sym| { |
| 5491 | if (sym.undf()) continue; |
| 5913 | 5492 | if (sym.n_sect == 0) continue; |
| 5914 | 5493 | sym.n_sect = ordinal_remap.get(sym.n_sect).?; |
| 5915 | 5494 | } |
| 5916 | | for (self.globals.items) |*sym| { |
| 5917 | | sym.n_sect = ordinal_remap.get(sym.n_sect).?; |
| 5495 | for (self.objects.items) |*object| { |
| 5496 | for (object.symtab.items) |*sym| { |
| 5497 | if (sym.undf()) continue; |
| 5498 | if (sym.n_sect == 0) continue; |
| 5499 | sym.n_sect = ordinal_remap.get(sym.n_sect).?; |
| 5500 | } |
| 5918 | 5501 | } |
| 5919 | 5502 | |
| 5920 | | self.section_ordinals.deinit(self.base.allocator); |
| 5503 | self.section_ordinals.deinit(gpa); |
| 5921 | 5504 | self.section_ordinals = ordinals; |
| 5922 | 5505 | } |
| 5923 | 5506 | |
| ... | ... | @@ -5925,11 +5508,13 @@ fn writeDyldInfoData(self: *MachO) !void { |
| 5925 | 5508 | const tracy = trace(@src()); |
| 5926 | 5509 | defer tracy.end(); |
| 5927 | 5510 | |
| 5928 | | var rebase_pointers = std.ArrayList(bind.Pointer).init(self.base.allocator); |
| 5511 | const gpa = self.base.allocator; |
| 5512 | |
| 5513 | var rebase_pointers = std.ArrayList(bind.Pointer).init(gpa); |
| 5929 | 5514 | defer rebase_pointers.deinit(); |
| 5930 | | var bind_pointers = std.ArrayList(bind.Pointer).init(self.base.allocator); |
| 5515 | var bind_pointers = std.ArrayList(bind.Pointer).init(gpa); |
| 5931 | 5516 | defer bind_pointers.deinit(); |
| 5932 | | var lazy_bind_pointers = std.ArrayList(bind.Pointer).init(self.base.allocator); |
| 5517 | var lazy_bind_pointers = std.ArrayList(bind.Pointer).init(gpa); |
| 5933 | 5518 | defer lazy_bind_pointers.deinit(); |
| 5934 | 5519 | |
| 5935 | 5520 | { |
| ... | ... | @@ -5942,13 +5527,13 @@ fn writeDyldInfoData(self: *MachO) !void { |
| 5942 | 5527 | if (match.seg == seg) continue; // __TEXT is non-writable |
| 5943 | 5528 | } |
| 5944 | 5529 | |
| 5945 | | const seg = self.load_commands.items[match.seg].segment; |
| 5946 | | const sect = seg.sections.items[match.sect]; |
| 5947 | | log.warn("dyld info for {s},{s}", .{ sect.segName(), sect.sectName() }); |
| 5530 | const seg = self.getSegment(match); |
| 5531 | const sect = self.getSection(match); |
| 5532 | log.debug("dyld info for {s},{s}", .{ sect.segName(), sect.sectName() }); |
| 5948 | 5533 | |
| 5949 | 5534 | while (true) { |
| 5950 | | log.warn(" ATOM %{d}", .{atom.local_sym_index}); |
| 5951 | | const sym = self.locals.items[atom.local_sym_index]; |
| 5535 | log.debug(" ATOM %{d}", .{atom.sym_index}); |
| 5536 | const sym = atom.getSymbol(self); |
| 5952 | 5537 | const base_offset = sym.n_value - seg.inner.vmaddr; |
| 5953 | 5538 | |
| 5954 | 5539 | for (atom.rebases.items) |offset| { |
| ... | ... | @@ -5959,57 +5544,35 @@ fn writeDyldInfoData(self: *MachO) !void { |
| 5959 | 5544 | } |
| 5960 | 5545 | |
| 5961 | 5546 | for (atom.bindings.items) |binding| { |
| 5962 | | const resolv = self.symbol_resolver.get(binding.n_strx).?; |
| 5963 | | switch (resolv.where) { |
| 5964 | | .global => { |
| 5965 | | // Turn into a rebase. |
| 5966 | | try rebase_pointers.append(.{ |
| 5967 | | .offset = base_offset + binding.offset, |
| 5968 | | .segment_id = match.seg, |
| 5969 | | }); |
| 5970 | | }, |
| 5971 | | .undef => { |
| 5972 | | const bind_sym = self.undefs.items[resolv.where_index]; |
| 5973 | | var flags: u4 = 0; |
| 5974 | | if (bind_sym.weakRef()) { |
| 5975 | | flags |= @truncate(u4, macho.BIND_SYMBOL_FLAGS_WEAK_IMPORT); |
| 5976 | | } |
| 5977 | | try bind_pointers.append(.{ |
| 5978 | | .offset = binding.offset + base_offset, |
| 5979 | | .segment_id = match.seg, |
| 5980 | | .dylib_ordinal = @divTrunc(@bitCast(i16, bind_sym.n_desc), macho.N_SYMBOL_RESOLVER), |
| 5981 | | .name = self.getString(bind_sym.n_strx), |
| 5982 | | .bind_flags = flags, |
| 5983 | | }); |
| 5984 | | }, |
| 5547 | const global = self.globals.values()[binding.global_index]; |
| 5548 | const bind_sym = self.getSymbol(global); |
| 5549 | var flags: u4 = 0; |
| 5550 | if (bind_sym.weakRef()) { |
| 5551 | flags |= @truncate(u4, macho.BIND_SYMBOL_FLAGS_WEAK_IMPORT); |
| 5985 | 5552 | } |
| 5553 | try bind_pointers.append(.{ |
| 5554 | .offset = binding.offset + base_offset, |
| 5555 | .segment_id = match.seg, |
| 5556 | .dylib_ordinal = @divTrunc(@bitCast(i16, bind_sym.n_desc), macho.N_SYMBOL_RESOLVER), |
| 5557 | .name = self.getSymbolName(global), |
| 5558 | .bind_flags = flags, |
| 5559 | }); |
| 5986 | 5560 | } |
| 5987 | 5561 | |
| 5988 | 5562 | for (atom.lazy_bindings.items) |binding| { |
| 5989 | | const resolv = self.symbol_resolver.get(binding.n_strx).?; |
| 5990 | | switch (resolv.where) { |
| 5991 | | .global => { |
| 5992 | | // Turn into a rebase. |
| 5993 | | try rebase_pointers.append(.{ |
| 5994 | | .offset = base_offset + binding.offset, |
| 5995 | | .segment_id = match.seg, |
| 5996 | | }); |
| 5997 | | }, |
| 5998 | | .undef => { |
| 5999 | | const bind_sym = self.undefs.items[resolv.where_index]; |
| 6000 | | var flags: u4 = 0; |
| 6001 | | if (bind_sym.weakRef()) { |
| 6002 | | flags |= @truncate(u4, macho.BIND_SYMBOL_FLAGS_WEAK_IMPORT); |
| 6003 | | } |
| 6004 | | try lazy_bind_pointers.append(.{ |
| 6005 | | .offset = binding.offset + base_offset, |
| 6006 | | .segment_id = match.seg, |
| 6007 | | .dylib_ordinal = @divTrunc(@bitCast(i16, bind_sym.n_desc), macho.N_SYMBOL_RESOLVER), |
| 6008 | | .name = self.getString(bind_sym.n_strx), |
| 6009 | | .bind_flags = flags, |
| 6010 | | }); |
| 6011 | | }, |
| 5563 | const global = self.globals.values()[binding.global_index]; |
| 5564 | const bind_sym = self.getSymbol(global); |
| 5565 | var flags: u4 = 0; |
| 5566 | if (bind_sym.weakRef()) { |
| 5567 | flags |= @truncate(u4, macho.BIND_SYMBOL_FLAGS_WEAK_IMPORT); |
| 6012 | 5568 | } |
| 5569 | try lazy_bind_pointers.append(.{ |
| 5570 | .offset = binding.offset + base_offset, |
| 5571 | .segment_id = match.seg, |
| 5572 | .dylib_ordinal = @divTrunc(@bitCast(i16, bind_sym.n_desc), macho.N_SYMBOL_RESOLVER), |
| 5573 | .name = self.getSymbolName(global), |
| 5574 | .bind_flags = flags, |
| 5575 | }); |
| 6013 | 5576 | } |
| 6014 | 5577 | |
| 6015 | 5578 | if (atom.prev) |prev| { |
| ... | ... | @@ -6020,7 +5583,7 @@ fn writeDyldInfoData(self: *MachO) !void { |
| 6020 | 5583 | } |
| 6021 | 5584 | |
| 6022 | 5585 | var trie: Trie = .{}; |
| 6023 | | defer trie.deinit(self.base.allocator); |
| 5586 | defer trie.deinit(gpa); |
| 6024 | 5587 | |
| 6025 | 5588 | { |
| 6026 | 5589 | // TODO handle macho.EXPORT_SYMBOL_FLAGS_REEXPORT and macho.EXPORT_SYMBOL_FLAGS_STUB_AND_RESOLVER. |
| ... | ... | @@ -6029,19 +5592,22 @@ fn writeDyldInfoData(self: *MachO) !void { |
| 6029 | 5592 | const text_segment = self.load_commands.items[self.text_segment_cmd_index.?].segment; |
| 6030 | 5593 | const base_address = text_segment.inner.vmaddr; |
| 6031 | 5594 | |
| 6032 | | for (self.globals.items) |sym| { |
| 6033 | | if (sym.n_type == 0) continue; |
| 6034 | | const sym_name = self.getString(sym.n_strx); |
| 5595 | for (self.globals.values()) |global| { |
| 5596 | const sym = self.getSymbol(global); |
| 5597 | if (sym.undf()) continue; |
| 5598 | if (!sym.ext()) continue; |
| 5599 | if (sym.n_desc == N_DESC_GCED) continue; |
| 5600 | const sym_name = self.getSymbolName(global); |
| 6035 | 5601 | log.debug(" (putting '{s}' defined at 0x{x})", .{ sym_name, sym.n_value }); |
| 6036 | 5602 | |
| 6037 | | try trie.put(self.base.allocator, .{ |
| 5603 | try trie.put(gpa, .{ |
| 6038 | 5604 | .name = sym_name, |
| 6039 | 5605 | .vmaddr_offset = sym.n_value - base_address, |
| 6040 | 5606 | .export_flags = macho.EXPORT_SYMBOL_FLAGS_KIND_REGULAR, |
| 6041 | 5607 | }); |
| 6042 | 5608 | } |
| 6043 | 5609 | |
| 6044 | | try trie.finalize(self.base.allocator); |
| 5610 | try trie.finalize(gpa); |
| 6045 | 5611 | } |
| 6046 | 5612 | |
| 6047 | 5613 | const seg = &self.load_commands.items[self.linkedit_segment_cmd_index.?].segment; |
| ... | ... | @@ -6086,8 +5652,8 @@ fn writeDyldInfoData(self: *MachO) !void { |
| 6086 | 5652 | seg.inner.filesize = dyld_info.export_off + dyld_info.export_size - seg.inner.fileoff; |
| 6087 | 5653 | |
| 6088 | 5654 | const needed_size = dyld_info.export_off + dyld_info.export_size - dyld_info.rebase_off; |
| 6089 | | var buffer = try self.base.allocator.alloc(u8, needed_size); |
| 6090 | | defer self.base.allocator.free(buffer); |
| 5655 | var buffer = try gpa.alloc(u8, needed_size); |
| 5656 | defer gpa.free(buffer); |
| 6091 | 5657 | mem.set(u8, buffer, 0); |
| 6092 | 5658 | |
| 6093 | 5659 | var stream = std.io.fixedBufferStream(buffer); |
| ... | ... | @@ -6114,10 +5680,12 @@ fn writeDyldInfoData(self: *MachO) !void { |
| 6114 | 5680 | try self.populateLazyBindOffsetsInStubHelper( |
| 6115 | 5681 | buffer[dyld_info.lazy_bind_off - base_off ..][0..dyld_info.lazy_bind_size], |
| 6116 | 5682 | ); |
| 5683 | |
| 6117 | 5684 | self.load_commands_dirty = true; |
| 6118 | 5685 | } |
| 6119 | 5686 | |
| 6120 | 5687 | fn populateLazyBindOffsetsInStubHelper(self: *MachO, buffer: []const u8) !void { |
| 5688 | const gpa = self.base.allocator; |
| 6121 | 5689 | const text_segment_cmd_index = self.text_segment_cmd_index orelse return; |
| 6122 | 5690 | const stub_helper_section_index = self.stub_helper_section_index orelse return; |
| 6123 | 5691 | const last_atom = self.atoms.get(.{ |
| ... | ... | @@ -6127,7 +5695,7 @@ fn populateLazyBindOffsetsInStubHelper(self: *MachO, buffer: []const u8) !void { |
| 6127 | 5695 | if (self.stub_helper_preamble_atom == null) return; |
| 6128 | 5696 | if (last_atom == self.stub_helper_preamble_atom.?) return; |
| 6129 | 5697 | |
| 6130 | | var table = std.AutoHashMap(i64, *Atom).init(self.base.allocator); |
| 5698 | var table = std.AutoHashMap(i64, *Atom).init(gpa); |
| 6131 | 5699 | defer table.deinit(); |
| 6132 | 5700 | |
| 6133 | 5701 | { |
| ... | ... | @@ -6143,7 +5711,7 @@ fn populateLazyBindOffsetsInStubHelper(self: *MachO, buffer: []const u8) !void { |
| 6143 | 5711 | |
| 6144 | 5712 | while (true) { |
| 6145 | 5713 | const laptr_off = blk: { |
| 6146 | | const sym = self.locals.items[laptr_atom.local_sym_index]; |
| 5714 | const sym = laptr_atom.getSymbol(self); |
| 6147 | 5715 | break :blk @intCast(i64, sym.n_value - base_addr); |
| 6148 | 5716 | }; |
| 6149 | 5717 | try table.putNoClobber(laptr_off, stub_atom); |
| ... | ... | @@ -6156,7 +5724,7 @@ fn populateLazyBindOffsetsInStubHelper(self: *MachO, buffer: []const u8) !void { |
| 6156 | 5724 | |
| 6157 | 5725 | var stream = std.io.fixedBufferStream(buffer); |
| 6158 | 5726 | var reader = stream.reader(); |
| 6159 | | var offsets = std.ArrayList(struct { sym_offset: i64, offset: u32 }).init(self.base.allocator); |
| 5727 | var offsets = std.ArrayList(struct { sym_offset: i64, offset: u32 }).init(gpa); |
| 6160 | 5728 | try offsets.append(.{ .sym_offset = undefined, .offset = 0 }); |
| 6161 | 5729 | defer offsets.deinit(); |
| 6162 | 5730 | var valid_block = false; |
| ... | ... | @@ -6199,10 +5767,10 @@ fn populateLazyBindOffsetsInStubHelper(self: *MachO, buffer: []const u8) !void { |
| 6199 | 5767 | } |
| 6200 | 5768 | } |
| 6201 | 5769 | |
| 6202 | | const sect = blk: { |
| 6203 | | const seg = self.load_commands.items[text_segment_cmd_index].segment; |
| 6204 | | break :blk seg.sections.items[stub_helper_section_index]; |
| 6205 | | }; |
| 5770 | const sect = self.getSection(.{ |
| 5771 | .seg = text_segment_cmd_index, |
| 5772 | .sect = stub_helper_section_index, |
| 5773 | }); |
| 6206 | 5774 | const stub_offset: u4 = switch (self.base.options.target.cpu.arch) { |
| 6207 | 5775 | .x86_64 => 1, |
| 6208 | 5776 | .aarch64 => 2 * @sizeOf(u32), |
| ... | ... | @@ -6213,79 +5781,63 @@ fn populateLazyBindOffsetsInStubHelper(self: *MachO, buffer: []const u8) !void { |
| 6213 | 5781 | |
| 6214 | 5782 | while (offsets.popOrNull()) |bind_offset| { |
| 6215 | 5783 | const atom = table.get(bind_offset.sym_offset).?; |
| 6216 | | const sym = self.locals.items[atom.local_sym_index]; |
| 5784 | const sym = atom.getSymbol(self); |
| 6217 | 5785 | const file_offset = sect.offset + sym.n_value - sect.addr + stub_offset; |
| 6218 | 5786 | mem.writeIntLittle(u32, &buf, bind_offset.offset); |
| 6219 | 5787 | log.debug("writing lazy bind offset in stub helper of 0x{x} for symbol {s} at offset 0x{x}", .{ |
| 6220 | 5788 | bind_offset.offset, |
| 6221 | | self.getString(sym.n_strx), |
| 5789 | atom.getName(self), |
| 6222 | 5790 | file_offset, |
| 6223 | 5791 | }); |
| 6224 | 5792 | try self.base.file.?.pwriteAll(&buf, file_offset); |
| 6225 | 5793 | } |
| 6226 | 5794 | } |
| 6227 | 5795 | |
| 5796 | const asc_u64 = std.sort.asc(u64); |
| 5797 | |
| 6228 | 5798 | fn writeFunctionStarts(self: *MachO) !void { |
| 6229 | | var atom = self.atoms.get(.{ |
| 6230 | | .seg = self.text_segment_cmd_index orelse return, |
| 6231 | | .sect = self.text_section_index orelse return, |
| 6232 | | }) orelse return; |
| 5799 | const text_seg_index = self.text_segment_cmd_index orelse return; |
| 5800 | const text_sect_index = self.text_section_index orelse return; |
| 5801 | const text_seg = self.load_commands.items[text_seg_index].segment; |
| 6233 | 5802 | |
| 6234 | 5803 | const tracy = trace(@src()); |
| 6235 | 5804 | defer tracy.end(); |
| 6236 | 5805 | |
| 6237 | | while (atom.prev) |prev| { |
| 6238 | | atom = prev; |
| 6239 | | } |
| 6240 | | |
| 6241 | | var offsets = std.ArrayList(u32).init(self.base.allocator); |
| 6242 | | defer offsets.deinit(); |
| 6243 | | |
| 6244 | | const text_seg = self.load_commands.items[self.text_segment_cmd_index.?].segment; |
| 6245 | | var last_off: u32 = 0; |
| 6246 | | |
| 6247 | | while (true) { |
| 6248 | | const atom_sym = self.locals.items[atom.local_sym_index]; |
| 6249 | | |
| 6250 | | if (atom_sym.n_strx != 0) blk: { |
| 6251 | | if (self.symbol_resolver.get(atom_sym.n_strx)) |resolv| { |
| 6252 | | assert(resolv.where == .global); |
| 6253 | | if (resolv.local_sym_index != atom.local_sym_index) break :blk; |
| 6254 | | } |
| 6255 | | |
| 6256 | | const offset = @intCast(u32, atom_sym.n_value - text_seg.inner.vmaddr); |
| 6257 | | const diff = offset - last_off; |
| 5806 | const gpa = self.base.allocator; |
| 6258 | 5807 | |
| 6259 | | if (diff == 0) break :blk; |
| 5808 | // We need to sort by address first |
| 5809 | var addresses = std.ArrayList(u64).init(gpa); |
| 5810 | defer addresses.deinit(); |
| 5811 | try addresses.ensureTotalCapacityPrecise(self.globals.count()); |
| 6260 | 5812 | |
| 6261 | | try offsets.append(diff); |
| 6262 | | last_off = offset; |
| 6263 | | } |
| 5813 | for (self.globals.values()) |global| { |
| 5814 | const sym = self.getSymbol(global); |
| 5815 | if (sym.undf()) continue; |
| 5816 | if (sym.n_desc == N_DESC_GCED) continue; |
| 5817 | const match = self.getMatchingSectionFromOrdinal(sym.n_sect); |
| 5818 | if (match.seg != text_seg_index or match.sect != text_sect_index) continue; |
| 6264 | 5819 | |
| 6265 | | for (atom.contained.items) |cont| { |
| 6266 | | const cont_sym = self.locals.items[cont.local_sym_index]; |
| 5820 | addresses.appendAssumeCapacity(sym.n_value); |
| 5821 | } |
| 6267 | 5822 | |
| 6268 | | if (cont_sym.n_strx == 0) continue; |
| 6269 | | if (self.symbol_resolver.get(cont_sym.n_strx)) |resolv| { |
| 6270 | | assert(resolv.where == .global); |
| 6271 | | if (resolv.local_sym_index != cont.local_sym_index) continue; |
| 6272 | | } |
| 5823 | std.sort.sort(u64, addresses.items, {}, asc_u64); |
| 6273 | 5824 | |
| 6274 | | const offset = @intCast(u32, cont_sym.n_value - text_seg.inner.vmaddr); |
| 6275 | | const diff = offset - last_off; |
| 5825 | var offsets = std.ArrayList(u32).init(gpa); |
| 5826 | defer offsets.deinit(); |
| 5827 | try offsets.ensureTotalCapacityPrecise(addresses.items.len); |
| 6276 | 5828 | |
| 6277 | | if (diff == 0) continue; |
| 5829 | var last_off: u32 = 0; |
| 5830 | for (addresses.items) |addr| { |
| 5831 | const offset = @intCast(u32, addr - text_seg.inner.vmaddr); |
| 5832 | const diff = offset - last_off; |
| 6278 | 5833 | |
| 6279 | | try offsets.append(diff); |
| 6280 | | last_off = offset; |
| 6281 | | } |
| 5834 | if (diff == 0) continue; |
| 6282 | 5835 | |
| 6283 | | if (atom.next) |next| { |
| 6284 | | atom = next; |
| 6285 | | } else break; |
| 5836 | offsets.appendAssumeCapacity(diff); |
| 5837 | last_off = offset; |
| 6286 | 5838 | } |
| 6287 | 5839 | |
| 6288 | | var buffer = std.ArrayList(u8).init(self.base.allocator); |
| 5840 | var buffer = std.ArrayList(u8).init(gpa); |
| 6289 | 5841 | defer buffer.deinit(); |
| 6290 | 5842 | |
| 6291 | 5843 | const max_size = @intCast(usize, offsets.items.len * @sizeOf(u64)); |
| ... | ... | @@ -6331,12 +5883,14 @@ fn writeDices(self: *MachO) !void { |
| 6331 | 5883 | atom = prev; |
| 6332 | 5884 | } |
| 6333 | 5885 | |
| 6334 | | const text_seg = self.load_commands.items[self.text_segment_cmd_index.?].segment; |
| 6335 | | const text_sect = text_seg.sections.items[self.text_section_index.?]; |
| 5886 | const text_sect = self.getSection(.{ |
| 5887 | .seg = self.text_segment_cmd_index.?, |
| 5888 | .sect = self.text_section_index.?, |
| 5889 | }); |
| 6336 | 5890 | |
| 6337 | 5891 | while (true) { |
| 6338 | 5892 | if (atom.dices.items.len > 0) { |
| 6339 | | const sym = self.locals.items[atom.local_sym_index]; |
| 5893 | const sym = atom.getSymbol(self); |
| 6340 | 5894 | const base_off = math.cast(u32, sym.n_value - text_sect.addr + text_sect.offset) orelse return error.Overflow; |
| 6341 | 5895 | |
| 6342 | 5896 | try buf.ensureUnusedCapacity(atom.dices.items.len * @sizeOf(macho.data_in_code_entry)); |
| ... | ... | @@ -6377,113 +5931,139 @@ fn writeSymbolTable(self: *MachO) !void { |
| 6377 | 5931 | const tracy = trace(@src()); |
| 6378 | 5932 | defer tracy.end(); |
| 6379 | 5933 | |
| 5934 | const gpa = self.base.allocator; |
| 6380 | 5935 | const seg = &self.load_commands.items[self.linkedit_segment_cmd_index.?].segment; |
| 6381 | 5936 | const symtab = &self.load_commands.items[self.symtab_cmd_index.?].symtab; |
| 6382 | 5937 | const symoff = mem.alignForwardGeneric(u64, seg.inner.fileoff + seg.inner.filesize, @alignOf(macho.nlist_64)); |
| 6383 | 5938 | symtab.symoff = @intCast(u32, symoff); |
| 6384 | 5939 | |
| 6385 | | var locals = std.ArrayList(macho.nlist_64).init(self.base.allocator); |
| 5940 | var locals = std.ArrayList(macho.nlist_64).init(gpa); |
| 6386 | 5941 | defer locals.deinit(); |
| 6387 | 5942 | |
| 6388 | | for (self.locals.items) |sym| { |
| 6389 | | if (sym.n_strx == 0) continue; |
| 6390 | | if (sym.n_desc == N_DESC_GCED) continue; |
| 6391 | | if (self.symbol_resolver.get(sym.n_strx)) |_| continue; |
| 5943 | for (self.locals.items) |sym, sym_id| { |
| 5944 | if (sym.n_strx == 0) continue; // no name, skip |
| 5945 | if (sym.n_desc == N_DESC_GCED) continue; // GCed, skip |
| 5946 | const sym_loc = SymbolWithLoc{ .sym_index = @intCast(u32, sym_id), .file = null }; |
| 5947 | if (self.symbolIsTemp(sym_loc)) continue; // local temp symbol, skip |
| 5948 | if (self.globals.contains(self.getSymbolName(sym_loc))) continue; // global symbol is either an export or import, skip |
| 6392 | 5949 | try locals.append(sym); |
| 6393 | 5950 | } |
| 6394 | 5951 | |
| 6395 | | var globals = std.ArrayList(macho.nlist_64).init(self.base.allocator); |
| 6396 | | defer globals.deinit(); |
| 6397 | | |
| 6398 | | for (self.globals.items) |sym| { |
| 6399 | | if (sym.n_desc == N_DESC_GCED) continue; |
| 6400 | | try globals.append(sym); |
| 6401 | | } |
| 5952 | for (self.objects.items) |object, object_id| { |
| 5953 | if (self.has_stabs) { |
| 5954 | if (object.debug_info) |_| { |
| 5955 | // Open scope |
| 5956 | try locals.ensureUnusedCapacity(3); |
| 5957 | locals.appendAssumeCapacity(.{ |
| 5958 | .n_strx = try self.strtab.insert(gpa, object.tu_comp_dir.?), |
| 5959 | .n_type = macho.N_SO, |
| 5960 | .n_sect = 0, |
| 5961 | .n_desc = 0, |
| 5962 | .n_value = 0, |
| 5963 | }); |
| 5964 | locals.appendAssumeCapacity(.{ |
| 5965 | .n_strx = try self.strtab.insert(gpa, object.tu_name.?), |
| 5966 | .n_type = macho.N_SO, |
| 5967 | .n_sect = 0, |
| 5968 | .n_desc = 0, |
| 5969 | .n_value = 0, |
| 5970 | }); |
| 5971 | locals.appendAssumeCapacity(.{ |
| 5972 | .n_strx = try self.strtab.insert(gpa, object.name), |
| 5973 | .n_type = macho.N_OSO, |
| 5974 | .n_sect = 0, |
| 5975 | .n_desc = 1, |
| 5976 | .n_value = object.mtime orelse 0, |
| 5977 | }); |
| 6402 | 5978 | |
| 6403 | | // TODO How do we handle null global symbols in incremental context? |
| 6404 | | var undefs = std.ArrayList(macho.nlist_64).init(self.base.allocator); |
| 6405 | | defer undefs.deinit(); |
| 6406 | | var undefs_table = std.AutoHashMap(u32, u32).init(self.base.allocator); |
| 6407 | | defer undefs_table.deinit(); |
| 6408 | | try undefs.ensureTotalCapacity(self.undefs.items.len); |
| 6409 | | try undefs_table.ensureTotalCapacity(@intCast(u32, self.undefs.items.len)); |
| 5979 | for (object.managed_atoms.items) |atom| { |
| 5980 | for (atom.contained.items) |sym_at_off| { |
| 5981 | const stab = sym_at_off.stab orelse continue; |
| 5982 | const sym_loc = SymbolWithLoc{ |
| 5983 | .sym_index = sym_at_off.sym_index, |
| 5984 | .file = atom.file, |
| 5985 | }; |
| 5986 | const sym = self.getSymbol(sym_loc); |
| 5987 | if (sym.n_strx == 0) continue; |
| 5988 | if (sym.n_desc == N_DESC_GCED) continue; |
| 5989 | if (self.symbolIsTemp(sym_loc)) continue; |
| 5990 | |
| 5991 | const nlists = try stab.asNlists(.{ |
| 5992 | .sym_index = sym_at_off.sym_index, |
| 5993 | .file = atom.file, |
| 5994 | }, self); |
| 5995 | defer gpa.free(nlists); |
| 5996 | |
| 5997 | try locals.appendSlice(nlists); |
| 5998 | } |
| 5999 | } |
| 6410 | 6000 | |
| 6411 | | for (self.undefs.items) |sym, i| { |
| 6412 | | if (sym.n_strx == 0) continue; |
| 6413 | | const new_index = @intCast(u32, undefs.items.len); |
| 6414 | | undefs.appendAssumeCapacity(sym); |
| 6415 | | undefs_table.putAssumeCapacityNoClobber(@intCast(u32, i), new_index); |
| 6001 | // Close scope |
| 6002 | try locals.append(.{ |
| 6003 | .n_strx = 0, |
| 6004 | .n_type = macho.N_SO, |
| 6005 | .n_sect = 0, |
| 6006 | .n_desc = 0, |
| 6007 | .n_value = 0, |
| 6008 | }); |
| 6009 | } |
| 6010 | } |
| 6011 | for (object.symtab.items) |sym, sym_id| { |
| 6012 | if (sym.n_strx == 0) continue; // no name, skip |
| 6013 | if (sym.n_desc == N_DESC_GCED) continue; // GCed, skip |
| 6014 | const sym_loc = SymbolWithLoc{ .sym_index = @intCast(u32, sym_id), .file = @intCast(u32, object_id) }; |
| 6015 | if (self.symbolIsTemp(sym_loc)) continue; // local temp symbol, skip |
| 6016 | if (self.globals.contains(self.getSymbolName(sym_loc))) continue; // global symbol is either an export or import, skip |
| 6017 | var out_sym = sym; |
| 6018 | out_sym.n_strx = try self.strtab.insert(gpa, self.getSymbolName(sym_loc)); |
| 6019 | try locals.append(out_sym); |
| 6020 | } |
| 6416 | 6021 | } |
| 6417 | 6022 | |
| 6418 | | if (self.has_stabs) { |
| 6419 | | for (self.objects.items) |object| { |
| 6420 | | if (object.debug_info == null) continue; |
| 6023 | var exports = std.ArrayList(macho.nlist_64).init(gpa); |
| 6024 | defer exports.deinit(); |
| 6421 | 6025 | |
| 6422 | | // Open scope |
| 6423 | | try locals.ensureUnusedCapacity(3); |
| 6424 | | locals.appendAssumeCapacity(.{ |
| 6425 | | .n_strx = try self.makeString(object.tu_comp_dir.?), |
| 6426 | | .n_type = macho.N_SO, |
| 6427 | | .n_sect = 0, |
| 6428 | | .n_desc = 0, |
| 6429 | | .n_value = 0, |
| 6430 | | }); |
| 6431 | | locals.appendAssumeCapacity(.{ |
| 6432 | | .n_strx = try self.makeString(object.tu_name.?), |
| 6433 | | .n_type = macho.N_SO, |
| 6434 | | .n_sect = 0, |
| 6435 | | .n_desc = 0, |
| 6436 | | .n_value = 0, |
| 6437 | | }); |
| 6438 | | locals.appendAssumeCapacity(.{ |
| 6439 | | .n_strx = try self.makeString(object.name), |
| 6440 | | .n_type = macho.N_OSO, |
| 6441 | | .n_sect = 0, |
| 6442 | | .n_desc = 1, |
| 6443 | | .n_value = object.mtime orelse 0, |
| 6444 | | }); |
| 6026 | for (self.globals.values()) |global| { |
| 6027 | const sym = self.getSymbol(global); |
| 6028 | if (sym.undf()) continue; // import, skip |
| 6029 | if (sym.n_desc == N_DESC_GCED) continue; // GCed, skip |
| 6030 | var out_sym = sym; |
| 6031 | out_sym.n_strx = try self.strtab.insert(gpa, self.getSymbolName(global)); |
| 6032 | try exports.append(out_sym); |
| 6033 | } |
| 6445 | 6034 | |
| 6446 | | for (object.contained_atoms.items) |atom| { |
| 6447 | | for (atom.contained.items) |sym_at_off| { |
| 6448 | | const stab = sym_at_off.stab orelse continue; |
| 6449 | | const nlists = try stab.asNlists(sym_at_off.local_sym_index, self); |
| 6450 | | defer self.base.allocator.free(nlists); |
| 6451 | | try locals.appendSlice(nlists); |
| 6452 | | } |
| 6453 | | } |
| 6035 | var imports = std.ArrayList(macho.nlist_64).init(gpa); |
| 6036 | defer imports.deinit(); |
| 6037 | var imports_table = std.AutoHashMap(SymbolWithLoc, u32).init(gpa); |
| 6038 | defer imports_table.deinit(); |
| 6454 | 6039 | |
| 6455 | | // Close scope |
| 6456 | | try locals.append(.{ |
| 6457 | | .n_strx = 0, |
| 6458 | | .n_type = macho.N_SO, |
| 6459 | | .n_sect = 0, |
| 6460 | | .n_desc = 0, |
| 6461 | | .n_value = 0, |
| 6462 | | }); |
| 6463 | | } |
| 6040 | for (self.globals.values()) |global| { |
| 6041 | const sym = self.getSymbol(global); |
| 6042 | if (sym.n_strx == 0) continue; // no name, skip |
| 6043 | if (!sym.undf()) continue; // not an import, skip |
| 6044 | const new_index = @intCast(u32, imports.items.len); |
| 6045 | var out_sym = sym; |
| 6046 | out_sym.n_strx = try self.strtab.insert(gpa, self.getSymbolName(global)); |
| 6047 | try imports.append(out_sym); |
| 6048 | try imports_table.putNoClobber(global, new_index); |
| 6464 | 6049 | } |
| 6465 | 6050 | |
| 6466 | 6051 | const nlocals = locals.items.len; |
| 6467 | | const nexports = globals.items.len; |
| 6468 | | const nundefs = undefs.items.len; |
| 6052 | const nexports = exports.items.len; |
| 6053 | const nimports = imports.items.len; |
| 6054 | symtab.nsyms = @intCast(u32, nlocals + nexports + nimports); |
| 6469 | 6055 | |
| 6470 | | const locals_off = symtab.symoff; |
| 6471 | | const locals_size = nlocals * @sizeOf(macho.nlist_64); |
| 6472 | | log.debug("writing local symbols from 0x{x} to 0x{x}", .{ locals_off, locals_size + locals_off }); |
| 6473 | | try self.base.file.?.pwriteAll(mem.sliceAsBytes(locals.items), locals_off); |
| 6474 | | |
| 6475 | | const exports_off = locals_off + locals_size; |
| 6476 | | const exports_size = nexports * @sizeOf(macho.nlist_64); |
| 6477 | | log.debug("writing exported symbols from 0x{x} to 0x{x}", .{ exports_off, exports_size + exports_off }); |
| 6478 | | try self.base.file.?.pwriteAll(mem.sliceAsBytes(globals.items), exports_off); |
| 6056 | var buffer = std.ArrayList(u8).init(gpa); |
| 6057 | defer buffer.deinit(); |
| 6058 | try buffer.ensureTotalCapacityPrecise(symtab.nsyms * @sizeOf(macho.nlist_64)); |
| 6059 | buffer.appendSliceAssumeCapacity(mem.sliceAsBytes(locals.items)); |
| 6060 | buffer.appendSliceAssumeCapacity(mem.sliceAsBytes(exports.items)); |
| 6061 | buffer.appendSliceAssumeCapacity(mem.sliceAsBytes(imports.items)); |
| 6479 | 6062 | |
| 6480 | | const undefs_off = exports_off + exports_size; |
| 6481 | | const undefs_size = nundefs * @sizeOf(macho.nlist_64); |
| 6482 | | log.debug("writing undefined symbols from 0x{x} to 0x{x}", .{ undefs_off, undefs_size + undefs_off }); |
| 6483 | | try self.base.file.?.pwriteAll(mem.sliceAsBytes(undefs.items), undefs_off); |
| 6063 | log.debug("writing symtab from 0x{x} to 0x{x}", .{ symtab.symoff, symtab.symoff + buffer.items.len }); |
| 6064 | try self.base.file.?.pwriteAll(buffer.items, symtab.symoff); |
| 6484 | 6065 | |
| 6485 | | symtab.nsyms = @intCast(u32, nlocals + nexports + nundefs); |
| 6486 | | seg.inner.filesize = symtab.symoff + symtab.nsyms * @sizeOf(macho.nlist_64) - seg.inner.fileoff; |
| 6066 | seg.inner.filesize = symtab.symoff + buffer.items.len - seg.inner.fileoff; |
| 6487 | 6067 | |
| 6488 | 6068 | // Update dynamic symbol table. |
| 6489 | 6069 | const dysymtab = &self.load_commands.items[self.dysymtab_cmd_index.?].dysymtab; |
| ... | ... | @@ -6491,7 +6071,7 @@ fn writeSymbolTable(self: *MachO) !void { |
| 6491 | 6071 | dysymtab.iextdefsym = dysymtab.nlocalsym; |
| 6492 | 6072 | dysymtab.nextdefsym = @intCast(u32, nexports); |
| 6493 | 6073 | dysymtab.iundefsym = dysymtab.nlocalsym + dysymtab.nextdefsym; |
| 6494 | | dysymtab.nundefsym = @intCast(u32, nundefs); |
| 6074 | dysymtab.nundefsym = @intCast(u32, nimports); |
| 6495 | 6075 | |
| 6496 | 6076 | const nstubs = @intCast(u32, self.stubs_table.count()); |
| 6497 | 6077 | const ngot_entries = @intCast(u32, self.got_entries_table.count()); |
| ... | ... | @@ -6507,55 +6087,53 @@ fn writeSymbolTable(self: *MachO) !void { |
| 6507 | 6087 | dysymtab.indirectsymoff + dysymtab.nindirectsyms * @sizeOf(u32), |
| 6508 | 6088 | }); |
| 6509 | 6089 | |
| 6510 | | var buf = std.ArrayList(u8).init(self.base.allocator); |
| 6090 | var buf = std.ArrayList(u8).init(gpa); |
| 6511 | 6091 | defer buf.deinit(); |
| 6512 | 6092 | try buf.ensureTotalCapacity(dysymtab.nindirectsyms * @sizeOf(u32)); |
| 6513 | 6093 | const writer = buf.writer(); |
| 6514 | 6094 | |
| 6515 | 6095 | if (self.text_segment_cmd_index) |text_segment_cmd_index| blk: { |
| 6516 | 6096 | const stubs_section_index = self.stubs_section_index orelse break :blk; |
| 6517 | | const text_segment = &self.load_commands.items[text_segment_cmd_index].segment; |
| 6518 | | const stubs = &text_segment.sections.items[stubs_section_index]; |
| 6097 | const stubs = self.getSectionPtr(.{ |
| 6098 | .seg = text_segment_cmd_index, |
| 6099 | .sect = stubs_section_index, |
| 6100 | }); |
| 6519 | 6101 | stubs.reserved1 = 0; |
| 6520 | | for (self.stubs_table.keys()) |key| { |
| 6521 | | const resolv = self.symbol_resolver.get(key).?; |
| 6522 | | switch (resolv.where) { |
| 6523 | | .global => try writer.writeIntLittle(u32, macho.INDIRECT_SYMBOL_LOCAL), |
| 6524 | | .undef => try writer.writeIntLittle(u32, dysymtab.iundefsym + undefs_table.get(resolv.where_index).?), |
| 6525 | | } |
| 6102 | for (self.stubs_table.keys()) |target| { |
| 6103 | const sym = self.getSymbol(target); |
| 6104 | assert(sym.undf()); |
| 6105 | try writer.writeIntLittle(u32, dysymtab.iundefsym + imports_table.get(target).?); |
| 6526 | 6106 | } |
| 6527 | 6107 | } |
| 6528 | 6108 | |
| 6529 | 6109 | if (self.data_const_segment_cmd_index) |data_const_segment_cmd_index| blk: { |
| 6530 | 6110 | const got_section_index = self.got_section_index orelse break :blk; |
| 6531 | | const data_const_segment = &self.load_commands.items[data_const_segment_cmd_index].segment; |
| 6532 | | const got = &data_const_segment.sections.items[got_section_index]; |
| 6111 | const got = self.getSectionPtr(.{ |
| 6112 | .seg = data_const_segment_cmd_index, |
| 6113 | .sect = got_section_index, |
| 6114 | }); |
| 6533 | 6115 | got.reserved1 = nstubs; |
| 6534 | | for (self.got_entries_table.keys()) |key| { |
| 6535 | | switch (key) { |
| 6536 | | .local => try writer.writeIntLittle(u32, macho.INDIRECT_SYMBOL_LOCAL), |
| 6537 | | .global => |n_strx| { |
| 6538 | | const resolv = self.symbol_resolver.get(n_strx).?; |
| 6539 | | switch (resolv.where) { |
| 6540 | | .global => try writer.writeIntLittle(u32, macho.INDIRECT_SYMBOL_LOCAL), |
| 6541 | | .undef => try writer.writeIntLittle(u32, dysymtab.iundefsym + undefs_table.get(resolv.where_index).?), |
| 6542 | | } |
| 6543 | | }, |
| 6116 | for (self.got_entries_table.keys()) |target| { |
| 6117 | const sym = self.getSymbol(target); |
| 6118 | if (sym.undf()) { |
| 6119 | try writer.writeIntLittle(u32, dysymtab.iundefsym + imports_table.get(target).?); |
| 6120 | } else { |
| 6121 | try writer.writeIntLittle(u32, macho.INDIRECT_SYMBOL_LOCAL); |
| 6544 | 6122 | } |
| 6545 | 6123 | } |
| 6546 | 6124 | } |
| 6547 | 6125 | |
| 6548 | 6126 | if (self.data_segment_cmd_index) |data_segment_cmd_index| blk: { |
| 6549 | 6127 | const la_symbol_ptr_section_index = self.la_symbol_ptr_section_index orelse break :blk; |
| 6550 | | const data_segment = &self.load_commands.items[data_segment_cmd_index].segment; |
| 6551 | | const la_symbol_ptr = &data_segment.sections.items[la_symbol_ptr_section_index]; |
| 6128 | const la_symbol_ptr = self.getSectionPtr(.{ |
| 6129 | .seg = data_segment_cmd_index, |
| 6130 | .sect = la_symbol_ptr_section_index, |
| 6131 | }); |
| 6552 | 6132 | la_symbol_ptr.reserved1 = nstubs + ngot_entries; |
| 6553 | | for (self.stubs_table.keys()) |key| { |
| 6554 | | const resolv = self.symbol_resolver.get(key).?; |
| 6555 | | switch (resolv.where) { |
| 6556 | | .global => try writer.writeIntLittle(u32, macho.INDIRECT_SYMBOL_LOCAL), |
| 6557 | | .undef => try writer.writeIntLittle(u32, dysymtab.iundefsym + undefs_table.get(resolv.where_index).?), |
| 6558 | | } |
| 6133 | for (self.stubs_table.keys()) |target| { |
| 6134 | const sym = self.getSymbol(target); |
| 6135 | assert(sym.undf()); |
| 6136 | try writer.writeIntLittle(u32, dysymtab.iundefsym + imports_table.get(target).?); |
| 6559 | 6137 | } |
| 6560 | 6138 | } |
| 6561 | 6139 | |
| ... | ... | @@ -6572,14 +6150,15 @@ fn writeStringTable(self: *MachO) !void { |
| 6572 | 6150 | const seg = &self.load_commands.items[self.linkedit_segment_cmd_index.?].segment; |
| 6573 | 6151 | const symtab = &self.load_commands.items[self.symtab_cmd_index.?].symtab; |
| 6574 | 6152 | const stroff = mem.alignForwardGeneric(u64, seg.inner.fileoff + seg.inner.filesize, @alignOf(u64)); |
| 6575 | | const strsize = self.strtab.items.len; |
| 6153 | |
| 6154 | const strsize = self.strtab.buffer.items.len; |
| 6576 | 6155 | symtab.stroff = @intCast(u32, stroff); |
| 6577 | 6156 | symtab.strsize = @intCast(u32, strsize); |
| 6578 | 6157 | seg.inner.filesize = symtab.stroff + symtab.strsize - seg.inner.fileoff; |
| 6579 | 6158 | |
| 6580 | 6159 | log.debug("writing string table from 0x{x} to 0x{x}", .{ symtab.stroff, symtab.stroff + symtab.strsize }); |
| 6581 | 6160 | |
| 6582 | | try self.base.file.?.pwriteAll(self.strtab.items, symtab.stroff); |
| 6161 | try self.base.file.?.pwriteAll(self.strtab.buffer.items, symtab.stroff); |
| 6583 | 6162 | |
| 6584 | 6163 | self.load_commands_dirty = true; |
| 6585 | 6164 | } |
| ... | ... | @@ -6737,42 +6316,81 @@ pub fn makeStaticString(bytes: []const u8) [16]u8 { |
| 6737 | 6316 | return buf; |
| 6738 | 6317 | } |
| 6739 | 6318 | |
| 6740 | | pub fn makeString(self: *MachO, string: []const u8) !u32 { |
| 6741 | | const gop = try self.strtab_dir.getOrPutContextAdapted(self.base.allocator, @as([]const u8, string), StringIndexAdapter{ |
| 6742 | | .bytes = &self.strtab, |
| 6743 | | }, StringIndexContext{ |
| 6744 | | .bytes = &self.strtab, |
| 6745 | | }); |
| 6746 | | if (gop.found_existing) { |
| 6747 | | const off = gop.key_ptr.*; |
| 6748 | | log.debug("reusing string '{s}' at offset 0x{x}", .{ string, off }); |
| 6749 | | return off; |
| 6750 | | } |
| 6751 | | |
| 6752 | | try self.strtab.ensureUnusedCapacity(self.base.allocator, string.len + 1); |
| 6753 | | const new_off = @intCast(u32, self.strtab.items.len); |
| 6319 | pub fn getSectionOrdinal(self: *MachO, match: MatchingSection) u8 { |
| 6320 | return @intCast(u8, self.section_ordinals.getIndex(match).?) + 1; |
| 6321 | } |
| 6754 | 6322 | |
| 6755 | | log.debug("writing new string '{s}' at offset 0x{x}", .{ string, new_off }); |
| 6323 | pub fn getMatchingSectionFromOrdinal(self: *MachO, ord: u8) MatchingSection { |
| 6324 | const index = ord - 1; |
| 6325 | assert(index < self.section_ordinals.count()); |
| 6326 | return self.section_ordinals.keys()[index]; |
| 6327 | } |
| 6756 | 6328 | |
| 6757 | | self.strtab.appendSliceAssumeCapacity(string); |
| 6758 | | self.strtab.appendAssumeCapacity(0); |
| 6329 | pub fn getSegmentPtr(self: *MachO, match: MatchingSection) *macho.SegmentCommand { |
| 6330 | assert(match.seg < self.load_commands.items.len); |
| 6331 | return &self.load_commands.items[match.seg].segment; |
| 6332 | } |
| 6759 | 6333 | |
| 6760 | | gop.key_ptr.* = new_off; |
| 6334 | pub fn getSegment(self: *MachO, match: MatchingSection) macho.SegmentCommand { |
| 6335 | return self.getSegmentPtr(match).*; |
| 6336 | } |
| 6761 | 6337 | |
| 6762 | | return new_off; |
| 6338 | pub fn getSectionPtr(self: *MachO, match: MatchingSection) *macho.section_64 { |
| 6339 | const seg = self.getSegmentPtr(match); |
| 6340 | assert(match.sect < seg.sections.items.len); |
| 6341 | return &seg.sections.items[match.sect]; |
| 6763 | 6342 | } |
| 6764 | 6343 | |
| 6765 | | pub fn getString(self: MachO, off: u32) []const u8 { |
| 6766 | | assert(off < self.strtab.items.len); |
| 6767 | | return mem.sliceTo(@ptrCast([*:0]const u8, self.strtab.items.ptr + off), 0); |
| 6344 | pub fn getSection(self: *MachO, match: MatchingSection) macho.section_64 { |
| 6345 | return self.getSectionPtr(match).*; |
| 6768 | 6346 | } |
| 6769 | 6347 | |
| 6770 | | pub fn symbolIsTemp(sym: macho.nlist_64, sym_name: []const u8) bool { |
| 6348 | pub fn symbolIsTemp(self: *MachO, sym_with_loc: SymbolWithLoc) bool { |
| 6349 | const sym = self.getSymbol(sym_with_loc); |
| 6771 | 6350 | if (!sym.sect()) return false; |
| 6772 | 6351 | if (sym.ext()) return false; |
| 6352 | const sym_name = self.getSymbolName(sym_with_loc); |
| 6773 | 6353 | return mem.startsWith(u8, sym_name, "l") or mem.startsWith(u8, sym_name, "L"); |
| 6774 | 6354 | } |
| 6775 | 6355 | |
| 6356 | /// Returns pointer-to-symbol described by `sym_with_loc` descriptor. |
| 6357 | pub fn getSymbolPtr(self: *MachO, sym_with_loc: SymbolWithLoc) *macho.nlist_64 { |
| 6358 | if (sym_with_loc.file) |file| { |
| 6359 | const object = &self.objects.items[file]; |
| 6360 | return &object.symtab.items[sym_with_loc.sym_index]; |
| 6361 | } else { |
| 6362 | return &self.locals.items[sym_with_loc.sym_index]; |
| 6363 | } |
| 6364 | } |
| 6365 | |
| 6366 | /// Returns symbol described by `sym_with_loc` descriptor. |
| 6367 | pub fn getSymbol(self: *MachO, sym_with_loc: SymbolWithLoc) macho.nlist_64 { |
| 6368 | return self.getSymbolPtr(sym_with_loc).*; |
| 6369 | } |
| 6370 | |
| 6371 | /// Returns name of the symbol described by `sym_with_loc` descriptor. |
| 6372 | pub fn getSymbolName(self: *MachO, sym_with_loc: SymbolWithLoc) []const u8 { |
| 6373 | if (sym_with_loc.file) |file| { |
| 6374 | const object = self.objects.items[file]; |
| 6375 | const sym = object.symtab.items[sym_with_loc.sym_index]; |
| 6376 | return object.getString(sym.n_strx); |
| 6377 | } else { |
| 6378 | const sym = self.locals.items[sym_with_loc.sym_index]; |
| 6379 | return self.strtab.get(sym.n_strx).?; |
| 6380 | } |
| 6381 | } |
| 6382 | |
| 6383 | /// Returns atom if there is an atom referenced by the symbol described by `sym_with_loc` descriptor. |
| 6384 | /// Returns null on failure. |
| 6385 | pub fn getAtomForSymbol(self: *MachO, sym_with_loc: SymbolWithLoc) ?*Atom { |
| 6386 | if (sym_with_loc.file) |file| { |
| 6387 | const object = self.objects.items[file]; |
| 6388 | return object.atom_by_index_table.get(sym_with_loc.sym_index); |
| 6389 | } else { |
| 6390 | return self.atom_by_index_table.get(sym_with_loc.sym_index); |
| 6391 | } |
| 6392 | } |
| 6393 | |
| 6776 | 6394 | pub fn findFirst(comptime T: type, haystack: []const T, start: usize, predicate: anytype) usize { |
| 6777 | 6395 | if (!@hasDecl(@TypeOf(predicate), "predicate")) |
| 6778 | 6396 | @compileError("Predicate is required to define fn predicate(@This(), T) bool"); |
| ... | ... | @@ -6835,7 +6453,7 @@ fn snapshotState(self: *MachO) !void { |
| 6835 | 6453 | const arena = arena_allocator.allocator(); |
| 6836 | 6454 | |
| 6837 | 6455 | const out_file = try emit.directory.handle.createFile("snapshots.json", .{ |
| 6838 | | .truncate = self.cold_start, |
| 6456 | .truncate = false, |
| 6839 | 6457 | .read = true, |
| 6840 | 6458 | }); |
| 6841 | 6459 | defer out_file.close(); |
| ... | ... | @@ -6855,8 +6473,7 @@ fn snapshotState(self: *MachO) !void { |
| 6855 | 6473 | var nodes = std.ArrayList(Snapshot.Node).init(arena); |
| 6856 | 6474 | |
| 6857 | 6475 | for (self.section_ordinals.keys()) |key| { |
| 6858 | | const seg = self.load_commands.items[key.seg].segment; |
| 6859 | | const sect = seg.sections.items[key.sect]; |
| 6476 | const sect = self.getSection(key); |
| 6860 | 6477 | const sect_name = try std.fmt.allocPrint(arena, "{s},{s}", .{ sect.segName(), sect.sectName() }); |
| 6861 | 6478 | try nodes.append(.{ |
| 6862 | 6479 | .address = sect.addr, |
| ... | ... | @@ -6878,10 +6495,10 @@ fn snapshotState(self: *MachO) !void { |
| 6878 | 6495 | } |
| 6879 | 6496 | |
| 6880 | 6497 | while (true) { |
| 6881 | | const atom_sym = self.locals.items[atom.local_sym_index]; |
| 6498 | const atom_sym = self.locals.items[atom.sym_index]; |
| 6882 | 6499 | const should_skip_atom: bool = blk: { |
| 6883 | 6500 | if (self.mh_execute_header_index) |index| { |
| 6884 | | if (index == atom.local_sym_index) break :blk true; |
| 6501 | if (index == atom.sym_index) break :blk true; |
| 6885 | 6502 | } |
| 6886 | 6503 | if (mem.eql(u8, self.getString(atom_sym.n_strx), "___dso_handle")) break :blk true; |
| 6887 | 6504 | break :blk false; |
| ... | ... | @@ -6906,7 +6523,7 @@ fn snapshotState(self: *MachO) !void { |
| 6906 | 6523 | var aliases = std.ArrayList([]const u8).init(arena); |
| 6907 | 6524 | for (atom.contained.items) |sym_off| { |
| 6908 | 6525 | if (sym_off.offset == 0) { |
| 6909 | | try aliases.append(self.getString(self.locals.items[sym_off.local_sym_index].n_strx)); |
| 6526 | try aliases.append(self.getString(self.locals.items[sym_off.sym_index].n_strx)); |
| 6910 | 6527 | } |
| 6911 | 6528 | } |
| 6912 | 6529 | node.payload.aliases = aliases.toOwnedSlice(); |
| ... | ... | @@ -6916,7 +6533,7 @@ fn snapshotState(self: *MachO) !void { |
| 6916 | 6533 | for (atom.relocs.items) |rel| { |
| 6917 | 6534 | const arch = self.base.options.target.cpu.arch; |
| 6918 | 6535 | const source_addr = blk: { |
| 6919 | | const sym = self.locals.items[atom.local_sym_index]; |
| 6536 | const sym = self.locals.items[atom.sym_index]; |
| 6920 | 6537 | break :blk sym.n_value + rel.offset; |
| 6921 | 6538 | }; |
| 6922 | 6539 | const target_addr = blk: { |
| ... | ... | @@ -6937,14 +6554,14 @@ fn snapshotState(self: *MachO) !void { |
| 6937 | 6554 | if (is_via_got) { |
| 6938 | 6555 | const got_index = self.got_entries_table.get(rel.target) orelse break :blk 0; |
| 6939 | 6556 | const got_atom = self.got_entries.items[got_index].atom; |
| 6940 | | break :blk self.locals.items[got_atom.local_sym_index].n_value; |
| 6557 | break :blk self.locals.items[got_atom.sym_index].n_value; |
| 6941 | 6558 | } |
| 6942 | 6559 | |
| 6943 | 6560 | switch (rel.target) { |
| 6944 | 6561 | .local => |sym_index| { |
| 6945 | 6562 | const sym = self.locals.items[sym_index]; |
| 6946 | 6563 | const is_tlv = is_tlv: { |
| 6947 | | const source_sym = self.locals.items[atom.local_sym_index]; |
| 6564 | const source_sym = self.locals.items[atom.sym_index]; |
| 6948 | 6565 | const match = self.section_ordinals.keys()[source_sym.n_sect - 1]; |
| 6949 | 6566 | const match_seg = self.load_commands.items[match.seg].segment; |
| 6950 | 6567 | const match_sect = match_seg.sections.items[match.sect]; |
| ... | ... | @@ -6970,7 +6587,7 @@ fn snapshotState(self: *MachO) !void { |
| 6970 | 6587 | .undef => { |
| 6971 | 6588 | if (self.stubs_table.get(n_strx)) |stub_index| { |
| 6972 | 6589 | const stub_atom = self.stubs.items[stub_index]; |
| 6973 | | break :blk self.locals.items[stub_atom.local_sym_index].n_value; |
| 6590 | break :blk self.locals.items[stub_atom.sym_index].n_value; |
| 6974 | 6591 | } |
| 6975 | 6592 | break :blk 0; |
| 6976 | 6593 | }, |
| ... | ... | @@ -6998,7 +6615,7 @@ fn snapshotState(self: *MachO) !void { |
| 6998 | 6615 | var last_rel: usize = 0; |
| 6999 | 6616 | while (next_i < atom.contained.items.len) : (next_i += 1) { |
| 7000 | 6617 | const loc = atom.contained.items[next_i]; |
| 7001 | | const cont_sym = self.locals.items[loc.local_sym_index]; |
| 6618 | const cont_sym = self.locals.items[loc.sym_index]; |
| 7002 | 6619 | const cont_sym_name = self.getString(cont_sym.n_strx); |
| 7003 | 6620 | var contained_node = Snapshot.Node{ |
| 7004 | 6621 | .address = cont_sym.n_value, |
| ... | ... | @@ -7013,7 +6630,7 @@ fn snapshotState(self: *MachO) !void { |
| 7013 | 6630 | var inner_aliases = std.ArrayList([]const u8).init(arena); |
| 7014 | 6631 | while (true) { |
| 7015 | 6632 | if (next_i + 1 >= atom.contained.items.len) break; |
| 7016 | | const next_sym = self.locals.items[atom.contained.items[next_i + 1].local_sym_index]; |
| 6633 | const next_sym = self.locals.items[atom.contained.items[next_i + 1].sym_index]; |
| 7017 | 6634 | if (next_sym.n_value != cont_sym.n_value) break; |
| 7018 | 6635 | const next_sym_name = self.getString(next_sym.n_strx); |
| 7019 | 6636 | if (self.symbol_resolver.contains(next_sym.n_strx)) { |
| ... | ... | @@ -7025,7 +6642,7 @@ fn snapshotState(self: *MachO) !void { |
| 7025 | 6642 | } |
| 7026 | 6643 | |
| 7027 | 6644 | const cont_size = if (next_i + 1 < atom.contained.items.len) |
| 7028 | | self.locals.items[atom.contained.items[next_i + 1].local_sym_index].n_value - cont_sym.n_value |
| 6645 | self.locals.items[atom.contained.items[next_i + 1].sym_index].n_value - cont_sym.n_value |
| 7029 | 6646 | else |
| 7030 | 6647 | atom_sym.n_value + atom.size - cont_sym.n_value; |
| 7031 | 6648 | |
| ... | ... | @@ -7072,75 +6689,117 @@ fn snapshotState(self: *MachO) !void { |
| 7072 | 6689 | try writer.writeByte(']'); |
| 7073 | 6690 | } |
| 7074 | 6691 | |
| 7075 | | fn logSymtab(self: MachO) void { |
| 7076 | | log.warn("locals:", .{}); |
| 7077 | | for (self.locals.items) |sym, id| { |
| 7078 | | log.warn(" {d}: {s}: @{x} in {d}", .{ id, self.getString(sym.n_strx), sym.n_value, sym.n_sect }); |
| 6692 | pub fn logSymAttributes(sym: macho.nlist_64, buf: *[4]u8) []const u8 { |
| 6693 | mem.set(u8, buf, '_'); |
| 6694 | if (sym.sect()) { |
| 6695 | buf[0] = 's'; |
| 7079 | 6696 | } |
| 7080 | | |
| 7081 | | log.warn("globals:", .{}); |
| 7082 | | for (self.globals.items) |sym, id| { |
| 7083 | | log.warn(" {d}: {s}: @{x} in {d}", .{ id, self.getString(sym.n_strx), sym.n_value, sym.n_sect }); |
| 6697 | if (sym.ext()) { |
| 6698 | buf[1] = 'e'; |
| 7084 | 6699 | } |
| 7085 | | |
| 7086 | | log.warn("undefs:", .{}); |
| 7087 | | for (self.undefs.items) |sym, id| { |
| 7088 | | log.warn(" {d}: {s}: in {d}", .{ id, self.getString(sym.n_strx), sym.n_desc }); |
| 6700 | if (sym.tentative()) { |
| 6701 | buf[2] = 't'; |
| 7089 | 6702 | } |
| 6703 | if (sym.undf()) { |
| 6704 | buf[3] = 'u'; |
| 6705 | } |
| 6706 | return buf[0..]; |
| 6707 | } |
| 7090 | 6708 | |
| 7091 | | { |
| 7092 | | log.warn("resolver:", .{}); |
| 7093 | | var it = self.symbol_resolver.iterator(); |
| 7094 | | while (it.next()) |entry| { |
| 7095 | | log.warn(" {s} => {}", .{ self.getString(entry.key_ptr.*), entry.value_ptr.* }); |
| 6709 | fn logSymtab(self: *MachO) void { |
| 6710 | var buf: [4]u8 = undefined; |
| 6711 | |
| 6712 | log.debug("symtab:", .{}); |
| 6713 | for (self.objects.items) |object, id| { |
| 6714 | log.debug(" object({d}): {s}", .{ id, object.name }); |
| 6715 | for (object.symtab.items) |sym, sym_id| { |
| 6716 | const where = if (sym.undf() and !sym.tentative()) "ord" else "sect"; |
| 6717 | const def_index = if (sym.undf() and !sym.tentative()) |
| 6718 | @divTrunc(sym.n_desc, macho.N_SYMBOL_RESOLVER) |
| 6719 | else |
| 6720 | sym.n_sect; |
| 6721 | log.debug(" %{d}: {s} @{x} in {s}({d}), {s}", .{ |
| 6722 | sym_id, |
| 6723 | object.getString(sym.n_strx), |
| 6724 | sym.n_value, |
| 6725 | where, |
| 6726 | def_index, |
| 6727 | logSymAttributes(sym, &buf), |
| 6728 | }); |
| 7096 | 6729 | } |
| 7097 | 6730 | } |
| 6731 | log.debug(" object(null)", .{}); |
| 6732 | for (self.locals.items) |sym, sym_id| { |
| 6733 | const where = if (sym.undf() and !sym.tentative()) "ord" else "sect"; |
| 6734 | const def_index = if (sym.undf() and !sym.tentative()) |
| 6735 | @divTrunc(sym.n_desc, macho.N_SYMBOL_RESOLVER) |
| 6736 | else |
| 6737 | sym.n_sect; |
| 6738 | log.debug(" %{d}: {s} @{x} in {s}({d}), {s}", .{ |
| 6739 | sym_id, |
| 6740 | self.strtab.get(sym.n_strx), |
| 6741 | sym.n_value, |
| 6742 | where, |
| 6743 | def_index, |
| 6744 | logSymAttributes(sym, &buf), |
| 6745 | }); |
| 6746 | } |
| 6747 | |
| 6748 | log.debug("globals table:", .{}); |
| 6749 | for (self.globals.keys()) |name, id| { |
| 6750 | const value = self.globals.values()[id]; |
| 6751 | log.debug(" {s} => %{d} in object({d})", .{ name, value.sym_index, value.file }); |
| 6752 | } |
| 7098 | 6753 | |
| 7099 | | log.warn("GOT entries:", .{}); |
| 6754 | log.debug("GOT entries:", .{}); |
| 7100 | 6755 | for (self.got_entries_table.values()) |value| { |
| 7101 | | const key = self.got_entries.items[value].target; |
| 6756 | const target = self.got_entries.items[value].target; |
| 6757 | const target_sym = self.getSymbol(target); |
| 7102 | 6758 | const atom = self.got_entries.items[value].atom; |
| 7103 | | const n_value = self.locals.items[atom.local_sym_index].n_value; |
| 7104 | | switch (key) { |
| 7105 | | .local => |ndx| log.warn(" {d}: @{x}", .{ ndx, n_value }), |
| 7106 | | .global => |n_strx| log.warn(" {s}: @{x}", .{ self.getString(n_strx), n_value }), |
| 6759 | const atom_sym = atom.getSymbol(self); |
| 6760 | |
| 6761 | if (target_sym.undf()) { |
| 6762 | log.debug(" {d}@{x} => import('{s}')", .{ value, atom_sym.n_value, self.getSymbolName(target) }); |
| 6763 | } else { |
| 6764 | log.debug(" {d}@{x} => local(%{d}) in object({d})", .{ |
| 6765 | value, |
| 6766 | atom_sym.n_value, |
| 6767 | target.sym_index, |
| 6768 | target.file, |
| 6769 | }); |
| 7107 | 6770 | } |
| 7108 | 6771 | } |
| 7109 | 6772 | |
| 7110 | | log.warn("__thread_ptrs entries:", .{}); |
| 6773 | log.debug("__thread_ptrs entries:", .{}); |
| 7111 | 6774 | for (self.tlv_ptr_entries_table.values()) |value| { |
| 7112 | | const key = self.tlv_ptr_entries.items[value].target; |
| 6775 | const target = self.tlv_ptr_entries.items[value].target; |
| 6776 | const target_sym = self.getSymbol(target); |
| 7113 | 6777 | const atom = self.tlv_ptr_entries.items[value].atom; |
| 7114 | | const n_value = self.locals.items[atom.local_sym_index].n_value; |
| 7115 | | assert(key == .global); |
| 7116 | | log.warn(" {s}: @{x}", .{ self.getString(key.global), n_value }); |
| 6778 | const atom_sym = atom.getSymbol(self); |
| 6779 | assert(target_sym.undf()); |
| 6780 | log.debug(" {d}@{x} => import('{s}')", .{ value, atom_sym.n_value, self.getSymbolName(target) }); |
| 7117 | 6781 | } |
| 7118 | 6782 | |
| 7119 | | log.warn("stubs:", .{}); |
| 7120 | | for (self.stubs_table.keys()) |key| { |
| 7121 | | const value = self.stubs_table.get(key).?; |
| 7122 | | const atom = self.stubs.items[value]; |
| 7123 | | const sym = self.locals.items[atom.local_sym_index]; |
| 7124 | | log.warn(" {s}: @{x}", .{ self.getString(key), sym.n_value }); |
| 6783 | log.debug("stubs entries:", .{}); |
| 6784 | for (self.stubs_table.values()) |value| { |
| 6785 | const target = self.stubs.items[value].target; |
| 6786 | const target_sym = self.getSymbol(target); |
| 6787 | const atom = self.stubs.items[value].atom; |
| 6788 | const atom_sym = atom.getSymbol(self); |
| 6789 | assert(target_sym.undf()); |
| 6790 | log.debug(" {d}@{x} => import('{s}')", .{ value, atom_sym.n_value, self.getSymbolName(target) }); |
| 7125 | 6791 | } |
| 7126 | 6792 | } |
| 7127 | 6793 | |
| 7128 | | fn logSectionOrdinals(self: MachO) void { |
| 6794 | fn logSectionOrdinals(self: *MachO) void { |
| 7129 | 6795 | for (self.section_ordinals.keys()) |match, i| { |
| 7130 | | const seg = self.load_commands.items[match.seg].segment; |
| 7131 | | const sect = seg.sections.items[match.sect]; |
| 7132 | | log.debug("ord {d}: {d},{d} => {s},{s}", .{ |
| 7133 | | i + 1, |
| 7134 | | match.seg, |
| 7135 | | match.sect, |
| 7136 | | sect.segName(), |
| 7137 | | sect.sectName(), |
| 7138 | | }); |
| 6796 | const sect = self.getSection(match); |
| 6797 | log.debug("sect({d}, '{s},{s}')", .{ i + 1, sect.segName(), sect.sectName() }); |
| 7139 | 6798 | } |
| 7140 | 6799 | } |
| 7141 | 6800 | |
| 7142 | | fn logAtoms(self: MachO) void { |
| 7143 | | log.warn("atoms:", .{}); |
| 6801 | fn logAtoms(self: *MachO) void { |
| 6802 | log.debug("atoms:", .{}); |
| 7144 | 6803 | var it = self.atoms.iterator(); |
| 7145 | 6804 | while (it.next()) |entry| { |
| 7146 | 6805 | const match = entry.key_ptr.*; |
| ... | ... | @@ -7150,9 +6809,8 @@ fn logAtoms(self: MachO) void { |
| 7150 | 6809 | atom = prev; |
| 7151 | 6810 | } |
| 7152 | 6811 | |
| 7153 | | const seg = self.load_commands.items[match.seg].segment; |
| 7154 | | const sect = seg.sections.items[match.sect]; |
| 7155 | | log.warn("{s},{s}", .{ sect.segName(), sect.sectName() }); |
| 6812 | const sect = self.getSection(match); |
| 6813 | log.debug("{s},{s}", .{ sect.segName(), sect.sectName() }); |
| 7156 | 6814 | |
| 7157 | 6815 | while (true) { |
| 7158 | 6816 | self.logAtom(atom); |
| ... | ... | @@ -7164,16 +6822,28 @@ fn logAtoms(self: MachO) void { |
| 7164 | 6822 | } |
| 7165 | 6823 | } |
| 7166 | 6824 | |
| 7167 | | fn logAtom(self: MachO, atom: *const Atom) void { |
| 7168 | | const sym = self.locals.items[atom.local_sym_index]; |
| 7169 | | log.warn(" ATOM(%{d}) @ {x}", .{ atom.local_sym_index, sym.n_value }); |
| 6825 | pub fn logAtom(self: *MachO, atom: *const Atom) void { |
| 6826 | const sym = atom.getSymbol(self); |
| 6827 | const sym_name = atom.getName(self); |
| 6828 | log.debug(" ATOM(%{d}, '{s}') @ {x} in object({d})", .{ |
| 6829 | atom.sym_index, |
| 6830 | sym_name, |
| 6831 | sym.n_value, |
| 6832 | atom.file, |
| 6833 | }); |
| 7170 | 6834 | |
| 7171 | 6835 | for (atom.contained.items) |sym_off| { |
| 7172 | | const inner_sym = self.locals.items[sym_off.local_sym_index]; |
| 7173 | | log.warn(" %{d} ('{s}') @ {x}", .{ |
| 7174 | | sym_off.local_sym_index, |
| 7175 | | self.getString(inner_sym.n_strx), |
| 6836 | const inner_sym = self.getSymbol(.{ |
| 6837 | .sym_index = sym_off.sym_index, |
| 6838 | .file = atom.file, |
| 6839 | }); |
| 6840 | const inner_sym_name = self.getSymbolName(.{ .sym_index = sym_off.sym_index, .file = atom.file }); |
| 6841 | log.debug(" (%{d}, '{s}') @ {x} ({x}) in object({d})", .{ |
| 6842 | sym_off.sym_index, |
| 6843 | inner_sym_name, |
| 7176 | 6844 | inner_sym.n_value, |
| 6845 | sym_off.offset, |
| 6846 | atom.file, |
| 7177 | 6847 | }); |
| 7178 | 6848 | } |
| 7179 | 6849 | } |