Skip to content

Commit 42eb850

Browse files
committed
Upgrade to LLVM's master branch (LLVM 7)
This commit upgrades the main LLVM submodule to LLVM's current master branch. The LLD submodule is updated in tandem as well as compiler-builtins. Along the way support was also added for LLVM 7's new features. This primarily includes the support for custom section concatenation natively in LLD so we now add wasm custom sections in LLVM IR rather than having custom support in rustc itself for doing so. Some other miscellaneous changes are: * We now pass `--gc-sections` to `wasm-ld` * The optimization level is now passed to `wasm-ld` * A `--stack-first` option is passed to LLD to have stack overflow always cause a trap instead of corrupting static data * The wasm target for LLVM switched to `wasm32-unknown-unknown`. * The syntax for aligned pointers has changed in LLVM IR and tests are updated to reflect this. * The `thumbv6m-none-eabi` target is disabled due to an [LLVM bug][llbug] Nowadays we've been mostly only upgrading whenever there's a major release of LLVM but enough changes have been happening on the wasm target that there's been growing motivation for quite some time now to upgrade out version of LLD. To upgrade LLD, however, we need to upgrade LLVM to avoid needing to build yet another version of LLVM on the builders. The revision of LLVM in use here is arbitrarily chosen. We will likely need to continue to update it over time if and when we discover bugs. Once LLVM 7 is fully released we can switch to that channel as well. [llbug]: https://bugs.llvm.org/show_bug.cgi?id=37382
1 parent c30acc7 commit 42eb850

39 files changed

+202
-198
lines changed

src/librustc/dep_graph/dep_node.rs

