Skip to content

Commit d77d78b

Browse files
oligamiqbjorn3
authored andcommitted
Compile rustc for wasm15 with llvm
1 parent 214c2df commit d77d78b

File tree

9 files changed

+259
-7
lines changed

9 files changed

+259
-7
lines changed

.gitmodules

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
shallow = true
3333
[submodule "src/llvm-project"]
3434
path = src/llvm-project
35-
url = https://github.com/rust-lang/llvm-project.git
36-
branch = rustc/19.1-2024-07-30
35+
url = https://github.com/YoWASP/llvm-project
36+
branch = main+wasm
3737
shallow = true
3838
[submodule "src/doc/embedded-book"]
3939
path = src/doc/embedded-book

Cargo.lock

+5-2
Original file line numberDiff line numberDiff line change
@@ -407,9 +407,12 @@ version = "0.1.0"
407407

408408
[[package]]
409409
name = "cc"
410-
version = "1.0.105"
410+
version = "1.1.15"
411411
source = "registry+https://github.com/rust-lang/crates.io-index"
412-
checksum = "5208975e568d83b6b05cc0a063c8e7e9acc2b43bee6da15616a5b73e109d7437"
412+
checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6"
413+
dependencies = [
414+
"shlex",
415+
]
413416

414417
[[package]]
415418
name = "cfg-if"

comment.txt

