Page MenuHomeFreeBSD

Export a breakpoint() function to userland.
ClosedPublic

Authored by jhb on Apr 25 2018, 2:43 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Feb 15, 9:05 PM
Unknown Object (File)
Fri, Feb 14, 9:44 PM
Unknown Object (File)
Fri, Jan 24, 6:59 PM
Unknown Object (File)
Tue, Jan 21, 8:33 PM
Unknown Object (File)
Tue, Jan 21, 8:21 PM
Unknown Object (File)
Jan 1 2025, 12:17 AM
Unknown Object (File)
Dec 26 2024, 12:22 PM
Unknown Object (File)
Dec 9 2024, 12:21 PM
Subscribers

Details

Summary

As a result, expand coverage of tests using breakpoint() to more
architectures.

Test Plan
  • I have not tested any of these, so testing by others and/or review would be welcome. I would probably commit these separately, but they are glummed together in the branch this is part of so it's a bit easier to solicit review/testing with a combined patch.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 17736
Build 17536: arc lint + arc unit

Event Timeline

sys/arm/include/cpufunc.h
516

What instruction is this? You might also be able to use the .inst directive here.

sys/arm/include/cpufunc.h
516

This matches GDB5_BREAKPOINT from sys/arm/include/trap.h and it is what GDB uses as the default breakpoint instructions for non-thumb arm:

https://github.com/bsdjhb/gdb/blob/master/gdb/arm-tdep.c#L7761

The in-kernel breakpoint() uses .word with the value of KERNEL_BREAKPOINT and I just used that as my template.

sys/arm/include/cpufunc.h
516

It seems to be udf 0xfdee. udf is an instruction that raises the undefined instruction exception.

sys/arm/include/cpufunc.h
516

Perhaps a comment with that reference?

This revision is now accepted and ready to land.May 1 2018, 3:29 PM
This revision was automatically updated to reflect the committed changes.
  • Updated to use 'udf' on 32-bit arm and tested on 32-bit arm.
  • Still need to verify arm64.

Have verified via ptrace_test on arm64 as well now, so both arm and arm64 have been runtime tested.

This revision is now accepted and ready to land.Jul 6 2018, 11:40 AM
This revision was automatically updated to reflect the committed changes.