-2
Original file line numberDiff line numberDiff line change
@@ -665,8 +665,6 @@ define_dep_nodes!( <'tcx>
665665

666666
[] InstanceDefSizeEstimate { instance_def: InstanceDef<'tcx> },
667667

668-
[] WasmCustomSections(CrateNum),
669-
670668
[input] Features,
671669

672670
[] ProgramClausesFor(DefId),

src/librustc/hir/check_attr.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ struct CheckAttrVisitor<'a, 'tcx: 'a> {
5757
impl<'a, 'tcx> CheckAttrVisitor<'a, 'tcx> {
5858
/// Check any attribute.
5959
fn check_attributes(&self, item: &hir::Item, target: Target) {
60-
if target == Target::Fn {
60+
if target == Target::Fn || target == Target::Const {
6161
self.tcx.codegen_fn_attrs(self.tcx.hir.local_def_id(item.id));
6262
} else if let Some(a) = item.attrs.iter().find(|a| a.check_name("target_feature")) {
6363
self.tcx.sess.struct_span_err(a.span, "attribute should be applied to a function")
@@ -85,11 +85,6 @@ impl<'a, 'tcx> CheckAttrVisitor<'a, 'tcx> {
8585
if target != Target::Const {
8686
self.tcx.sess.span_err(attr.span, "only allowed on consts");
8787
}
88-
89-
if attr.value_str().is_none() {
90-
self.tcx.sess.span_err(attr.span, "must be of the form \
91-
#[wasm_custom_section = \"foo\"]");
92-
}
9388
}
9489
}
9590

src/librustc/hir/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -2259,6 +2259,7 @@ pub struct CodegenFnAttrs {
22592259
pub export_name: Option<Symbol>,
22602260
pub target_features: Vec<Symbol>,
22612261
pub linkage: Option<Linkage>,
2262+
pub wasm_custom_section: Option<Symbol>,
22622263
}
22632264

22642265
bitflags! {
@@ -2283,6 +2284,7 @@ impl CodegenFnAttrs {
22832284
export_name: None,
22842285
target_features: vec![],
22852286
linkage: None,
2287+
wasm_custom_section: None,
22862288
}
22872289
}
22882290

src/librustc/ich/impls_hir.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1120,6 +1120,7 @@ impl_stable_hash_for!(struct hir::CodegenFnAttrs {
11201120
export_name,
11211121
target_features,
11221122
linkage,
1123+
wasm_custom_section,
11231124
});
11241125

11251126
impl<'hir> HashStable<StableHashingContext<'hir>> for hir::CodegenFnAttrFlags

src/librustc/mir/mono.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ pub enum MonoItem<'tcx> {
2424
Fn(Instance<'tcx>),
2525
Static(DefId),
2626
GlobalAsm(NodeId),
27+
CustomSection(DefId),
2728
}
2829

2930
impl<'tcx> MonoItem<'tcx> {
@@ -36,7 +37,9 @@ impl<'tcx> MonoItem<'tcx> {
3637
},
3738
// Conservatively estimate the size of a static declaration
3839
// or assembly to be 1.
39-
MonoItem::Static(_) | MonoItem::GlobalAsm(_) => 1,
40+
MonoItem::Static(_) |
41+
MonoItem::GlobalAsm(_) |
42+
MonoItem::CustomSection(_) => 1,
4043
}
4144
}
4245
}
@@ -51,7 +54,8 @@ impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for MonoItem<'tcx> {
5154
MonoItem::Fn(ref instance) => {
5255
instance.hash_stable(hcx, hasher);
5356
}
54-
MonoItem::Static(def_id) => {
57+
MonoItem::Static(def_id) |
58+
MonoItem::CustomSection(def_id) => {
5559
def_id.hash_stable(hcx, hasher);
5660
}
5761
MonoItem::GlobalAsm(node_id) => {

src/librustc/ty/query/config.rs

-6
Original file line numberDiff line numberDiff line change
@@ -776,12 +776,6 @@ impl<'tcx> QueryDescription<'tcx> for queries::instance_def_size_estimate<'tcx>
776776
}
777777
}
778778

779-
impl<'tcx> QueryDescription<'tcx> for queries::wasm_custom_sections<'tcx> {
780-
fn describe(_tcx: TyCtxt, _: CrateNum) -> String {
781-
format!("custom wasm sections for a crate")
782-
}
783-
}
784-
785779
impl<'tcx> QueryDescription<'tcx> for queries::generics_of<'tcx> {
786780
#[inline]
787781
fn cache_on_disk(def_id: Self::Key) -> bool {

src/librustc/ty/query/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,6 @@ define_queries! { <'tcx>
546546
ty::ParamEnv<'tcx>
547547
) -> Clauses<'tcx>,
548548

549-
[] fn wasm_custom_sections: WasmCustomSections(CrateNum) -> Lrc<Vec<DefId>>,
550549
[] fn wasm_import_module_map: WasmImportModuleMap(CrateNum)
551550
-> Lrc<FxHashMap<DefId, String>>,
552551
}

src/librustc/ty/query/plumbing.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,6 @@ pub fn force_from_dep_node<'a, 'gcx, 'lcx>(tcx: TyCtxt<'a, 'gcx, 'lcx>,
12081208
DepKind::Features => { force!(features_query, LOCAL_CRATE); }
12091209

12101210
DepKind::ProgramClausesFor => { force!(program_clauses_for, def_id!()); }
1211-
DepKind::WasmCustomSections => { force!(wasm_custom_sections, krate!()); }
12121211
DepKind::WasmImportModuleMap => { force!(wasm_import_module_map, krate!()); }
12131212
DepKind::ForeignModules => { force!(foreign_modules, krate!()); }
12141213

src/librustc_codegen_llvm/attributes.rs

+1-30
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111
1212
use std::ffi::{CStr, CString};
1313

14-
use rustc::hir::{self, CodegenFnAttrFlags};
14+
use rustc::hir::CodegenFnAttrFlags;
1515
use rustc::hir::def_id::{DefId, LOCAL_CRATE};
16-
use rustc::hir::itemlikevisit::ItemLikeVisitor;
1716
use rustc::session::Session;
1817
use rustc::session::config::Sanitizer;
1918
use rustc::ty::TyCtxt;
@@ -222,37 +221,9 @@ pub fn provide(providers: &mut Providers) {
222221
}
223222
};
224223

225-
providers.wasm_custom_sections = |tcx, cnum| {
226-
assert_eq!(cnum, LOCAL_CRATE);
227-
let mut finder = WasmSectionFinder { tcx, list: Vec::new() };
228-
tcx.hir.krate().visit_all_item_likes(&mut finder);
229-
Lrc::new(finder.list)
230-
};
231-
232224
provide_extern(providers);
233225
}
234226

235-
struct WasmSectionFinder<'a, 'tcx: 'a> {
236-
tcx: TyCtxt<'a, 'tcx, 'tcx>,
237-
list: Vec<DefId>,
238-
}
239-
240-
impl<'a, 'tcx: 'a> ItemLikeVisitor<'tcx> for WasmSectionFinder<'a, 'tcx> {
241-
fn visit_item(&mut self, i: &'tcx hir::Item) {
242-
match i.node {
243-
hir::ItemConst(..) => {}
244-
_ => return,
245-
}
246-
if i.attrs.iter().any(|i| i.check_name("wasm_custom_section")) {
247-
self.list.push(self.tcx.hir.local_def_id(i.id));
248-
}
249-
}
250-
251-
fn visit_trait_item(&mut self, _: &'tcx hir::TraitItem) {}
252-
253-
fn visit_impl_item(&mut self, _: &'tcx hir::ImplItem) {}
254-
}
255-
256227
pub fn provide_extern(providers: &mut Providers) {
257228
providers.wasm_import_module_map = |tcx, cnum| {
258229
let mut ret = FxHashMap();

src/librustc_codegen_llvm/back/link.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use rustc::util::common::time;
2929
use rustc::util::fs::fix_windows_verbatim_for_gcc;
3030
use rustc::hir::def_id::CrateNum;
3131
use tempfile::{Builder as TempFileBuilder, TempDir};
32-
use rustc_target::spec::{PanicStrategy, RelroLevel, LinkerFlavor, TargetTriple};
32+
use rustc_target::spec::{PanicStrategy, RelroLevel, LinkerFlavor};
3333
use rustc_data_structures::fx::FxHashSet;
3434
use context::get_reloc_model;
3535
use llvm;
@@ -837,10 +837,8 @@ fn link_natively(sess: &Session,
837837
}
838838
}
839839

840-
if sess.opts.target_triple == TargetTriple::from_triple("wasm32-unknown-unknown") {
840+
if sess.opts.target_triple.triple() == "wasm32-unknown-unknown" {
841841
wasm::rewrite_imports(&out_filename, &codegen_results.crate_info.wasm_imports);
842-
wasm::add_custom_sections(&out_filename,
843-
&codegen_results.crate_info.wasm_custom_sections);
844842
}
845843
}
846844

src/librustc_codegen_llvm/back/linker.rs

+35-2
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ impl LinkerInfo {
8686
LinkerFlavor::Lld(LldFlavor::Wasm) => {
8787
Box::new(WasmLd {
8888
cmd,
89+
sess,
8990
}) as Box<Linker>
9091
}
9192
}
@@ -919,11 +920,12 @@ fn exported_symbols(tcx: TyCtxt, crate_type: CrateType) -> Vec<String> {
919920
symbols
920921
}
921922

922-
pub struct WasmLd {
923+
pub struct WasmLd<'a> {
923924
cmd: Command,
925+
sess: &'a Session,
924926
}
925927

926-
impl Linker for WasmLd {
928+
impl<'a> Linker for WasmLd<'a> {
927929
fn link_dylib(&mut self, lib: &str) {
928930
self.cmd.arg("-l").arg(lib);
929931
}
@@ -988,9 +990,20 @@ impl Linker for WasmLd {
988990
}
989991

990992
fn gc_sections(&mut self, _keep_metadata: bool) {
993+
self.cmd.arg("--gc-sections");
991994
}
992995

993996
fn optimize(&mut self) {
997+
self.cmd.arg(match self.sess.opts.optimize {
998+
OptLevel::No => "-O0",
999+
OptLevel::Less => "-O1",
1000+
OptLevel::Default => "-O2",
1001+
OptLevel::Aggressive => "-O3",
1002+
// Currently LLD doesn't support `Os` and `Oz`, so pass through `O2`
1003+
// instead.
1004+
OptLevel::Size => "-O2",
1005+
OptLevel::SizeMin => "-O2"
1006+
});
9941007
}
9951008

9961009
fn pgo_gen(&mut self) {
@@ -1020,8 +1033,28 @@ impl Linker for WasmLd {
10201033
// this isn't yet the bottleneck of compilation at all anyway.
10211034
self.cmd.arg("--no-threads");
10221035

1036+
// By default LLD only gives us one page of stack (64k) which is a
1037+
// little small. Default to a larger stack closer to other PC platforms
1038+
// (1MB) and users can always inject their own link-args to override this.
10231039
self.cmd.arg("-z").arg("stack-size=1048576");
10241040

1041+
// By default LLD's memory layout is:
1042+
//
1043+
// 1. First, a blank page
1044+
// 2. Next, all static data
1045+
// 3. Finally, the main stack (which grows down)
1046+
//
1047+
// This has the unfortunate consequence that on stack overflows you
1048+
// corrupt static data and can cause some exceedingly weird bugs. To
1049+
// help detect this a little sooner we instead request that the stack is
1050+
// placed before static data.
1051+
//
1052+
// This means that we'll generate slightly larger binaries as references
1053+
// to static data will take more bytes in the ULEB128 encoding, but
1054+
// stack overflow will be guaranteed to trap as it underflows instead of
1055+
// corrupting static data.
1056+
self.cmd.arg("--stack-first");
1057+
10251058
// FIXME we probably shouldn't pass this but instead pass an explicit
10261059
// whitelist of symbols we'll allow to be undefined. Unfortunately
10271060
// though we can't handle symbols like `log10` that LLVM injects at a

src/librustc_codegen_llvm/back/wasm.rs

+1-41
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
use std::collections::BTreeMap;
1211
use std::fs;
1312
use std::path::Path;
1413
use std::str;
@@ -24,45 +23,6 @@ const WASM_EXTERNAL_KIND_TABLE: u8 = 1;
2423
const WASM_EXTERNAL_KIND_MEMORY: u8 = 2;
2524
const WASM_EXTERNAL_KIND_GLOBAL: u8 = 3;
2625

27-
/// Append all the custom sections listed in `sections` to the wasm binary
28-
/// specified at `path`.
29-
///
30-
/// LLVM 6 which we're using right now doesn't have the ability to create custom
31-
/// sections in wasm files nor does LLD have the ability to merge these sections
32-
/// into one larger section when linking. It's expected that this will
33-
/// eventually get implemented, however!
34-
///
35-
/// Until that time though this is a custom implementation in rustc to append
36-
/// all sections to a wasm file to the finished product that LLD produces.
37-
///
38-
/// Support for this is landing in LLVM in https://reviews.llvm.org/D43097,
39-
/// although after that support will need to be in LLD as well.
40-
pub fn add_custom_sections(path: &Path, sections: &BTreeMap<String, Vec<u8>>) {
41-
if sections.len() == 0 {
42-
return
43-
}
44-
45-
let wasm = fs::read(path).expect("failed to read wasm output");
46-
47-
// see https://webassembly.github.io/spec/core/binary/modules.html#custom-section
48-
let mut wasm = WasmEncoder { data: wasm };
49-
for (section, bytes) in sections {
50-
// write the `id` identifier, 0 for a custom section
51-
wasm.byte(0);
52-
53-
// figure out how long our name descriptor will be
54-
let mut name = WasmEncoder::new();
55-
name.str(section);
56-
57-
// write the length of the payload followed by all its contents
58-
wasm.u32((bytes.len() + name.data.len()) as u32);
59-
wasm.data.extend_from_slice(&name.data);
60-
wasm.data.extend_from_slice(bytes);
61-
}
62-
63-
fs::write(path, &wasm.data).expect("failed to write wasm output");
64-
}
65-
6626
/// Rewrite the module imports are listed from in a wasm module given the field
6727
/// name to module name mapping in `import_map`.
6828
///
@@ -80,7 +40,7 @@ pub fn add_custom_sections(path: &Path, sections: &BTreeMap<String, Vec<u8>>) {
8040
///
8141
/// Support for this was added to LLVM in
8242
/// https://github.com/llvm-mirror/llvm/commit/0f32e1365, although support still
83-
/// needs to be added (AFAIK at the time of this writing) to LLD
43+
/// needs to be added, tracked at https://bugs.llvm.org/show_bug.cgi?id=37168
8444
pub fn rewrite_imports(path: &Path, import_map: &FxHashMap<String, String>) {
8545
if import_map.len() == 0 {
8646
return

0 commit comments

Comments
 (0)