-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show files produced by --emit foo in json artifact notifications
- Loading branch information
Showing
7 changed files
with
140 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
fn one() -> usize { | ||
1 | ||
} | ||
|
||
pub mod a { | ||
pub fn two() -> usize { | ||
::one() + ::one() | ||
} | ||
} | ||
|
||
pub mod b { | ||
pub fn three() -> usize { | ||
::one() + ::a::two() | ||
} | ||
} | ||
|
||
#[inline(never)] | ||
pub fn main() { | ||
a::two(); | ||
b::three(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// rust should produce artifact notifications about files it was asked to --emit. | ||
// | ||
// It should work in incremental mode both on the first pass where files are generated as well | ||
// as on subsequent passes where they are taken from the incremental cache | ||
// | ||
// See <https://internals.rust-lang.org/t/easier-access-to-files-generated-by-emit-foo/20477> | ||
extern crate run_make_support; | ||
|
||
use run_make_support::{rustc, tmp_dir}; | ||
|
||
fn main() { | ||
let inc_dir = tmp_dir(); | ||
|
||
// With single codegen unit files are renamed to match the source file name | ||
for _ in 0..=1 { | ||
let output = rustc() | ||
.input("lib.rs") | ||
.emit("obj,asm,llvm-ir,llvm-bc,mir") | ||
.codegen_units(1) | ||
.json("artifacts") | ||
.error_format("json") | ||
.incremental(&inc_dir) | ||
.run(); | ||
let stderr = String::from_utf8_lossy(&output.stderr); | ||
for file in &["lib.o", "lib.ll", "lib.bc", "lib.s"] { | ||
assert!(stderr.contains(file), "No {:?} in {:?}", file, stderr); | ||
} | ||
} | ||
|
||
// with multiple codegen units files keep codegen unit id part. | ||
for _ in 0..=1 { | ||
let output = rustc() | ||
.input("lib.rs") | ||
.emit("obj,asm,llvm-ir,llvm-bc,mir") | ||
.codegen_units(2) | ||
.json("artifacts") | ||
.error_format("json") | ||
.incremental(&inc_dir) | ||
.run(); | ||
let stderr = String::from_utf8_lossy(&output.stderr); | ||
for file in &["rcgu.o", "rcgu.ll", "rcgu.bc", "rcgu.s"] { | ||
assert!(stderr.contains(file), "No {:?} in {:?}", file, stderr); | ||
} | ||
} | ||
} |