21
21
22
22
#![ feature( box_syntax) ]
23
23
24
+ use std:: any:: Any ;
24
25
use std:: io:: prelude:: * ;
25
26
use std:: io:: { self , Cursor } ;
26
27
use std:: fs:: File ;
27
28
use std:: path:: Path ;
29
+ use std:: sync:: mpsc;
28
30
29
31
use owning_ref:: { ErasedBoxRef , OwningRef } ;
30
32
use ar:: { Archive , Builder , Header } ;
@@ -35,13 +37,12 @@ use syntax::symbol::Symbol;
35
37
use rustc:: hir:: def_id:: LOCAL_CRATE ;
36
38
use rustc:: session:: Session ;
37
39
use rustc:: session:: config:: { CrateType , OutputFilenames } ;
38
- use rustc:: ty:: { CrateAnalysis , TyCtxt } ;
40
+ use rustc:: ty:: TyCtxt ;
39
41
use rustc:: ty:: maps:: Providers ;
40
42
use rustc:: middle:: cstore:: EncodedMetadata ;
41
43
use rustc:: middle:: cstore:: MetadataLoader as MetadataLoaderTrait ;
42
- use rustc:: dep_graph:: DepGraph ;
44
+ use rustc:: dep_graph:: { DepGraph , DepNode , DepKind } ;
43
45
use rustc_back:: target:: Target ;
44
- use rustc_incremental:: IncrementalHashesMap ;
45
46
use link:: { build_link_meta, out_filename} ;
46
47
47
48
pub trait TransCrate {
@@ -50,12 +51,11 @@ pub trait TransCrate {
50
51
type TranslatedCrate ;
51
52
52
53
fn metadata_loader ( ) -> Box < MetadataLoaderTrait > ;
53
- fn provide ( _providers : & mut Providers ) ;
54
+ fn provide_local ( _providers : & mut Providers ) ;
55
+ fn provide_extern ( _providers : & mut Providers ) ;
54
56
fn trans_crate < ' a , ' tcx > (
55
57
tcx : TyCtxt < ' a , ' tcx , ' tcx > ,
56
- analysis : CrateAnalysis ,
57
- incr_hashes_map : IncrementalHashesMap ,
58
- output_filenames : & OutputFilenames
58
+ rx : mpsc:: Receiver < Box < Any + Send > >
59
59
) -> Self :: OngoingCrateTranslation ;
60
60
fn join_trans (
61
61
trans : Self :: OngoingCrateTranslation ,
@@ -77,15 +77,17 @@ impl TransCrate for DummyTransCrate {
77
77
box DummyMetadataLoader ( ( ) )
78
78
}
79
79
80
- fn provide ( _providers : & mut Providers ) {
81
- bug ! ( "DummyTransCrate::provide" ) ;
80
+ fn provide_local ( _providers : & mut Providers ) {
81
+ bug ! ( "DummyTransCrate::provide_local" ) ;
82
+ }
83
+
84
+ fn provide_extern ( _providers : & mut Providers ) {
85
+ bug ! ( "DummyTransCrate::provide_extern" ) ;
82
86
}
83
87
84
88
fn trans_crate < ' a , ' tcx > (
85
89
_tcx : TyCtxt < ' a , ' tcx , ' tcx > ,
86
- _analysis : CrateAnalysis ,
87
- _incr_hashes_map : IncrementalHashesMap ,
88
- _output_filenames : & OutputFilenames
90
+ _rx : mpsc:: Receiver < Box < Any + Send > >
89
91
) -> Self :: OngoingCrateTranslation {
90
92
bug ! ( "DummyTransCrate::trans_crate" ) ;
91
93
}
@@ -176,16 +178,18 @@ impl TransCrate for MetadataOnlyTransCrate {
176
178
box NoLlvmMetadataLoader
177
179
}
178
180
179
- fn provide ( _providers : & mut Providers ) { }
181
+ fn provide_local ( _providers : & mut Providers ) { }
182
+ fn provide_extern ( _providers : & mut Providers ) { }
180
183
181
184
fn trans_crate < ' a , ' tcx > (
182
185
tcx : TyCtxt < ' a , ' tcx , ' tcx > ,
183
- analysis : CrateAnalysis ,
184
- incr_hashes_map : IncrementalHashesMap ,
185
- _output_filenames : & OutputFilenames ,
186
+ _rx : mpsc:: Receiver < Box < Any + Send > >
186
187
) -> Self :: OngoingCrateTranslation {
187
- let link_meta = build_link_meta ( & incr_hashes_map) ;
188
- let exported_symbols = :: find_exported_symbols ( tcx, & analysis. reachable ) ;
188
+ let crate_hash = tcx. dep_graph
189
+ . fingerprint_of ( & DepNode :: new_no_params ( DepKind :: Krate ) )
190
+ . unwrap ( ) ;
191
+ let link_meta = build_link_meta ( crate_hash) ;
192
+ let exported_symbols = :: find_exported_symbols ( tcx) ;
189
193
let ( metadata, _hashes) = tcx. encode_metadata ( & link_meta, & exported_symbols) ;
190
194
191
195
OngoingCrateTranslation {
0 commit comments