1
Fork 0

Auto merge of #55626 - nikic:update-emscripten, r=alexcrichton

Update emscripten

This updates emscripten to 1.38.15, which is based on LLVM 6.0.1 and would allow us to drop code for handling LLVM 4.

The main issue I ran into is that exporting statics through `EXPORTED_FUNCTIONS` no longer works. As far as I understand exporting non-functions doesn't really make sense under emscripten anyway, so I've modified the symbol export code to not even try.

Closes #52323.
This commit is contained in:
bors 2018-11-10 01:16:02 +00:00
commit 06118eac4c
18 changed files with 48 additions and 40 deletions

View file

@ -736,7 +736,7 @@ pub fn build_codegen_backend(builder: &Builder,
// Pass down configuration from the LLVM build into the build of // Pass down configuration from the LLVM build into the build of
// librustc_llvm and librustc_codegen_llvm. // librustc_llvm and librustc_codegen_llvm.
if builder.is_rust_llvm(target) { if builder.is_rust_llvm(target) && backend != "emscripten" {
cargo.env("LLVM_RUSTLLVM", "1"); cargo.env("LLVM_RUSTLLVM", "1");
} }
cargo.env("LLVM_CONFIG", &llvm_config); cargo.env("LLVM_CONFIG", &llvm_config);

View file

@ -20,11 +20,11 @@ COPY scripts/sccache.sh /scripts/
RUN sh /scripts/sccache.sh RUN sh /scripts/sccache.sh
ENV PATH=$PATH:/emsdk-portable ENV PATH=$PATH:/emsdk-portable
ENV PATH=$PATH:/emsdk-portable/clang/e1.37.13_64bit/ ENV PATH=$PATH:/emsdk-portable/clang/e1.38.15_64bit/
ENV PATH=$PATH:/emsdk-portable/emscripten/1.37.13/ ENV PATH=$PATH:/emsdk-portable/emscripten/1.38.15/
ENV PATH=$PATH:/emsdk-portable/node/4.1.1_64bit/bin/ ENV PATH=$PATH:/emsdk-portable/node/8.9.1_64bit/bin/
ENV EMSCRIPTEN=/emsdk-portable/emscripten/1.37.13/ ENV EMSCRIPTEN=/emsdk-portable/emscripten/1.38.15/
ENV BINARYEN_ROOT=/emsdk-portable/clang/e1.37.13_64bit/binaryen/ ENV BINARYEN_ROOT=/emsdk-portable/clang/e1.38.15_64bit/binaryen/
ENV EM_CONFIG=/emsdk-portable/.emscripten ENV EM_CONFIG=/emsdk-portable/.emscripten
ENV TARGETS=asmjs-unknown-emscripten ENV TARGETS=asmjs-unknown-emscripten

View file

@ -21,11 +21,11 @@ COPY scripts/sccache.sh /scripts/
RUN sh /scripts/sccache.sh RUN sh /scripts/sccache.sh
ENV PATH=$PATH:/emsdk-portable ENV PATH=$PATH:/emsdk-portable
ENV PATH=$PATH:/emsdk-portable/clang/e1.37.13_64bit/ ENV PATH=$PATH:/emsdk-portable/clang/e1.38.15_64bit/
ENV PATH=$PATH:/emsdk-portable/emscripten/1.37.13/ ENV PATH=$PATH:/emsdk-portable/emscripten/1.38.15/
ENV PATH=$PATH:/node-v8.0.0-linux-x64/bin/ ENV PATH=$PATH:/emsdk-portable/node/8.9.1_64bit/bin/
ENV EMSCRIPTEN=/emsdk-portable/emscripten/1.37.13/ ENV EMSCRIPTEN=/emsdk-portable/emscripten/1.38.15/
ENV BINARYEN_ROOT=/emsdk-portable/clang/e1.37.13_64bit/binaryen/ ENV BINARYEN_ROOT=/emsdk-portable/clang/e1.38.15_64bit/binaryen/
ENV EM_CONFIG=/emsdk-portable/.emscripten ENV EM_CONFIG=/emsdk-portable/.emscripten
ENV TARGETS=wasm32-unknown-emscripten ENV TARGETS=wasm32-unknown-emscripten

View file

@ -33,8 +33,8 @@ curl -fL https://s3.amazonaws.com/mozilla-games/emscripten/releases/emsdk-portab
cd /emsdk-portable cd /emsdk-portable
./emsdk update ./emsdk update
hide_output ./emsdk install sdk-1.37.13-64bit hide_output ./emsdk install sdk-1.38.15-64bit
./emsdk activate sdk-1.37.13-64bit ./emsdk activate sdk-1.38.15-64bit
# Compile and cache libc # Compile and cache libc
source ./emsdk_env.sh source ./emsdk_env.sh
@ -46,8 +46,3 @@ rm -f a.*
# Make emsdk usable by any user # Make emsdk usable by any user
cp /root/.emscripten /emsdk-portable cp /root/.emscripten /emsdk-portable
chmod a+rxw -R /emsdk-portable chmod a+rxw -R /emsdk-portable
# node 8 is required to run wasm
cd /
curl -sL https://nodejs.org/dist/v8.0.0/node-v8.0.0-linux-x64.tar.xz | \
tar -xJ

View file

@ -243,7 +243,8 @@ pub fn target_feature_whitelist(sess: &Session)
"hexagon" => HEXAGON_WHITELIST, "hexagon" => HEXAGON_WHITELIST,
"mips" | "mips64" => MIPS_WHITELIST, "mips" | "mips64" => MIPS_WHITELIST,
"powerpc" | "powerpc64" => POWERPC_WHITELIST, "powerpc" | "powerpc64" => POWERPC_WHITELIST,
"wasm32" => WASM_WHITELIST, // wasm32 on emscripten does not support these target features
"wasm32" if !sess.target.target.options.is_like_emscripten => WASM_WHITELIST,
_ => &[], _ => &[],
} }
} }

