Commit Graph

1263 Commits

Author SHA1 Message Date
Antoni Boucher
cd75da1f2c Fix formatting 2024-03-05 08:33:42 -05:00
Antoni Boucher
b76515708b Workaround for linker error about missing -lLLVM-18-rust-1.78.0-nightly 2024-03-05 08:23:27 -05:00
Antoni Boucher
1605928023 Merge branch 'master' into sync_from_rust_2024_03_04 2024-03-05 08:21:27 -05:00
antoyo
e4ec64a1c4
Merge pull request #459 from tempdragon/master
fix(fmt/style): Clippy-generated Code Correction
2024-03-04 08:07:26 -05:00
antoyo
3937fd15b5
Merge pull request #460 from mu001999/patch-1
Remove unused structs
2024-03-03 20:21:05 -05:00
bors
1abbf610fe Auto merge of #121665 - erikdesjardins:ptradd, r=nikic
Always generate GEP i8 / ptradd for struct offsets

This implements #98615, and goes a bit further to remove `struct_gep` entirely.

Upstream LLVM is in the beginning stages of [migrating to `ptradd`](https://discourse.llvm.org/t/rfc-replacing-getelementptr-with-ptradd/68699). LLVM 19 will [canonicalize](https://github.com/llvm/llvm-project/pull/68882) all constant-offset GEPs to i8, which has roughly the same effect as this change.

Fixes #121719.

Split out from #121577.

r? `@nikic`
2024-03-03 22:21:53 +00:00
antoyo
5178a8d6e8
Merge pull request #463 from rust-lang/fix/panic-doesnt-fail-tests
Update lang_tester so that panicking in a test results in the test failing
2024-03-01 19:13:37 -05:00
Antoni Boucher
4baadb7859 Update lang_tester so that panicking in a test results in the test failing 2024-03-01 17:28:57 -05:00
antoyo
bf5770ad03
Merge pull request #462 from rust-lang/fix/new-special-chars-libgccjit-api
Switch to the new set_special_chars_allowed_in_func_names API
2024-03-01 17:28:23 -05:00
Antoni Boucher
56dc8de1db Switch to the new set_special_chars_allowed_in_func_names API 2024-03-01 12:21:31 -05:00
bors
27b669adc2 Auto merge of #121728 - tgross35:f16-f128-step1-ty-updates, r=compiler-errors
Add stubs in IR and ABI for `f16` and `f128`

This is the very first step toward the changes in https://github.com/rust-lang/rust/pull/114607 and the [`f16` and `f128` RFC](https://rust-lang.github.io/rfcs/3453-f16-and-f128.html). It adds the types to `rustc_type_ir::FloatTy` and `rustc_abi::Primitive`, and just propagates those out as `unimplemented!` stubs where necessary.

These types do not parse yet so there is no feature gate, and it should be okay to use `unimplemented!`.

The next steps will probably be AST support with parsing and the feature gate.

r? `@compiler-errors`
cc `@Nilstrieb` suggested breaking the PR up in https://github.com/rust-lang/rust/pull/120645#issuecomment-1925900572
2024-03-01 03:36:11 +00:00
r01and
7e4b53e45b
Remove unused fluent messages 2024-03-01 09:50:33 +08:00
r01and
1b124a9bbd
Format codes 2024-02-29 23:26:34 +08:00
r01and
6f54eeb070
Remove unused structs 2024-02-29 23:13:09 +08:00
tempdragon
aeffc2fcaa fix(fmt/style): Clippy-generated Code Correction
Modifications to Commit:
	Modified:     src/allocator.rs
	Modified:     src/asm.rs
	Modified:     src/back/lto.rs
	Modified:     src/consts.rs
	Modified:     src/debuginfo.rs
	Modified:     src/intrinsic/mod.rs
	Modified:     src/lib.rs
	Modified:     src/mono_item.rs
	Modified:     src/type_.rs
	Modified:     tests/lang_tests_common.rs
2024-02-29 10:33:11 +08:00
antoyo
d0ecf0c262
Merge pull request #458 from rust-lang/format-code
Format the code
2024-02-28 18:13:20 -05:00
Antoni Boucher
c2c68e3f4d Format the code 2024-02-28 17:49:16 -05:00
antoyo
6ec50107e6
Merge pull request #455 from tempdragon/master
feat(debuginfo): Add support for debuginfo, without scope support
2024-02-28 16:59:16 -05:00
tempdragon
7c3565e569 fix(builder.rs): Add space after self when necessary 2024-02-29 04:02:27 +08:00
tempdragon
9cc0a4204d fix(debuginfo.rs): Cleanup of redundant code.
1. Revert to the original `lookup_debug_loc` of DebugLoc return type
2. Removed the commented code of scope lookup
2024-02-29 03:56:17 +08:00
tempdragon
8c975d9861 fix(builder.rs): Rename r to rvalue in set_rval_location 2024-02-29 03:18:51 +08:00
tempdragon
fba0dae5fe fix(builder.rs): Apply a variable name change to func param. 2024-02-29 03:04:48 +08:00
tempdragon
e18d3c3dfd
fix(builder.rs): Apply suggestions from code review
Co-authored-by: antoyo <antoyo@users.noreply.github.com>
2024-02-29 03:00:46 +08:00
tempdragon
ef158f295e feat(debuginfo.rs): Add Comments on functions of LLVM Origin 2024-02-29 02:39:39 +08:00
Trevor Gross
8dd96baddf Add f16 and f128 to rustc_type_ir::FloatTy and rustc_abi::Primitive
Make changes necessary to support these types in the compiler.
2024-02-28 12:58:32 -05:00
tempdragon
eaeb54448e fix(base): Remove the set_debug_info() in compile_codegen_unit 2024-02-29 01:29:20 +08:00
tempdragon
51cd5f1c78
fix(code fmt): Apply style suggestions from code review
Co-authored-by: antoyo <antoyo@users.noreply.github.com>
2024-02-29 01:10:51 +08:00
tempdragon
09fd9087b6 fix(code fmt): builder.rs & base.rs 2024-02-28 11:38:44 +08:00
tempdragon
6170f48e3f fix(builder.rs): Add cfg(feature = "master") to set_location 2024-02-28 10:04:25 +08:00
tempdragon
5b053a3c3c fix(Cargo.lock): Update Cargo.lock 2024-02-28 09:18:22 +08:00
tempdragon
8879155e56 fix(libgccjit.version): Update GCC commit version 2024-02-28 09:09:56 +08:00
Nicholas Nethercote
427d6176c5 Rename DiagnosticArg{,Map,Name,Value} as DiagArg{,Map,Name,Value}. 2024-02-28 08:55:37 +11:00
Nicholas Nethercote
7005ef9699 Rename DiagnosticBuilder as Diag.
Much better!

Note that this involves renaming (and updating the value of)
`DIAGNOSTIC_BUILDER` in clippy.
2024-02-28 08:55:35 +11:00
antoyo
64fc213926
Merge pull request #456 from GuillaumeGomez/clone-gcc
Add clone-gcc command
2024-02-27 13:34:42 -05:00
Guillaume Gomez
6560fecbdf Add documentation on git_clone_root_dir 2024-02-27 18:48:29 +01:00
Erik Desjardins
70346fe2a4 introduce and use ptradd/inbounds_ptradd instead of gep 2024-02-26 22:45:53 -05:00
Erik Desjardins
19a648218f remove struct_gep, use manual layout calculations for va_arg 2024-02-26 22:28:09 -05:00
Erik Desjardins
7d086c72f7 always use gep inbounds i8 (ptradd) for field offsets 2024-02-26 22:28:09 -05:00
bors
b4b180c218 Auto merge of #121635 - 823984418:remove_archive_builder_lifetime_a, r=nnethercote
Remove useless lifetime of ArchiveBuilder

`trait ArchiveBuilder<'a>` has a seemingly useless lifetime a, so I remove it. If this is intentional, please reject this PR.

```rust
pub trait ArchiveBuilder<'a> {
    fn add_file(&mut self, path: &Path);

    fn add_archive(
        &mut self,
        archive: &Path,
        skip: Box<dyn FnMut(&str) -> bool + 'static>,
    ) -> io::Result<()>;

    fn build(self: Box<Self>, output: &Path) -> bool;
}
```
2024-02-27 03:27:48 +00:00
Guillaume Gomez
aed59f0a51 Add clone-gcc command 2024-02-26 22:43:46 +01:00
823984418
7f34119c1a remove useless lifetime of ArchiveBuilder 2024-02-26 22:37:04 +08:00
Ralf Jung
a06a87b37d rename 'try' intrinsic to 'catch_unwind' 2024-02-26 11:10:18 +01:00
Gary Guo
c7607b024e Implement asm goto for LLVM and GCC backend 2024-02-24 18:50:09 +00:00
tempdragon
2ffe9d1eef feat(int.rs&build.rs): Add location info to arithmetic operators
TODO:
1. Clean the unnecessary locations in builder.rs & int.rs
2. Add demangling support
3. Add debug scope support
4. Add vtable support
5. Clean up builder.rs locations
2024-02-24 20:12:08 +08:00
tempdragon
c638defad7 feat(debuginfo): Init Commit for debuginfo Support
TODO:
1. Add int.rs locations
2. Add demangling support
3. Add debug scope support
4. Add vtable support
5. Clean up builder.rs locations
2024-02-24 20:12:08 +08:00
antoyo
2262073092
Merge pull request #454 from rust-lang/update/gcc
Update gcc version
2024-02-23 12:51:42 -05:00
Antoni Boucher
bb5b75f28d Update gcc version 2024-02-23 12:32:14 -05:00
Ralf Jung
0abd3b76b7 remove simd_reduce_{min,max}_nanless 2024-02-21 20:50:47 +01:00
Ralf Jung
a9b5c0832f make simd_reduce_{mul,add}_unordered use only the 'reassoc' flag, not all fast-math flags 2024-02-21 16:28:20 +01:00
antoyo
2e67633d3c
Merge pull request #452 from GuillaumeGomez/master-cfg
Remove unused `feature = "master"` cfg in build_system
2024-02-21 09:28:12 -05:00