Deleted Added
sdiff udiff text old ( 3262:5f96609a30ef ) new ( 3286:21d9d32ab8ab )
full compact
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;

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

29 * Steve Reinhardt
30 */
31
32/**
33 * @file
34 * Definition of the Packet Class, a packet is a transaction occuring
35 * between a single level of the memory heirarchy (ie L1->L2).
36 */
37#include "base/misc.hh"
38#include "mem/packet.hh"
39
40static const std::string ReadReqString("ReadReq");
41static const std::string WriteReqString("WriteReq");
42static const std::string WriteReqNoAckString("WriteReqNoAck|Writeback");
43static const std::string ReadRespString("ReadResp");
44static const std::string WriteRespString("WriteResp");
45static const std::string SoftPFReqString("SoftPFReq");
46static const std::string SoftPFRespString("SoftPFResp");

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

134 Addr e2 = p->getAddr() + p->getSize() - 1;
135
136 return !(s1 > e2 || e1 < s2);
137}
138
139bool
140fixPacket(Packet *func, Packet *timing)
141{
142 panic("Need to implement!");
143}