Skip to content

Commit a19e748

Browse files
committed
Auto merge of #91338 - matthiaskrgr:rollup-46ry8wi, r=matthiaskrgr
Rollup of 3 pull requests Successful merges: - #90131 (Fix a format_args span to be expansion) - #90832 (Add 1.57.0 release notes) - #90833 (Emit LLVM optimization remarks when enabled with `-Cremark`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 350158d + 67762ff commit a19e748

31 files changed

+328
-20
lines changed

RELEASES.md

+114
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,117 @@
1+
Version 1.57.0 (2021-12-02)
2+
==========================
3+
4+
Language
5+
--------
6+
7+
- [Macro attributes may follow `#[derive]` and will see the original (pre-`cfg`) input.][87220]
8+
- [Accept curly-brace macros in expressions, like `m!{ .. }.method()` and `m!{ .. }?`.][88690]
9+
- [Allow panicking in constant evaluation.][89508]
10+
11+
Compiler
12+
--------
13+
14+
- [Create more accurate debuginfo for vtables.][89597]
15+
- [Add `armv6k-nintendo-3ds` at Tier 3\*.][88529]
16+
- [Add `armv7-unknown-linux-uclibceabihf` at Tier 3\*.][88952]
17+
- [Add `m68k-unknown-linux-gnu` at Tier 3\*.][88321]
18+
- [Add SOLID targets at Tier 3\*:][86191] `aarch64-kmc-solid_asp3`, `armv7a-kmc-solid_asp3-eabi`, `armv7a-kmc-solid_asp3-eabihf`
19+
20+
\* Refer to Rust's [platform support page][platform-support-doc] for more
21+
information on Rust's tiered platform support.
22+
23+
Libraries
24+
---------
25+
26+
- [Avoid allocations and copying in `Vec::leak`][89337]
27+
- [Add `#[repr(i8)]` to `Ordering`][89507]
28+
- [Optimize `File::read_to_end` and `read_to_string`][89582]
29+
- [Update to Unicode 14.0][89614]
30+
- [Many more functions are marked `#[must_use]`][89692], producing a warning
31+
when ignoring their return value. This helps catch mistakes such as expecting
32+
a function to mutate a value in place rather than return a new value.
33+
34+
Stabilised APIs
35+
---------------
36+
37+
- [`[T; N]::as_mut_slice`][`array::as_mut_slice`]
38+
- [`[T; N]::as_slice`][`array::as_slice`]
39+
- [`collections::TryReserveError`]
40+
- [`HashMap::try_reserve`]
41+
- [`HashSet::try_reserve`]
42+
- [`String::try_reserve`]
43+
- [`String::try_reserve_exact`]
44+
- [`Vec::try_reserve`]
45+
- [`Vec::try_reserve_exact`]
46+
- [`VecDeque::try_reserve`]
47+
- [`VecDeque::try_reserve_exact`]
48+
- [`Iterator::map_while`]
49+
- [`iter::MapWhile`]
50+
- [`proc_macro::is_available`]
51+
- [`Command::get_program`]
52+
- [`Command::get_args`]
53+
- [`Command::get_envs`]
54+
- [`Command::get_current_dir`]
55+
- [`CommandArgs`]
56+
- [`CommandEnvs`]
57+
58+
These APIs are now usable in const contexts:
59+
60+
- [`hint::unreachable_unchecked`]
61+
62+
Cargo
63+
-----
64+
65+
- [Stabilize custom profiles][cargo/9943]
66+
67+
Compatibility notes
68+
-------------------
69+
70+
Internal changes
71+
----------------
72+
These changes provide no direct user facing benefits, but represent significant
73+
improvements to the internals and overall performance of rustc
74+
and related tools.
75+
76+
- [Added an experimental backend for codegen with `libgccjit`.][87260]
77+
78+
[86191]: https://github.com/rust-lang/rust/pull/86191/
79+
[87220]: https://github.com/rust-lang/rust/pull/87220/
80+
[87260]: https://github.com/rust-lang/rust/pull/87260/
81+
[88243]: https://github.com/rust-lang/rust/pull/88243/
82+
[88321]: https://github.com/rust-lang/rust/pull/88321/
83+
[88529]: https://github.com/rust-lang/rust/pull/88529/
84+
[88690]: https://github.com/rust-lang/rust/pull/88690/
85+
[88952]: https://github.com/rust-lang/rust/pull/88952/
86+
[89337]: https://github.com/rust-lang/rust/pull/89337/
87+
[89507]: https://github.com/rust-lang/rust/pull/89507/
88+
[89508]: https://github.com/rust-lang/rust/pull/89508/
89+
[89582]: https://github.com/rust-lang/rust/pull/89582/
90+
[89597]: https://github.com/rust-lang/rust/pull/89597/
91+
[89614]: https://github.com/rust-lang/rust/pull/89614/
92+
[89692]: https://github.com/rust-lang/rust/issues/89692/
93+
[cargo/9943]: https://github.com/rust-lang/cargo/pull/9943/
94+
[`array::as_mut_slice`]: https://doc.rust-lang.org/std/primitive.array.html#method.as_mut_slice
95+
[`array::as_slice`]: https://doc.rust-lang.org/std/primitive.array.html#method.as_slice
96+
[`collections::TryReserveError`]: https://doc.rust-lang.org/std/collections/struct.TryReserveError.html
97+
[`HashMap::try_reserve`]: https://doc.rust-lang.org/std/collections/hash_map/struct.HashMap.html#method.try_reserve
98+
[`HashSet::try_reserve`]: https://doc.rust-lang.org/std/collections/hash_set/struct.HashSet.html#method.try_reserve
99+
[`String::try_reserve`]: https://doc.rust-lang.org/alloc/string/struct.String.html#method.try_reserve
100+
[`String::try_reserve_exact`]: https://doc.rust-lang.org/alloc/string/struct.String.html#method.try_reserve_exact
101+
[`Vec::try_reserve`]: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.try_reserve
102+
[`Vec::try_reserve_exact`]: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.try_reserve_exact
103+
[`VecDeque::try_reserve`]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html#method.try_reserve
104+
[`VecDeque::try_reserve_exact`]: https://doc.rust-lang.org/std/collections/struct.VecDeque.html#method.try_reserve_exact
105+
[`Iterator::map_while`]: https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.map_while
106+
[`iter::MapWhile`]: https://doc.rust-lang.org/std/iter/struct.MapWhile.html
107+
[`proc_macro::is_available`]: https://doc.rust-lang.org/proc_macro/fn.is_available.html
108+
[`Command::get_program`]: https://doc.rust-lang.org/std/process/struct.Command.html#method.get_program
109+
[`Command::get_args`]: https://doc.rust-lang.org/std/process/struct.Command.html#method.get_args
110+
[`Command::get_envs`]: https://doc.rust-lang.org/std/process/struct.Command.html#method.get_envs
111+
[`Command::get_current_dir`]: https://doc.rust-lang.org/std/process/struct.Command.html#method.get_current_dir
112+
[`CommandArgs`]: https://doc.rust-lang.org/std/process/struct.CommandArgs.html
113+
[`CommandEnvs`]: https://doc.rust-lang.org/std/process/struct.CommandEnvs.html
114+
1115
Version 1.56.1 (2021-11-01)
2116
===========================
3117

