You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to call these built-ins directly from a WebAssembly asm .S file. However I am not sure what (if any?) the syntax would be. Trying something like
does not work, but simply yields an undefined external function declaration. Trying some variations by replacing .s with _s does not give much help either.
Anyone knows if it would be possible to call these built-ins from a Wasm assembly .S file? The reason I need to do that is that I want to call out to get the TLS size (and alignment) before I have established a stack frame for the thread, so I cannot call in to C/C++ code to do that, because that would try to do stack pointer push/pop operations on a stack pointer that does not yet exist.