Page MenuHomeFreeBSD

arm64: Fix a logic bug in is_load_instr().
ClosedPublic

Authored by jhb on Sep 13 2021, 6:30 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Dec 24, 2:08 AM
Unknown Object (File)
Tue, Dec 17, 8:10 PM
Unknown Object (File)
Sun, Dec 15, 4:56 AM
Unknown Object (File)
Wed, Dec 11, 11:26 AM
Unknown Object (File)
Oct 19 2024, 1:15 PM
Unknown Object (File)
Oct 18 2024, 8:07 PM
Unknown Object (File)
Sep 29 2024, 9:37 PM
Unknown Object (File)
Sep 15 2024, 8:49 PM
Subscribers

Details

Summary

Logical and ('&&') was used to join two conditions instead of logical
or ('||') causing some store instructions to not be recognized.

Reported by: GCC 9 -Wparentheses

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

jhb requested review of this revision.Sep 13 2021, 6:30 PM

I wonder if we need this. The store macro looks broken, they are only used in ddb to count instructions, and are defined as 0 on most architectures.

This revision is now accepted and ready to land.Sep 15 2021, 9:12 AM

I have no idea if this is needed or not TBH.

This revision was automatically updated to reflect the committed changes.