about summary refs log tree commit diff
path: root/compiler/rustc_interface/src/passes.rs
AgeCommit message (Expand)AuthorLines
2024-06-22Inline write_dep_info querybjorn3-1/+1
2024-06-22Clarify visibility of several rustc_interface passesbjorn3-2/+2
2024-06-22Move has_errors_or_delayed_bugs check into start_codegenbjorn3-2/+9
2024-06-22Call check_for_rustc_errors_attr from start_codegenbjorn3-1/+38
2024-06-22Move almost all code from Queries::global_ctxt into passes::create_global_ctxtbjorn3-23/+68
2024-06-16Rename InstanceDef -> InstanceKindMichael Goulet-1/+1
2024-06-06Revert "Rollup merge of #124976 - petrochenkov:usedcrates, r=oli-obk"Rémy Rakic-1/+1
2024-06-05Make top-level `rustc_parse` functions fallible.Nicholas Nethercote-3/+5
2024-06-05Inline and remove `parse_crate{,_attrs}_from_{file,source_str}`.Nicholas Nethercote-6/+9
2024-06-03check_is_object_safe -> is_object_safeMichael Goulet-1/+1
2024-05-23Auto merge of #125434 - nnethercote:rm-more-extern-tracing, r=jackh726bors-0/+1
2024-05-23Remove `#[macro_use] extern crate tracing` from `rustc_interface`.Nicholas Nethercote-0/+1
2024-05-22rustc: Use `tcx.used_crates(())` moreVadim Petrochenkov-1/+1
2024-05-03Remove some low-value `use` renamings.Nicholas Nethercote-4/+2
2024-04-15Do check_coroutine_obligations once per typeck rootMichael Goulet-1/+3
2024-04-12linker: Remove laziness and caching from native search directory walksVadim Petrochenkov-1/+1
2024-04-12linker: Avoid some allocations in search directory iterationVadim Petrochenkov-1/+3
2024-04-08Ensure we do not accidentally insert new early aborts in the analysis passesOli Scherer-13/+12
2024-04-03Remove MIR unsafe checkMatthew Jasper-3/+0
2024-03-27Add a `CurrentGcx` type to let the deadlock handler access `TyCtxt`John Kåre Alsaker-0/+1
2024-03-11Revert "Auto merge of #122140 - oli-obk:track_errors13, r=davidtwco"Oli Scherer-18/+15
2024-03-11Run a single huge `par_body_owners` instead of many small ones after each other.Oli Scherer-14/+17
2024-03-11Never bail out early while running all the type check queriesOli Scherer-1/+1
2024-03-07Rollup merge of #121089 - oli-obk:create_def_feed, r=petrochenkovGuillaume Gomez-8/+10
2024-03-07Rollup merge of #122066 - mu001999:clean, r=oli-obkGuillaume Gomez-0/+5
2024-03-06Add proper cfgs for struct HirIdValidator used only with debug assertionsr0cky-0/+5
2024-03-05Avoid using feed_unit_query from within queriesOli Scherer-8/+8
2024-03-05Remove a use of feed_local_crate and make it fail if used within queriesOli Scherer-0/+2
2024-03-05Rename all `ParseSess` variables/fields/lifetimes as `psess`.Nicholas Nethercote-8/+8
2024-02-22Replace unnecessary `abort_if_errors`.Nicholas Nethercote-3/+1
2024-02-22Overhaul the handling of errors at the top-level.Nicholas Nethercote-6/+5
2024-02-22Adjust the `has_errors*` methods.Nicholas Nethercote-1/+1
2024-02-14clean up potential_query_instability with FxIndexMap and UnordMapyukang-5/+1
2024-02-09Fix `ErrorGuaranteed` unsoundness with stash/steal.Nicholas Nethercote-0/+4
2024-01-10Rename `{create,emit}_warning` as `{create,emit}_warn`.Nicholas Nethercote-1/+1
2024-01-05Stabilize THIR unsafeckMatthew Jasper-3/+3
2023-12-24Remove more `Session` methods that duplicate `DiagCtxt` methods.Nicholas Nethercote-4/+5
2023-12-24Remove `Session` methods that duplicate `DiagCtxt` methods.Nicholas Nethercote-11/+11
2023-12-18Rename `Session::span_diagnostic` as `Session::dcx`.Nicholas Nethercote-3/+3
2023-12-10remove redundant importssurechen-1/+1
2023-12-05rustc_interface: Address all `rustc::potential_query_instability` lintsMartin Nordholts-0/+7
2023-12-02Use `Session::diagnostic` in more places.Nicholas Nethercote-3/+1
2023-11-27Auto merge of #117584 - bjorn3:eager_output_filenames, r=b-naberbors-8/+9
2023-11-26Turn write_dep_info into a regular functionbjorn3-2/+1
2023-11-26Ensure macro expansion runs before writing the dep infobjorn3-0/+5
2023-11-26Feed the output filenames into the TyCtxtbjorn3-7/+5
2023-11-26Accept crate name instead of attributes in build_output_filenamesbjorn3-2/+1
2023-11-26merge `DefKind::Coroutine` into `DefKind::Closure`bohan-1/+1
2023-11-22Auto merge of #118086 - nnethercote:queries-cleanups, r=bjorn3bors-2/+2
2023-11-22Auto merge of #117928 - nnethercote:rustc_ast_pretty, r=fee1-deadbors-1/+1