Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

Switch to rt.sections_elf_shared on Windows too #197

Merged
merged 10 commits into from
May 21, 2021
Merged

Switch to rt.sections_elf_shared on Windows too #197

merged 10 commits into from
May 21, 2021

Conversation

kinke
Copy link
Member

@kinke kinke commented May 2, 2021

We've already generalized that module for Apple Mach-O targets; with now added Windows support, it's an even bigger misnomer (should probably be rt.sections_shared instead).

The point is to prepare for a shared druntime DLL, using the same _d_dso_registry() system. The module doesn't compile with
version(Shared) just yet, that needs a bit more work; I've already replaced the pthread mutex by core.sync.mutex.Mutex etc. though.

The new special rt.dso_windows module replaces the current compiler magic for Posix targets (emitting module ctor/dtor pair,
CompilerDSOData struct etc. into each object file). It contains the code and data required in each binary for proper registering and unregistering of binaries with/from druntime. It's linked in automatically with static druntime and the druntime DLL itself; the
compiler needs to link it in automatically when linking a binary against shared druntime.

@kinke
Copy link
Member Author

kinke commented May 2, 2021

version(Shared) now compiles on Windows too. Still needs proper testing.

kinke added 9 commits May 21, 2021 17:45
They have `extern(C)` linkage, but are defined in druntime (MSVCRT
doesn't provide these symbols). Make them extern(D) to get exported
with `-fvisibility=public`; Phobos unfortunately relies on the C names.
This works around the single remaining Phobos DLL linking error (somehow
only required for debug Phobos), by replacing direct access to a little
TLS buffer with a non-inlineable call to an accessor function (exported
by druntime DLL and imported by other DLLs/executables instantiating the
`staticError` template), on Windows in general.

We cannot restrict this to `version(Shared)`, because that is set when
compiling druntime, but what matters are `staticError` instantiations in
other code.
We've already generalized that module for Apple Mach-O targets; with now
added Windows support, it's an even bigger misnomer (should probably be
`rt.sections_shared` instead).

The point is to prepare for a shared druntime DLL, using the same
_d_dso_registry() system. The module doesn't compile with
`version(Shared)` just yet, that needs a bit more work; I've already
replaced the pthread mutex by core.sync.mutex.Mutex etc. though.

The new special `rt.dso_windows` module replaces the current compiler
magic for Posix targets (emitting module ctor/dtor pair,
CompilerDSOData struct etc. into each object file). It contains the code
and data required _in each binary_ for proper registering and
unregistering of binaries with/from druntime. It's linked in
automatically with static druntime and the druntime DLL itself; the
compiler needs to link it in automatically when linking a binary against
shared druntime.
@kinke kinke force-pushed the dll branch 2 times, most recently from 23af7f6 to d5053f6 Compare May 21, 2021 17:52
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant