Skip to content

Commit e66e632

Browse files
authored
Rollup merge of #133726 - joshtriplett:breakpoint, r=oli-obk
Add `core::arch::breakpoint` and test Approved in [ACP 491](rust-lang/libs-team#491).
2 parents 6e87eb5 + cea0582 commit e66e632

File tree

9 files changed

+66
-13
lines changed

9 files changed

+66
-13
lines changed

compiler/rustc_error_codes/src/error_codes/E0622.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ Erroneous code example:
77
#![allow(internal_features)]
88
99
extern "rust-intrinsic" {
10-
pub static breakpoint: fn(); // error: intrinsic must be a function
10+
pub static atomic_singlethreadfence_seqcst: fn();
11+
// error: intrinsic must be a function
1112
}
1213
13-
fn main() { unsafe { breakpoint(); } }
14+
fn main() { unsafe { atomic_singlethreadfence_seqcst(); } }
1415
```
1516

1617
An intrinsic is a function available for use in a given programming language
@@ -22,8 +23,8 @@ error, just declare a function. Example:
2223
#![allow(internal_features)]
2324
2425
extern "rust-intrinsic" {
25-
pub fn breakpoint(); // ok!
26+
pub fn atomic_singlethreadfence_seqcst(); // ok!
2627
}
2728
28-
fn main() { unsafe { breakpoint(); } }
29+
fn main() { unsafe { atomic_singlethreadfence_seqcst(); } }
2930
```

compiler/rustc_hir_analysis/src/check/intrinsic.rs

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ pub fn intrinsic_operation_unsafety(tcx: TyCtxt<'_>, intrinsic_id: LocalDefId) -
8787
| sym::assert_inhabited
8888
| sym::assert_zero_valid
8989
| sym::assert_mem_uninitialized_valid
90+
| sym::breakpoint
9091
| sym::size_of
9192
| sym::min_align_of
9293
| sym::needs_drop

library/core/src/arch.rs

+27
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,30 @@ pub macro naked_asm("assembly template", $(operands,)* $(options($(option),*))?)
4242
pub macro global_asm("assembly template", $(operands,)* $(options($(option),*))?) {
4343
/* compiler built-in */
4444
}
45+
46+
/// Compiles to a target-specific software breakpoint instruction or equivalent.
47+
///
48+
/// This will typically abort the program. It may result in a core dump, and/or the system logging
49+
/// debug information. Additional target-specific capabilities may be possible depending on
50+
/// debuggers or other tooling; in particular, a debugger may be able to resume execution.
51+
///
52+
/// If possible, this will produce an instruction sequence that allows a debugger to resume *after*
53+
/// the breakpoint, rather than resuming *at* the breakpoint; however, the exact behavior is
54+
/// target-specific and debugger-specific, and not guaranteed.
55+
///
56+
/// If the target platform does not have any kind of debug breakpoint instruction, this may compile
57+
/// to a trapping instruction (e.g. an undefined instruction) instead, or to some other form of
58+
/// target-specific abort that may or may not support convenient resumption.
59+
///
60+
/// The precise behavior and the precise instruction generated are not guaranteed, except that in
61+
/// normal execution with no debug tooling involved this will not continue executing.
62+
///
63+
/// - On x86 targets, this produces an `int3` instruction.
64+
/// - On aarch64 targets, this produces a `brk #0xf000` instruction.
65+
// When stabilizing this, update the comment on `core::intrinsics::breakpoint`.
66+
#[unstable(feature = "breakpoint", issue = "133724")]
67+
#[inline(always)]
68+
#[cfg(not(bootstrap))]
69+
pub fn breakpoint() {
70+
core::intrinsics::breakpoint();
71+
}

library/core/src/intrinsics/mod.rs

+12
Original file line numberDiff line numberDiff line change
@@ -1381,6 +1381,18 @@ pub unsafe fn prefetch_write_instruction<T>(_data: *const T, _locality: i32) {
13811381
#[rustc_intrinsic]
13821382
#[rustc_intrinsic_must_be_overridden]
13831383
#[rustc_nounwind]
1384+
#[cfg(not(bootstrap))]
1385+
pub fn breakpoint() {
1386+
unreachable!()
1387+
}
1388+
1389+
/// Executes a breakpoint trap, for inspection by a debugger.
1390+
///
1391+
/// This intrinsic does not have a stable counterpart.
1392+
#[rustc_intrinsic]
1393+
#[rustc_intrinsic_must_be_overridden]
1394+
#[rustc_nounwind]
1395+
#[cfg(bootstrap)]
13841396
pub unsafe fn breakpoint() {
13851397
unreachable!()
13861398
}
+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#![feature(core_intrinsics)]
22

33
fn main() {
4-
unsafe {
5-
core::intrinsics::breakpoint() //~ ERROR: trace/breakpoint trap
6-
};
4+
core::intrinsics::breakpoint(); //~ ERROR: trace/breakpoint trap
75
}

src/tools/miri/tests/fail/breakpoint.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
error: abnormal termination: trace/breakpoint trap
22
--> tests/fail/breakpoint.rs:LL:CC
33
|
4-
LL | core::intrinsics::breakpoint()
5-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ trace/breakpoint trap
4+
LL | core::intrinsics::breakpoint();
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ trace/breakpoint trap
66
|
77
= note: BACKTRACE:
88
= note: inside `main` at tests/fail/breakpoint.rs:LL:CC

tests/assembly/breakpoint.rs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
//@ revisions: aarch64 x86_64
2+
//@ assembly-output: emit-asm
3+
//@[aarch64] only-aarch64
4+
//@[x86_64] only-x86_64
5+
6+
#![feature(breakpoint)]
7+
#![crate_type = "lib"]
8+
9+
// CHECK-LABEL: use_bp
10+
// aarch64: brk #0xf000
11+
// x86_64: int3
12+
pub fn use_bp() {
13+
core::arch::breakpoint();
14+
}

tests/ui/error-codes/E0622.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![feature(intrinsics)]
22
extern "rust-intrinsic" {
3-
pub static breakpoint : unsafe extern "rust-intrinsic" fn();
3+
pub static atomic_singlethreadfence_seqcst : unsafe extern "rust-intrinsic" fn();
44
//~^ ERROR intrinsic must be a function [E0622]
55
}
6-
fn main() { unsafe { breakpoint(); } }
6+
fn main() { unsafe { atomic_singlethreadfence_seqcst(); } }

tests/ui/error-codes/E0622.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
error[E0622]: intrinsic must be a function
22
--> $DIR/E0622.rs:3:5
33
|
4-
LL | pub static breakpoint : unsafe extern "rust-intrinsic" fn();
5-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected a function
4+
LL | pub static atomic_singlethreadfence_seqcst : unsafe extern "rust-intrinsic" fn();
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected a function
66

77
error: aborting due to 1 previous error
88

0 commit comments

Comments
 (0)