You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if dc.iohgatp.mode == 0, pte.v == 1, pte.r or pte.x is equal to 1 and pte.a == 0 then in the next cycle cause_code must be equal to load_page_fault or store_page_fault(cause_code == 13/15).
Here is the counter-example of the violation of the assertion, in the 11th cycle, when iohgatp.mode == 0, pte.v ==1, pte.r ==1 and pte.a == 0 then in the next cycle cause_code must be load or store page fault but it is giving load_guest_page_fault(cause_code == 21) which is wrong.
The text was updated successfully, but these errors were encountered:
I wrote an assertion that states:
Here is the counter-example of the violation of the assertion, in the 11th cycle, when
iohgatp.mode
== 0,pte.v
==1,pte.r
==1 andpte.a
== 0 then in the next cyclecause_code
must beload or store page fault
but it is givingload_guest_page_fault
(cause_code == 21)
which is wrong.The text was updated successfully, but these errors were encountered: