Files
rust/compiler/rustc_mir_dataflow/src/impls/mod.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
725 B
Rust
Raw Normal View History

//! Dataflow analyses are built upon some interpretation of the
//! bitvectors attached to each basic block, represented via a
//! zero-sized structure.
mod borrowed_locals;
mod initialized;
2020-03-25 16:19:14 -07:00
mod liveness;
mod storage_liveness;
pub use self::borrowed_locals::borrowed_locals;
2021-10-29 00:00:00 +00:00
pub use self::borrowed_locals::MaybeBorrowedLocals;
pub use self::initialized::{
DefinitelyInitializedPlaces, EverInitializedPlaces, MaybeInitializedPlaces,
MaybeUninitializedPlaces,
};
2020-03-25 16:19:14 -07:00
pub use self::liveness::MaybeLiveLocals;
2022-05-09 20:12:03 -04:00
pub use self::liveness::MaybeTransitiveLiveLocals;
2023-07-16 13:11:10 +00:00
pub use self::liveness::TransferFunction as LivenessTransferFunction;
pub use self::storage_liveness::{MaybeRequiresStorage, MaybeStorageDead, MaybeStorageLive};