seL4/include/arch
julia b8e81b077a asidpools: consistently use ASID_HIGH macro
Also, change the definition of ASID_HIGH from

    ((a >> asidLowBits) & MASK(asidHighBits))

to

    ((a) >> asidLowBits)

because the mask is an unnecessary operation (this is handled by the
proofs). It is unnecessary because these (SW) ASIDs are kernel-only
and are never exposed to users, so they will never set bits asid from
the asidLow and asidHigh bits.

Signed-off-by: julia <git.ts@trainwit.ch>
2025-08-08 10:39:53 +01:00
..
arm asidpools: consistently use ASID_HIGH macro 2025-08-08 10:39:53 +01:00
riscv/arch asidpools: consistently use ASID_HIGH macro 2025-08-08 10:39:53 +01:00
x86/arch asidpools: consistently use ASID_HIGH macro 2025-08-08 10:39:53 +01:00