iob.hh (9235:5aa4896ed55a) iob.hh (10905:a6ca6831e775)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 128 unchanged lines hidden (view full) ---

137 virtual Tick write(PacketPtr pkt);
138 void generateIpi(Type type, int cpu_id, int vector);
139 void receiveDeviceInterrupt(DeviceId devid);
140 bool receiveJBusInterrupt(int cpu_id, int source, uint64_t d0,
141 uint64_t d1);
142
143 AddrRangeList getAddrRanges() const;
144
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 128 unchanged lines hidden (view full) ---

137 virtual Tick write(PacketPtr pkt);
138 void generateIpi(Type type, int cpu_id, int vector);
139 void receiveDeviceInterrupt(DeviceId devid);
140 bool receiveJBusInterrupt(int cpu_id, int source, uint64_t d0,
141 uint64_t d1);
142
143 AddrRangeList getAddrRanges() const;
144
145 virtual void serialize(std::ostream &os);
146 virtual void unserialize(Checkpoint *cp, const std::string &section);
147
145 void serialize(CheckpointOut &cp) const M5_ATTR_OVERRIDE;
146 void unserialize(CheckpointIn &cp) M5_ATTR_OVERRIDE;
148};
149
150#endif //__DEV_SPARC_IOB_HH__
151
147};
148
149#endif //__DEV_SPARC_IOB_HH__
150