+22
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,25 @@ $ gcc -fuse-ld=lld tmp/rmeta*/lib.rmeta tmp/rust_out.* dist/lib/rustlib/x86_64-u
1616
$ ./rust_out
1717
Hello World!
1818
```
19+
20+
use LLVM
21+
Install example:
22+
WASI_SDK_PATH=`pwd`/wasi-sdk-24.0-x86_64-linux WASI_SYSROOT=`pwd`/wasi-sdk-24.0-x86_64-linux/share/wasi-sysroot ./x.py install
23+
24+
If you just want to run it, https://github.com/oligamiq/rust_wasm/tree/main/rustc_llvm
25+
```
26+
$ mkdir tmp
27+
$ echo 'fn main() { println!("Hello World!"); }' | wasmtime run -Sthreads=y -Spreview2=n --dir tmp::/ --dir dist --env RUST_MIN_STACK=16777216 dist/bin/rustc.wasm - --sysroot dist --target wasm32-wasip1-threads -Csave-temps
28+
$ gcc -fuse-ld=lld tmp/rmeta*/lib.rmeta tmp/rust_out.*.o dist/lib/rustlib/x86_64-unknown-linux-gnu/lib/lib*.rlib -o rust_out
29+
$ ./rust_out
30+
Hello World!
31+
```
32+
33+
to Wasi
34+
```
35+
$ mkdir tmp
36+
$ echo 'fn main() { println!("Hello World!"); }' | wasmtime run -Sthreads=y -Spreview2=n --dir tmp::/ --dir dist --env RUST_MIN_STACK=16777216 dist/bin/rustc.wasm - --sysroot dist --target wasm32-wasip1-threads -Csave-temps
37+
$ wasi-sdk-24.0-x86_64-linux/bin/wasm-ld --shared-memory --max-memory=1073741824 --import-memory --export __main_void -z stack-size=1048576 --stack-first --allow-undefined --no-demangle --import-memory --export-memory --shared-memory dist/lib/rustlib/wasm32-wasip1-threads/lib/self-contained/crt1-command.o tmp/rust_out.*.o dist/lib/rustlib/wasm32-wasip1-threads/lib/lib*.rlib -L dist/lib/rustlib/wasm32-wasip1-threads/lib/self-contained -lc -o rust_out.wasm
38+
$ wasmtime run -Sthreads=y rust_out.wasm
39+
Hello World!
40+
```

compiler/rustc_fs_util/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ pub fn path_to_c_string(p: &Path) -> CString {
8484
let p: &OsStr = p.as_ref();
8585
CString::new(p.as_bytes()).unwrap()
8686
}
87-
#[cfg(windows)]
87+
#[cfg(any(windows, target_os = "wasi"))]
8888
pub fn path_to_c_string(p: &Path) -> CString {
8989
CString::new(p.to_str().unwrap()).unwrap()
9090
}

compiler/rustc_llvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ libc = "0.2.73"
1010

1111
[build-dependencies]
1212
# tidy-alphabetical-start
13-
cc = "=1.0.105" # FIXME(cc): pinned to keep support for VS2013
13+
cc = "1.1.15"
1414
# tidy-alphabetical-end

compiler/rustc_llvm/build.rs

+14
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,10 @@ fn output(cmd: &mut Command) -> String {
102102
}
103103

104104
fn main() {
105+
if env::var("TARGET").expect("TARGET was not set").contains("wasi") {
106+
std::env::var("WASI_SYSROOT").expect("WASI_SYSROOT not set");
107+
}
108+
105109
for component in REQUIRED_COMPONENTS.iter().chain(OPTIONAL_COMPONENTS.iter()) {
106110
println!("cargo:rustc-check-cfg=cfg(llvm_component,values(\"{component}\"))");
107111
}
@@ -201,6 +205,16 @@ fn main() {
201205
cfg.define("NDEBUG", None);
202206
}
203207

208+
209+
if target.contains("wasi") {
210+
// ref src/bootstrap/src/core/build_steps/llvm.rs
211+
212+
let wasi_sysroot = env::var("WASI_SYSROOT").expect("WASI_SYSROOT not set");
213+
cfg.compiler(format!("{wasi_sysroot}/../../bin/{target}-clang++"));
214+
cfg.flag("-pthread");
215+
cfg.flag("-D_WASI_EMULATED_MMAN");
216+
}
217+
204218
rerun_if_changed_anything_in_dir(Path::new("llvm-wrapper"));
205219
cfg.file("llvm-wrapper/PassWrapper.cpp")
206220
.file("llvm-wrapper/RustWrapper.cpp")

compiler/rustc_target/src/spec/targets/wasm32_wasip1_threads.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub(crate) fn target() -> Target {
1717

1818
options.add_pre_link_args(
1919
LinkerFlavor::WasmLld(Cc::No),
20-
&["--import-memory", "--export-memory", "--shared-memory", "-Wl,--max-memory=1073741824"],
20+
&["--import-memory", "--export-memory", "--shared-memory", "--max-memory=1073741824", "-lwasi-emulated-mman"],
2121
);
2222
options.add_pre_link_args(
2323
LinkerFlavor::WasmLld(Cc::Yes),
@@ -27,6 +27,7 @@ pub(crate) fn target() -> Target {
2727
"-Wl,--export-memory,",
2828
"-Wl,--shared-memory",
2929
"-Wl,--max-memory=1073741824",
30+
"-lwasi-emulated-mman",
3031
],
3132
);
3233

config.llvm.toml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Includes one of the default files in src/bootstrap/defaults
2+
profile = "compiler"
3+
change-id = 9999999
4+
5+
[rust]
6+
codegen-backends = ["llvm"]
7+
deny-warnings = false
8+
llvm-bitcode-linker = false
9+
10+
[llvm]
11+
cflags = "-march=native"
12+
cxxflags = "-march=native"
13+
static-libstdcpp = true
14+
ninja = false
15+
download-ci-llvm = false
16+
link-shared = false
17+
# thin-lto = true
18+
19+
[build]
20+
docs = false
21+
extended = false
22+
tools = []
23+
# host = ["wasm32-wasip1-threads", "x86_64-unknown-linux-gnu"]
24+
host = ["wasm32-wasip1-threads"]
25+
target = ["x86_64-unknown-linux-gnu", "wasm32-wasip1-threads"]
26+
# target = ["wasm32-wasip1-threads"]
27+
cargo-native-static = true
28+
29+
[install]
30+
prefix = "dist"
31+
sysconfdir = "etc"
32+
33+
[target.'wasm32-wasip1-threads']
34+
wasi-root = "wasi-sdk-24.0-x86_64-linux/share/wasi-sysroot"
35+
# codegen-backends = ["cranelift"]
36+
linker = "wasi-sdk-24.0-x86_64-linux/bin/clang"
37+
codegen-backends = ["llvm"]
38+
39+
[target.'x86_64-unknown-linux-gnu']
40+
cc = "gcc"

src/bootstrap/src/core/build_steps/llvm.rs

+172
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,178 @@ impl Step for Llvm {
515515
return res;
516516
}
517517

518+
if target.contains("wasi") {
519+
let wasi_sysroot = env::var("WASI_SYSROOT").expect("WASI_SYSROOT not set");
520+
let wasi_sdk_path = std::path::Path::new(&wasi_sysroot).join("../../").canonicalize().expect("invalid WASI_SYSROOT");
521+
let wasi_sysroot = format!("--sysroot={wasi_sysroot}");
522+
let wasi_sdk_path = wasi_sdk_path.to_str().expect("invalid WASI_SYSROOT");
523+
let wasi_target = target.triple.to_string();
524+
let wasi_cflags = String::from("");
525+
let wasi_ldflags = String::from("");
526+
let wasi_target_llvm = target.triple.to_string();
527+
let wasi_cflags_llvm = format!("{wasi_cflags} -pthread");
528+
let wasi_ldflags_llvm = wasi_ldflags;
529+
// LLVM has some (unreachable in our configuration) calls to mmap.
530+
let wasi_cflags_llvm = format!("{wasi_cflags_llvm} -D_WASI_EMULATED_MMAN");
531+
let wasi_ldflags_llvm = format!("{wasi_ldflags_llvm} -lwasi-emulated-mman");
532+
// Depending on the code being compiled, both Clang and LLD can consume unbounded amounts of memory.
533+
let wasi_ldflags_llvm = format!("{wasi_ldflags_llvm} -Wl,--max-memory=4294967296");
534+
// Compiling C++ code requires a lot of stack space and can overflow and corrupt the heap.
535+
// (For example, `#include <iostream>` alone does it in a build with the default stack size.)
536+
let wasi_ldflags_llvm = format!("{wasi_ldflags_llvm} -Wl,-z,stack-size=1048576 -Wl,--stack-first");
537+
// Some of the host APIs that are statically required by LLVM (notably threading) are dynamically
538+
// never used. An LTO build removes imports of these APIs, simplifying deployment
539+
let wasi_cflags_llvm = format!("{wasi_cflags_llvm} -flto");
540+
let wasi_ldflags_llvm = format!("{wasi_ldflags_llvm} -flto -Wl,--strip-all");
541+
542+
// We need two toolchain files: one for the compiler itself (which needs threads at the moment since
543+
// -DLLVM_ENABLE_THREADS=OFF is kind of broken), and one for the runtime libs.
544+
cfg.define("WASI", "TRUE")
545+
.define("CMAKE_SYSTEM_NAME", "Generic")
546+
.define("CMAKE_SYSTEM_VERSION", "1")
547+
.define("CMAKE_SYSTEM_PROCESSOR", "wasm32")
548+
.define("CMAKE_EXECUTABLE_SUFFIX", ".wasm")
549+
.define("CMAKE_FIND_ROOT_PATH_MODE_PROGRAM", "NEVER")
550+
.define("CMAKE_FIND_ROOT_PATH_MODE_LIBRARY", "ONLY")
551+
.define("CMAKE_FIND_ROOT_PATH_MODE_INCLUDE", "ONLY")
552+
.define("CMAKE_FIND_ROOT_PATH_MODE_PACKAGE", "ONLY")
553+
.define("CMAKE_C_COMPILER", format!("{wasi_sdk_path}/bin/{wasi_target}-clang"))
554+
.define("CMAKE_CXX_COMPILER", format!("{wasi_sdk_path}/bin/{wasi_target}-clang++"))
555+
.define("CMAKE_LINKER", format!("{wasi_sdk_path}/bin/wasm-ld"))
556+
.define("CMAKE_AR", format!("{wasi_sdk_path}/bin/ar"))
557+
.define("CMAKE_RANLIB", format!("{wasi_sdk_path}/bin/ranlib"))
558+
.define("CMAKE_C_COMPILER_TARGET", &wasi_target_llvm)
559+
.define("CMAKE_CXX_COMPILER_TARGET", &wasi_target_llvm)
560+
.define("CMAKE_C_FLAGS", format!("{wasi_sysroot} {wasi_cflags_llvm}"))
561+
.define("CMAKE_CXX_FLAGS", format!("{wasi_sysroot} {wasi_cflags_llvm}"))
562+
.define("CMAKE_EXE_LINKER_FLAGS", wasi_ldflags_llvm)
563+
.define("LLVM_BUILD_SHARED_LIBS", "OFF")
564+
.define("LLVM_ENABLE_PIC", "OFF")
565+
.define("LLVM_BUILD_STATIC", "ON")
566+
// .define("LLVM_ENABLE_THREADS", "OFF")
567+
.define("LLVM_ENABLE_THREADS", "ON")
568+
.define("LLVM_BUILD_RUNTIME", "OFF")
569+
.define("LLVM_BUILD_TOOLS", "OFF")
570+
.define("LLVM_INCLUDE_UTILS", "OFF")
571+
.define("LLVM_BUILD_UTILS", "OFF")
572+
.define("LLVM_INCLUDE_RUNTIMES", "OFF")
573+
.define("LLVM_INCLUDE_EXAMPLES", "OFF")
574+
.define("LLVM_INCLUDE_TESTS", "OFF")
575+
.define("LLVM_INCLUDE_BENCHMARKS", "OFF")
576+
.define("LLVM_INCLUDE_DOCS", "OFF")
577+
.define("LLVM_TOOL_BUGPOINT_BUILD", "OFF")
578+
.define("LLVM_TOOL_BUGPOINT_PASSES_BUILD", "OFF")
579+
.define("LLVM_TOOL_DSYMUTIL_BUILD", "OFF")
580+
.define("LLVM_TOOL_DXIL_DIS_BUILD", "OFF")
581+
.define("LLVM_TOOL_GOLD_BUILD", "OFF")
582+
.define("LLVM_TOOL_LLC_BUILD", "OFF")
583+
.define("LLVM_TOOL_LLI_BUILD", "OFF")
584+
// .define("LLVM_TOOL_LLVM_AR_BUILD", "ON")
585+
// .define("LLVM_TOOL_LLVM_AS_BUILD", "ON")
586+
.define("LLVM_TOOL_LLVM_AS_FUZZER_BUILD", "OFF")
587+
.define("LLVM_TOOL_LLVM_BCANALYZER_BUILD", "OFF")
588+
.define("LLVM_TOOL_LLVM_CAT_BUILD", "OFF")
589+
.define("LLVM_TOOL_LLVM_CFI_VERIFY_BUILD", "OFF")
590+
.define("LLVM_TOOL_LLVM_CONFIG_BUILD", "OFF")
591+
// .define("LLVM_TOOL_LLVM_COV_BUILD", "ON")
592+
.define("LLVM_TOOL_LLVM_CVTRES_BUILD", "OFF")
593+
.define("LLVM_TOOL_LLVM_CXXDUMP_BUILD", "OFF")
594+
// .define("LLVM_TOOL_LLVM_CXXFILT_BUILD", "ON")
595+
.define("LLVM_TOOL_LLVM_CXXMAP_BUILD", "OFF")
596+
.define("LLVM_TOOL_LLVM_C_TEST_BUILD", "OFF")
597+
.define("LLVM_TOOL_LLVM_DEBUGINFOD_BUILD", "OFF")
598+
.define("LLVM_TOOL_LLVM_DEBUGINFOD_FIND_BUILD", "OFF")
599+
.define("LLVM_TOOL_LLVM_DEBUGINFO_ANALYZER_BUILD", "OFF")
600+
.define("LLVM_TOOL_LLVM_DIFF_BUILD", "OFF")
601+
.define("LLVM_TOOL_LLVM_DIS_BUILD", "OFF")
602+
.define("LLVM_TOOL_LLVM_DIS_FUZZER_BUILD", "OFF")
603+
.define("LLVM_TOOL_LLVM_DLANG_DEMANGLE_FUZZER_BUILD", "OFF")
604+
// .define("LLVM_TOOL_LLVM_DRIVER_BUILD", "ON")
605+
// .define("LLVM_TOOL_LLVM_DWARFDUMP_BUILD", "ON")
606+
.define("LLVM_TOOL_LLVM_DWARFUTIL_BUILD", "OFF")
607+
.define("LLVM_TOOL_LLVM_DWP_BUILD", "OFF")
608+
.define("LLVM_TOOL_LLVM_EXEGESIS_BUILD", "OFF")
609+
.define("LLVM_TOOL_LLVM_EXTRACT_BUILD", "OFF")
610+
.define("LLVM_TOOL_LLVM_GSYMUTIL_BUILD", "OFF")
611+
.define("LLVM_TOOL_LLVM_IFS_BUILD", "OFF")
612+
.define("LLVM_TOOL_LLVM_ISEL_FUZZER_BUILD", "OFF")
613+
.define("LLVM_TOOL_LLVM_ITANIUM_DEMANGLE_FUZZER_BUILD", "OFF")
614+
.define("LLVM_TOOL_LLVM_JITLINK_BUILD", "OFF")
615+
.define("LLVM_TOOL_LLVM_JITLISTENER_BUILD", "OFF")
616+
.define("LLVM_TOOL_LLVM_LIBTOOL_DARWIN_BUILD", "OFF")
617+
.define("LLVM_TOOL_LLVM_LINK_BUILD", "ON")
618+
.define("LLVM_TOOL_LLVM_LIPO_BUILD", "OFF")
619+
.define("LLVM_TOOL_LLVM_LTO2_BUILD", "OFF")
620+
.define("LLVM_TOOL_LLVM_LTO_BUILD", "OFF")
621+
.define("LLVM_TOOL_LLVM_MCA_BUILD", "OFF")
622+
.define("LLVM_TOOL_LLVM_MC_ASSEMBLE_FUZZER_BUILD", "OFF")
623+
.define("LLVM_TOOL_LLVM_MC_BUILD", "OFF")
624+
.define("LLVM_TOOL_LLVM_MC_DISASSEMBLE_FUZZER_BUILD", "OFF")
625+
.define("LLVM_TOOL_LLVM_MICROSOFT_DEMANGLE_FUZZER_BUILD", "OFF")
626+
.define("LLVM_TOOL_LLVM_ML_BUILD", "OFF")
627+
.define("LLVM_TOOL_LLVM_MODEXTRACT_BUILD", "OFF")
628+
.define("LLVM_TOOL_LLVM_MT_BUILD", "OFF")
629+
.define("LLVM_TOOL_LLVM_NM_BUILD", "OFF")
630+
// .define("LLVM_TOOL_LLVM_OBJCOPY_BUILD", "ON")
631+
// .define("LLVM_TOOL_LLVM_OBJDUMP_BUILD", "ON")
632+
.define("LLVM_TOOL_LLVM_OPT_FUZZER_BUILD", "OFF")
633+
.define("LLVM_TOOL_LLVM_OPT_REPORT_BUILD", "OFF")
634+
.define("LLVM_TOOL_LLVM_PDBUTIL_BUILD", "OFF")
635+
.define("LLVM_TOOL_LLVM_PROFDATA_BUILD", "OFF")
636+
.define("LLVM_TOOL_LLVM_PROFGEN_BUILD", "OFF")
637+
.define("LLVM_TOOL_LLVM_RC_BUILD", "OFF")
638+
.define("LLVM_TOOL_LLVM_READOBJ_BUILD", "OFF")
639+
.define("LLVM_TOOL_LLVM_READTAPI_BUILD", "OFF")
640+
.define("LLVM_TOOL_LLVM_REDUCE_BUILD", "OFF")
641+
.define("LLVM_TOOL_LLVM_REMARKUTIL_BUILD", "OFF")
642+
.define("LLVM_TOOL_LLVM_RTDYLD_BUILD", "OFF")
643+
.define("LLVM_TOOL_LLVM_RUST_DEMANGLE_FUZZER_BUILD", "OFF")
644+
.define("LLVM_TOOL_LLVM_SHLIB_BUILD", "OFF")
645+
.define("LLVM_TOOL_LLVM_SIM_BUILD", "OFF")
646+
.define("LLVM_TOOL_LLVM_SIZE_BUILD", "OFF")
647+
.define("LLVM_TOOL_LLVM_SPECIAL_CASE_LIST_FUZZER_BUILD", "OFF")
648+
.define("LLVM_TOOL_LLVM_SPLIT_BUILD", "OFF")
649+
.define("LLVM_TOOL_LLVM_STRESS_BUILD", "OFF")
650+
.define("LLVM_TOOL_LLVM_STRINGS_BUILD", "OFF")
651+
.define("LLVM_TOOL_LLVM_SYMBOLIZER_BUILD", "ON")
652+
.define("LLVM_TOOL_LLVM_TLI_CHECKER_BUILD", "OFF")
653+
.define("LLVM_TOOL_LLVM_UNDNAME_BUILD", "OFF")
654+
.define("LLVM_TOOL_LLVM_XRAY_BUILD", "OFF")
655+
.define("LLVM_TOOL_LLVM_YAML_NUMERIC_PARSER_FUZZER_BUILD", "OFF")
656+
.define("LLVM_TOOL_LLVM_YAML_PARSER_FUZZER_BUILD", "OFF")
657+
.define("LLVM_TOOL_LTO_BUILD", "OFF")
658+
.define("LLVM_TOOL_OBJ2YAML_BUILD", "OFF")
659+
.define("LLVM_TOOL_OPT_BUILD", "OFF")
660+
.define("LLVM_TOOL_OPT_VIEWER_BUILD", "OFF")
661+
.define("LLVM_TOOL_REDUCE_CHUNK_LIST_BUILD", "OFF")
662+
.define("LLVM_TOOL_REMARKS_SHLIB_BUILD", "OFF")
663+
.define("LLVM_TOOL_SANCOV_BUILD", "OFF")
664+
.define("LLVM_TOOL_SANSTATS_BUILD", "OFF")
665+
.define("LLVM_TOOL_SPIRV_TOOLS_BUILD", "OFF")
666+
.define("LLVM_TOOL_VERIFY_USELISTORDER_BUILD", "OFF")
667+
.define("LLVM_TOOL_VFABI_DEMANGLE_FUZZER_BUILD", "OFF")
668+
.define("LLVM_TOOL_XCODE_TOOLCHAIN_BUILD", "OFF")
669+
.define("LLVM_TOOL_YAML2OBJ_BUILD", "OFF")
670+
// .define("LLVM_ENABLE_PROJECTS", "clang;lld")
671+
.define("LLVM_ENABLE_PROJECTS", "")
672+
// .define("CLANG_ENABLE_ARCMT", "OFF")
673+
// .define("CLANG_ENABLE_STATIC_ANALYZER", "OFF")
674+
// .define("CLANG_INCLUDE_TESTS", "OFF")
675+
// .define("CLANG_BUILD_TOOLS", "OFF")
676+
// .define("CLANG_TOOL_CLANG_SCAN_DEPS_BUILD", "OFF")
677+
// .define("CLANG_TOOL_CLANG_INSTALLAPI_BUILD", "OFF")
678+
// .define("CLANG_BUILD_EXAMPLES", "OFF")
679+
// .define("CLANG_INCLUDE_DOCS", "OFF")
680+
// .define("CLANG_LINKS_TO_CREATE", "clang;clang++")
681+
// .define("CLANG_LINKS_TO_CREATE", "")
682+
.define("LLD_BUILD_TOOLS", "OFF")
683+
.define("CMAKE_BUILD_TYPE", "MinSizeRel")
684+
.define("HAVE_DLOPEN", "");
685+
} else {
686+
cfg.define("LLVM_TOOL_LLVM_CONFIG_BUILD", "ON")
687+
.define("LLVM_BUILD_TOOLS", "ON");
688+
}
689+
518690
cfg.build();
519691

520692
// Helper to find the name of LLVM's shared library on darwin and linux.

0 commit comments

Comments
 (0)