@@ -1938,31 +1938,41 @@ fn monomorphic_fn(ccx: @crate_ctxt, fn_id: ast::def_id, real_substs: [ty::t],
1938
1938
1939
1939
let map_node = ccx. tcx . items . get ( fn_id. node ) ;
1940
1940
// Get the path so that we can create a symbol
1941
- let ( pt, name) = alt map_node {
1941
+ let ( pt, name, span ) = alt map_node {
1942
1942
ast_map : : node_item ( i, pt) {
1943
1943
alt i. node {
1944
1944
ast:: item_res ( _, _, _, dtor_id, _, _) {
1945
1945
item_ty = ty:: node_id_to_type ( ccx. tcx , dtor_id) ;
1946
1946
}
1947
1947
_ { }
1948
1948
}
1949
- ( pt, i. ident )
1949
+ ( pt, i. ident , i . span )
1950
1950
}
1951
- ast_map:: node_variant ( v, _ , pt) { ( pt, v. node . name ) }
1952
- ast_map:: node_method ( m, _, pt) { ( pt, m. ident ) }
1951
+ ast_map:: node_variant ( v, enm , pt) { ( pt, v. node . name , enm . span ) }
1952
+ ast_map:: node_method ( m, _, pt) { ( pt, m. ident , m . span ) }
1953
1953
ast_map:: node_native_item ( i, ast:: native_abi_rust_intrinsic, pt)
1954
- { ( pt, i. ident ) }
1954
+ { ( pt, i. ident , i . span ) }
1955
1955
ast_map:: node_native_item ( _, abi, _) {
1956
1956
// Natives don't have to be monomorphized.
1957
1957
ret { val : get_item_val ( ccx, fn_id. node ) ,
1958
1958
must_cast : true } ;
1959
1959
}
1960
- ast_map:: node_ctor ( nm, _, _, pt) { ( pt, nm) }
1960
+ ast_map:: node_ctor ( nm, _, _, pt) { ( pt, nm, ast_util :: dummy_sp ( ) ) }
1961
1961
_ { fail "unexpected node type" ; }
1962
1962
} ;
1963
1963
let mono_ty = ty:: subst_tps ( ccx. tcx , substs, item_ty) ;
1964
1964
let llfty = type_of_fn_from_ty ( ccx, mono_ty) ;
1965
1965
1966
+ let depth = option:: get_or_default ( ccx. monomorphizing . find ( fn_id) , 0 u) ;
1967
+ // Random cut-off -- code that needs to instantiate the same function
1968
+ // recursively more than ten times can probably safely be assumed to be
1969
+ // causing an infinite expansion.
1970
+ if depth > 10 u {
1971
+ ccx. sess . span_fatal (
1972
+ span, "overly deep expansion of inlined function" ) ;
1973
+ }
1974
+ ccx. monomorphizing . insert ( fn_id, depth + 1 u) ;
1975
+
1966
1976
let pt = * pt + [ path_name ( ccx. names ( name) ) ] ;
1967
1977
let s = mangle_exported_name ( ccx, pt, mono_ty) ;
1968
1978
let lldecl = decl_internal_cdecl_fn ( ccx. llmod , s, llfty) ;
@@ -2014,6 +2024,7 @@ fn monomorphic_fn(ccx: @crate_ctxt, fn_id: ast::def_id, real_substs: [ty::t],
2014
2024
}
2015
2025
}
2016
2026
}
2027
+ ccx. monomorphizing . insert ( fn_id, depth) ;
2017
2028
{ val: lldecl, must_cast: must_cast}
2018
2029
}
2019
2030
@@ -5022,6 +5033,7 @@ fn trans_crate(sess: session::session, crate: @ast::crate, tcx: ty::ctxt,
5022
5033
tydescs: ty:: new_ty_hash ( ) ,
5023
5034
external: util:: common:: new_def_hash ( ) ,
5024
5035
monomorphized: map:: hashmap ( hash_mono_id, { |a, b| a == b} ) ,
5036
+ monomorphizing: ast_util:: new_def_id_hash ( ) ,
5025
5037
type_use_cache: util:: common:: new_def_hash ( ) ,
5026
5038
vtables: map:: hashmap ( hash_mono_id, { |a, b| a == b} ) ,
5027
5039
const_cstr_cache: map:: str_hash ( ) ,
0 commit comments