236a237,238
> virtual bool getFaultVAddr(Addr &va) const { return false; }
>
437a440,441
> bool getFaultVAddr(Addr &va) const override;
>
627a632,642
> /**
> * Returns true if the fault passed as a first argument was triggered
> * by a memory access, false otherwise.
> * If true it is storing the faulting address in the va argument
> *
> * @param fault generated fault
> * @param va function will modify this passed-by-reference parameter
> * with the correct faulting virtual address
> * @return true if va contains a valid value, false otherwise
> */
> bool getFaultVAddr(Fault fault, Addr &va);
628a644
>