Function core::arch::arm::__breakpoint[][src]

pub unsafe fn __breakpoint<const VAL: i32>()
🔬 This is a nightly-only experimental API. (stdsimd #48556)
This is supported on ARM only.
Expand description

插入断点指令。

VAL 是范围 [0, 255] 中的编译时常量整数。

插入的断点指令是 A32/T32 上的 BKPT

Note

ARM’s documentation 定义 __breakpoint 接受 VAL 的以下值:

  • 0...65535 编译为 A32 时,
  • 0...255 当编译为 T32 时。

当前的实现只接受 [0, 255] 范围内的值。