tsunami_cchip.hh (9235:5aa4896ed55a) tsunami_cchip.hh (10905:a6ca6831e775)
1/*
2 * Copyright (c) 2004-2005 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;

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

126 void clearITI(uint64_t itintr);
127
128 /**
129 * request an interrupt be posted to the CPU.
130 * @param ipreq the cpu number to interrupt(bitvector)
131 */
132 void reqIPI(uint64_t ipreq);
133
1/*
2 * Copyright (c) 2004-2005 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;

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

126 void clearITI(uint64_t itintr);
127
128 /**
129 * request an interrupt be posted to the CPU.
130 * @param ipreq the cpu number to interrupt(bitvector)
131 */
132 void reqIPI(uint64_t ipreq);
133
134
135 /**
136 * Serialize this object to the given output stream.
137 * @param os The stream to serialize to.
138 */
139 virtual void serialize(std::ostream &os);
140
141 /**
142 * Reconstruct the state of this object from a checkpoint.
143 * @param cp The checkpoint use.
144 * @param section The section name of this object
145 */
146 virtual void unserialize(Checkpoint *cp, const std::string &section);
147
134 void serialize(CheckpointOut &cp) const M5_ATTR_OVERRIDE;
135 void unserialize(CheckpointIn &cp) M5_ATTR_OVERRIDE;
148};
149
150#endif // __TSUNAMI_CCHIP_HH__
136};
137
138#endif // __TSUNAMI_CCHIP_HH__