Files
rust/src/librustc_codegen_ssa/traits/misc.rs

25 lines
975 B
Rust
Raw Normal View History

use super::BackendTypes;
use rustc::session::Session;
2018-09-13 14:58:19 +02:00
use rustc::ty::{self, Instance, Ty};
use rustc::util::nodemap::FxHashMap;
use rustc_mir::monomorphize::partitioning::CodegenUnit;
2018-09-13 14:58:19 +02:00
use std::cell::RefCell;
use std::sync::Arc;
2018-09-13 14:58:19 +02:00
pub trait MiscMethods<'tcx>: BackendTypes {
2018-09-13 14:58:19 +02:00
fn vtables(
&self,
) -> &RefCell<FxHashMap<(Ty<'tcx>, Option<ty::PolyExistentialTraitRef<'tcx>>), Self::Value>>;
fn check_overflow(&self) -> bool;
fn instances(&self) -> &RefCell<FxHashMap<Instance<'tcx>, Self::Value>>;
2018-09-13 14:58:19 +02:00
fn get_fn(&self, instance: Instance<'tcx>) -> Self::Value;
fn eh_personality(&self) -> Self::Value;
fn eh_unwind_resume(&self) -> Self::Value;
fn sess(&self) -> &Session;
fn codegen_unit(&self) -> &Arc<CodegenUnit<'tcx>>;
fn used_statics(&self) -> &RefCell<Vec<Self::Value>>;
fn set_frame_pointer_elimination(&self, llfn: Self::Value);
fn apply_target_cpu_attr(&self, llfn: Self::Value);
fn create_used_variable(&self);
2018-09-13 14:58:19 +02:00
}