Auto merge of #47494 - michaelwoerister:proc-macro-incremental, r=nikomatsakis

Don't include DefIndex in proc-macro registrar function symbol.

There can only ever be one registrar function per plugin or proc-macro crate, so adding the `DefIndex` to the function's symbol name does not serve a real purpose. Remove the `DefIndex` from the symbol name makes it stable across incremental compilation sessions.

This should fix issue #47292.
This commit is contained in:
bors 2018-01-19 04:45:22 +00:00
commit 10333dde82
8 changed files with 82 additions and 26 deletions

View file

@ -605,6 +605,11 @@ static HOST_COMPILETESTS: &[Test] = &[
mode: "compile-fail", mode: "compile-fail",
suite: "compile-fail-fulldeps", suite: "compile-fail-fulldeps",
}, },
Test {
path: "src/test/incremental-fulldeps",
mode: "incremental",
suite: "incremental-fulldeps",
},
Test { path: "src/test/run-make", mode: "run-make", suite: "run-make" }, Test { path: "src/test/run-make", mode: "run-make", suite: "run-make" },
Test { path: "src/test/rustdoc", mode: "rustdoc", suite: "rustdoc" }, Test { path: "src/test/rustdoc", mode: "rustdoc", suite: "rustdoc" },

View file

@ -11,7 +11,7 @@
pub use self::code_stats::{CodeStats, DataTypeKind, FieldInfo}; pub use self::code_stats::{CodeStats, DataTypeKind, FieldInfo};
pub use self::code_stats::{SizeKind, TypeSizeInfo, VariantInfo}; pub use self::code_stats::{SizeKind, TypeSizeInfo, VariantInfo};
use hir::def_id::{CrateNum, DefIndex}; use hir::def_id::CrateNum;
use ich::Fingerprint; use ich::Fingerprint;
use lint; use lint;
@ -558,18 +558,16 @@ impl Session {
/// Returns the symbol name for the registrar function, /// Returns the symbol name for the registrar function,
/// given the crate Svh and the function DefIndex. /// given the crate Svh and the function DefIndex.
pub fn generate_plugin_registrar_symbol(&self, disambiguator: CrateDisambiguator, pub fn generate_plugin_registrar_symbol(&self,
index: DefIndex) disambiguator: CrateDisambiguator)
-> String { -> String {
format!("__rustc_plugin_registrar__{}_{}", disambiguator.to_fingerprint().to_hex(), format!("__rustc_plugin_registrar_{}__", disambiguator.to_fingerprint().to_hex())
index.to_proc_macro_index())
} }
pub fn generate_derive_registrar_symbol(&self, disambiguator: CrateDisambiguator, pub fn generate_derive_registrar_symbol(&self,
index: DefIndex) disambiguator: CrateDisambiguator)
-> String { -> String {
format!("__rustc_derive_registrar__{}_{}", disambiguator.to_fingerprint().to_hex(), format!("__rustc_derive_registrar_{}__", disambiguator.to_fingerprint().to_hex())
index.to_proc_macro_index())
} }
pub fn sysroot<'a>(&'a self) -> &'a Path { pub fn sysroot<'a>(&'a self) -> &'a Path {

View file

@ -15,7 +15,7 @@ use locator::{self, CratePaths};
use native_libs::relevant_lib; use native_libs::relevant_lib;
use schema::CrateRoot; use schema::CrateRoot;
use rustc::hir::def_id::{CrateNum, DefIndex, CRATE_DEF_INDEX}; use rustc::hir::def_id::{CrateNum, CRATE_DEF_INDEX};
use rustc::hir::svh::Svh; use rustc::hir::svh::Svh;
use rustc::middle::allocator::AllocatorKind; use rustc::middle::allocator::AllocatorKind;
use rustc::middle::cstore::DepKind; use rustc::middle::cstore::DepKind;
@ -532,8 +532,7 @@ impl<'a> CrateLoader<'a> {
Err(err) => self.sess.span_fatal(span, &err), Err(err) => self.sess.span_fatal(span, &err),
}; };
let sym = self.sess.generate_derive_registrar_symbol(root.disambiguator, let sym = self.sess.generate_derive_registrar_symbol(root.disambiguator);
root.macro_derive_registrar.unwrap());
let registrar = unsafe { let registrar = unsafe {
let sym = match lib.symbol(&sym) { let sym = match lib.symbol(&sym) {
Ok(f) => f, Ok(f) => f,
@ -588,7 +587,7 @@ impl<'a> CrateLoader<'a> {
pub fn find_plugin_registrar(&mut self, pub fn find_plugin_registrar(&mut self,
span: Span, span: Span,
name: &str) name: &str)
-> Option<(PathBuf, CrateDisambiguator, DefIndex)> { -> Option<(PathBuf, CrateDisambiguator)> {
let name = Symbol::intern(name); let name = Symbol::intern(name);
let ekrate = self.read_extension_crate(span, name, name); let ekrate = self.read_extension_crate(span, name, name);
@ -603,11 +602,11 @@ impl<'a> CrateLoader<'a> {
} }
let root = ekrate.metadata.get_root(); let root = ekrate.metadata.get_root();
match (ekrate.dylib.as_ref(), root.plugin_registrar_fn) { match ekrate.dylib.as_ref() {
(Some(dylib), Some(reg)) => { Some(dylib) => {
Some((dylib.to_path_buf(), root.disambiguator, reg)) Some((dylib.to_path_buf(), root.disambiguator))
} }
(None, Some(_)) => { None => {
span_err!(self.sess, span, E0457, span_err!(self.sess, span, E0457,
"plugin `{}` only found in rlib format, but must be available \ "plugin `{}` only found in rlib format, but must be available \
in dylib format", in dylib format",
@ -616,7 +615,6 @@ impl<'a> CrateLoader<'a> {
// empty dylib. // empty dylib.
None None
} }
_ => None,
} }
} }

View file

@ -100,8 +100,8 @@ impl<'a> PluginLoader<'a> {
fn load_plugin(&mut self, span: Span, name: &str, args: Vec<ast::NestedMetaItem>) { fn load_plugin(&mut self, span: Span, name: &str, args: Vec<ast::NestedMetaItem>) {
let registrar = self.reader.find_plugin_registrar(span, name); let registrar = self.reader.find_plugin_registrar(span, name);
if let Some((lib, disambiguator, index)) = registrar { if let Some((lib, disambiguator)) = registrar {
let symbol = self.sess.generate_plugin_registrar_symbol(disambiguator, index); let symbol = self.sess.generate_plugin_registrar_symbol(disambiguator);
let fun = self.dylink_registrar(span, lib, symbol); let fun = self.dylink_registrar(span, lib, symbol);
self.plugins.push(PluginRegistrar { self.plugins.push(PluginRegistrar {
fun, fun,

View file

@ -115,9 +115,8 @@ pub fn provide(providers: &mut Providers) {
if let Some(id) = tcx.sess.derive_registrar_fn.get() { if let Some(id) = tcx.sess.derive_registrar_fn.get() {
let def_id = tcx.hir.local_def_id(id); let def_id = tcx.hir.local_def_id(id);
let idx = def_id.index;
let disambiguator = tcx.sess.local_crate_disambiguator(); let disambiguator = tcx.sess.local_crate_disambiguator();
let registrar = tcx.sess.generate_derive_registrar_symbol(disambiguator, idx); let registrar = tcx.sess.generate_derive_registrar_symbol(disambiguator);
local_crate.push((registrar, Some(def_id), SymbolExportLevel::C)); local_crate.push((registrar, Some(def_id), SymbolExportLevel::C));
} }

View file

@ -257,14 +257,12 @@ fn compute_symbol_name<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, instance: Instance
if let Some(id) = node_id { if let Some(id) = node_id {
if tcx.sess.plugin_registrar_fn.get() == Some(id) { if tcx.sess.plugin_registrar_fn.get() == Some(id) {
let idx = def_id.index;
let disambiguator = tcx.sess.local_crate_disambiguator(); let disambiguator = tcx.sess.local_crate_disambiguator();
return tcx.sess.generate_plugin_registrar_symbol(disambiguator, idx); return tcx.sess.generate_plugin_registrar_symbol(disambiguator);
} }
if tcx.sess.derive_registrar_fn.get() == Some(id) { if tcx.sess.derive_registrar_fn.get() == Some(id) {
let idx = def_id.index;
let disambiguator = tcx.sess.local_crate_disambiguator(); let disambiguator = tcx.sess.local_crate_disambiguator();
return tcx.sess.generate_derive_registrar_symbol(disambiguator, idx); return tcx.sess.generate_derive_registrar_symbol(disambiguator);
} }
} }

View file

@ -0,0 +1,31 @@
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// no-prefer-dynamic
#![crate_type = "proc-macro"]
extern crate proc_macro;
use proc_macro::TokenStream;
// Add a function to shift DefIndex of registrar function
#[cfg(cfail2)]
fn foo() {}
#[proc_macro_derive(IncrementalMacro)]
pub fn derive(input: TokenStream) -> TokenStream {
#[cfg(cfail2)]
{
foo();
}
"".parse().unwrap()
}

View file

@ -0,0 +1,27 @@
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// aux-build:incremental_proc_macro_aux.rs
// ignore-stage1
// revisions: cfail1 cfail2
// must-compile-successfully
// This test makes sure that we still find the proc-macro registrar function
// when we compile proc-macros incrementally (see #47292).
#![crate_type = "rlib"]
#[macro_use]
extern crate incremental_proc_macro_aux;
#[derive(IncrementalMacro)]
pub struct Foo {
x: u32
}