As HW_TAGS KASAN can be used a memory corruption mitigation for production, it shouldn't leak kernel pointers in its reports. At the same time, as it can be used as a debugging tool, it should show all pointers as is in the debug mode. The current plan is to do what KFENCE does [1], and only show unhashed pointers when no_hash_pointers command line parameter is provided. Generic/SW_TAGS KASAN modes should always show unhashed pointers as is. [1] https://github.com/google/kasan/pull/178
The same is also applicable to register values. Besides leaking pointers that can be used to bypass KASLR, registers can contain private user information, which shouldn't be included in the bug reports (having Android in mind). KFENCE takes the approach to only show register values when no_hash_pointers is enabled.