| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-10-26 | Merge commit 'e4fe941b11a55c5005630696e9b6d81c65f7bd04' into ↵ | Antoni Boucher | -20/+48 | |
| subtree-update_cg_gcc_2023-10-25 | ||||
| 2023-08-28 | Don't ICE on layout computation failure | Katherine Philip | -1/+2 | |
| 2023-08-05 | Fix ICE failed to get layout for ReferencesError | yukang | -1/+1 | |
| 2023-06-01 | Use translatable diagnostics in `rustc_const_eval` | Deadbeef | -12/+3 | |
| 2023-03-05 | Merge commit '08a6d6e16b5efe217123e780398969946266268f' into ↵ | Antoni Boucher | -34/+49 | |
| sync-cg_gcc-2023-03-04 | ||||
| 2023-02-24 | Use `List::empty()` instead of `mk_substs(&[])`. | Nicholas Nethercote | -1/+1 | |
| 2023-02-24 | Rename many interner functions. | Nicholas Nethercote | -1/+1 | |
| (This is a large commit. The changes to `compiler/rustc_middle/src/ty/context.rs` are the most important ones.) The current naming scheme is a mess, with a mix of `_intern_`, `intern_` and `mk_` prefixes, with little consistency. In particular, in many cases it's easy to use an iterator interner when a (preferable) slice interner is available. The guiding principles of the new naming system: - No `_intern_` prefixes. - The `intern_` prefix is for internal operations. - The `mk_` prefix is for external operations. - For cases where there is a slice interner and an iterator interner, the former is `mk_foo` and the latter is `mk_foo_from_iter`. Also, `slice_interners!` and `direct_interners!` can now be `pub` or non-`pub`, which helps enforce the internal/external operations division. It's not perfect, but I think it's a clear improvement. The following lists show everything that was renamed. slice_interners - const_list - mk_const_list -> mk_const_list_from_iter - intern_const_list -> mk_const_list - substs - mk_substs -> mk_substs_from_iter - intern_substs -> mk_substs - check_substs -> check_and_mk_substs (this is a weird one) - canonical_var_infos - intern_canonical_var_infos -> mk_canonical_var_infos - poly_existential_predicates - mk_poly_existential_predicates -> mk_poly_existential_predicates_from_iter - intern_poly_existential_predicates -> mk_poly_existential_predicates - _intern_poly_existential_predicates -> intern_poly_existential_predicates - predicates - mk_predicates -> mk_predicates_from_iter - intern_predicates -> mk_predicates - _intern_predicates -> intern_predicates - projs - intern_projs -> mk_projs - place_elems - mk_place_elems -> mk_place_elems_from_iter - intern_place_elems -> mk_place_elems - bound_variable_kinds - mk_bound_variable_kinds -> mk_bound_variable_kinds_from_iter - intern_bound_variable_kinds -> mk_bound_variable_kinds direct_interners - region - intern_region (unchanged) - const - mk_const_internal -> intern_const - const_allocation - intern_const_alloc -> mk_const_alloc - layout - intern_layout -> mk_layout - adt_def - intern_adt_def -> mk_adt_def_from_data (unusual case, hard to avoid) - alloc_adt_def(!) -> mk_adt_def - external_constraints - intern_external_constraints -> mk_external_constraints Other - type_list - mk_type_list -> mk_type_list_from_iter - intern_type_list -> mk_type_list - tup - mk_tup -> mk_tup_from_iter - intern_tup -> mk_tup | ||||
| 2023-01-04 | Simplify some iterator combinators | Michael Goulet | -1/+1 | |
| 2022-11-27 | Prefer doc comments over `//`-comments in compiler | Maybe Waffle | -2/+2 | |
| 2022-11-15 | Use custom entry name in gcc | Ayush Singh | -2/+3 | |
| This is a continuation of 9f0a8620bd7d325e6d42417b08daff3e55cb88f6 for gcc. Signed-off-by: Ayush Singh <ayushsingh1325@gmail.com> | ||||
| 2022-10-01 | Remove several unused methods from MiscMethods | bjorn3 | -16/+0 | |
| 2022-09-24 | fix lifetime error | Ellis Hoag | -21/+3 | |
| 2022-09-24 | impl SessionDiagnostic for LayoutError and Spanned<T> | Ellis Hoag | -1/+18 | |
| 2022-09-24 | Add LayoutSizeOverflow | Ellis Hoag | -2/+3 | |
| 2022-06-28 | Avoid unnecessary string interning for const_str | bjorn3 | -2/+2 | |
| 2022-06-06 | Merge commit 'e8dca3e87d164d2806098c462c6ce41301341f68' into sync_from_cg_gcc | Antoni Boucher | -4/+38 | |
| 2022-03-30 | Spellchecking some comments | Yuri Astrakhan | -1/+1 | |
| This PR attempts to clean up some minor spelling mistakes in comments | ||||
| 2022-03-26 | Merge commit '39683d8eb7a32a74bea96ecbf1e87675d3338506' into ↵ | bjorn3 | -29/+83 | |
| sync_cg_gcc-2022-03-26 | ||||
| 2022-03-06 | cleanup: remove unused ability to have LLVM null-terminate const strings | Erik Desjardins | -2/+2 | |
| 2021-12-31 | Merge commit '1411a98352ba6bee8ba3b0131c9243e5db1e6a2e' into ↵ | bjorn3 | -11/+1 | |
| sync_cg_clif-2021-12-31 | ||||
| 2021-09-28 | Merge commit '9809f5d21990d9e24b3e9876ea7da756fd4e9def' into libgccjit-codegen | Antoni Boucher | -42/+44 | |
| 2021-09-17 | Merge commit '48d60ab7c505c6c1ebb042eacaafd8dc9f7a9267' into libgccjit-codegen | Antoni Boucher | -19/+21 | |
| 2021-08-15 | Merge commit 'e228f0c16ea8c34794a6285bf57aab627c26b147' into libgccjit-codegen | Antoni Boucher | -39/+17 | |
| 2021-08-14 | Merge commit '0c89065b934397b62838fe3e4ef6f6352fc52daf' into libgccjit-codegen | Antoni Boucher | -3/+5 | |
| 2021-08-12 | Add 'compiler/rustc_codegen_gcc/' from commit ↵ | Antoni Boucher | -0/+491 | |
| 'afae271d5d3719eeb92c18bc004bb6d1965a5f3f' git-subtree-dir: compiler/rustc_codegen_gcc git-subtree-mainline: ae90dcf0207c57c3034f00b07048d63f8b2363c8 git-subtree-split: afae271d5d3719eeb92c18bc004bb6d1965a5f3f | ||||
