Hi all
What does it make a Packet's "VALID_ADDR" flag being cleared , even it was set before?
The following assertion fails:
gem5.debug: build/RISCV/mem/packet.hh:832: bool gem5::Packet::isSecure() const: Assertion `flags.isSet(VALID_ADDR)' failed.
Even If I tried to enable any packet debugging method (like calling pkt->print()) a segmentation fault arises!
I can find only that Packet's flags.clear() happens :
a. happens when constructing a new Packet from request, but even with that the "VALID_ADDR" is being set if it has a PAddr.
(There are two constructors)
b. Another case , is for a third constructor that takes another packet as an argument, but this constructor set the "VALID_ADDR" and "VALID_SIZE" to be the same as the packet being passed.
I can't find anywhere that flags.clear(VALID_ADDR) happens.
So, what can be the problem cause?
Thank you.
regards,
Abdelrhman
|
_______________________________________________ gem5-users mailing list -- gem5-users@gem5.org To unsubscribe send an email to gem5-users-le...@gem5.org