1. 09 9月, 2021 7 次提交
  2. 02 9月, 2021 1 次提交
  3. 30 8月, 2021 2 次提交
  4. 27 8月, 2021 4 次提交
  5. 26 8月, 2021 1 次提交
  6. 25 8月, 2021 2 次提交
  7. 24 8月, 2021 1 次提交
  8. 23 8月, 2021 8 次提交
  9. 13 8月, 2021 1 次提交
  10. 24 6月, 2021 2 次提交
  11. 15 6月, 2021 1 次提交
  12. 07 6月, 2021 1 次提交
  13. 02 6月, 2021 1 次提交
  14. 29 5月, 2021 1 次提交
  15. 23 5月, 2021 2 次提交
  16. 19 5月, 2021 1 次提交
  17. 19 4月, 2021 1 次提交
  18. 08 4月, 2021 1 次提交
    • A
      rustc: Add a new `wasm` ABI · 482a3d06
      Alex Crichton 提交于
      This commit implements the idea of a new ABI for the WebAssembly target,
      one called `"wasm"`. This ABI is entirely of my own invention
      and has no current precedent, but I think that the addition of this ABI
      might help solve a number of issues with the WebAssembly targets.
      
      When `wasm32-unknown-unknown` was first added to Rust I naively
      "implemented an abi" for the target. I then went to write `wasm-bindgen`
      which accidentally relied on details of this ABI. Turns out the ABI
      definition didn't match C, which is causing issues for C/Rust interop.
      Currently the compiler has a "wasm32 bindgen compat" ABI which is the
      original implementation I added, and it's purely there for, well,
      `wasm-bindgen`.
      
      Another issue with the WebAssembly target is that it's not clear to me
      when and if the default C ABI will change to account for WebAssembly's
      multi-value feature (a feature that allows functions to return multiple
      values). Even if this does happen, though, it seems like the C ABI will
      be guided based on the performance of WebAssembly code and will likely
      not match even what the current wasm-bindgen-compat ABI is today. This
      leaves a hole in Rust's expressivity in binding WebAssembly where given
      a particular import type, Rust may not be able to import that signature
      with an updated C ABI for multi-value.
      
      To fix these issues I had the idea of a new ABI for WebAssembly, one
      called `wasm`. The definition of this ABI is "what you write
      maps straight to wasm". The goal here is that whatever you write down in
      the parameter list or in the return values goes straight into the
      function's signature in the WebAssembly file. This special ABI is for
      intentionally matching the ABI of an imported function from the
      environment or exporting a function with the right signature.
      
      With the addition of a new ABI, this enables rustc to:
      
      * Eventually remove the "wasm-bindgen compat hack". Once this
        ABI is stable wasm-bindgen can switch to using it everywhere.
        Afterwards the wasm32-unknown-unknown target can have its default ABI
        updated to match C.
      
      * Expose the ability to precisely match an ABI signature for a
        WebAssembly function, regardless of what the C ABI that clang chooses
        turns out to be.
      
      * Continue to evolve the definition of the default C ABI to match what
        clang does on all targets, since the purpose of that ABI will be
        explicitly matching C rather than generating particular function
        imports/exports.
      
      Naturally this is implemented as an unstable feature initially, but it
      would be nice for this to get stabilized (if it works) in the near-ish
      future to remove the wasm32-unknown-unknown incompatibility with the C
      ABI. Doing this, however, requires the feature to be on stable because
      wasm-bindgen works with stable Rust.
      482a3d06
  19. 05 4月, 2021 1 次提交
  20. 22 3月, 2021 1 次提交
    • N
      Move decision aboute noalias into codegen_llvm · dfc4cafe
      Nikita Popov 提交于
      The frontend shouldn't be deciding whether or not to use mutable
      noalias attributes, as this is a pure LLVM concern. Only provide
      the necessary information and do the actual decision in
      codegen_llvm.
      dfc4cafe