| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/mach-core/ |
| D | ProcessMachCore.cpp | 129 addr_t &dyld, in CheckAddressForDyldOrKernel() argument 134 dyld = kernel = LLDB_INVALID_ADDRESS; in CheckAddressForDyldOrKernel() 160 dyld = addr; in CheckAddressForDyldOrKernel() 355 addr_t dyld, kernel; in LoadBinariesViaExhaustiveSearch() local 356 if (CheckAddressForDyldOrKernel(section_vm_addr, dyld, kernel)) { in LoadBinariesViaExhaustiveSearch() 357 if (dyld != LLDB_INVALID_ADDRESS) in LoadBinariesViaExhaustiveSearch() 358 dylds_found.push_back(dyld); in LoadBinariesViaExhaustiveSearch()
|
| D | ProcessMachCore.h | 94 bool CheckAddressForDyldOrKernel(lldb::addr_t addr, lldb::addr_t &dyld,
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
| D | ProcessWindows.cpp | 676 if (auto dyld = GetDynamicLoader()) in OnDebuggerConnected() local 677 dyld->OnLoadModule(module, ModuleSpec(), image_base); in OnDebuggerConnected() 802 if (auto dyld = GetDynamicLoader()) in OnLoadDll() local 803 dyld->OnLoadModule(nullptr, module_spec, module_addr); in OnLoadDll() 807 if (auto dyld = GetDynamicLoader()) in OnUnloadDll() local 808 dyld->OnUnloadModule(module_addr); in OnUnloadDll()
|
| /openbsd/src/gnu/llvm/lldb/docs/use/ |
| D | troubleshooting.rst | 70 [ 1] 6900F2BA-DB48-3B78-B668-58FC0CF6BCB8 0x00007fff5fc00000 /usr/lib/dyld 74 (lldb) script lldb.target.module['/usr/lib/dyld'].GetNumCompileUnits() 78 "/usr/lib/dyld" does not.
|
| /openbsd/src/gnu/usr.bin/perl/ext/DynaLoader/ |
| D | dl_dyld.xs | 51 #import <mach-o/dyld.h>
|
| /openbsd/src/gnu/llvm/lld/MachO/ |
| D | Options.td | 150 HelpText<"Produce a dylinker only used when building dyld">, 551 …m all dylibs, both direct and transitive. Do not record source libraries: dyld must re-search at r… 554 HelpText<"Make dyld look up symbols by (dylib,name) pairs (default)">, 570 HelpText<"Add <path> to dyld search list for dylibs with load path prefix `@rpath/'">, 854 HelpText<"Tell dyld to bind all symbols at load time, rather than lazily">, 858 …HelpText<"Tell dyld to use a flat namespace on this executable and all its dependent dylibs & bund… 945 …ext<"Retain section-based relocation records in the output, which are ignored at runtime by dyld">, 1264 HelpText<"Emit fixup information as classic dyld opcodes">,
|
| /openbsd/src/gnu/llvm/lldb/source/Target/ |
| D | Process.cpp | 2582 DynamicLoader *dyld = GetDynamicLoader(); in LaunchPrivate() local 2583 if (dyld) in LaunchPrivate() 2584 dyld->DidLaunch(); in LaunchPrivate() 2620 DynamicLoader *dyld = GetDynamicLoader(); in LoadCore() local 2621 if (dyld) in LoadCore() 2622 dyld->DidAttach(); in LoadCore() 2969 DynamicLoader *dyld = GetDynamicLoader(); in CompleteAttach() local 2970 if (dyld) { in CompleteAttach() 2971 dyld->DidAttach(); in CompleteAttach() 2978 dyld->GetPluginName()); in CompleteAttach()
|
| /openbsd/src/gnu/llvm/llvm/docs/CommandGuide/ |
| D | llvm-objdump.rst | 343 .. option:: --dyld-info 345 Print bind and rebase information used by dyld to resolve external
|
| /openbsd/src/gnu/llvm/llvm/tools/llvm-objdump/ |
| D | ObjdumpOpts.td | 331 def dyld_info : Flag<["--"], "dyld-info">, 332 HelpText<"Print bind and rebase information used by dyld to resolve "
|
| D | MachODump.cpp | 9327 static void PrintDyldLoadCommand(MachO::dylinker_command dyld, in PrintDyldLoadCommand() argument 9329 if (dyld.cmd == MachO::LC_ID_DYLINKER) in PrintDyldLoadCommand() 9331 else if (dyld.cmd == MachO::LC_LOAD_DYLINKER) in PrintDyldLoadCommand() 9333 else if (dyld.cmd == MachO::LC_DYLD_ENVIRONMENT) in PrintDyldLoadCommand() 9336 outs() << " cmd ?(" << dyld.cmd << ")\n"; in PrintDyldLoadCommand() 9337 outs() << " cmdsize " << dyld.cmdsize; in PrintDyldLoadCommand() 9338 if (dyld.cmdsize < sizeof(struct MachO::dylinker_command)) in PrintDyldLoadCommand() 9342 if (dyld.name >= dyld.cmdsize) in PrintDyldLoadCommand() 9343 outs() << " name ?(bad offset " << dyld.name << ")\n"; in PrintDyldLoadCommand() 9345 const char *P = (const char *)(Ptr) + dyld.name; in PrintDyldLoadCommand() [all …]
|
| /openbsd/src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/ |
| D | MachProcess.mm | 1008 // In macOS 10.12 etc and newer, we'll use SPI calls into dyld to gather this 1106 /// From dyld SPI header dyld_process_info.h 1111 /// Load address of dyld shared cache. 1113 /// Process is running without a dyld cache. 1115 /// Process is using a private copy of its dyld cache. 1161 // Fetch information about all shared libraries using the dyld SPIs that exist 1184 // dyld SPIs that exist in macOS 10.12, iOS 10, tvOS 10, watchOS 3 and newer. 1190 // Collect the list of all binaries that dyld knows about in 1209 // dyld doesn't think there is a binary at this address, 1212 // We will have an empty filename for the binary (because dyld [all …]
|
| /openbsd/src/gnu/llvm/llvm/docs/ |
| D | MCJITDesignAndImplementation.rst | 87 .. image:: MCJIT-dyld-load.png
|
| /openbsd/src/gnu/usr.bin/perl/ |
| D | README.macosx | 192 to use. Being confused will show up for example as "dyld" errors about
|
| D | MANIFEST | 4785 ext/DynaLoader/dl_dyld.xs NeXT/Apple dyld implementation
|
| /openbsd/src/gnu/llvm/lldb/source/Host/macosx/objcxx/ |
| D | HostInfoMacOSX.mm | 39 #include <mach-o/dyld.h>
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Target/ |
| D | Process.h | 644 void SetDynamicLoader(lldb::DynamicLoaderUP dyld);
|
| /openbsd/src/gnu/llvm/llvm/lib/Support/Unix/ |
| D | Path.inc | 40 #include <mach-o/dyld.h> 195 // On OS X the executable path is saved to the stack by dyld. Reading it
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/X86/ |
| D | README-SSE.txt | 413 mode because it doesn't look through the extra dyld stub load. If you try
|
| /openbsd/src/gnu/usr.bin/perl/pod/ |
| D | perl58delta.pod | 3219 installation, see L</"Mac OS X dyld undefined symbols"> for an 3502 =head2 Mac OS X dyld undefined symbols 3507 dyld: perl Undefined symbols
|
| /openbsd/src/gnu/llvm/lldb/docs/ |
| D | lldb-gdb-remote.txt | 1103 structure in the "/usr/lib/dyld" executable, or the result of a TASK_DYLD_INFO
|
| /openbsd/src/gnu/gcc/fixincludes/ |
| D | inclhack.def | 1178 files = mach-o/dyld.h;
|
| /openbsd/src/usr.sbin/unbound/ |
| D | aclocal.m4 | 1969 lt_cv_dlopen=dyld 2661 dynamic_linker="$host_os dyld"
|
| D | configure | 14514 dynamic_linker="$host_os dyld"
|
| /openbsd/src/gnu/llvm/clang/include/clang/Driver/ |
| D | Options.td | 4425 def _dyld_prefix_EQ : Joined<["--"], "dyld-prefix=">; 4426 def _dyld_prefix : Separate<["--"], "dyld-prefix">, Alias<_dyld_prefix_EQ>;
|
| /openbsd/src/gnu/gcc/gcc/doc/ |
| D | invoke.texi | 2150 the resulting object file, and allow @command{dyld(1)} to load it in at
|