Skip to content

Commit e4c01de

Browse files
committed
Remove outdated docs about broken ABI
1 parent 9677720 commit e4c01de

File tree

1 file changed

+0
-117
lines changed

1 file changed

+0
-117
lines changed

src/doc/rustc/src/platform-support/wasm32-unknown-unknown.md

-117
Original file line numberDiff line numberDiff line change
@@ -205,120 +205,3 @@ conditionally compile code instead. This is notably different to the way native
205205
platforms such as x86\_64 work, and this is due to the fact that WebAssembly
206206
binaries must only contain code the engine understands. Native binaries work so
207207
long as the CPU doesn't execute unknown code dynamically at runtime.
208-
209-
## Broken `extern "C"` ABI
210-
211-
This target has what is considered a broken `extern "C"` ABI implementation at
212-
this time. Notably the same signature in Rust and C will compile to different
213-
WebAssembly functions and be incompatible. This is considered a bug and it will
214-
be fixed in a future version of Rust.
215-
216-
For example this Rust code:
217-
218-
```rust,ignore (does-not-link)
219-
#[repr(C)]
220-
struct MyPair {
221-
a: u32,
222-
b: u32,
223-
}
224-
225-
extern "C" {
226-
fn take_my_pair(pair: MyPair) -> u32;
227-
}
228-
229-
#[no_mangle]
230-
pub unsafe extern "C" fn call_c() -> u32 {
231-
take_my_pair(MyPair { a: 1, b: 2 })
232-
}
233-
```
234-
235-
compiles to a WebAssembly module that looks like:
236-
237-
```wasm
238-
(module
239-
(import "env" "take_my_pair" (func $take_my_pair (param i32 i32) (result i32)))
240-
(func $call_c
241-
i32.const 1
242-
i32.const 2
243-
call $take_my_pair
244-
)
245-
)
246-
```
247-
248-
The function when defined in C, however, looks like
249-
250-
```c
251-
struct my_pair {
252-
unsigned a;
253-
unsigned b;
254-
};
255-
256-
unsigned take_my_pair(struct my_pair pair) {
257-
return pair.a + pair.b;
258-
}
259-
```
260-
261-
```wasm
262-
(module
263-
(import "env" "__linear_memory" (memory 0))
264-
(func $take_my_pair (param i32) (result i32)
265-
local.get 0
266-
i32.load offset=4
267-
local.get 0
268-
i32.load
269-
i32.add
270-
)
271-
)
272-
```
273-
274-
Notice how Rust thinks `take_my_pair` takes two `i32` parameters but C thinks it
275-
only takes one.
276-
277-
The correct definition of the `extern "C"` ABI for WebAssembly is located in the
278-
[WebAssembly/tool-conventions](https://github.com/WebAssembly/tool-conventions/blob/main/BasicCABI.md)
279-
repository. The `wasm32-unknown-unknown` target (and only this target, not other
280-
WebAssembly targets Rust support) does not correctly follow this document.
281-
282-
Example issues in the Rust repository about this bug are:
283-
284-
* [#115666](https://github.com/rust-lang/rust/issues/115666)
285-
* [#129486](https://github.com/rust-lang/rust/issues/129486)
286-
287-
This current state of the `wasm32-unknown-unknown` backend is due to an
288-
unfortunate accident which got relied on. The `wasm-bindgen` project prior to
289-
0.2.89 was incompatible with the "correct" definition of `extern "C"` and it was
290-
seen as not worth the tradeoff of breaking `wasm-bindgen` historically to fix
291-
this issue in the compiler.
292-
293-
Thanks to the heroic efforts of many involved in this, however, `wasm-bindgen`
294-
0.2.89 and later are compatible with the correct definition of `extern "C"` and
295-
the nightly compiler currently supports a `-Zwasm-c-abi` implemented in
296-
[#117919](https://github.com/rust-lang/rust/pull/117919). This nightly-only flag
297-
can be used to indicate whether the spec-defined version of `extern "C"` should
298-
be used instead of the "legacy" version of
299-
whatever-the-Rust-target-originally-implemented. For example using the above
300-
code you can see (lightly edited for clarity):
301-
302-
```shell
303-
$ rustc +nightly -Zwasm-c-abi=spec foo.rs --target wasm32-unknown-unknown --crate-type lib --emit obj -O
304-
$ wasm-tools print foo.o
305-
(module
306-
(import "env" "take_my_pair" (func $take_my_pair (param i32) (result i32)))
307-
(func $call_c (result i32)
308-
;; ...
309-
)
310-
;; ...
311-
)
312-
```
313-
314-
which shows that the C and Rust definitions of the same function now agree like
315-
they should.
316-
317-
The `-Zwasm-c-abi` compiler flag is tracked in
318-
[#122532](https://github.com/rust-lang/rust/issues/122532) and a lint was
319-
implemented in [#117918](https://github.com/rust-lang/rust/issues/117918) to
320-
help warn users about the transition if they're using `wasm-bindgen` 0.2.88 or
321-
prior. The current plan is to, in the future, switch `-Zwasm-c-api=spec` to
322-
being the default. Some time after that the `-Zwasm-c-abi` flag and the
323-
"legacy" implementation will all be removed. During this process users on a
324-
sufficiently updated version of `wasm-bindgen` should not experience breakage.

0 commit comments

Comments
 (0)