2020-09-23 15:13:49 +02:00
//! This module provides the [CommentWriter] which makes it possible
//! to add comments to the written cranelift ir.
//!
//! # Example
//!
//! ```clif
//! test compile
//! target x86_64
//!
//! function u0:0(i64, i64, i64) system_v {
//! ; symbol _ZN119_$LT$example..IsNotEmpty$u20$as$u20$mini_core..FnOnce$LT$$LP$$RF$$u27$a$u20$$RF$$u27$b$u20$$u5b$u16$u5d$$C$$RP$$GT$$GT$9call_once17he85059d5e6a760a0E
//! ; instance Instance { def: Item(DefId(0/0:29 ~ example[8787]::{{impl}}[0]::call_once[0])), substs: [ReErased, ReErased] }
//! ; sig ([IsNotEmpty, (&&[u16],)]; c_variadic: false)->(u8, u8)
//!
//! ; ssa {_2: NOT_SSA, _4: NOT_SSA, _0: NOT_SSA, _3: (empty), _1: NOT_SSA}
//! ; msg loc.idx param pass mode ssa flags ty
//! ; ret _0 = v0 ByRef NOT_SSA (u8, u8)
//! ; arg _1 = v1 ByRef NOT_SSA IsNotEmpty
//! ; arg _2.0 = v2 ByVal(types::I64) NOT_SSA &&[u16]
//!
//! ss0 = explicit_slot 0 ; _1: IsNotEmpty size=0 align=1,8
//! ss1 = explicit_slot 8 ; _2: (&&[u16],) size=8 align=8,8
//! ss2 = explicit_slot 8 ; _4: (&&[u16],) size=8 align=8,8
//! sig0 = (i64, i64, i64) system_v
//! sig1 = (i64, i64, i64) system_v
//! fn0 = colocated u0:6 sig1 ; Instance { def: Item(DefId(0/0:31 ~ example[8787]::{{impl}}[1]::call_mut[0])), substs: [ReErased, ReErased] }
//!
//! block0(v0: i64, v1: i64, v2: i64):
//! v3 = stack_addr.i64 ss0
//! v4 = stack_addr.i64 ss1
//! store v2, v4
//! v5 = stack_addr.i64 ss2
//! jump block1
//!
//! block1:
//! nop
//! ; _3 = &mut _1
//! ; _4 = _2
//! v6 = load.i64 v4
//! store v6, v5
//! ;
//! ; _0 = const mini_core::FnMut::call_mut(move _3, move _4)
//! v7 = load.i64 v5
//! call fn0(v0, v3, v7)
//! jump block2
//!
//! block2:
//! nop
//! ;
//! ; return
//! return
//! }
//! ```
2018-07-14 11:59:42 +02:00
use std ::fmt ;
2019-12-24 12:40:18 +01:00
use cranelift_codegen ::{
2019-05-14 16:12:58 +02:00
entity ::SecondaryMap ,
2020-03-24 13:41:19 +01:00
ir ::{ entities ::AnyEntity , function ::DisplayFunctionAnnotations } ,
2019-05-14 16:12:58 +02:00
write ::{ FuncWriter , PlainWriter } ,
} ;
2018-07-20 13:51:34 +02:00
2020-05-29 07:25:28 +03:00
use rustc_session ::config ::OutputType ;
2018-07-30 16:57:40 +02:00
use crate ::prelude ::* ;
2018-07-14 11:59:42 +02:00
2018-12-21 21:42:29 +01:00
#[ derive(Debug) ]
2020-03-27 12:14:45 +01:00
pub ( crate ) struct CommentWriter {
2018-12-21 21:42:29 +01:00
global_comments : Vec < String > ,
2020-04-05 14:01:02 +02:00
entity_comments : FxHashMap < AnyEntity , String > ,
2018-12-21 21:42:29 +01:00
}
impl CommentWriter {
2020-03-27 12:14:45 +01:00
pub ( crate ) fn new < ' tcx > ( tcx : TyCtxt < ' tcx > , instance : Instance < ' tcx > ) -> Self {
2019-12-18 20:26:41 +01:00
let global_comments = if cfg! ( debug_assertions ) {
2019-11-28 20:34:55 +01:00
vec! [
2020-07-17 19:15:33 +02:00
format! ( " symbol {} " , tcx . symbol_name ( instance ) . name ) ,
2018-12-21 21:42:29 +01:00
format! ( " instance {:?} " , instance ) ,
2019-08-31 22:58:09 +05:30
format! (
" sig {:?} " ,
tcx . normalize_erasing_late_bound_regions (
ParamEnv ::reveal_all ( ) ,
2019-12-05 21:00:57 +01:00
& crate ::abi ::fn_sig_for_fn_abi ( tcx , instance )
2019-08-31 22:58:09 +05:30
)
) ,
2018-12-21 21:42:29 +01:00
String ::new ( ) ,
2019-11-28 20:34:55 +01:00
]
} else {
vec! [ ]
} ;
CommentWriter {
global_comments ,
2020-04-05 14:01:02 +02:00
entity_comments : FxHashMap ::default ( ) ,
2020-03-20 12:18:40 +01:00
}
}
}
#[ cfg(debug_assertions) ]
impl CommentWriter {
2020-03-27 12:14:45 +01:00
pub ( crate ) fn add_global_comment < S : Into < String > > ( & mut self , comment : S ) {
2020-03-20 12:18:40 +01:00
self . global_comments . push ( comment . into ( ) ) ;
}
2020-03-27 12:14:45 +01:00
pub ( crate ) fn add_comment < S : Into < String > + AsRef < str > , E : Into < AnyEntity > > (
2020-03-20 12:18:40 +01:00
& mut self ,
entity : E ,
comment : S ,
) {
use std ::collections ::hash_map ::Entry ;
match self . entity_comments . entry ( entity . into ( ) ) {
Entry ::Occupied ( mut occ ) = > {
occ . get_mut ( ) . push ( '\n' ) ;
2020-03-24 13:41:19 +01:00
occ . get_mut ( ) . push_str ( comment . as_ref ( ) ) ;
2020-03-20 12:18:40 +01:00
}
Entry ::Vacant ( vac ) = > {
2020-03-24 13:41:19 +01:00
vac . insert ( comment . into ( ) ) ;
2020-03-20 12:18:40 +01:00
}
2018-12-21 21:42:29 +01:00
}
}
}
2018-07-14 11:59:42 +02:00
2019-06-16 11:13:49 +02:00
impl FuncWriter for & '_ CommentWriter {
2018-11-15 10:55:40 +01:00
fn write_preamble (
& mut self ,
w : & mut dyn fmt ::Write ,
func : & Function ,
reg_info : Option < & isa ::RegInfo > ,
) -> Result < bool , fmt ::Error > {
2018-12-21 21:42:29 +01:00
for comment in & self . global_comments {
if ! comment . is_empty ( ) {
writeln! ( w , " ; {} " , comment ) ? ;
} else {
writeln! ( w , " " ) ? ;
}
}
if ! self . global_comments . is_empty ( ) {
writeln! ( w , " " ) ? ;
}
2018-12-27 10:59:01 +01:00
self . super_preamble ( w , func , reg_info )
}
fn write_entity_definition (
& mut self ,
w : & mut dyn fmt ::Write ,
_func : & Function ,
entity : AnyEntity ,
2019-05-31 10:56:55 +02:00
value : & dyn fmt ::Display ,
2018-12-27 10:59:01 +01:00
) -> fmt ::Result {
write! ( w , " {} = {} " , entity , value ) ? ;
if let Some ( comment ) = self . entity_comments . get ( & entity ) {
writeln! ( w , " ; {} " , comment . replace ( '\n' , " \n ; " ) )
} else {
writeln! ( w , " " )
}
2018-11-15 10:55:40 +01:00
}
2020-02-14 18:23:29 +01:00
fn write_block_header (
2018-11-15 10:55:40 +01:00
& mut self ,
w : & mut dyn fmt ::Write ,
func : & Function ,
isa : Option < & dyn isa ::TargetIsa > ,
2020-02-14 18:23:29 +01:00
block : Block ,
2018-11-15 10:55:40 +01:00
indent : usize ,
) -> fmt ::Result {
2020-02-14 18:23:29 +01:00
PlainWriter . write_block_header ( w , func , isa , block , indent )
2018-11-15 10:55:40 +01:00
}
2018-07-14 11:59:42 +02:00
fn write_instruction (
& mut self ,
w : & mut dyn fmt ::Write ,
func : & Function ,
2018-09-27 19:19:16 +02:00
aliases : & SecondaryMap < Value , Vec < Value > > ,
2018-07-14 11:59:42 +02:00
isa : Option < & dyn isa ::TargetIsa > ,
inst : Inst ,
indent : usize ,
) -> fmt ::Result {
2018-09-05 19:43:42 +02:00
PlainWriter . write_instruction ( w , func , aliases , isa , inst , indent ) ? ;
2020-03-20 12:18:40 +01:00
if let Some ( comment ) = self . entity_comments . get ( & inst . into ( ) ) {
2018-07-14 12:21:45 +02:00
writeln! ( w , " ; {} " , comment . replace ( '\n' , " \n ; " ) ) ? ;
}
2018-07-20 13:51:34 +02:00
Ok ( ( ) )
2018-07-14 11:59:42 +02:00
}
}
2018-07-20 13:51:34 +02:00
2018-12-28 17:07:40 +01:00
#[ cfg(debug_assertions) ]
2020-10-01 10:38:23 +02:00
impl < M : Module > FunctionCx < '_ , '_ , M > {
2020-03-27 12:14:45 +01:00
pub ( crate ) fn add_global_comment < S : Into < String > > ( & mut self , comment : S ) {
2020-03-20 12:18:40 +01:00
self . clif_comments . add_global_comment ( comment ) ;
2018-08-15 16:17:59 +02:00
}
2020-03-27 12:14:45 +01:00
pub ( crate ) fn add_comment < S : Into < String > + AsRef < str > , E : Into < AnyEntity > > (
2019-02-21 15:06:09 +01:00
& mut self ,
entity : E ,
comment : S ,
) {
2020-08-28 12:10:48 +02:00
self . clif_comments . add_comment ( entity , comment ) ;
2018-07-20 13:51:34 +02:00
}
2019-05-14 16:12:58 +02:00
}
2020-03-27 12:14:45 +01:00
pub ( crate ) fn write_clif_file < ' tcx > (
2019-06-16 11:13:49 +02:00
tcx : TyCtxt < ' tcx > ,
2019-05-14 16:12:58 +02:00
postfix : & str ,
2020-06-16 13:27:24 +02:00
isa : Option < & dyn cranelift_codegen ::isa ::TargetIsa > ,
2019-05-14 16:12:58 +02:00
instance : Instance < ' tcx > ,
2020-06-16 13:27:24 +02:00
context : & cranelift_codegen ::Context ,
2019-05-14 16:12:58 +02:00
mut clif_comments : & CommentWriter ,
) {
2020-06-16 13:27:24 +02:00
use std ::io ::Write ;
2020-08-28 12:10:48 +02:00
if ! cfg! ( debug_assertions )
& & ! tcx
. sess
. opts
. output_types
. contains_key ( & OutputType ::LlvmAssembly )
{
2020-05-29 07:25:28 +03:00
return ;
}
2020-06-16 13:27:24 +02:00
let value_ranges = isa . map ( | isa | {
context
. build_value_labels_ranges ( isa )
. expect ( " value location ranges " )
} ) ;
2019-05-14 16:12:58 +02:00
2020-07-17 19:15:33 +02:00
let symbol_name = tcx . symbol_name ( instance ) . name ;
2019-05-14 16:12:58 +02:00
let clif_file_name = format! (
" {}/{}__{}.{}.clif " ,
concat! ( env! ( " CARGO_MANIFEST_DIR " ) , " /target/out/clif " ) ,
tcx . crate_name ( LOCAL_CRATE ) ,
symbol_name ,
postfix ,
) ;
2018-12-21 21:42:29 +01:00
2019-05-14 16:12:58 +02:00
let mut clif = String ::new ( ) ;
2019-12-24 12:40:18 +01:00
cranelift_codegen ::write ::decorate_function (
2019-05-14 16:12:58 +02:00
& mut clif_comments ,
& mut clif ,
2020-06-16 13:27:24 +02:00
& context . func ,
2019-05-14 16:12:58 +02:00
& DisplayFunctionAnnotations {
2019-08-31 22:58:09 +05:30
isa : Some ( & * crate ::build_isa (
tcx . sess , true , /* PIC doesn't matter here */
) ) ,
2020-06-16 13:27:24 +02:00
value_ranges : value_ranges . as_ref ( ) ,
2019-05-14 16:12:58 +02:00
} ,
)
. unwrap ( ) ;
2020-08-08 16:14:11 +02:00
let res : std ::io ::Result < ( ) > = try {
let mut file = std ::fs ::File ::create ( clif_file_name ) ? ;
let target_triple = crate ::target_triple ( tcx . sess ) ;
writeln! ( file , " test compile " ) ? ;
writeln! ( file , " set is_pic " ) ? ;
writeln! ( file , " set enable_simd " ) ? ;
writeln! ( file , " target {} haswell " , target_triple ) ? ;
writeln! ( file , " " ) ? ;
file . write ( clif . as_bytes ( ) ) ? ;
} ;
if let Err ( err ) = res {
tcx . sess . warn ( & format! ( " err writing clif file: {} " , err ) ) ;
2019-05-14 16:12:58 +02:00
}
}
2018-12-21 21:42:29 +01:00
2020-10-01 10:38:23 +02:00
impl < M : Module > fmt ::Debug for FunctionCx < '_ , '_ , M > {
2020-04-05 13:48:26 +02:00
fn fmt ( & self , f : & mut fmt ::Formatter < '_ > ) -> fmt ::Result {
2019-05-14 16:12:58 +02:00
writeln! ( f , " {:?} " , self . instance . substs ) ? ;
writeln! ( f , " {:?} " , self . local_map ) ? ;
2018-12-21 21:42:29 +01:00
let mut clif = String ::new ( ) ;
2019-12-24 12:40:18 +01:00
::cranelift_codegen ::write ::decorate_function (
2019-02-21 15:06:09 +01:00
& mut & self . clif_comments ,
& mut clif ,
& self . bcx . func ,
2019-10-04 14:57:07 +02:00
& DisplayFunctionAnnotations ::default ( ) ,
2019-02-21 15:06:09 +01:00
)
. unwrap ( ) ;
2019-05-14 16:12:58 +02:00
writeln! ( f , " \n {} " , clif )
2018-12-21 21:42:29 +01:00
}
2018-07-20 13:51:34 +02:00
}