2018-11-24 15:30:29 +00:00
|
|
|
use std::cell::RefCell;
|
2024-07-28 22:13:50 +00:00
|
|
|
|
2020-03-29 15:19:48 +00:00
|
|
|
use rustc_data_structures::fx::FxHashMap;
|
2020-03-29 14:41:09 +00:00
|
|
|
use rustc_middle::mir::mono::CodegenUnit;
|
|
|
|
use rustc_middle::ty::{self, Instance, Ty};
|
2020-03-11 11:49:08 +00:00
|
|
|
use rustc_session::Session;
|
2024-07-28 22:13:50 +00:00
|
|
|
|
2018-09-13 12:58:19 +00:00
|
|
|
use super::BackendTypes;
|
|
|
|
|
2018-11-24 15:30:29 +00:00
|
|
|
pub trait MiscMethods<'tcx>: BackendTypes {
|
2018-09-13 12:58:19 +00:00
|
|
|
fn vtables(
|
|
|
|
&self,
|
2018-12-04 11:28:06 +00:00
|
|
|
) -> &RefCell<FxHashMap<(Ty<'tcx>, Option<ty::PolyExistentialTraitRef<'tcx>>), Self::Value>>;
|
2024-03-30 12:01:57 +00:00
|
|
|
fn apply_vcall_visibility_metadata(
|
|
|
|
&self,
|
|
|
|
_ty: Ty<'tcx>,
|
|
|
|
_poly_trait_ref: Option<ty::PolyExistentialTraitRef<'tcx>>,
|
|
|
|
_vtable: Self::Value,
|
|
|
|
) {
|
|
|
|
}
|
2019-10-13 10:05:40 +00:00
|
|
|
fn get_fn(&self, instance: Instance<'tcx>) -> Self::Function;
|
|
|
|
fn get_fn_addr(&self, instance: Instance<'tcx>) -> Self::Value;
|
2018-09-20 13:47:22 +00:00
|
|
|
fn eh_personality(&self) -> Self::Value;
|
|
|
|
fn sess(&self) -> &Session;
|
2020-03-14 11:41:32 +00:00
|
|
|
fn codegen_unit(&self) -> &'tcx CodegenUnit<'tcx>;
|
2021-06-26 20:53:35 +00:00
|
|
|
fn set_frame_pointer_type(&self, llfn: Self::Function);
|
2019-10-13 09:28:19 +00:00
|
|
|
fn apply_target_cpu_attr(&self, llfn: Self::Function);
|
2024-09-10 23:59:50 +00:00
|
|
|
/// Declares the extern "C" main function for the entry point. Returns None if the symbol
|
|
|
|
/// already exists.
|
2020-09-18 11:06:53 +00:00
|
|
|
fn declare_c_main(&self, fn_type: Self::Type) -> Option<Self::Function>;
|
2018-09-13 12:58:19 +00:00
|
|
|
}
|