Skip to content

Commit 5713448

Browse files
authored
Auto merge of #34096 - eddyb:launch, r=nikomatsakis
Switch to MIR-based translation by default. This patch makes `-Z orbit` default to "on", which means that by default, functions will be translated from Rust to LLVM IR through the upcoming MIR backend, instead of the antiquated AST backend. This switch is made possible by the recently merged #33622, #33905 and smaller fixes. If you experience any issues, please file a report for each of them. You can switch to the old backend to work around problems by either setting `RUSTFLAGS="-Zorbit=off"` or by annotating specific functions with `#[rustc_no_mir]` (which requires `#![feature(rustc_attrs)]` at the crate-level). I would like this PR to get into nightly soon so that we can get early feedback in this release cycle and focus on correctness fixes and performance improvements, with the potential for removing the old backend implementation before beta branches off. cc @rust-lang/compiler
2 parents 28ce3e8 + d2f2df1 commit 5713448

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -609,7 +609,7 @@ opt dist-host-only 0 "only install bins for the host architecture"
609609
opt inject-std-version 1 "inject the current compiler version of libstd into programs"
610610
opt llvm-version-check 1 "check if the LLVM version is supported, build anyway"
611611
opt rustbuild 0 "use the rust and cargo based build system"
612-
opt orbit 0 "get MIR where it belongs - everywhere; most importantly, in orbit"
612+
opt orbit 1 "get MIR where it belongs - everywhere; most importantly, in orbit"
613613
opt codegen-tests 1 "run the src/test/codegen tests"
614614
opt option-checking 1 "complain about unrecognized options in this configure script"
615615
opt ninja 0 "build LLVM using the Ninja generator (for MSVC, requires building in the correct environment)"
@@ -733,7 +733,7 @@ if [ -n "$CFG_ENABLE_DEBUG_ASSERTIONS" ]; then putvar CFG_ENABLE_DEBUG_ASSERTION
733733
if [ -n "$CFG_ENABLE_DEBUGINFO" ]; then putvar CFG_ENABLE_DEBUGINFO; fi
734734
if [ -n "$CFG_ENABLE_DEBUG_JEMALLOC" ]; then putvar CFG_ENABLE_DEBUG_JEMALLOC; fi
735735

736-
if [ -n "$CFG_ENABLE_ORBIT" ]; then putvar CFG_ENABLE_ORBIT; fi
736+
if [ -n "$CFG_DISABLE_ORBIT" ]; then putvar CFG_DISABLE_ORBIT; fi
737737

738738
step_msg "looking for build programs"
739739

mk/main.mk

+3-3
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,9 @@ ifdef CFG_ENABLE_DEBUGINFO
162162
CFG_RUSTC_FLAGS += -g
163163
endif
164164

165-
ifdef CFG_ENABLE_ORBIT
166-
$(info cfg: launching MIR (CFG_ENABLE_ORBIT))
167-
CFG_RUSTC_FLAGS += -Z orbit
165+
ifdef CFG_DISABLE_ORBIT
166+
$(info cfg: HOLD HOLD HOLD (CFG_DISABLE_ORBIT))
167+
CFG_RUSTC_FLAGS += -Z orbit=off
168168
endif
169169

170170
ifdef SAVE_TEMPS

src/doc/book/lang-items.md

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ sugar for dynamic allocations via `malloc` and `free`:
1919
#![feature(lang_items, box_syntax, start, libc)]
2020
#![no_std]
2121

22+
# #![feature(panic_unwind)]
23+
# extern crate unwind;
2224
extern crate libc;
2325

2426
extern {

src/librustc/session/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
756756
"dump MIR state at various points in translation"),
757757
dump_mir_dir: Option<String> = (None, parse_opt_string,
758758
"the directory the MIR is dumped into"),
759-
orbit: bool = (false, parse_bool,
759+
orbit: bool = (true, parse_bool,
760760
"get MIR where it belongs - everywhere; most importantly, in orbit"),
761761
}
762762

0 commit comments

Comments
 (0)