2018-11-24 16:30:29 +01:00
|
|
|
use super::BackendTypes;
|
2019-05-23 13:10:11 -05:00
|
|
|
use rustc::mir::mono::CodegenUnit;
|
2018-09-20 15:47:22 +02:00
|
|
|
use rustc::session::Session;
|
2018-09-13 14:58:19 +02:00
|
|
|
use rustc::ty::{self, Instance, Ty};
|
2019-12-24 05:02:53 +01:00
|
|
|
use rustc_data_structures::fx::FxHashMap;
|
2018-09-13 14:58:19 +02:00
|
|
|
use std::cell::RefCell;
|
2018-09-21 16:13:15 +02:00
|
|
|
use std::sync::Arc;
|
2018-09-13 14:58:19 +02:00
|
|
|
|
2018-11-24 16:30:29 +01:00
|
|
|
pub trait MiscMethods<'tcx>: BackendTypes {
|
2018-09-13 14:58:19 +02:00
|
|
|
fn vtables(
|
|
|
|
|
&self,
|
2018-12-04 13:28:06 +02:00
|
|
|
) -> &RefCell<FxHashMap<(Ty<'tcx>, Option<ty::PolyExistentialTraitRef<'tcx>>), Self::Value>>;
|
2018-09-20 15:47:22 +02:00
|
|
|
fn check_overflow(&self) -> bool;
|
2019-10-13 12:05:40 +02:00
|
|
|
fn get_fn(&self, instance: Instance<'tcx>) -> Self::Function;
|
|
|
|
|
fn get_fn_addr(&self, instance: Instance<'tcx>) -> Self::Value;
|
2018-09-20 15:47:22 +02:00
|
|
|
fn eh_personality(&self) -> Self::Value;
|
|
|
|
|
fn sess(&self) -> &Session;
|
2018-09-21 16:13:15 +02:00
|
|
|
fn codegen_unit(&self) -> &Arc<CodegenUnit<'tcx>>;
|
2018-09-26 17:00:01 +02:00
|
|
|
fn used_statics(&self) -> &RefCell<Vec<Self::Value>>;
|
2019-10-13 11:28:19 +02:00
|
|
|
fn set_frame_pointer_elimination(&self, llfn: Self::Function);
|
|
|
|
|
fn apply_target_cpu_attr(&self, llfn: Self::Function);
|
2018-09-26 17:00:01 +02:00
|
|
|
fn create_used_variable(&self);
|
2018-09-13 14:58:19 +02:00
|
|
|
}
|