index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
librustc
/
ty
/
query
/
on_disk_cache.rs
Age
Commit message (
Expand
)
Author
Lines
2020-03-30
rustc -> rustc_middle part 1
Mazdak Farrokhzad
-1024
/
+0
2020-03-26
Make librustc compile.
Camille GILLOT
-1
/
+1
2020-03-26
Make QueryDescription parameter a type.
Camille GILLOT
-1
/
+2
2020-03-24
normalize some imports, prefer direct ones.
Mazdak Farrokhzad
-2
/
+3
2020-03-19
rustc: use LocalDefId instead of DefIndex in HirId.
Eduard-Mihai Burtescu
-35
/
+0
2020-03-19
rustc: rename DefId::to_local to expect_local and use it instead of LocalDefI...
Eduard-Mihai Burtescu
-1
/
+1
2020-03-16
use direct imports for `rustc::{lint, session}`.
Mazdak Farrokhzad
-1
/
+1
2020-03-06
fix various typos
Matthias Krüger
-1
/
+1
2020-03-04
cover some more nearby cases
Ralf Jung
-1
/
+1
2020-02-29
Rename `syntax` to `rustc_ast` in source code
Vadim Petrochenkov
-1
/
+1
2020-02-26
clarify operator precedence
Matthias Krüger
-1
/
+1
2020-02-21
Auto merge of #69281 - nnethercote:inline-some-encoding-decoding-methods, r=C...
bors
-0
/
+1
2020-02-19
Add an abstraction for custom query caches
John Kåre Alsaker
-15
/
+17
2020-02-19
Inline some encoding and decoding methods.
Nicholas Nethercote
-0
/
+1
2020-02-15
Treat NodeIs as pure values for incremental compilation
John Kåre Alsaker
-24
/
+1
2020-02-10
self-profile: Support arguments for generic_activities.
Michael Woerister
-2
/
+4
2020-01-10
nix syntax::errors & prefer rustc_errors over errors
Mazdak Farrokhzad
-1
/
+1
2020-01-09
Change -Z time event naming scheme and make them generic activities
John Kåre Alsaker
-3
/
+3
2020-01-05
Remove rustc_hir reexports in rustc::hir.
Mazdak Farrokhzad
-3
/
+2
2020-01-05
Use self profile infrastructure for -Z time and -Z time-passes
John Kåre Alsaker
-16
/
+14
2020-01-02
Normalize `syntax::source_map` imports.
Mazdak Farrokhzad
-1
/
+1
2020-01-01
Rename `syntax_pos` to `rustc_span` in source code
Vadim Petrochenkov
-2
/
+2
2019-12-22
Format the world
Mark Rousskov
-118
/
+104
2019-11-06
Rollup merge of #65776 - nnethercote:rename-LocalInternedString-and-more, r=e...
Mazdak Farrokhzad
-1
/
+1
2019-11-02
Convert `x.as_str().to_string()` to `x.to_string()` where possible.
Nicholas Nethercote
-1
/
+1
2019-11-01
`Span` cannot represent `span.hi < span.lo`
Vadim Petrochenkov
-5
/
+0
2019-10-18
rustc: arena-allocate the slice in `ty::GenericsPredicate`, not the whole str...
Eduard-Mihai Burtescu
-3
/
+4
2019-10-03
Remove -Zprofile-queries
Mark Rousskov
-1
/
+1
2019-09-29
remove indexed_vec re-export from rustc_data_structures
csmoe
-1
/
+1
2019-09-18
Fix backticks in documentation
Joshua Groves
-1
/
+1
2019-09-07
Apply suggestions from code review
Alexander Regueiro
-8
/
+4
2019-09-07
Aggregation of cosmetic changes made during work on REPL PRs: librustc
Alexander Regueiro
-109
/
+110
2019-08-27
Add default serialization for `Ident`s
Matthew Jasper
-2
/
+23
2019-08-23
incremental: Do not rely on default transparency when decoding syntax contexts
Vadim Petrochenkov
-10
/
+10
2019-08-15
hygiene: `ExpnInfo` -> `ExpnData`
Vadim Petrochenkov
-34
/
+34
2019-08-15
hygiene: Merge `ExpnInfo` and `InternalExpnData`
Vadim Petrochenkov
-2
/
+2
2019-08-15
hygiene: Remove `Option`s from functions returning `ExpnInfo`
Vadim Petrochenkov
-11
/
+7
2019-08-15
syntax_pos: `NO_EXPANSION`/`SyntaxContext::empty()` -> `SyntaxContext::root()`
Vadim Petrochenkov
-2
/
+2
2019-08-12
Rollup merge of #62108 - Zoxc:sharded-queries, r=oli-obk
Mazdak Farrokhzad
-3
/
+3
2019-08-08
Use associated_type_bounds where applicable - closes #61738
Ilija Tovilo
-2
/
+1
2019-07-26
Use sharded maps for queries
John Kåre Alsaker
-3
/
+3
2019-07-25
Rollup merge of #60066 - sfackler:type-name, r=Centril
Mazdak Farrokhzad
-1
/
+1
2019-07-24
Stabilize the type_name intrinsic in core::any
Steven Fackler
-1
/
+1
2019-07-23
cleanup: Remove `extern crate serialize as rustc_serialize`s
Vadim Petrochenkov
-1
/
+1
2019-07-19
hygiene: Tweak naming some more
Vadim Petrochenkov
-3
/
+3
2019-07-19
Adjust other names after the `Mark` renaming
Vadim Petrochenkov
-1
/
+1
2019-07-19
libsyntax: Remove `Mark` into `ExpnId`
Vadim Petrochenkov
-3
/
+3
2019-07-11
Fix failing tests
Vadim Petrochenkov
-2
/
+3
2019-07-11
hygiene: Introduce a helper method for creating new expansions
Vadim Petrochenkov
-23
/
+22
2019-07-05
Rollup merge of #62169 - Zoxc:store-query-results, r=eddyb
Mazdak Farrokhzad
-19
/
+13
[next]