mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 20:47:48 +00:00

Rollup of 7 pull requests Successful merges: - #137314 (change definitely unproductive cycles to error) - #137701 (Convert `ShardedHashMap` to use `hashbrown::HashTable`) - #138269 (uefi: fs: Implement FileType, FilePermissions and FileAttr) - #138331 (Use `RUSTC_LINT_FLAGS` more) - #138345 (Some autodiff cleanups) - #138387 (intrinsics: remove unnecessary leading underscore from argument names) - #138390 (fix incorrect tracing log) r? `@ghost` `@rustbot` modify labels: rollup
44 lines
1.3 KiB
Rust
44 lines
1.3 KiB
Rust
// tidy-alphabetical-start
|
|
#![cfg_attr(doc, recursion_limit = "256")] // FIXME(nnethercote): will be removed by #124141
|
|
#![feature(assert_matches)]
|
|
#![feature(associated_type_defaults)]
|
|
#![feature(box_patterns)]
|
|
#![feature(exact_size_is_empty)]
|
|
#![feature(file_buffered)]
|
|
#![feature(let_chains)]
|
|
#![feature(never_type)]
|
|
#![feature(try_blocks)]
|
|
// tidy-alphabetical-end
|
|
|
|
use rustc_middle::ty;
|
|
|
|
// Please change the public `use` directives cautiously, as they might be used by external tools.
|
|
// See issue #120130.
|
|
pub use self::drop_flag_effects::{
|
|
DropFlagState, drop_flag_effects_for_function_entry, drop_flag_effects_for_location,
|
|
move_path_children_matching, on_all_children_bits, on_lookup_result_bits,
|
|
};
|
|
pub use self::framework::{
|
|
Analysis, Backward, Direction, EntryStates, Forward, GenKill, JoinSemiLattice, MaybeReachable,
|
|
Results, ResultsCursor, ResultsVisitor, fmt, graphviz, lattice, visit_results,
|
|
};
|
|
use self::move_paths::MoveData;
|
|
|
|
pub mod debuginfo;
|
|
mod drop_flag_effects;
|
|
mod errors;
|
|
mod framework;
|
|
pub mod impls;
|
|
pub mod move_paths;
|
|
pub mod points;
|
|
pub mod rustc_peek;
|
|
mod un_derefer;
|
|
pub mod value_analysis;
|
|
|
|
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|
|
|
|
pub struct MoveDataTypingEnv<'tcx> {
|
|
pub move_data: MoveData<'tcx>,
|
|
pub typing_env: ty::TypingEnv<'tcx>,
|
|
}
|