iob.cc (8742:9df38d259935) iob.cc (8799:dac1e33e07b0)
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;

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

318 jIntBusy[cpu_id].source = source;
319 jBusData0[cpu_id] = d0;
320 jBusData1[cpu_id] = d1;
321
322 ic->post(cpu_id, SparcISA::IT_INT_VEC, jIntVec);
323 return true;
324}
325
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;

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

318 jIntBusy[cpu_id].source = source;
319 jBusData0[cpu_id] = d0;
320 jBusData1[cpu_id] = d1;
321
322 ic->post(cpu_id, SparcISA::IT_INT_VEC, jIntVec);
323 return true;
324}
325
326void
327Iob::addressRanges(AddrRangeList &range_list)
326AddrRangeList
327Iob::getAddrRanges()
328{
328{
329 range_list.clear();
330 range_list.push_back(RangeSize(iobManAddr, iobManSize));
331 range_list.push_back(RangeSize(iobJBusAddr, iobJBusSize));
329 AddrRangeList ranges;
330 ranges.push_back(RangeSize(iobManAddr, iobManSize));
331 ranges.push_back(RangeSize(iobJBusAddr, iobJBusSize));
332 return ranges;
332}
333
334
335void
336Iob::serialize(std::ostream &os)
337{
338
339 SERIALIZE_SCALAR(jIntVec);

--- 39 unchanged lines hidden ---
333}
334
335
336void
337Iob::serialize(std::ostream &os)
338{
339
340 SERIALIZE_SCALAR(jIntVec);

--- 39 unchanged lines hidden ---