1
Fork 0

Make THIR data structures public

This commit is contained in:
LeSeulArtichaut 2021-03-07 15:09:00 +01:00
parent 61365c0625
commit 2a34428253
5 changed files with 62 additions and 62 deletions

View file

@ -1,7 +1,6 @@
use crate::build; use crate::build;
use crate::build::scope::DropKind; use crate::build::scope::DropKind;
use crate::thir::cx::build_thir; use crate::thir::{build_thir, Arena, BindingMode, Expr, LintLevel, Pat, PatKind};
use crate::thir::{Arena, BindingMode, Expr, LintLevel, Pat, PatKind};
use rustc_attr::{self as attr, UnwindAttr}; use rustc_attr::{self as attr, UnwindAttr};
use rustc_errors::ErrorReported; use rustc_errors::ErrorReported;
use rustc_hir as hir; use rustc_hir as hir;

View file

@ -20,7 +20,7 @@ extern crate rustc_middle;
mod build; mod build;
mod lints; mod lints;
mod thir; pub mod thir;
use rustc_middle::ty::query::Providers; use rustc_middle::ty::query::Providers;

View file

@ -14,7 +14,7 @@ use rustc_middle::middle::region;
use rustc_middle::mir::interpret::{LitToConstError, LitToConstInput}; use rustc_middle::mir::interpret::{LitToConstError, LitToConstInput};
use rustc_middle::ty::{self, Ty, TyCtxt}; use rustc_middle::ty::{self, Ty, TyCtxt};
crate fn build_thir<'thir, 'tcx>( pub fn build_thir<'thir, 'tcx>(
tcx: TyCtxt<'tcx>, tcx: TyCtxt<'tcx>,
owner_def: ty::WithOptConstParam<LocalDefId>, owner_def: ty::WithOptConstParam<LocalDefId>,
arena: &'thir Arena<'thir, 'tcx>, arena: &'thir Arena<'thir, 'tcx>,

View file

@ -18,36 +18,37 @@ use rustc_target::abi::VariantIdx;
use rustc_target::asm::InlineAsmRegOrRegClass; use rustc_target::asm::InlineAsmRegOrRegClass;
crate mod constant; crate mod constant;
crate mod cx; crate mod cx;
pub use cx::build_thir;
crate mod pattern; crate mod pattern;
crate use self::pattern::PatTyProj; pub use self::pattern::{Ascription, BindingMode, FieldPat, Pat, PatKind, PatRange, PatTyProj};
crate use self::pattern::{BindingMode, FieldPat, Pat, PatKind, PatRange};
mod arena; mod arena;
crate use arena::Arena; pub use arena::Arena;
mod util; mod util;
#[derive(Copy, Clone, Debug)] #[derive(Copy, Clone, Debug)]
crate enum LintLevel { pub enum LintLevel {
Inherited, Inherited,
Explicit(hir::HirId), Explicit(hir::HirId),
} }
#[derive(Debug)] #[derive(Debug)]
crate struct Block<'thir, 'tcx> { pub struct Block<'thir, 'tcx> {
crate targeted_by_break: bool, pub targeted_by_break: bool,
crate region_scope: region::Scope, pub region_scope: region::Scope,
crate opt_destruction_scope: Option<region::Scope>, pub opt_destruction_scope: Option<region::Scope>,
crate span: Span, pub span: Span,
crate stmts: &'thir [Stmt<'thir, 'tcx>], pub stmts: &'thir [Stmt<'thir, 'tcx>],
crate expr: Option<&'thir Expr<'thir, 'tcx>>, pub expr: Option<&'thir Expr<'thir, 'tcx>>,
crate safety_mode: BlockSafety, pub safety_mode: BlockSafety,
} }
#[derive(Copy, Clone, Debug)] #[derive(Copy, Clone, Debug)]
crate enum BlockSafety { pub enum BlockSafety {
Safe, Safe,
ExplicitUnsafe(hir::HirId), ExplicitUnsafe(hir::HirId),
PushUnsafe, PushUnsafe,
@ -55,13 +56,13 @@ crate enum BlockSafety {
} }
#[derive(Debug)] #[derive(Debug)]
crate struct Stmt<'thir, 'tcx> { pub struct Stmt<'thir, 'tcx> {
crate kind: StmtKind<'thir, 'tcx>, pub kind: StmtKind<'thir, 'tcx>,
crate opt_destruction_scope: Option<region::Scope>, pub opt_destruction_scope: Option<region::Scope>,
} }
#[derive(Debug)] #[derive(Debug)]
crate enum StmtKind<'thir, 'tcx> { pub enum StmtKind<'thir, 'tcx> {
Expr { Expr {
/// scope for this statement; may be used as lifetime of temporaries /// scope for this statement; may be used as lifetime of temporaries
scope: region::Scope, scope: region::Scope,
@ -111,23 +112,23 @@ rustc_data_structures::static_assert_size!(Expr<'_, '_>, 144);
/// example, method calls and overloaded operators are absent: they are /// example, method calls and overloaded operators are absent: they are
/// expected to be converted into `Expr::Call` instances. /// expected to be converted into `Expr::Call` instances.
#[derive(Debug)] #[derive(Debug)]
crate struct Expr<'thir, 'tcx> { pub struct Expr<'thir, 'tcx> {
/// type of this expression /// type of this expression
crate ty: Ty<'tcx>, pub ty: Ty<'tcx>,
/// lifetime of this expression if it should be spilled into a /// lifetime of this expression if it should be spilled into a
/// temporary; should be None only if in a constant context /// temporary; should be None only if in a constant context
crate temp_lifetime: Option<region::Scope>, pub temp_lifetime: Option<region::Scope>,
/// span of the expression in the source /// span of the expression in the source
crate span: Span, pub span: Span,
/// kind of expression /// kind of expression
crate kind: ExprKind<'thir, 'tcx>, pub kind: ExprKind<'thir, 'tcx>,
} }
#[derive(Debug)] #[derive(Debug)]
crate enum ExprKind<'thir, 'tcx> { pub enum ExprKind<'thir, 'tcx> {
Scope { Scope {
region_scope: region::Scope, region_scope: region::Scope,
lint_level: LintLevel, lint_level: LintLevel,
@ -316,41 +317,41 @@ crate enum ExprKind<'thir, 'tcx> {
} }
#[derive(Debug)] #[derive(Debug)]
crate struct FieldExpr<'thir, 'tcx> { pub struct FieldExpr<'thir, 'tcx> {
crate name: Field, pub name: Field,
crate expr: &'thir Expr<'thir, 'tcx>, pub expr: &'thir Expr<'thir, 'tcx>,
} }
#[derive(Debug)] #[derive(Debug)]
crate struct FruInfo<'thir, 'tcx> { pub struct FruInfo<'thir, 'tcx> {
crate base: &'thir Expr<'thir, 'tcx>, pub base: &'thir Expr<'thir, 'tcx>,
crate field_types: &'thir [Ty<'tcx>], pub field_types: &'thir [Ty<'tcx>],
} }
#[derive(Debug)] #[derive(Debug)]
crate struct Arm<'thir, 'tcx> { pub struct Arm<'thir, 'tcx> {
crate pattern: Pat<'tcx>, pub pattern: Pat<'tcx>,
crate guard: Option<Guard<'thir, 'tcx>>, pub guard: Option<Guard<'thir, 'tcx>>,
crate body: &'thir Expr<'thir, 'tcx>, pub body: &'thir Expr<'thir, 'tcx>,
crate lint_level: LintLevel, pub lint_level: LintLevel,
crate scope: region::Scope, pub scope: region::Scope,
crate span: Span, pub span: Span,
} }
#[derive(Debug)] #[derive(Debug)]
crate enum Guard<'thir, 'tcx> { pub enum Guard<'thir, 'tcx> {
If(&'thir Expr<'thir, 'tcx>), If(&'thir Expr<'thir, 'tcx>),
IfLet(Pat<'tcx>, &'thir Expr<'thir, 'tcx>), IfLet(Pat<'tcx>, &'thir Expr<'thir, 'tcx>),
} }
#[derive(Copy, Clone, Debug)] #[derive(Copy, Clone, Debug)]
crate enum LogicalOp { pub enum LogicalOp {
And, And,
Or, Or,
} }
#[derive(Debug)] #[derive(Debug)]
crate enum InlineAsmOperand<'thir, 'tcx> { pub enum InlineAsmOperand<'thir, 'tcx> {
In { In {
reg: InlineAsmRegOrRegClass, reg: InlineAsmRegOrRegClass,
expr: &'thir Expr<'thir, 'tcx>, expr: &'thir Expr<'thir, 'tcx>,

View file

@ -40,22 +40,22 @@ crate enum PatternError {
} }
#[derive(Copy, Clone, Debug, PartialEq)] #[derive(Copy, Clone, Debug, PartialEq)]
crate enum BindingMode { pub enum BindingMode {
ByValue, ByValue,
ByRef(BorrowKind), ByRef(BorrowKind),
} }
#[derive(Clone, Debug, PartialEq)] #[derive(Clone, Debug, PartialEq)]
crate struct FieldPat<'tcx> { pub struct FieldPat<'tcx> {
crate field: Field, pub field: Field,
crate pattern: Pat<'tcx>, pub pattern: Pat<'tcx>,
} }
#[derive(Clone, Debug, PartialEq)] #[derive(Clone, Debug, PartialEq)]
crate struct Pat<'tcx> { pub struct Pat<'tcx> {
crate ty: Ty<'tcx>, pub ty: Ty<'tcx>,
crate span: Span, pub span: Span,
crate kind: Box<PatKind<'tcx>>, pub kind: Box<PatKind<'tcx>>,
} }
impl<'tcx> Pat<'tcx> { impl<'tcx> Pat<'tcx> {
@ -65,8 +65,8 @@ impl<'tcx> Pat<'tcx> {
} }
#[derive(Copy, Clone, Debug, PartialEq)] #[derive(Copy, Clone, Debug, PartialEq)]
crate struct PatTyProj<'tcx> { pub struct PatTyProj<'tcx> {
crate user_ty: CanonicalUserType<'tcx>, pub user_ty: CanonicalUserType<'tcx>,
} }
impl<'tcx> PatTyProj<'tcx> { impl<'tcx> PatTyProj<'tcx> {
@ -92,8 +92,8 @@ impl<'tcx> PatTyProj<'tcx> {
} }
#[derive(Copy, Clone, Debug, PartialEq)] #[derive(Copy, Clone, Debug, PartialEq)]
crate struct Ascription<'tcx> { pub struct Ascription<'tcx> {
crate user_ty: PatTyProj<'tcx>, pub user_ty: PatTyProj<'tcx>,
/// Variance to use when relating the type `user_ty` to the **type of the value being /// Variance to use when relating the type `user_ty` to the **type of the value being
/// matched**. Typically, this is `Variance::Covariant`, since the value being matched must /// matched**. Typically, this is `Variance::Covariant`, since the value being matched must
/// have a type that is some subtype of the ascribed type. /// have a type that is some subtype of the ascribed type.
@ -112,12 +112,12 @@ crate struct Ascription<'tcx> {
/// requires that `&'static str <: T_x`, where `T_x` is the type of `x`. Really, we should /// requires that `&'static str <: T_x`, where `T_x` is the type of `x`. Really, we should
/// probably be checking for a `PartialEq` impl instead, but this preserves the behavior /// probably be checking for a `PartialEq` impl instead, but this preserves the behavior
/// of the old type-check for now. See #57280 for details. /// of the old type-check for now. See #57280 for details.
crate variance: ty::Variance, pub variance: ty::Variance,
crate user_ty_span: Span, pub user_ty_span: Span,
} }
#[derive(Clone, Debug, PartialEq)] #[derive(Clone, Debug, PartialEq)]
crate enum PatKind<'tcx> { pub enum PatKind<'tcx> {
Wild, Wild,
AscribeUserType { AscribeUserType {
@ -195,10 +195,10 @@ crate enum PatKind<'tcx> {
} }
#[derive(Copy, Clone, Debug, PartialEq)] #[derive(Copy, Clone, Debug, PartialEq)]
crate struct PatRange<'tcx> { pub struct PatRange<'tcx> {
crate lo: &'tcx ty::Const<'tcx>, pub lo: &'tcx ty::Const<'tcx>,
crate hi: &'tcx ty::Const<'tcx>, pub hi: &'tcx ty::Const<'tcx>,
crate end: RangeEnd, pub end: RangeEnd,
} }
impl<'tcx> fmt::Display for Pat<'tcx> { impl<'tcx> fmt::Display for Pat<'tcx> {