View file

@ -388,6 +388,16 @@ fn symbol_export_level(tcx: TyCtxt, sym_def_id: DefId) -> SymbolExportLevel {
codegen_fn_attrs.flags.contains(CodegenFnAttrFlags::RUSTC_STD_INTERNAL_SYMBOL); codegen_fn_attrs.flags.contains(CodegenFnAttrFlags::RUSTC_STD_INTERNAL_SYMBOL);
if is_extern && !std_internal { if is_extern && !std_internal {
// Emscripten cannot export statics, so reduce their export level here
if tcx.sess.target.target.options.is_like_emscripten {
if let Some(Node::Item(&hir::Item {
node: hir::ItemKind::Static(..),
..
})) = tcx.hir.get_if_local(sym_def_id) {
return SymbolExportLevel::Rust;
}
}
SymbolExportLevel::C SymbolExportLevel::C
} else { } else {
SymbolExportLevel::Rust SymbolExportLevel::Rust

@ -1 +1 @@
Subproject commit 2717444753318e461e0c3b30dacd03ffbac96903 Subproject commit 7f23313edff8beccb3fe44b815714269c5124c15

View file

@ -429,7 +429,7 @@ extern "C" void LLVMRustConfigurePassManagerBuilder(
LLVMPassManagerBuilderRef PMBR, LLVMRustCodeGenOptLevel OptLevel, LLVMPassManagerBuilderRef PMBR, LLVMRustCodeGenOptLevel OptLevel,
bool MergeFunctions, bool SLPVectorize, bool LoopVectorize, bool PrepareForThinLTO, bool MergeFunctions, bool SLPVectorize, bool LoopVectorize, bool PrepareForThinLTO,
const char* PGOGenPath, const char* PGOUsePath) { const char* PGOGenPath, const char* PGOUsePath) {
#if LLVM_RUSTLLVM #if LLVM_VERSION_GE(7, 0)
unwrap(PMBR)->MergeFunctions = MergeFunctions; unwrap(PMBR)->MergeFunctions = MergeFunctions;
#endif #endif
unwrap(PMBR)->SLPVectorize = SLPVectorize; unwrap(PMBR)->SLPVectorize = SLPVectorize;

View file

@ -17,7 +17,7 @@ impl Drop for Droppable {
if self.0 == 1 { if self.0 == 1 {
panic!("panic 1"); panic!("panic 1");
} else { } else {
eprint!("drop {}", self.0); eprintln!("drop {}", self.0);
} }
} }
} }

View file

@ -14,7 +14,7 @@ use std::panic;
fn main() { fn main() {
panic::set_hook(Box::new(|i| { panic::set_hook(Box::new(|i| {
eprint!("greetings from the panic handler"); eprintln!("greetings from the panic handler");
})); }));
panic!("foobar"); panic!("foobar");
} }

View file

@ -23,7 +23,7 @@ fn main() {
assert_eq!(BE_U32, b(55u32).to_be()); assert_eq!(BE_U32, b(55u32).to_be());
assert_eq!(LE_U32, b(55u32).to_le()); assert_eq!(LE_U32, b(55u32).to_le());
#[cfg(not(target_arch = "asmjs"))] #[cfg(not(target_os = "emscripten"))]
{ {
const BE_U128: u128 = 999999u128.to_be(); const BE_U128: u128 = 999999u128.to_be();
const LE_I128: i128 = (-999999i128).to_le(); const LE_I128: i128 = (-999999i128).to_le();

View file

@ -10,6 +10,8 @@
// Test that the compiler will catch invalid inline assembly constraints. // Test that the compiler will catch invalid inline assembly constraints.
// ignore-emscripten
#![feature(asm)] #![feature(asm)]
extern "C" { extern "C" {

View file

@ -1,17 +1,17 @@
error[E0668]: malformed inline assembly error[E0668]: malformed inline assembly
--> $DIR/inline-asm-bad-constraint.rs:29:9 --> $DIR/inline-asm-bad-constraint.rs:31:9
| |
LL | asm!("" :"={rax"(rax)) //~ ERROR E0668 LL | asm!("" :"={rax"(rax)) //~ ERROR E0668
| ^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^
error[E0668]: malformed inline assembly error[E0668]: malformed inline assembly
--> $DIR/inline-asm-bad-constraint.rs:37:9 --> $DIR/inline-asm-bad-constraint.rs:39:9
| |
LL | asm!("callq $0" : : "0"(foo)) //~ ERROR E0668 LL | asm!("callq $0" : : "0"(foo)) //~ ERROR E0668
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0668]: malformed inline assembly error[E0668]: malformed inline assembly
--> $DIR/inline-asm-bad-constraint.rs:44:9 --> $DIR/inline-asm-bad-constraint.rs:46:9
| |
LL | asm!("addb $1, $0" : "={rax}"((0i32, rax))); //~ ERROR E0668 LL | asm!("addb $1, $0" : "={rax}"((0i32, rax))); //~ ERROR E0668
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

View file

@ -11,6 +11,8 @@
// Test that the compiler will catch passing invalid values to inline assembly // Test that the compiler will catch passing invalid values to inline assembly
// operands. // operands.
// ignore-emscripten
#![feature(asm)] #![feature(asm)]
#[repr(C)] #[repr(C)]

View file

@ -1,41 +1,41 @@
error[E0669]: invalid value for constraint in inline assembly error[E0669]: invalid value for constraint in inline assembly
--> $DIR/inline-asm-bad-operand.rs:29:24 --> $DIR/inline-asm-bad-operand.rs:31:24
| |
LL | asm!("" :: "r"("")); //~ ERROR E0669 LL | asm!("" :: "r"("")); //~ ERROR E0669
| ^^ | ^^
error[E0669]: invalid value for constraint in inline assembly error[E0669]: invalid value for constraint in inline assembly
--> $DIR/inline-asm-bad-operand.rs:34:32 --> $DIR/inline-asm-bad-operand.rs:36:32
| |
LL | asm!("ret" : : "{rdi}"(target)); //~ ERROR E0669 LL | asm!("ret" : : "{rdi}"(target)); //~ ERROR E0669
| ^^^^^^ | ^^^^^^
error[E0669]: invalid value for constraint in inline assembly error[E0669]: invalid value for constraint in inline assembly
--> $DIR/inline-asm-bad-operand.rs:41:29 --> $DIR/inline-asm-bad-operand.rs:43:29
| |
LL | unsafe { asm!("" :: "i"(hello)) }; //~ ERROR E0669 LL | unsafe { asm!("" :: "i"(hello)) }; //~ ERROR E0669
| ^^^^^ | ^^^^^
error[E0669]: invalid value for constraint in inline assembly error[E0669]: invalid value for constraint in inline assembly
--> $DIR/inline-asm-bad-operand.rs:49:38 --> $DIR/inline-asm-bad-operand.rs:51:38
| |
LL | asm!("movups $1, %xmm0"::"m"(arr)); //~ ERROR E0669 LL | asm!("movups $1, %xmm0"::"m"(arr)); //~ ERROR E0669
| ^^^ | ^^^
error[E0669]: invalid value for constraint in inline assembly error[E0669]: invalid value for constraint in inline assembly
--> $DIR/inline-asm-bad-operand.rs:56:32 --> $DIR/inline-asm-bad-operand.rs:58:32
| |
LL | asm!("mov sp, $0"::"r"(addr)); //~ ERROR E0669 LL | asm!("mov sp, $0"::"r"(addr)); //~ ERROR E0669
| ^^^^ | ^^^^
error[E0669]: invalid value for constraint in inline assembly error[E0669]: invalid value for constraint in inline assembly
--> $DIR/inline-asm-bad-operand.rs:63:32 --> $DIR/inline-asm-bad-operand.rs:65:32
| |
LL | asm!("mov sp, $0"::"r"(addr), //~ ERROR E0669 LL | asm!("mov sp, $0"::"r"(addr), //~ ERROR E0669
| ^^^^ | ^^^^
error[E0669]: invalid value for constraint in inline assembly error[E0669]: invalid value for constraint in inline assembly
--> $DIR/inline-asm-bad-operand.rs:64:32 --> $DIR/inline-asm-bad-operand.rs:66:32
| |
LL | "r"("hello e0669")); //~ ERROR E0669 LL | "r"("hello e0669")); //~ ERROR E0669
| ^^^^^^^^^^^^^ | ^^^^^^^^^^^^^

View file

@ -8,8 +8,8 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// compile-pass // compile-pass
// ignore-emscripten no i128 support
#![feature(nll)] #![feature(nll)]

View file

@ -11,7 +11,7 @@
use core::ops::RangeBounds; use core::ops::RangeBounds;
#[cfg(not(target_arch = "wasm32"))] #[cfg(any(not(target_arch = "wasm32"), target_os = "emscripten"))]
#[lang = "eh_personality"] #[lang = "eh_personality"]
extern fn eh_personality() {} extern fn eh_personality() {}

View file

@ -1870,11 +1870,9 @@ impl<'test> TestCx<'test> {
} else { } else {
self.fatal("no NodeJS binary found (--nodejs)"); self.fatal("no NodeJS binary found (--nodejs)");
} }
}
// If this is otherwise wasm, then run tests under nodejs with our // If this is otherwise wasm, then run tests under nodejs with our
// shim // shim
if self.config.target.contains("wasm32") { } else if self.config.target.contains("wasm32") {
if let Some(ref p) = self.config.nodejs { if let Some(ref p) = self.config.nodejs {
args.push(p.clone()); args.push(p.clone());
} else { } else {