compiler/rustc_builtin_macros/src/format.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,10 @@ impl<'a, 'b> Context<'a, 'b> {
769769
for arg_ty in self.arg_unique_types[i].iter() {
770770
args.push(Context::format_arg(self.ecx, self.macsp, e.span, arg_ty, i));
771771
}
772-
heads.push(self.ecx.expr_addr_of(e.span, e));
772+
// use the arg span for `&arg` so that borrowck errors
773+
// point to the specific expression passed to the macro
774+
// (the span is otherwise unavailable in MIR)
775+
heads.push(self.ecx.expr_addr_of(e.span.with_ctxt(self.macsp.ctxt()), e));
773776
}
774777
for pos in self.count_args {
775778
let index = match pos {

compiler/rustc_codegen_llvm/src/back/write.rs

+29-10
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ pub(crate) fn save_temp_bitcode(
259259
pub struct DiagnosticHandlers<'a> {
260260
data: *mut (&'a CodegenContext<LlvmCodegenBackend>, &'a Handler),
261261
llcx: &'a llvm::Context,
262+
old_handler: Option<&'a llvm::DiagnosticHandler>,
262263
}
263264

264265
impl<'a> DiagnosticHandlers<'a> {
@@ -267,12 +268,35 @@ impl<'a> DiagnosticHandlers<'a> {
267268
handler: &'a Handler,
268269
llcx: &'a llvm::Context,
269270
) -> Self {
271+
let remark_passes_all: bool;
272+
let remark_passes: Vec<CString>;
273+
match &cgcx.remark {
274+
Passes::All => {
275+
remark_passes_all = true;
276+
remark_passes = Vec::new();
277+
}
278+
Passes::Some(passes) => {
279+
remark_passes_all = false;
280+
remark_passes =
281+
passes.iter().map(|name| CString::new(name.as_str()).unwrap()).collect();
282+
}
283+
};
284+
let remark_passes: Vec<*const c_char> =
285+
remark_passes.iter().map(|name: &CString| name.as_ptr()).collect();
270286
let data = Box::into_raw(Box::new((cgcx, handler)));
271287
unsafe {
288+
let old_handler = llvm::LLVMRustContextGetDiagnosticHandler(llcx);
289+
llvm::LLVMRustContextConfigureDiagnosticHandler(
290+
llcx,
291+
diagnostic_handler,
292+
data.cast(),
293+
remark_passes_all,
294+
remark_passes.as_ptr(),
295+
remark_passes.len(),
296+
);
272297
llvm::LLVMRustSetInlineAsmDiagnosticHandler(llcx, inline_asm_handler, data.cast());
273-
llvm::LLVMContextSetDiagnosticHandler(llcx, diagnostic_handler, data.cast());
298+
DiagnosticHandlers { data, llcx, old_handler }
274299
}
275-
DiagnosticHandlers { data, llcx }
276300
}
277301
}
278302

@@ -281,7 +305,7 @@ impl<'a> Drop for DiagnosticHandlers<'a> {
281305
use std::ptr::null_mut;
282306
unsafe {
283307
llvm::LLVMRustSetInlineAsmDiagnosticHandler(self.llcx, inline_asm_handler, null_mut());
284-
llvm::LLVMContextSetDiagnosticHandler(self.llcx, diagnostic_handler, null_mut());
308+
llvm::LLVMRustContextSetDiagnosticHandler(self.llcx, self.old_handler);
285309
drop(Box::from_raw(self.data));
286310
}
287311
}
@@ -337,13 +361,8 @@ unsafe extern "C" fn diagnostic_handler(info: &DiagnosticInfo, user: *mut c_void
337361

338362
if enabled {
339363
diag_handler.note_without_error(&format!(
340-
"optimization {} for {} at {}:{}:{}: {}",
341-
opt.kind.describe(),
342-
opt.pass_name,
343-
opt.filename,
344-
opt.line,
345-
opt.column,
346-
opt.message
364+
"{}:{}:{}: {}: {}",
365+
opt.filename, opt.line, opt.column, opt.pass_name, opt.message,
347366
));
348367
}
349368
}

compiler/rustc_codegen_llvm/src/llvm/ffi.rs

+22-9
Original file line numberDiff line numberDiff line change
@@ -675,8 +675,12 @@ pub struct OperandBundleDef<'a>(InvariantOpaque<'a>);
675675
#[repr(C)]
676676
pub struct Linker<'a>(InvariantOpaque<'a>);
677677

