_itstate == opc._itstate && _nextItstate == opc._nextItstate;
}
+ bool
+ operator != (const PCState &opc) const
+ {
+ return !(*this == opc);
+ }
+
void
serialize(std::ostream &os)
{
return _pc == opc._pc && _npc == opc._npc;
}
+ bool
+ operator != (const PCStateBase &opc) const
+ {
+ return !(*this == opc);
+ }
+
void
serialize(std::ostream &os)
{
_upc == opc._upc && _nupc == opc._nupc;
}
+ bool
+ operator != (const UPCState<MachInst> &opc) const
+ {
+ return !(*this == opc);
+ }
+
void
serialize(std::ostream &os)
{
_nnpc == opc._nnpc;
}
+ bool
+ operator != (const DelaySlotPCState<MachInst> &opc) const
+ {
+ return !(*this == opc);
+ }
+
void
serialize(std::ostream &os)
{
_upc == opc._upc && _nupc == opc._nupc;
}
+ bool
+ operator != (const DelaySlotUPCState<MachInst> &opc) const
+ {
+ return !(*this == opc);
+ }
+
void
serialize(std::ostream &os)
{