malta_cchip.hh (9235:5aa4896ed55a) malta_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;

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

128 void clearITI(uint64_t itintr);
129
130 /**
131 * request an interrupt be posted to the CPU.
132 * @param ipreq the cpu number to interrupt(bitvector)
133 */
134 void reqIPI(uint64_t ipreq);
135
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;

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

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