| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2024-10-08 | cg_gcc: Factor out rustc_target::abi | Jubilee Young | -1/+3 | |
| 2024-09-23 | Check vtable projections for validity in miri | Michael Goulet | -2/+2 | |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -1/+1 | |
| 2024-09-19 | Reorder `ConstMethods`. | Nicholas Nethercote | -16/+16 | |
| It's crazy to have the integer methods in something close to random order. The reordering makes the gaps clear: `const_i64`, `const_i128`, `const_isize`, and `const_u16`. I guess they just aren't needed. | ||||
| 2024-09-17 | Rename supertraits of `CodegenMethods`. | Nicholas Nethercote | -2/+4 | |
| Supertraits of `BuilderMethods` are all called `XyzBuilderMethods`. Supertraits of `CodegenMethods` are all called `XyzMethods`. This commit changes the latter to `XyzCodegenMethods`, for consistency. | ||||
| 2024-08-08 | const vector passed to codegen | James Barford-Evans | -0/+5 | |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -2/+1 | |
| The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options. | ||||
| 2024-07-17 | Format cg_gcc with same formatting parameters | Guillaume Gomez | -5/+1 | |
| 2024-07-10 | Merge commit '98ed962c7d3eebe12c97588e61245273d265e72f' into master | Guillaume Gomez | -5/+6 | |
| 2024-07-02 | Miri function identity hack: account for possible inlining | Ralf Jung | -1/+1 | |
| 2024-06-21 | Remove const_bitcast from ConstMethods | bjorn3 | -13/+13 | |
| 2024-06-10 | ScalarInt: size mismatches are a bug, do not delay the panic | Ralf Jung | -1/+1 | |
| 2024-03-23 | Add+Use `mir::BinOp::Cmp` | Scott McMurray | -0/+4 | |
| 2024-03-05 | Merge commit 'b385428e3ddf330805241e7758e773f933357c4b' into ↵ | Guillaume Gomez | -99/+69 | |
| subtree-update_cg_gcc_2024-03-05 | ||||
| 2023-12-11 | Remove dead codes | r0cky | -11/+0 | |
| 2023-12-07 | ctfe interpreter: extend provenance so that it can track whether a pointer ↵ | Ralf Jung | -1/+2 | |
| is immutable | ||||
| 2023-10-26 | Merge commit 'e4fe941b11a55c5005630696e9b6d81c65f7bd04' into ↵ | Antoni Boucher | -8/+8 | |
| subtree-update_cg_gcc_2023-10-25 | ||||
| 2023-07-29 | cg_ssa: remove pointee types and pointercast/bitcast-of-ptr | Erik Desjardins | -4/+4 | |
| 2023-06-10 | Support 128-bit enum variant in debuginfo codegen | DonoughLiu | -1/+5 | |
| 2023-05-26 | Stop creating intermediate places just to immediate convert them to operands | Oli Scherer | -23/+19 | |
| 2023-03-16 | Use poison instead of undef | Nikita Popov | -0/+5 | |
| In cases where it is legal, we should prefer poison values over undef values. This replaces undef with poison for aggregate construction and for uninhabited types. There are more places where we can likely use poison, but I wanted to stay conservative to start with. In particular the aggregate case is important for newer LLVM versions, which are not able to handle an undef base value during early optimization due to poison-propagation concerns. | ||||
| 2023-03-05 | Merge commit '08a6d6e16b5efe217123e780398969946266268f' into ↵ | Antoni Boucher | -8/+18 | |
| sync-cg_gcc-2023-03-04 | ||||
| 2023-01-22 | abi: add `AddressSpace` field to `Primitive::Pointer` | Erik Desjardins | -1/+1 | |
| ...and remove it from `PointeeInfo`, which isn't meant for this. There are still various places (marked with FIXMEs) that assume all pointers have the same size and alignment. Fixing this requires parsing non-default address spaces in the data layout string, which will be done in a followup. | ||||
| 2022-12-20 | Add missing anonymous lifetime | Jeremy Stucki | -1/+1 | |
| 2022-12-20 | rustc: Remove needless lifetimes | Jeremy Stucki | -1/+1 | |
| 2022-09-06 | Remove dead broken code from const zst handling in backends | Oli Scherer | -4/+0 | |
| 2022-07-20 | slightly cleaner, if more verbose, vtable handling in codegen backends | Ralf Jung | -8/+5 | |
| 2022-07-20 | consistently use VTable over Vtable (matching stable stdlib API RawWakerVTable) | Ralf Jung | -2/+2 | |
| 2022-07-20 | add a Vtable kind of symbolic allocations | Ralf Jung | -0/+8 | |
| 2022-07-09 | fix cranelift and gcc backends | Ralf Jung | -5/+4 | |
| 2022-06-28 | Avoid unnecessary string interning for const_str | bjorn3 | -7/+9 | |
| 2022-06-06 | Merge commit 'e8dca3e87d164d2806098c462c6ce41301341f68' into sync_from_cg_gcc | Antoni Boucher | -4/+78 | |
| 2022-04-05 | Mark scalar layout unions so that backends that do not support partially ↵ | Oli Scherer | -4/+4 | |
| initialized scalars can special case them. | ||||
| 2022-04-02 | make memcmp return a value of c_int_width instead of i32 | David Morrison | -0/+4 | |
| 2022-03-26 | Merge commit '39683d8eb7a32a74bea96ecbf1e87675d3338506' into ↵ | bjorn3 | -48/+8 | |
| sync_cg_gcc-2022-03-26 | ||||
| 2022-03-07 | Auto merge of #94638 - erikdesjardins:noextranull, r=nagisa | bors | -14/+6 | |
| cleanup: remove unused ability to have LLVM null-terminate const strings (and the copied function in rustc_codegen_gcc) Noticed this while writing https://github.com/rust-lang/rust/pull/94450#issuecomment-1059687348. r? `@nagisa` | ||||
| 2022-03-07 | Introduce `ConstAllocation`. | Nicholas Nethercote | -6/+7 | |
| Currently some `Allocation`s are interned, some are not, and it's very hard to tell at a use point which is which. This commit introduces `ConstAllocation` for the known-interned ones, which makes the division much clearer. `ConstAllocation::inner()` is used to get the underlying `Allocation`. In some places it's natural to use an `Allocation`, in some it's natural to use a `ConstAllocation`, and in some places there's no clear choice. I've tried to make things look as nice as possible, while generally favouring `ConstAllocation`, which is the type that embodies more information. This does require quite a few calls to `inner()`. The commit also tweaks how `PartialOrd` works for `Interned`. The previous code was too clever by half, building on `T: Ord` to make the code shorter. That caused problems with deriving `PartialOrd` and `Ord` for `ConstAllocation`, so I changed it to build on `T: PartialOrd`, which is slightly more verbose but much more standard and avoided the problems. | ||||
| 2022-03-06 | cleanup: remove unused ability to have LLVM null-terminate const strings | Erik Desjardins | -14/+6 | |
| 2021-12-31 | Merge commit '1411a98352ba6bee8ba3b0131c9243e5db1e6a2e' into ↵ | bjorn3 | -11/+3 | |
| sync_cg_clif-2021-12-31 | ||||
| 2021-12-15 | Remove unnecessary sigils around `Symbol::as_str()` calls. | Nicholas Nethercote | -1/+1 | |
| 2021-09-28 | Merge commit '9809f5d21990d9e24b3e9876ea7da756fd4e9def' into libgccjit-codegen | Antoni Boucher | -28/+42 | |
| 2021-09-17 | Merge commit '48d60ab7c505c6c1ebb042eacaafd8dc9f7a9267' into libgccjit-codegen | Antoni Boucher | -4/+5 | |
| 2021-08-15 | Merge commit 'e228f0c16ea8c34794a6285bf57aab627c26b147' into libgccjit-codegen | Antoni Boucher | -24/+11 | |
| 2021-08-12 | Add 'compiler/rustc_codegen_gcc/' from commit ↵ | Antoni Boucher | -0/+448 | |
| 'afae271d5d3719eeb92c18bc004bb6d1965a5f3f' git-subtree-dir: compiler/rustc_codegen_gcc git-subtree-mainline: ae90dcf0207c57c3034f00b07048d63f8b2363c8 git-subtree-split: afae271d5d3719eeb92c18bc004bb6d1965a5f3f | ||||
