Skip to content

Commit 71c2376

Browse files
committed
Use more PGO counters
1 parent 8fb3161 commit 71c2376

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/bootstrap/llvm.rs

+1
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,7 @@ impl Step for Llvm {
344344
cfg.define("LLVM_PROFILE_DATA_DIR", llvm_profile_dir);
345345
}
346346
}
347+
cfg.define("LLVM_VP_COUNTERS_PER_SITE", "10");
347348
cfg.define("LLVM_BUILD_RUNTIME", "No");
348349
}
349350
if let Some(path) = builder.config.llvm_profile_use.as_ref() {

src/ci/stage-build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -822,7 +822,7 @@ def execute_build_pipeline(timer: Timer, pipeline: Pipeline, runner: BenchmarkRu
822822

823823
# Stage 1b: Build rustc + CS PGO instrumented LLVM
824824
with timer.section("Stage 1b (LLVM CS PGO)") as stage1b:
825-
with stage1.section("Build rustc and LLVM") as rustc_build:
825+
with stage1b.section("Build rustc and LLVM") as rustc_build:
826826
build_rustc(pipeline, args=[
827827
"--llvm-profile-generate",
828828
"--llvm-profile-use",

0 commit comments

Comments
 (0)