Skip to content

Commit a1981a6

Browse files
committedJun 16, 2017
Add target to use LLVM wasm backend
The new target is wasm32-experimental-emscripten. Adds a new configuration option to opt in to building experimental LLVM backends such as the WebAssembly backend. The target name was chosen to be similar to the existing wasm32-unknown-emscripten target so that the build and tests would work with minimal other code changes. When/if the new target replaces the old target, simply renaming it should just work.
1 parent fe7227f commit a1981a6

File tree

7 files changed

+77
-1
lines changed

7 files changed

+77
-1
lines changed
 

‎src/bootstrap/config.rs

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ pub struct Config {
6060
pub llvm_static_stdcpp: bool,
6161
pub llvm_link_shared: bool,
6262
pub llvm_targets: Option<String>,
63+
pub llvm_experimental_targets: Option<String>,
6364
pub llvm_link_jobs: Option<u32>,
6465
pub llvm_clean_rebuild: bool,
6566

@@ -189,6 +190,7 @@ struct Llvm {
189190
version_check: Option<bool>,
190191
static_libstdcpp: Option<bool>,
191192
targets: Option<String>,
193+
experimental_targets: Option<String>,
192194
link_jobs: Option<u32>,
193195
clean_rebuild: Option<bool>,
194196
}
@@ -350,6 +352,7 @@ impl Config {
350352
set(&mut config.llvm_static_stdcpp, llvm.static_libstdcpp);
351353
set(&mut config.llvm_clean_rebuild, llvm.clean_rebuild);
352354
config.llvm_targets = llvm.targets.clone();
355+
config.llvm_experimental_targets = llvm.experimental_targets.clone();
353356
config.llvm_link_jobs = llvm.link_jobs;
354357
}
355358

‎src/bootstrap/config.toml.example

+8
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,14 @@
5353
# Rust team and file an issue if you need assistance in porting!
5454
#targets = "X86;ARM;AArch64;Mips;PowerPC;SystemZ;JSBackend;MSP430;Sparc;NVPTX;Hexagon"
5555

56+
# LLVM experimental targets to build support for. These targets are specified in
57+
# the same format as above, but since these targets are experimental, they are
58+
# not built by default and the experimental Rust compilation targets that depend
59+
# on them will not work unless the user opts in to building them. Possible
60+
# experimental LLVM targets include WebAssembly for the
61+
# wasm32-experimental-emscripten Rust target.
62+
#experimental-targets = ""
63+
5664
# Cap the number of parallel linker invocations when compiling LLVM.
5765
# This can be useful when building LLVM with debug info, which significantly
5866
# increases the size of binaries and consequently the memory required by

‎src/bootstrap/native.rs

+6
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ pub fn llvm(build: &Build, target: &str) {
8686
None => "X86;ARM;AArch64;Mips;PowerPC;SystemZ;JSBackend;MSP430;Sparc;NVPTX;Hexagon",
8787
};
8888

89+
let llvm_exp_targets = match build.config.llvm_experimental_targets {
90+
Some(ref s) => s,
91+
None => "",
92+
};
93+
8994
let assertions = if build.config.llvm_assertions {"ON"} else {"OFF"};
9095

9196
cfg.target(target)
@@ -94,6 +99,7 @@ pub fn llvm(build: &Build, target: &str) {
9499
.profile(profile)
95100
.define("LLVM_ENABLE_ASSERTIONS", assertions)
96101
.define("LLVM_TARGETS_TO_BUILD", llvm_targets)
102+
.define("LLVM_EXPERIMENTAL_TARGETS_TO_BUILD", llvm_exp_targets)
97103
.define("LLVM_INCLUDE_EXAMPLES", "OFF")
98104
.define("LLVM_INCLUDE_TESTS", "OFF")
99105
.define("LLVM_INCLUDE_DOCS", "OFF")

‎src/librustc_back/target/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ supported_targets! {
214214
("le32-unknown-nacl", le32_unknown_nacl),
215215
("asmjs-unknown-emscripten", asmjs_unknown_emscripten),
216216
("wasm32-unknown-emscripten", wasm32_unknown_emscripten),
217+
("wasm32-experimental-emscripten", wasm32_experimental_emscripten),
217218

218219
("thumbv6m-none-eabi", thumbv6m_none_eabi),
219220
("thumbv7m-none-eabi", thumbv7m_none_eabi),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
use LinkerFlavor;
12+
use super::{LinkArgs, Target, TargetOptions};
13+
use super::emscripten_base::{cmd};
14+
15+
pub fn target() -> Result<Target, String> {
16+
let mut post_link_args = LinkArgs::new();
17+
post_link_args.insert(LinkerFlavor::Em,
18+
vec!["-s".to_string(),
19+
"WASM=1".to_string(),
20+
"-s".to_string(),
21+
"ERROR_ON_UNDEFINED_SYMBOLS=1".to_string()]);
22+
23+
let opts = TargetOptions {
24+
linker: cmd("emcc"),
25+
ar: cmd("emar"),
26+
27+
dynamic_linking: false,
28+
executables: true,
29+
// Today emcc emits two files - a .js file to bootstrap and
30+
// possibly interpret the wasm, and a .wasm file
31+
exe_suffix: ".js".to_string(),
32+
linker_is_gnu: true,
33+
allow_asm: false,
34+
obj_is_bitcode: true,
35+
is_like_emscripten: true,
36+
max_atomic_width: Some(32),
37+
post_link_args: post_link_args,
38+
target_family: Some("unix".to_string()),
39+
.. Default::default()
40+
};
41+
Ok(Target {
42+
llvm_target: "wasm32-unknown-unknown".to_string(),
43+
target_endian: "little".to_string(),
44+
target_pointer_width: "32".to_string(),
45+
target_os: "emscripten".to_string(),
46+
target_env: "".to_string(),
47+
target_vendor: "unknown".to_string(),
48+
data_layout: "e-m:e-p:32:32-i64:64-n32:64-S128".to_string(),
49+
arch: "wasm32".to_string(),
50+
linker_flavor: LinkerFlavor::Em,
51+
options: opts,
52+
})
53+
}

‎src/librustc_llvm/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ fn main() {
9393

9494
let mut optional_components =
9595
vec!["x86", "arm", "aarch64", "mips", "powerpc", "pnacl",
96-
"systemz", "jsbackend", "msp430", "sparc", "nvptx"];
96+
"systemz", "jsbackend", "webassembly", "msp430", "sparc", "nvptx"];
9797

9898
let mut version_cmd = Command::new(&llvm_config);
9999
version_cmd.arg("--version");

‎src/librustc_llvm/lib.rs

+5
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,11 @@ pub fn initialize_available_targets() {
389389
LLVMInitializeHexagonTargetMC,
390390
LLVMInitializeHexagonAsmPrinter,
391391
LLVMInitializeHexagonAsmParser);
392+
init_target!(llvm_component = "webassembly",
393+
LLVMInitializeWebAssemblyTargetInfo,
394+
LLVMInitializeWebAssemblyTarget,
395+
LLVMInitializeWebAssemblyTargetMC,
396+
LLVMInitializeWebAssemblyAsmPrinter);
392397
}
393398

394399
pub fn last_error() -> Option<String> {

0 commit comments

Comments
 (0)