Skip to content

Commit 553f5be

Browse files
committedDec 25, 2016
Hack to enable alloc_frame for stage1+ rustc
1 parent 5fad627 commit 553f5be

File tree

16 files changed

+40
-21
lines changed

16 files changed

+40
-21
lines changed
 

‎configure

+7-1
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ opt codegen-tests 1 "run the src/test/codegen tests"
637637
opt option-checking 1 "complain about unrecognized options in this configure script"
638638
opt ninja 0 "build LLVM using the Ninja generator (for MSVC, requires building in the correct environment)"
639639
opt vendor 0 "enable usage of vendored Rust crates"
640-
opt frame-alloc 0 "enable the frame allocator"
640+
opt rustc-alloc-frame 0 "enable the frame allocator in rustc"
641641

642642
# Optimization and debugging options. These may be overridden by the release channel, etc.
643643
opt_nosave optimize 1 "build optimized rust code"
@@ -1065,6 +1065,12 @@ else
10651065
CFG_USING_LIBCPP="0"
10661066
fi
10671067

1068+
# Disable jemalloc if using alloc frame.
1069+
if [ -n "$CFG_ENABLE_RUSTC_ALLOC_FRAME" ]
1070+
then
1071+
CFG_DISABLE_JEMALLOC=1
1072+
fi
1073+
Has a conversation. Original line has a conversation.
10681074
# Same with jemalloc. save the setting here.
10691075
if [ -n "$CFG_DISABLE_JEMALLOC" ]
10701076
then

