Skip to content

Commit e130ccc

Browse files
committed
Fix for upstream changes
1 parent d703552 commit e130ccc

File tree

7 files changed

+41
-37
lines changed

7 files changed

+41
-37
lines changed

src/Cargo.lock

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/librustc_trans/base.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ use syntax::ast;
9494

9595
use mir::lvalue::Alignment;
9696

97+
pub use rustc_trans_utils::find_exported_symbols;
98+
9799
pub struct StatRecorder<'a, 'tcx: 'a> {
98100
ccx: &'a CrateContext<'a, 'tcx>,
99101
name: Option<String>,
@@ -887,7 +889,6 @@ fn iter_globals(llmod: llvm::ModuleRef) -> ValueIter {
887889
pub fn trans_crate<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
888890
rx: mpsc::Receiver<Box<Any + Send>>)
889891
-> OngoingCrateTranslation {
890-
use rustc_trans_utils::find_exported_symbols;
891892

892893
check_for_rustc_errors_attr(tcx);
893894

src/librustc_trans/lib.rs

+11-8
Original file line numberDiff line numberDiff line change
@@ -138,12 +138,13 @@ mod type_;
138138
mod type_of;
139139
mod value;
140140

141-
use rustc::ty::{self, TyCtxt, CrateAnalysis};
141+
use std::sync::mpsc;
142+
use std::any::Any;
143+
use rustc::ty::{self, TyCtxt};
142144
use rustc::session::Session;
143145
use rustc::session::config::OutputFilenames;
144146
use rustc::middle::cstore::MetadataLoader;
145147
use rustc::dep_graph::DepGraph;
146-
use rustc_incremental::IncrementalHashesMap;
147148

148149
pub struct LlvmTransCrate(());
149150

@@ -162,17 +163,19 @@ impl rustc_trans_utils::trans_crate::TransCrate for LlvmTransCrate {
162163
box metadata::LlvmMetadataLoader
163164
}
164165

165-
fn provide(providers: &mut ty::maps::Providers) {
166-
back::symbol_names::provide(providers);
166+
fn provide_local(providers: &mut ty::maps::Providers) {
167+
provide_local(providers);
168+
}
169+
170+
fn provide_extern(providers: &mut ty::maps::Providers) {
171+
provide_extern(providers);
167172
}
168173

169174
fn trans_crate<'a, 'tcx>(
170175
tcx: TyCtxt<'a, 'tcx, 'tcx>,
171-
analysis: CrateAnalysis,
172-
incr_hashes_map: IncrementalHashesMap,
173-
output_filenames: &OutputFilenames
176+
rx: mpsc::Receiver<Box<Any + Send>>
174177
) -> Self::OngoingCrateTranslation {
175-
base::trans_crate(tcx, analysis, incr_hashes_map, output_filenames)
178+
base::trans_crate(tcx, rx)
176179
}
177180

178181
fn join_trans(

src/librustc_trans_utils/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ syntax = { path = "../libsyntax" }
1919
syntax_pos = { path = "../libsyntax_pos" }
2020
rustc = { path = "../librustc" }
2121
rustc_back = { path = "../librustc_back" }
22-
rustc_incremental = { path = "../librustc_incremental" }

src/librustc_trans_utils/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ extern crate log;
3838
#[macro_use]
3939
extern crate rustc;
4040
extern crate rustc_back;
41-
extern crate rustc_incremental;
4241
extern crate syntax;
4342
extern crate syntax_pos;
4443

4544
use rustc::ty::TyCtxt;
4645
use rustc::hir;
46+
use rustc::hir::def_id::LOCAL_CRATE;
4747
use rustc::hir::map as hir_map;
4848
use rustc::util::nodemap::NodeSet;
4949

@@ -60,8 +60,8 @@ pub mod trans_crate;
6060
///
6161
/// This list is later used by linkers to determine the set of symbols needed to
6262
/// be exposed from a dynamic library and it's also encoded into the metadata.
63-
pub fn find_exported_symbols(tcx: TyCtxt, reachable: &NodeSet) -> NodeSet {
64-
reachable.iter().cloned().filter(|&id| {
63+
pub fn find_exported_symbols(tcx: TyCtxt) -> NodeSet {
64+
tcx.reachable_set(LOCAL_CRATE).0.iter().cloned().filter(|&id| {
6565
// Next, we want to ignore some FFI functions that are not exposed from
6666
// this crate. Reachable FFI functions can be lumped into two
6767
// categories:

src/librustc_trans_utils/link.rs

+3-5
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
use rustc::ich::Fingerprint;
1112
use rustc::session::config::{self, OutputFilenames, Input, OutputType};
1213
use rustc::session::Session;
1314
use rustc::middle::cstore::{self, LinkMeta};
14-
use rustc::dep_graph::{DepKind, DepNode};
1515
use rustc::hir::svh::Svh;
16-
use rustc_incremental::IncrementalHashesMap;
1716
use std::path::{Path, PathBuf};
1817
use syntax::ast;
1918
use syntax_pos::Span;
@@ -51,10 +50,9 @@ fn is_writeable(p: &Path) -> bool {
5150
}
5251
}
5352

54-
pub fn build_link_meta(incremental_hashes_map: &IncrementalHashesMap) -> LinkMeta {
55-
let krate_dep_node = &DepNode::new_no_params(DepKind::Krate);
53+
pub fn build_link_meta(crate_hash: Fingerprint) -> LinkMeta {
5654
let r = LinkMeta {
57-
crate_hash: Svh::new(incremental_hashes_map[krate_dep_node].to_smaller_hash()),
55+
crate_hash: Svh::new(crate_hash.to_smaller_hash()),
5856
};
5957
info!("{:?}", r);
6058
return r;

src/librustc_trans_utils/trans_crate.rs

+22-18
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@
2121

2222
#![feature(box_syntax)]
2323

24+
use std::any::Any;
2425
use std::io::prelude::*;
2526
use std::io::{self, Cursor};
2627
use std::fs::File;
2728
use std::path::Path;
29+
use std::sync::mpsc;
2830

2931
use owning_ref::{ErasedBoxRef, OwningRef};
3032
use ar::{Archive, Builder, Header};
@@ -35,13 +37,12 @@ use syntax::symbol::Symbol;
3537
use rustc::hir::def_id::LOCAL_CRATE;
3638
use rustc::session::Session;
3739
use rustc::session::config::{CrateType, OutputFilenames};
38-
use rustc::ty::{CrateAnalysis, TyCtxt};
40+
use rustc::ty::TyCtxt;
3941
use rustc::ty::maps::Providers;
4042
use rustc::middle::cstore::EncodedMetadata;
4143
use rustc::middle::cstore::MetadataLoader as MetadataLoaderTrait;
42-
use rustc::dep_graph::DepGraph;
44+
use rustc::dep_graph::{DepGraph, DepNode, DepKind};
4345
use rustc_back::target::Target;
44-
use rustc_incremental::IncrementalHashesMap;
4546
use link::{build_link_meta, out_filename};
4647

4748
pub trait TransCrate {
@@ -50,12 +51,11 @@ pub trait TransCrate {
5051
type TranslatedCrate;
5152

5253
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);
5456
fn trans_crate<'a, 'tcx>(
5557
tcx: TyCtxt<'a, 'tcx, 'tcx>,
56-
analysis: CrateAnalysis,
57-
incr_hashes_map: IncrementalHashesMap,
58-
output_filenames: &OutputFilenames
58+
rx: mpsc::Receiver<Box<Any + Send>>
5959
) -> Self::OngoingCrateTranslation;
6060
fn join_trans(
6161
trans: Self::OngoingCrateTranslation,
@@ -77,15 +77,17 @@ impl TransCrate for DummyTransCrate {
7777
box DummyMetadataLoader(())
7878
}
7979

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");
8286
}
8387

8488
fn trans_crate<'a, 'tcx>(
8589
_tcx: TyCtxt<'a, 'tcx, 'tcx>,
86-
_analysis: CrateAnalysis,
87-
_incr_hashes_map: IncrementalHashesMap,
88-
_output_filenames: &OutputFilenames
90+
_rx: mpsc::Receiver<Box<Any + Send>>
8991
) -> Self::OngoingCrateTranslation {
9092
bug!("DummyTransCrate::trans_crate");
9193
}
@@ -176,16 +178,18 @@ impl TransCrate for MetadataOnlyTransCrate {
176178
box NoLlvmMetadataLoader
177179
}
178180

179-
fn provide(_providers: &mut Providers) {}
181+
fn provide_local(_providers: &mut Providers) {}
182+
fn provide_extern(_providers: &mut Providers) {}
180183

181184
fn trans_crate<'a, 'tcx>(
182185
tcx: TyCtxt<'a, 'tcx, 'tcx>,
183-
analysis: CrateAnalysis,
184-
incr_hashes_map: IncrementalHashesMap,
185-
_output_filenames: &OutputFilenames,
186+
_rx: mpsc::Receiver<Box<Any + Send>>
186187
) -> 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);
189193
let (metadata, _hashes) = tcx.encode_metadata(&link_meta, &exported_symbols);
190194

191195
OngoingCrateTranslation {

0 commit comments

Comments
 (0)