Home
last modified time | relevance | path

Searched refs:dyld (Results 1 – 25 of 26) sorted by relevance

12

/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/mach-core/
DProcessMachCore.cpp129 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()
DProcessMachCore.h94 bool CheckAddressForDyldOrKernel(lldb::addr_t addr, lldb::addr_t &dyld,
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
DProcessWindows.cpp676 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/
Dtroubleshooting.rst70 [ 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/
Ddl_dyld.xs51 #import <mach-o/dyld.h>
/openbsd/src/gnu/llvm/lld/MachO/
DOptions.td150 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/
DProcess.cpp2582 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/
Dllvm-objdump.rst343 .. option:: --dyld-info
345 Print bind and rebase information used by dyld to resolve external
/openbsd/src/gnu/llvm/llvm/tools/llvm-objdump/
DObjdumpOpts.td331 def dyld_info : Flag<["--"], "dyld-info">,
332 HelpText<"Print bind and rebase information used by dyld to resolve "
DMachODump.cpp9327 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/
DMachProcess.mm1008 // 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/
DMCJITDesignAndImplementation.rst87 .. image:: MCJIT-dyld-load.png
/openbsd/src/gnu/usr.bin/perl/
DREADME.macosx192 to use. Being confused will show up for example as "dyld" errors about
DMANIFEST4785 ext/DynaLoader/dl_dyld.xs NeXT/Apple dyld implementation
/openbsd/src/gnu/llvm/lldb/source/Host/macosx/objcxx/
DHostInfoMacOSX.mm39 #include <mach-o/dyld.h>
/openbsd/src/gnu/llvm/lldb/include/lldb/Target/
DProcess.h644 void SetDynamicLoader(lldb::DynamicLoaderUP dyld);
/openbsd/src/gnu/llvm/llvm/lib/Support/Unix/
DPath.inc40 #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/
DREADME-SSE.txt413 mode because it doesn't look through the extra dyld stub load. If you try
/openbsd/src/gnu/usr.bin/perl/pod/
Dperl58delta.pod3219 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/
Dlldb-gdb-remote.txt1103 structure in the "/usr/lib/dyld" executable, or the result of a TASK_DYLD_INFO
/openbsd/src/gnu/gcc/fixincludes/
Dinclhack.def1178 files = mach-o/dyld.h;
/openbsd/src/usr.sbin/unbound/
Daclocal.m41969 lt_cv_dlopen=dyld
2661 dynamic_linker="$host_os dyld"
Dconfigure14514 dynamic_linker="$host_os dyld"
/openbsd/src/gnu/llvm/clang/include/clang/Driver/
DOptions.td4425 def _dyld_prefix_EQ : Joined<["--"], "dyld-prefix=">;
4426 def _dyld_prefix : Separate<["--"], "dyld-prefix">, Alias<_dyld_prefix_EQ>;
/openbsd/src/gnu/gcc/gcc/doc/
Dinvoke.texi2150 the resulting object file, and allow @command{dyld(1)} to load it in at

12