‎src/Cargo.lock

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/bootstrap/config.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ pub struct Config {
7777
// libstd features
7878
pub debug_jemalloc: bool,
7979
pub use_jemalloc: bool,
80-
pub use_alloc_frame: bool,
8180
pub backtrace: bool, // support for RUST_BACKTRACE
8281

8382
// misc
83+
pub rustc_alloc_frame: bool,
8484
pub channel: String,
8585
pub quiet_tests: bool,
8686
// Fallback musl-root for all targets
@@ -177,7 +177,7 @@ struct Rust {
177177
debuginfo_lines: Option<bool>,
178178
debug_jemalloc: Option<bool>,
179179
use_jemalloc: Option<bool>,
180-
use_alloc_frame: Option<bool>,
180+
rustc_alloc_frame: Option<bool>,
181181
backtrace: Option<bool>,
182182
default_linker: Option<String>,
183183
default_ar: Option<String>,
@@ -205,7 +205,7 @@ impl Config {
205205
let mut config = Config::default();
206206
config.llvm_optimize = true;
207207
config.use_jemalloc = true;
208-
config.use_alloc_frame = false;
208+
config.rustc_alloc_frame = false;
209209
config.backtrace = true;
210210
config.rust_optimize = true;
211211
config.rust_optimize_tests = true;
@@ -301,9 +301,9 @@ impl Config {
301301
set(&mut config.rust_rpath, rust.rpath);
302302
set(&mut config.debug_jemalloc, rust.debug_jemalloc);
303303
set(&mut config.use_jemalloc, rust.use_jemalloc);
304-
set(&mut config.use_alloc_frame, rust.use_alloc_frame);
305304
set(&mut config.backtrace, rust.backtrace);
306305
set(&mut config.channel, rust.channel.clone());
306+
set(&mut config.rustc_alloc_frame, rust.rustc_alloc_frame);
307307
config.rustc_default_linker = rust.default_linker.clone();
308308
config.rustc_default_ar = rust.default_ar.clone();
309309
config.musl_root = rust.musl_root.clone().map(PathBuf::from);
@@ -389,7 +389,7 @@ impl Config {
389389
("DEBUGINFO_LINES", self.rust_debuginfo_lines),
390390
("JEMALLOC", self.use_jemalloc),
391391
("DEBUG_JEMALLOC", self.debug_jemalloc),
392-
("FRAME_ALLOC", self.use_alloc_frame),
392+
("RUSTC_ALLOC_FRAME", self.rustc_alloc_frame),
393393
("RPATH", self.rust_rpath),
394394
("OPTIMIZE_TESTS", self.rust_optimize_tests),
395395
("DEBUGINFO_TESTS", self.rust_debuginfo_tests),

‎src/bootstrap/config.toml.example

+4-1
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,12 @@
137137
# Whether or not jemalloc is built with its debug option set
138138
#debug-jemalloc = false
139139

140-
# Whether or not the frame allocator is built and enabled
140+
# Whether or not the frame allocator is built and enabled in std
141141
#use-alloc-frame = false
142142

143+
# Whether or not the frame allocator is built and enabled in rustc
144+
#rustc-use-alloc-frame = false
145+
143146
# Whether or not `panic!`s generate backtraces (RUST_BACKTRACE)
144147
#backtrace = true
145148

‎src/bootstrap/lib.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -609,9 +609,6 @@ impl Build {
609609
if self.config.use_jemalloc {
610610
features.push_str(" jemalloc");
611611
}
612-
if self.config.use_alloc_frame {
613-
features.push_str(" alloc_frame");
614-
}
615612
if self.config.backtrace {
616613
features.push_str(" backtrace");
617614
}
@@ -624,8 +621,8 @@ impl Build {
624621
if self.config.use_jemalloc {
625622
features.push_str(" jemalloc");
626623
}
627-
if self.config.use_alloc_frame {
628-
features.push_str(" alloc_frame");
624+
if self.config.rustc_alloc_frame {
625+
features.push_str(" rustc_alloc_frame");
629626
}
630627
return features
631628
}

‎src/librustc_driver/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,6 @@ serialize = { path = "../libserialize" }
3636
syntax = { path = "../libsyntax" }
3737
syntax_ext = { path = "../libsyntax_ext" }
3838
syntax_pos = { path = "../libsyntax_pos" }
39+
40+
[features]
41+
rustc_alloc_frame = ["rustc_metadata/rustc_alloc_frame"]

‎src/librustc_metadata/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@ serialize = { path = "../libserialize" }
2222
syntax = { path = "../libsyntax" }
2323
syntax_ext = { path = "../libsyntax_ext" }
2424
syntax_pos = { path = "../libsyntax_pos" }
25+
26+
[features]
27+
rustc_alloc_frame = []

‎src/librustc_metadata/creader.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,10 @@ impl<'a> CrateLoader<'a> {
820820
// * Binaries use jemalloc
821821
// * Staticlibs and Rust dylibs use system malloc
822822
// * Rust dylibs used as dependencies to rust use jemalloc
823-
let name = if need_lib_alloc && !self.sess.opts.cg.prefer_dynamic {
823+
let name = if cfg!(rustc_alloc_frame) && (cfg!(stage0) || cfg!(stage1)) {
824+
// HACK to make stage1/2 with alloc_frame
825+
Symbol::intern(&"alloc_frame")
826+
} else if need_lib_alloc && !self.sess.opts.cg.prefer_dynamic {
Has a conversation. Original line has a conversation.
824827
Symbol::intern(&self.sess.target.target.options.lib_allocation_crate)
825828
} else {
826829
Symbol::intern(&self.sess.target.target.options.exe_allocation_crate)

‎src/librustdoc/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@ log = { path = "../liblog" }
3030
[build-dependencies]
3131
build_helper = { path = "../build_helper" }
3232
gcc = "0.3.27"
33+
34+
[features]
35+
rustc_alloc_frame = ["rustc_driver/rustc_alloc_frame", "rustc_metadata/rustc_alloc_frame"]

‎src/libstd/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ crate-type = ["dylib", "rlib"]
1313
alloc = { path = "../liballoc" }
1414
alloc_jemalloc = { path = "../liballoc_jemalloc", optional = true }
1515
alloc_system = { path = "../liballoc_system" }
16-
alloc_frame = { path = "../liballoc_frame", optional = true }
1716
panic_unwind = { path = "../libpanic_unwind", optional = true }
1817
panic_abort = { path = "../libpanic_abort" }
1918
collections = { path = "../libcollections" }

‎src/libstd/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ extern crate libc;
331331
// We always need an unwinder currently for backtraces
332332
extern crate unwind;
333333

334-
#[cfg(all(stage0, not(alloc_frame)))]
334+
#[cfg(stage0)]
335335
extern crate alloc_system;
336336

337337
// compiler-rt intrinsics

‎src/rustc/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ alloc_frame = { path = "../liballoc_frame", optional = true }
2121

2222
[features]
2323
jemalloc = ["rustc_back/jemalloc"]
24+
rustc_alloc_frame = ["alloc_frame", "rustc_driver/rustc_alloc_frame"]

‎src/rustc/rustc.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
// except according to those terms.
1010

1111
#![feature(rustc_private)]
12-
#![cfg_attr(feature = "alloc_frame", feature(alloc_frame))]
12+
#![feature(staged_api)]
13+
#![cfg_attr(all(feature = "rustc_alloc_frame", not(stage0)), feature(alloc_frame))]
1314

1415
extern crate rustc_driver;
1516

1617
// Use the frame allocator to speed up runtime
17-
#[cfg(feature = "alloc_frame")]
18+
#[cfg(all(feature = "rustc_alloc_frame", not(stage0)))]
1819
extern crate alloc_frame;
1920

2021
fn main() { rustc_driver::main() }

‎src/rustc/rustdoc.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@
99
// except according to those terms.
1010

1111
#![feature(rustdoc)]
12-
#![cfg_attr(feature = "alloc_frame", feature(alloc_frame))]
12+
#![feature(staged_api)]
13+
#![cfg_attr(all(feature = "rustc_alloc_frame", not(stage0)), feature(alloc_frame))]
1314

1415
extern crate rustdoc;
1516

1617
// Use the frame allocator to speed up runtime
17-
#[cfg(feature = "alloc_frame")]
18+
#[cfg(all(feature = "rustc_alloc_frame", not(stage0)))]
1819
extern crate alloc_frame;
1920

2021
fn main() { rustdoc::main() }

‎src/rustc/std_shim/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,4 @@ core = { path = "../../libcore" }
3737
backtrace = ["std/backtrace"]
3838
debug-jemalloc = ["std/debug-jemalloc"]
3939
jemalloc = ["std/jemalloc"]
40-
alloc_frame = ["std/alloc_frame"]
4140
panic-unwind = ["std/panic-unwind"]

‎src/tools/tidy/src/pal.rs

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
//! - core may not have platform-specific code
2929
//! - liballoc_system may have platform-specific code
3030
//! - liballoc_jemalloc may have platform-specific code
31+
//! - liballoc_frame may have platform-specific code
3132
//! - libpanic_abort may have platform-specific code
3233
//! - libpanic_unwind may have platform-specific code
3334
//! - libunwind may have platform-specific code

0 commit comments

Comments
 (0)
Please sign in to comment.