Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Enable thread-local coverage marks | Laurențiu Nicola | 2021-03-15 | 1 | -2/+2 | |
| | | | ||||||
* | | | Merge #8020 | bors[bot] | 2021-03-15 | 1 | -1/+9 | |
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8020: Power up goto_implementation r=matklad a=Veykril by allowing it to be invoked on references of names, now showing all (trait) implementations of the given type in all crates instead of just the defining crate as well as including support for builtin types ![image](https://user-images.githubusercontent.com/3757771/111144403-52bb0700-8587-11eb-9205-7a2a5b8b75a3.png) Example screenshot of `impl`s of Box in `log`, `alloc`, `std` and the current crate. Before you had to invoke it on the definition where it would only show the `impls` in `alloc`. Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | | Speedup trait impl search for goto_implementation | Lukas Wirth | 2021-03-15 | 1 | -1/+9 | |
| | | | ||||||
* | | | Merge #8018 | bors[bot] | 2021-03-15 | 10 | -137/+126 | |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8018: Make Ty wrap TyKind in an Arc r=flodiebold a=flodiebold ... to further move towards Chalk. This is a bit of a slowdown (218ginstr vs 213ginstr for inference on RA), even though it allows us to unwrap the Substs in `TyKind::Ref` etc.. Co-authored-by: Florian Diebold <[email protected]> | |||||
| * | | | Don't use Substs for Ref/Raw/Array/Slice | Florian Diebold | 2021-03-14 | 9 | -111/+74 | |
| | | | | ||||||
| * | | | Make Ty wrap TyKind in an Arc | Florian Diebold | 2021-03-14 | 8 | -27/+53 | |
| |/ / | | | | | | | | | | | | | | | | | | | | | | ... like it will be in Chalk. We still keep `interned_mut` and `into_inner` methods that will probably not exist with Chalk. This worsens performance slightly (5ginstr inference on RA), but doesn't include other simplifications we can do yet. | |||||
* / / | Simplify source maps for fields | Aleksey Kladov | 2021-03-15 | 2 | -6/+5 | |
|/ / | ||||||
* | | More renaming | Florian Diebold | 2021-03-14 | 4 | -18/+22 | |
| | | ||||||
* | | Use chalk_ir::FnSig | Florian Diebold | 2021-03-14 | 5 | -21/+22 | |
| | | ||||||
* | | Rename some fields to their Chalk names | Florian Diebold | 2021-03-14 | 10 | -45/+45 | |
| | | ||||||
* | | Move type lowering methods to TyLoweringContext | Florian Diebold | 2021-03-13 | 4 | -286/+246 | |
| | | ||||||
* | | Create TraitEnvironment through a query | Florian Diebold | 2021-03-13 | 4 | -45/+59 | |
| | | ||||||
* | | Use chalk_ir::OpaqueTyId | Florian Diebold | 2021-03-13 | 7 | -63/+53 | |
| | | ||||||
* | | Use chalk_ir::PlaceholderIndex | Florian Diebold | 2021-03-13 | 7 | -43/+52 | |
| | | ||||||
* | | Use chalk_ir::ClosureId | Florian Diebold | 2021-03-13 | 5 | -23/+17 | |
| | | ||||||
* | | Use chalk_ir::FnDefId | Florian Diebold | 2021-03-13 | 9 | -26/+47 | |
| | | ||||||
* | | Use chalk_ir::AssocTypeId | Florian Diebold | 2021-03-13 | 9 | -74/+82 | |
| | | ||||||
* | | Use chalk_ir::ForeignDefId | Florian Diebold | 2021-03-13 | 6 | -38/+32 | |
| | | ||||||
* | | Separate `Ty` and `TyKind` like in Chalk | Florian Diebold | 2021-03-13 | 18 | -583/+718 | |
| | | | | | | | | | | Currently `Ty` just wraps `TyKind`, but this allows us to change most places to already use `intern` / `interned`. | |||||
* | | Remove `ItemTree::source` | Jonas Schievink | 2021-03-12 | 1 | -6/+4 | |
|/ | | | | `HasSource` should be used instead | |||||
* | Simplify a bit | Florian Diebold | 2021-03-12 | 1 | -10/+5 | |
| | ||||||
* | Use Chalk Environment more directly | Florian Diebold | 2021-03-12 | 5 | -55/+44 | |
| | ||||||
* | Prefer names from outer DefMap over extern prelude | Jonas Schievink | 2021-03-10 | 1 | -0/+29 | |
| | ||||||
* | Compilation speed | Aleksey Kladov | 2021-03-09 | 1 | -1/+1 | |
| | ||||||
* | Delete `ContainerId` | Jonas Schievink | 2021-03-09 | 4 | -7/+7 | |
| | ||||||
* | Stop using `ContainerId` in `AssocContainerId` | Jonas Schievink | 2021-03-09 | 3 | -3/+3 | |
| | ||||||
* | Check ancestor maps when computing traits in scope | Jonas Schievink | 2021-03-09 | 1 | -0/+33 | |
| | ||||||
* | Use `body.block_scopes` in `hir_ty` tests | Jonas Schievink | 2021-03-09 | 1 | -6/+14 | |
| | ||||||
* | Use `body.block_scopes` to validate inner items | Jonas Schievink | 2021-03-09 | 1 | -3/+8 | |
| | ||||||
* | Use upstream cov-mark | Laurențiu Nicola | 2021-03-08 | 14 | -38/+25 | |
| | ||||||
* | Cargo update | kjeremy | 2021-03-08 | 1 | -3/+3 | |
| | | | | Chalk changes just a version # bump. There are no actual commits. | |||||
* | Make two calls virtual | Laurențiu Nicola | 2021-03-05 | 1 | -1/+1 | |
| | ||||||
* | Use chalk_ir::AdtId | Lukas Wirth | 2021-03-04 | 10 | -70/+65 | |
| | ||||||
*-. | Merge #7829 #7833 | bors[bot] | 2021-03-01 | 10 | -62/+73 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7829: Bump deps r=matklad a=lnicola Unfortunately, this brings a bunch of proc macros dep because `cargo-metadata` went full-in on `derive-builder`. I'm not sure what we can do here.. 7833: Use chalk_ir::Mutability r=Veykril a=Veykril Co-authored-by: Laurențiu Nicola <[email protected]> Co-authored-by: Lukas Wirth <[email protected]> | |||||
| | * | Use chalk_ir::Mutability | Lukas Wirth | 2021-03-01 | 9 | -59/+70 | |
| |/ |/| | ||||||
| * | Bump chalk | Laurențiu Nicola | 2021-03-01 | 1 | -3/+3 | |
|/ | ||||||
* | Introduce Ty::Alias | Lukas Wirth | 2021-03-01 | 13 | -94/+105 | |
| | ||||||
* | Assert index relationship between type_variable_table and var_unification_table | Lukas Wirth | 2021-03-01 | 2 | -22/+13 | |
| | ||||||
* | Being Ty::InferenceVar closes to chalk equivalent | Lukas Wirth | 2021-03-01 | 10 | -150/+170 | |
| | ||||||
* | Merge #7816 | bors[bot] | 2021-02-28 | 8 | -81/+93 | |
|\ | | | | | | | | | | | | | | | 7816: Lift Ty::Fn into a struct r=Veykril a=Veykril bors r+ Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | Lift FnPointer into a struct | Lukas Wirth | 2021-02-28 | 8 | -81/+93 | |
| | | ||||||
* | | hir_ty: use default type generic for box expressions | cynecx | 2021-02-28 | 2 | -0/+61 | |
|/ | ||||||
* | Remove Substs from Ty::ForeignType | Lukas Wirth | 2021-02-28 | 5 | -18/+9 | |
| | ||||||
* | Turn Ty::Tuple variant into a tuple-variant | Lukas Wirth | 2021-02-28 | 7 | -20/+18 | |
| | ||||||
* | Fix code_model::Type::walk not walking all types | Lukas Wirth | 2021-02-28 | 2 | -19/+18 | |
| | ||||||
* | Inline TypeCtor into Ty | Lukas Wirth | 2021-02-28 | 15 | -832/+644 | |
| | ||||||
* | Use chalk_ir::Scalar directly | Lukas Wirth | 2021-02-28 | 6 | -197/+78 | |
| | ||||||
* | Introduce TypeCtor::Scalar | Lukas Wirth | 2021-02-28 | 9 | -298/+271 | |
| | ||||||
* | Add test from #7273 | Laurențiu Nicola | 2021-02-21 | 1 | -0/+45 | |
| | ||||||
* | Bump deps | Laurențiu Nicola | 2021-02-21 | 1 | -3/+3 | |
| |