678-
pub type DiagnosticHandler = unsafe extern "C" fn(&DiagnosticInfo, *mut c_void);
679-
pub type InlineAsmDiagHandler = unsafe extern "C" fn(&SMDiagnostic, *const c_void, c_uint);
678+
extern "C" {
679+
pub type DiagnosticHandler;
680+
}
681+
682+
pub type DiagnosticHandlerTy = unsafe extern "C" fn(&DiagnosticInfo, *mut c_void);
683+
pub type InlineAsmDiagHandlerTy = unsafe extern "C" fn(&SMDiagnostic, *const c_void, c_uint);
680684

681685
pub mod coverageinfo {
682686
use super::coverage_map;
@@ -2289,12 +2293,6 @@ extern "C" {
22892293
#[allow(improper_ctypes)]
22902294
pub fn LLVMRustWriteTwineToString(T: &Twine, s: &RustString);
22912295

2292-
pub fn LLVMContextSetDiagnosticHandler(
2293-
C: &Context,
2294-
Handler: DiagnosticHandler,
2295-
DiagnosticContext: *mut c_void,
2296-
);
2297-
22982296
#[allow(improper_ctypes)]
22992297
pub fn LLVMRustUnpackOptimizationDiagnostic(
23002298
DI: &'a DiagnosticInfo,
@@ -2324,7 +2322,7 @@ extern "C" {
23242322

23252323
pub fn LLVMRustSetInlineAsmDiagnosticHandler(
23262324
C: &Context,
2327-
H: InlineAsmDiagHandler,
2325+
H: InlineAsmDiagHandlerTy,
23282326
CX: *mut c_void,
23292327
);
23302328

@@ -2439,4 +2437,19 @@ extern "C" {
24392437
mod_id: *const c_char,
24402438
data: &ThinLTOData,
24412439
);
2440+
2441+
pub fn LLVMRustContextGetDiagnosticHandler(Context: &Context) -> Option<&DiagnosticHandler>;
2442+
pub fn LLVMRustContextSetDiagnosticHandler(
2443+
context: &Context,
2444+
diagnostic_handler: Option<&DiagnosticHandler>,
2445+
);
2446+
pub fn LLVMRustContextConfigureDiagnosticHandler(
2447+
context: &Context,
2448+
diagnostic_handler_callback: DiagnosticHandlerTy,
2449+
diagnostic_handler_context: *mut c_void,
2450+
remark_all_passes: bool,
2451+
remark_passes: *const *const c_char,
2452+
remark_passes_len: usize,
2453+
);
2454+
24422455
}

compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp

+93
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include "LLVMWrapper.h"
22
#include "llvm/IR/DebugInfoMetadata.h"
3+
#include "llvm/IR/DiagnosticHandler.h"
34
#include "llvm/IR/DiagnosticInfo.h"
45
#include "llvm/IR/DiagnosticPrinter.h"
56
#include "llvm/IR/GlobalVariable.h"
@@ -1177,10 +1178,13 @@ static LLVMRustDiagnosticKind toRust(DiagnosticKind Kind) {
11771178
case DK_SampleProfile:
11781179
return LLVMRustDiagnosticKind::SampleProfile;
11791180
case DK_OptimizationRemark:
1181+
case DK_MachineOptimizationRemark:
11801182
return LLVMRustDiagnosticKind::OptimizationRemark;
11811183
case DK_OptimizationRemarkMissed:
1184+
case DK_MachineOptimizationRemarkMissed:
11821185
return LLVMRustDiagnosticKind::OptimizationRemarkMissed;
11831186
case DK_OptimizationRemarkAnalysis:
1187+
case DK_MachineOptimizationRemarkAnalysis:
11841188
return LLVMRustDiagnosticKind::OptimizationRemarkAnalysis;
11851189
case DK_OptimizationRemarkAnalysisFPCommute:
11861190
return LLVMRustDiagnosticKind::OptimizationRemarkAnalysisFPCommute;
@@ -1783,3 +1787,92 @@ extern "C" LLVMRustResult LLVMRustWriteImportLibrary(
17831787
return LLVMRustResult::Success;
17841788
}
17851789
}
1790+
1791+
// Transfers ownership of DiagnosticHandler unique_ptr to the caller.
1792+
extern "C" DiagnosticHandler *
1793+
LLVMRustContextGetDiagnosticHandler(LLVMContextRef C) {
1794+
std::unique_ptr<DiagnosticHandler> DH = unwrap(C)->getDiagnosticHandler();
1795+
return DH.release();
1796+
}
1797+
1798+
// Sets unique_ptr to object of DiagnosticHandler to provide custom diagnostic
1799+
// handling. Ownership of the handler is moved to the LLVMContext.
1800+
extern "C" void LLVMRustContextSetDiagnosticHandler(LLVMContextRef C,
1801+
DiagnosticHandler *DH) {
1802+
unwrap(C)->setDiagnosticHandler(std::unique_ptr<DiagnosticHandler>(DH));
1803+
}
1804+
1805+
using LLVMDiagnosticHandlerTy = DiagnosticHandler::DiagnosticHandlerTy;
1806+
1807+
// Configures a diagnostic handler that invokes provided callback when a
1808+
// backend needs to emit a diagnostic.
1809+
//
1810+
// When RemarkAllPasses is true, remarks are enabled for all passes. Otherwise
1811+
// the RemarkPasses array specifies individual passes for which remarks will be
1812+
// enabled.
1813+
extern "C" void LLVMRustContextConfigureDiagnosticHandler(
1814+
LLVMContextRef C, LLVMDiagnosticHandlerTy DiagnosticHandlerCallback,
1815+
void *DiagnosticHandlerContext, bool RemarkAllPasses,
1816+
const char * const * RemarkPasses, size_t RemarkPassesLen) {
1817+
1818+
class RustDiagnosticHandler final : public DiagnosticHandler {
1819+
public:
1820+
RustDiagnosticHandler(LLVMDiagnosticHandlerTy DiagnosticHandlerCallback,
1821+
void *DiagnosticHandlerContext,
1822+
bool RemarkAllPasses,
1823+
std::vector<std::string> RemarkPasses)
1824+
: DiagnosticHandlerCallback(DiagnosticHandlerCallback),
1825+
DiagnosticHandlerContext(DiagnosticHandlerContext),
1826+
RemarkAllPasses(RemarkAllPasses),
1827+
RemarkPasses(RemarkPasses) {}
1828+
1829+
virtual bool handleDiagnostics(const DiagnosticInfo &DI) override {
1830+
if (DiagnosticHandlerCallback) {
1831+
DiagnosticHandlerCallback(DI, DiagnosticHandlerContext);
1832+
return true;
1833+
}
1834+
return false;
1835+
}
1836+
1837+
bool isAnalysisRemarkEnabled(StringRef PassName) const override {
1838+
return isRemarkEnabled(PassName);
1839+
}
1840+
1841+
bool isMissedOptRemarkEnabled(StringRef PassName) const override {
1842+
return isRemarkEnabled(PassName);
1843+
}
1844+
1845+
bool isPassedOptRemarkEnabled(StringRef PassName) const override {
1846+
return isRemarkEnabled(PassName);
1847+
}
1848+
1849+
bool isAnyRemarkEnabled() const override {
1850+
return RemarkAllPasses || !RemarkPasses.empty();
1851+
}
1852+
1853+
private:
1854+
bool isRemarkEnabled(StringRef PassName) const {
1855+
if (RemarkAllPasses)
1856+
return true;
1857+
1858+
for (auto &Pass : RemarkPasses)
1859+
if (Pass == PassName)
1860+
return true;
1861+
1862+
return false;
1863+
}
1864+
1865+
LLVMDiagnosticHandlerTy DiagnosticHandlerCallback = nullptr;
1866+
void *DiagnosticHandlerContext = nullptr;
1867+
1868+
bool RemarkAllPasses = false;
1869+
std::vector<std::string> RemarkPasses;
1870+
};
1871+
1872+
std::vector<std::string> Passes;
1873+
for (size_t I = 0; I != RemarkPassesLen; ++I)
1874+
Passes.push_back(RemarkPasses[I]);
1875+
1876+
unwrap(C)->setDiagnosticHandler(std::make_unique<RustDiagnosticHandler>(
1877+
DiagnosticHandlerCallback, DiagnosticHandlerContext, RemarkAllPasses, Passes));
1878+
}

src/test/ui/borrowck/borrowck-and-init.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ error[E0381]: borrow of possibly-uninitialized variable: `i`
33
|
44
LL | println!("{}", i);
55
| ^ use of possibly-uninitialized `i`
6+
|
7+
= note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
68

79
error: aborting due to previous error
810

src/test/ui/borrowck/borrowck-break-uninit-2.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ error[E0381]: borrow of possibly-uninitialized variable: `x`
33
|
44
LL | println!("{}", x);
55
| ^ use of possibly-uninitialized `x`
6+
|
7+
= note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
68

79
error: aborting due to previous error
810

src/test/ui/borrowck/borrowck-break-uninit.stderr

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ error[E0381]: borrow of possibly-uninitialized variable: `x`
33
|
44
LL | println!("{}", x);
55
| ^ use of possibly-uninitialized `x`
6+
|
7+
= note: this error originates in the macro `$crate::format_args_nl` (in Nightly builds, run with -Z macro-backtrace for more info)
68

79
error: aborting due to previous error
810

0 commit comments

Comments
 (0)