Commit graph

1456 commits

Author SHA1 Message Date
Trevor Gross
1649f72ea6
Revert "Bump cc dependency" 2024-09-27 07:00:19 -04:00
Trevor Gross
3e608c6cc0
Merge pull request #692 from Tazdevil971/master
Fixed `__divtf3` having wrong cfg for f128
2024-09-26 10:26:44 -04:00
Davide Mor
8c31ec9e7d Fixed __divtf3 having wrong cfg for f128 2024-09-26 15:25:48 +02:00
Trevor Gross
b8a2df1e2a
Merge pull request #691 from rust-lang/release-plz-2024-09-25T14-37-02Z
chore: release v0.1.128
2024-09-25 10:49:07 -04:00
github-actions[bot]
1e5bf9e166
chore: release 2024-09-25 14:37:03 +00:00
Trevor Gross
d88b175626
Merge pull request #690 from arttet/chore/cc
Bump cc dependency
2024-09-25 10:36:37 -04:00
Artyom Tetyukhin
70d74bb7a4
Bump cc dependency 2024-09-25 18:21:36 +04:00
Trevor Gross
cc3f6697e9
Merge pull request #688 from rust-lang/release-plz-2024-09-24T16-40-42Z
chore: release v0.1.127
2024-09-24 18:49:20 +02:00
github-actions[bot]
d6d29197e4
chore: release 2024-09-24 16:40:44 +00:00
Trevor Gross
608fd00051
Merge pull request #622 from tgross35/f128-div
Add `__divtf3`
2024-09-24 18:40:16 +02:00
Trevor Gross
4842bd6ab1 Add benchmarks for f128 division 2024-09-24 18:32:58 +02:00
Trevor Gross
764a177497 Add f128 division
Use the new generic division algorithm to expose `__divtf3` and
`__divkf3`.
2024-09-24 18:32:58 +02:00
Trevor Gross
4f8afbabdc Make float division generic
Float division currently has a separate `div32` and `div64` for `f32`
and `f64`, respectively. Combine these to make use of generics. This
will make it easier to support `f128` division, and reduces a lot of
redundant code.

This includes a simplification of division tests.
2024-09-24 18:32:56 +02:00
Trevor Gross
23af8ca763 Update bounds and docs for the Float trait
Add some bounds to integer types that allow our function trait bounds to
be slightly less verbose. Also clarify documentation and remove a
redundant operation.
2024-09-24 18:21:57 +02:00
Trevor Gross
44840a12bc Add Shr to u256
Float division requires some shift operations on big integers; implement
right shift here.
2024-09-24 18:21:57 +02:00
Amanieu d'Antras
cad966f041
Merge pull request #687 from rust-lang/release-plz-2024-09-11T17-09-03Z 2024-09-13 01:35:04 +01:00
github-actions[bot]
22ef22e30b
chore: release 2024-09-11 17:09:04 +00:00
Trevor Gross
bb5086fbf0
Merge pull request #686 from folkertdev/use-naked-asm
use `naked_asm!` in `#[naked]` functions
2024-09-11 19:08:18 +02:00
Folkert de Vries
1a343b6118 use naked_asm! in #[naked] functions 2024-09-11 12:01:15 +02:00
Trevor Gross
9acaa28d7d
Merge pull request #684 from rust-lang/release-plz-2024-09-04T02-56-14Z
chore: release v0.1.125
2024-09-05 12:21:58 -04:00
github-actions[bot]
0711291229
chore: release 2024-09-05 16:14:31 +00:00
Trevor Gross
269a7ef042
Merge pull request #685 from alexcrichton/wams-div128
Use the trifecta div algorithm for 128-bit div on wasm
2024-09-05 12:14:05 -04:00
Alex Crichton
625462202e Use the trifecta div algorithm for 128-bit div on wasm
This commit updates the `#[cfg]` annotations used to select the
implementation of 128-bit division in compiler-builtins on wasm targets.
This is done with relation to
https://github.com/WebAssembly/128-bit-arithmetic where performance of
128-bit operations is being investigated on WebAssembly. While I don't
know much about the particulars of the two algorithms involved here the
comments indicate that the "trifecta" variant is preferred if possible
but it's not selected on 32-bit architectures. This rationale isn't as
applicable to WebAssembly targets because despite the 32-bit pointer
width there are often wider-than-pointer operations available as it's
typically run on 64-bit machines.

