#![feature(
associated_type_defaults,
box_patterns,
closure_track_caller,
if_let_guard,
let_chains,
map_try_insert,
min_specialization,
never_type,
rustc_private,
unwrap_infallible,
new_range_api
)]
extern crate rustc_ast;
extern crate rustc_data_structures;
extern crate rustc_errors;
extern crate rustc_abi;
extern crate rustc_hir;
extern crate rustc_index;
extern crate rustc_macros;
extern crate rustc_middle;
extern crate rustc_serialize;
extern crate rustc_span;
extern crate rustc_target;
extern crate rustc_type_ir;
extern crate self as flux_middle;
pub mod big_int;
pub mod cstore;
pub mod def_id;
pub mod fhir;
pub mod global_env;
pub mod pretty;
pub mod queries;
pub mod rty;
mod sort_of;
use std::sync::LazyLock;
use flux_arc_interner::List;
use flux_config as config;
use flux_macros::fluent_messages;
pub use flux_rustc_bridge::def_id_to_string;
use flux_rustc_bridge::{
mir::{LocalDecls, PlaceElem},
ty::{self, GenericArgsExt},
};
use flux_syntax::surface::{self, NodeId};
use global_env::GlobalEnv;
use liquid_fixpoint::ThyFunc;
use queries::QueryResult;
use rty::VariantIdx;
use rustc_data_structures::{
fx::FxIndexMap,
unord::{UnordMap, UnordSet},
};
use rustc_hir::OwnerId;
use rustc_macros::extension;
use rustc_span::{
Symbol,
def_id::{DefId, LocalDefId},
symbol::Ident,
};
use rustc_target::abi::FieldIdx;
fluent_messages! { "../locales/en-US.ftl" }
pub struct TheoryFunc {
pub name: Symbol,
pub sort: rty::PolyFuncSort,
pub itf: liquid_fixpoint::ThyFunc,
}
pub static THEORY_FUNCS: LazyLock<UnordMap<liquid_fixpoint::ThyFunc, TheoryFunc>> =
LazyLock::new(|| {
use rty::{BvSize, Sort::*};
liquid_fixpoint::ThyFunc::ALL
.into_iter()
.filter_map(|func| {
let func = TheoryFunc {
name: Symbol::intern(name_of_thy_func(func)?),
itf: func,
sort: sort_of_thy_func(func)?,
};
Some(func)
})
.chain([
TheoryFunc {
name: Symbol::intern("bv_zero_extend_32_to_64"),
itf: liquid_fixpoint::ThyFunc::BvZeroExtend(32),
sort: rty::PolyFuncSort::new(
List::empty(),
rty::FuncSort::new(
vec![BitVec(BvSize::Fixed(32))],
BitVec(BvSize::Fixed(64)),
),
),
},
TheoryFunc {
name: Symbol::intern("bv_sign_extend_32_to_64"),
itf: liquid_fixpoint::ThyFunc::BvSignExtend(32),
sort: rty::PolyFuncSort::new(
List::empty(),
rty::FuncSort::new(
vec![BitVec(BvSize::Fixed(32))],
BitVec(BvSize::Fixed(64)),
),
),
},
])
.map(|func| (func.itf, func))
.collect()
});
pub fn name_of_thy_func(func: liquid_fixpoint::ThyFunc) -> Option<&'static str> {
let name = match func {
ThyFunc::BvZeroExtend(_) | ThyFunc::BvSignExtend(_) => return None,
ThyFunc::StrLen => "str_len",
ThyFunc::IntToBv32 => "bv_int_to_bv32",
ThyFunc::Bv32ToInt => "bv_bv32_to_int",
ThyFunc::IntToBv64 => "bv_int_to_bv64",
ThyFunc::Bv64ToInt => "bv_bv64_to_int",
ThyFunc::BvUge => "bv_uge",
ThyFunc::BvSge => "bv_sge",
ThyFunc::BvUdiv => "bv_udiv",
ThyFunc::BvSdiv => "bv_sdiv",
ThyFunc::BvUmod => "bv_umod",
ThyFunc::BvSmod => "bv_smod",
ThyFunc::BvSrem => "bv_srem",
ThyFunc::BvUrem => "bv_urem",
ThyFunc::BvLshr => "bv_lshr",
ThyFunc::BvAshr => "bv_ashr",
ThyFunc::BvAnd => "bv_and",
ThyFunc::BvOr => "bv_or",
ThyFunc::BvXor => "bv_xor",
ThyFunc::BvNot => "bv_not",
ThyFunc::BvAdd => "bv_add",
ThyFunc::BvNeg => "bv_neg",
ThyFunc::BvSub => "bv_sub",
ThyFunc::BvMul => "bv_mul",
ThyFunc::BvShl => "bv_shl",
ThyFunc::BvUle => "bv_ule",
ThyFunc::BvSle => "bv_sle",
ThyFunc::BvUgt => "bv_ugt",
ThyFunc::BvSgt => "bv_sgt",
ThyFunc::BvUlt => "bv_ult",
ThyFunc::BvSlt => "bv_slt",
ThyFunc::SetEmpty => "set_empty",
ThyFunc::SetSng => "set_singleton",
ThyFunc::SetCup => "set_union",
ThyFunc::SetMem => "set_is_in",
ThyFunc::MapDefault => "map_default",
ThyFunc::MapSelect => "map_select",
ThyFunc::MapStore => "map_store",
};
Some(name)
}
fn sort_of_thy_func(func: liquid_fixpoint::ThyFunc) -> Option<rty::PolyFuncSort> {
use rty::{
BvSize, ParamSort,
Sort::{self, *},
SortCtor::*,
SortParamKind,
};
let param0 = ParamSort::from_u32(0);
let param1 = ParamSort::from_u32(1);
let bv_param0 = BvSize::Param(ParamSort::from_u32(0));
let sort = match func {
ThyFunc::BvZeroExtend(_) | ThyFunc::BvSignExtend(_) => return None,
ThyFunc::StrLen => {
rty::PolyFuncSort::new(List::empty(), rty::FuncSort::new(vec![rty::Sort::Str], Int))
}
ThyFunc::IntToBv32 => {
rty::PolyFuncSort::new(
List::empty(),
rty::FuncSort::new(vec![rty::Sort::Int], BitVec(BvSize::Fixed(32))),
)
}
ThyFunc::Bv32ToInt => {
rty::PolyFuncSort::new(
List::empty(),
rty::FuncSort::new(vec![BitVec(BvSize::Fixed(32))], Int),
)
}
ThyFunc::IntToBv64 => {
rty::PolyFuncSort::new(
List::empty(),
rty::FuncSort::new(vec![rty::Sort::Int], BitVec(BvSize::Fixed(64))),
)
}
ThyFunc::Bv64ToInt => {
rty::PolyFuncSort::new(
List::empty(),
rty::FuncSort::new(vec![BitVec(BvSize::Fixed(64))], Int),
)
}
ThyFunc::BvUdiv
| ThyFunc::BvSdiv
| ThyFunc::BvUmod
| ThyFunc::BvSmod
| ThyFunc::BvSrem
| ThyFunc::BvUrem
| ThyFunc::BvLshr
| ThyFunc::BvAshr
| ThyFunc::BvAnd
| ThyFunc::BvOr
| ThyFunc::BvXor
| ThyFunc::BvAdd
| ThyFunc::BvSub
| ThyFunc::BvMul
| ThyFunc::BvShl => {
rty::PolyFuncSort::new(
List::singleton(SortParamKind::BvSize),
rty::FuncSort::new(vec![BitVec(bv_param0), BitVec(bv_param0)], BitVec(bv_param0)),
)
}
ThyFunc::BvNot | ThyFunc::BvNeg => {
rty::PolyFuncSort::new(
List::singleton(SortParamKind::BvSize),
rty::FuncSort::new(vec![BitVec(bv_param0)], BitVec(bv_param0)),
)
}
ThyFunc::BvUgt
| ThyFunc::BvSgt
| ThyFunc::BvUlt
| ThyFunc::BvSlt
| ThyFunc::BvSle
| ThyFunc::BvUge
| ThyFunc::BvSge
| ThyFunc::BvUle => {
rty::PolyFuncSort::new(
List::singleton(SortParamKind::BvSize),
rty::FuncSort::new(vec![BitVec(bv_param0), BitVec(bv_param0)], Bool),
)
}
ThyFunc::SetEmpty => {
rty::PolyFuncSort::new(
List::singleton(SortParamKind::Sort),
rty::FuncSort::new(vec![Int], Sort::app(Set, List::singleton(Var(param0)))),
)
}
ThyFunc::SetSng => {
rty::PolyFuncSort::new(
List::singleton(SortParamKind::Sort),
rty::FuncSort::new(vec![Var(param0)], Sort::app(Set, List::singleton(Var(param0)))),
)
}
ThyFunc::SetCup => {
rty::PolyFuncSort::new(
List::singleton(SortParamKind::Sort),
rty::FuncSort::new(
vec![
Sort::app(Set, List::singleton(Var(param0))),
Sort::app(Set, List::singleton(Var(param0))),
],
Sort::app(Set, List::singleton(Var(param0))),
),
)
}
ThyFunc::SetMem => {
rty::PolyFuncSort::new(
List::singleton(SortParamKind::Sort),
rty::FuncSort::new(
vec![Var(param0), Sort::app(Set, List::singleton(Var(param0)))],
Bool,
),
)
}
ThyFunc::MapDefault => {
rty::PolyFuncSort::new(
List::from_arr([SortParamKind::Sort, SortParamKind::Sort]),
rty::FuncSort::new(
vec![Var(param1)],
Sort::app(Map, List::from_arr([Var(param0), Var(param1)])),
),
)
}
ThyFunc::MapSelect => {
rty::PolyFuncSort::new(
List::from_arr([SortParamKind::Sort, SortParamKind::Sort]),
rty::FuncSort::new(
vec![Sort::app(Map, List::from_arr([Var(param0), Var(param1)])), Var(param0)],
Var(param1),
),
)
}
ThyFunc::MapStore => {
rty::PolyFuncSort::new(
List::from_arr([SortParamKind::Sort, SortParamKind::Sort]),
rty::FuncSort::new(
vec![
Sort::app(Map, List::from_arr([Var(param0), Var(param1)])),
Var(param0),
Var(param1),
],
Sort::app(Map, List::from_arr([Var(param0), Var(param1)])),
),
)
}
};
Some(sort)
}
#[derive(Default)]
pub struct Specs {
pub fn_sigs: UnordMap<OwnerId, surface::FnSpec>,
pub constants: UnordMap<OwnerId, surface::ConstantInfo>,
pub structs: UnordMap<OwnerId, surface::StructDef>,
pub traits: UnordMap<OwnerId, surface::Trait>,
pub impls: UnordMap<OwnerId, surface::Impl>,
pub enums: UnordMap<OwnerId, surface::EnumDef>,
pub flux_items_by_parent: FxIndexMap<OwnerId, Vec<surface::Item>>,
pub ty_aliases: UnordMap<OwnerId, Option<surface::TyAlias>>,
pub ignores: UnordMap<LocalDefId, fhir::Ignored>,
pub trusted: UnordMap<LocalDefId, fhir::Trusted>,
pub trusted_impl: UnordMap<LocalDefId, fhir::Trusted>,
pub infer_opts: UnordMap<LocalDefId, config::PartialInferOpts>,
pub should_fail: UnordSet<LocalDefId>,
dummy_extern: UnordSet<LocalDefId>,
extern_id_to_local_id: UnordMap<DefId, LocalDefId>,
local_id_to_extern_id: UnordMap<LocalDefId, DefId>,
}
impl Specs {
pub fn insert_extern_spec_id_mapping(
&mut self,
local_id: LocalDefId,
extern_id: DefId,
) -> Result<(), ExternSpecMappingErr> {
#[expect(
clippy::disallowed_methods,
reason = "we are inserting the extern spec mapping and we want to ensure it doesn't point to a local item"
)]
if let Some(local) = extern_id.as_local() {
return Err(ExternSpecMappingErr::IsLocal(local));
}
if let Err(err) = self.extern_id_to_local_id.try_insert(extern_id, local_id) {
return Err(ExternSpecMappingErr::Dup(*err.entry.get()));
}
self.local_id_to_extern_id.insert(local_id, extern_id);
Ok(())
}
pub fn insert_dummy(&mut self, owner_id: OwnerId) {
self.dummy_extern.insert(owner_id.def_id);
}
}
pub enum ExternSpecMappingErr {
IsLocal(LocalDefId),
Dup(LocalDefId),
}
#[derive(Default)]
pub struct ResolverOutput {
pub path_res_map: UnordMap<NodeId, fhir::PartialRes>,
pub impl_trait_res_map: UnordMap<NodeId, LocalDefId>,
pub param_res_map: UnordMap<NodeId, (fhir::ParamId, fhir::ParamKind)>,
pub implicit_params: UnordMap<NodeId, Vec<(Ident, NodeId)>>,
pub sort_path_res_map: UnordMap<NodeId, fhir::SortRes>,
pub expr_path_res_map: UnordMap<NodeId, fhir::ExprRes>,
pub qualifier_res_map: UnordMap<OwnerId, Vec<def_id::FluxLocalDefId>>,
}
#[extension(pub trait PlaceExt)]
impl flux_rustc_bridge::mir::Place {
fn ty(&self, genv: GlobalEnv, local_decls: &LocalDecls) -> QueryResult<PlaceTy> {
self.projection
.iter()
.try_fold(PlaceTy::from_ty(local_decls[self.local].ty.clone()), |place_ty, elem| {
place_ty.projection_ty(genv, *elem)
})
}
fn behind_raw_ptr(&self, genv: GlobalEnv, local_decls: &LocalDecls) -> QueryResult<bool> {
let mut place_ty = PlaceTy::from_ty(local_decls[self.local].ty.clone());
for elem in &self.projection {
if let (PlaceElem::Deref, ty::TyKind::RawPtr(..)) = (elem, place_ty.ty.kind()) {
return Ok(true);
}
place_ty = place_ty.projection_ty(genv, *elem)?;
}
Ok(false)
}
}
#[derive(Debug)]
pub struct PlaceTy {
pub ty: ty::Ty,
pub variant_index: Option<VariantIdx>,
}
impl PlaceTy {
fn from_ty(ty: ty::Ty) -> PlaceTy {
PlaceTy { ty, variant_index: None }
}
fn projection_ty(&self, genv: GlobalEnv, elem: PlaceElem) -> QueryResult<PlaceTy> {
if self.variant_index.is_some() && !matches!(elem, PlaceElem::Field(..)) {
Err(query_bug!("cannot use non field projection on downcasted place"))?;
}
let place_ty = match elem {
PlaceElem::Deref => PlaceTy::from_ty(self.ty.deref()),
PlaceElem::Field(fld) => PlaceTy::from_ty(self.field_ty(genv, fld)?),
PlaceElem::Downcast(_, variant_idx) => {
PlaceTy { ty: self.ty.clone(), variant_index: Some(variant_idx) }
}
PlaceElem::Index(_) | PlaceElem::ConstantIndex { .. } => {
if let ty::TyKind::Array(ty, _) | ty::TyKind::Slice(ty) = self.ty.kind() {
PlaceTy::from_ty(ty.clone())
} else {
return Err(query_bug!("cannot use non field projection on downcasted place"));
}
}
};
Ok(place_ty)
}
fn field_ty(&self, genv: GlobalEnv, f: FieldIdx) -> QueryResult<ty::Ty> {
match self.ty.kind() {
ty::TyKind::Adt(adt_def, args) => {
let variant_def = match self.variant_index {
None => adt_def.non_enum_variant(),
Some(variant_index) => {
assert!(adt_def.is_enum());
adt_def.variant(variant_index)
}
};
let field_def = &variant_def.fields[f];
let ty = genv.lower_type_of(field_def.did)?;
Ok(ty.subst(args))
}
ty::TyKind::Tuple(tys) => Ok(tys[f.index()].clone()),
ty::TyKind::Closure(_, args) => Ok(args.as_closure().upvar_tys()[f.index()].clone()),
_ => Err(query_bug!("extracting field of non-tuple non-adt non-closure: {self:?}")),
}
}
}