Files
rust/compiler/rustc_codegen_ssa/src/traits/misc.rs

23 lines
905 B
Rust
Raw Normal View History

use super::BackendTypes;
2020-03-29 17:19:48 +02:00
use rustc_data_structures::fx::FxHashMap;
2020-03-29 16:41:09 +02:00
use rustc_middle::mir::mono::CodegenUnit;
use rustc_middle::ty::{self, Instance, Ty};
use rustc_session::Session;
2018-09-13 14:58:19 +02:00
use std::cell::RefCell;
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;
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;
fn eh_personality(&self) -> Self::Value;
fn sess(&self) -> &Session;
2020-03-14 12:41:32 +01:00
fn codegen_unit(&self) -> &'tcx CodegenUnit<'tcx>;
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);
fn create_used_variable(&self);
2018-09-13 14:58:19 +02:00
}