Skip to content

Commit 5f8cc9a

Browse files
committed
Add core::arch::breakpoint and test
Approved in [ACP 491](rust-lang/libs-team#491). Remove the `unsafe` on `core::intrinsics::breakpoint()`, since it's a safe intrinsic to call and has no prerequisites.
1 parent a522d78 commit 5f8cc9a

File tree

3 files changed

+45
-3
lines changed

3 files changed

+45
-3
lines changed

library/core/src/arch.rs

+26
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,29 @@ 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+
pub fn breakpoint() {
69+
core::intrinsics::breakpoint();
70+
}

library/core/src/intrinsics/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1375,13 +1375,13 @@ pub unsafe fn prefetch_write_instruction<T>(_data: *const T, _locality: i32) {
13751375
unreachable!()
13761376
}
13771377

1378-
/// Executes a breakpoint trap, for inspection by a debugger.
1378+
/// Compiles to a target-specific software breakpoint instruction or equivalent.
13791379
///
1380-
/// This intrinsic does not have a stable counterpart.
1380+
/// The (future) stabilized version of this intrinsic is [`core::arch::breakpoint`].
13811381
#[rustc_intrinsic]
13821382
#[rustc_intrinsic_must_be_overridden]
13831383
#[rustc_nounwind]
1384-
pub unsafe fn breakpoint() {
1384+
pub fn breakpoint() {
13851385
unreachable!()
13861386
}
13871387

tests/assembly/breakpoint.rs

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//@ revisions: aarch64 x86_64
2+
//@ assembly-output: emit-asm
3+
//@[aarch64] compile-flags: --target aarch64-unknown-linux-gnu
4+
//@[aarch64] needs-llvm-components: aarch64
5+
//@[x86_64] compile-flags: --target x86_64-unknown-linux-gnu -C llvm-args=-x86-asm-syntax=intel
6+
//@[x86_64] needs-llvm-components: x86
7+
8+
#![feature(breakpoint)]
9+
#![crate_type = "lib"]
10+
11+
// CHECK-LABEL: use_bp
12+
// aarch64: brk #0xf000
13+
// x86_64: int3
14+
pub fn use_bp() {
15+
core::arch::breakpoint();
16+
}

0 commit comments

Comments
 (0)