Locally in testing a benchmark that performs division with a Rust-based
bignum libraries whent from 350% slower-than-native to 220%
slower-than-native with this change, a nice increase in speed. While
this was tested with Wasmtime other runtimes are likely to see an
improvement as well.
2024-09-05 09:03:28 -07:00
Sbstn Bcht
69406c118a
Remove unsupported *vfp functions (#678)
Remove all *vfp functions and related tests since LLVM no longer emits them.

Link: https://github.com/rust-lang/compiler-builtins/pull/626

[ Reword commit message - Trevor ]
2024-09-03 22:55:44 -04:00
Trevor Gross
6a78d7c2b6
Merge pull request #683 from rust-lang/release-plz-2024-09-01T03-20-30Z
chore: release v0.1.124
2024-08-31 22:27:25 -05:00
github-actions[bot]
39920c73dd
chore: release 2024-09-01 03:20:30 +00:00
Trevor Gross
c371c4e81a
Merge pull request #682 from CodeLinaro/bcain/dunders
[hexagon] Remove aliases w/o leading __
2024-08-31 22:20:06 -05:00
Brian Cain
a3a5a00b9a [hexagon] Remove aliases w/o leading __
These hexagon builtins incorrectly created aliases in the global
namespace which can (and in at least one case, did) conflict
with symbols defined by other programs.

This should address the issue reported as https://github.com/rust-lang/rust/issues/129823:

	   Compiling compiler_builtins v0.1.123
	   Compiling core v0.0.0 (/home/ben/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core)
	   Compiling rustc-std-workspace-core v1.99.0 (/home/ben/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core)
	   Compiling byteorder v1.5.0
	   Compiling zerocopy v0.7.34
	error: symbol 'fma' is already defined

	error: could not compile `compiler_builtins` (lib) due to 1 previous error

Also: some of the symbols defined were not just aliases, so those are
now qualified with `__hexagon_`.  The compiler does not yet emit calls
to these particular ones, but if/when it does, it can use the new names.
2024-08-31 12:59:37 -05:00
Trevor Gross
74946afcba
Merge pull request #681 from rust-lang/release-plz-2024-08-28T16-15-08Z
chore: release v0.1.123
2024-08-28 11:23:03 -05:00
github-actions[bot]
5b227e4772
chore: release 2024-08-28 16:15:09 +00:00
Trevor Gross
b99359f70d
Merge pull request #680 from Amjad50/fix-builtin-math-symbols-ignored
Don't include `math` for `unix` and `wasi` targets
2024-08-28 11:14:38 -05:00
Amjad Alsharafi
1652ba219c
Don't include math for unix and wasi targets
This fixes such as (https://github.com/rust-lang/rust/issues/128386)
where, our implementation is being used on systems where there is
already `math` library and its more performant and accurate.

So with this change, linux will go back to the previous behavior and not
include these functions, windows and apple were generally not affected.

Looking at the targets we have builtin now in rust, everything else is
probably good to have the math symbols.

> A note on the above, the `hermit` os uses `libm` directly for itself,
> but I think its Ok to keep providing math in `compiler_builtin` for it,
> its technically the same implementation either from `compiler_builtin`
> or `hermit-builtins`.

Signed-off-by: Amjad Alsharafi <26300843+Amjad50@users.noreply.github.com>
2024-08-27 13:03:29 +08:00
Trevor Gross
c5c87c5f3f
Merge pull request #677 from rust-lang/release-plz-2024-08-25T04-08-05Z
chore: release v0.1.122
2024-08-24 23:15:58 -05:00
github-actions[bot]
18109c2d2d
chore: release 2024-08-25 04:08:06 +00:00
beetrees
a17a15b08a Fix ABI for f16 builtins on Intel Apple targets 2024-08-24 23:07:35 -05:00
Trevor Gross
569a93bc03
Merge pull request #676 from beetrees/ci-macos-latest
Use `macos-latest` in CI for `aarch64-apple-darwin`
2024-08-24 05:59:57 -05:00
beetrees
09a1f57604
Use macos-13 in CI for x86_64-apple-darwin 2024-08-24 11:52:41 +01:00
beetrees
d6588dff8f
Use macos-latest in CI for aarch64-apple-darwin 2024-08-24 11:24:45 +01:00
Trevor Gross
cacef13acc
Merge pull request #674 from rust-lang/release-plz-2024-08-22T08-01-12Z
chore: release v0.1.121
2024-08-22 06:08:36 -05:00
github-actions[bot]
25be87d8a8
chore: release 2024-08-22 08:01:13 +00:00
Trevor Gross
ade226ecdd
Merge pull request #673 from scottmcm/only-array-simd
Use array simd in `U64x2`
2024-08-22 03:00:44 -05:00
Scott McMurray
40d2a60c22 Use array simd in U64x2 2024-08-22 00:43:02 -07:00
Trevor Gross
ce9a67e7d6
Merge pull request #671 from rust-lang/release-plz-2024-08-19T12-14-41Z
chore: release v0.1.120
2024-08-22 01:11:17 -05:00
github-actions[bot]
7033f32bac
chore: release 2024-08-22 06:03:55 +00:00
Trevor Gross
13a5e8fce7
Merge pull request #672 from Amjad50/fix-weak-linkage
Fix weak linkage on windows and apple platforms
2024-08-22 01:03:27 -05:00
Amjad Alsharafi
b71531e64e
Fix weak linkage on windows and apple platforms
There were some issues regarding windows and apple platform, we were
exporting symbols that are already provided by the compiler but weren't
marked as `weak` which resulted in conflicted symbols in the linking
process.

Initially, we didn't add `weak` because we thought it is not supported
on windows and apple platforms, but it looks like its only not supported
on windows-gnu platforms

Signed-off-by: Amjad Alsharafi <26300843+Amjad50@users.noreply.github.com>
2024-08-22 10:59:06 +08:00
Trevor Gross
c620a1ffbd
Merge pull request #670 from tgross35/build-fix
Apply fixes to `build.rs` files
2024-08-19 07:14:10 -05:00
Trevor Gross
db9debf096 Apply fixes to build.rs files
Make the following changes:

- Add `rerun-if-changed` to the new `configure.rs`, it seems this was
  causing incorrect caching.
- Change from matching `i686` to `x86`. The target triple starts with
  `i686` so that is what we were checking before, but the architecture
  is `x86`. This change should have been made when we added `struct
  Target`, update it now instead.
2024-08-19 07:04:07 -05:00
Trevor Gross
3b4465f641
Merge pull request #669 from kleisauke/fix-publish
Add `configure.rs` to the `include` list
2024-08-12 13:03:15 -05:00
Kleis Auke Wolthuizen
18cbc52ee6 Add configure.rs to the include list 2024-08-12 19:45:28 +02:00