Closed
Description
From the discussion at #101291 (comment), we should make sure that we use some decent mask values in LoadVector
and StoreVector
APIs to exercise and test the functionality of these APIs.
- A mask containing mix of 0s and 1s
- A mask containing all 0s
- A mask containing all 1s
- Non-faulting should never throw exception even if invalid address such as
0x0
is passed toLoadVector
. - Faulting APIs throws exception when invalid address such as
0x0
is passed toLoadVector
. - In faulting APIs, inactive elements do not throw exception when invalid address is given to it.