packet.hh (3286:21d9d32ab8ab) packet.hh (3293:4ac3d9486d6e)
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;

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

197 Writeback = IsWrite | IsRequest | HasData,
198 SoftPFReq = IsRead | IsRequest | IsSWPrefetch | NeedsResponse,
199 HardPFReq = IsRead | IsRequest | IsHWPrefetch | NeedsResponse,
200 SoftPFResp = IsRead | IsResponse | IsSWPrefetch
201 | NeedsResponse | HasData,
202 HardPFResp = IsRead | IsResponse | IsHWPrefetch
203 | NeedsResponse | HasData,
204 InvalidateReq = IsInvalidate | IsRequest,
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;

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

197 Writeback = IsWrite | IsRequest | HasData,
198 SoftPFReq = IsRead | IsRequest | IsSWPrefetch | NeedsResponse,
199 HardPFReq = IsRead | IsRequest | IsHWPrefetch | NeedsResponse,
200 SoftPFResp = IsRead | IsResponse | IsSWPrefetch
201 | NeedsResponse | HasData,
202 HardPFResp = IsRead | IsResponse | IsHWPrefetch
203 | NeedsResponse | HasData,
204 InvalidateReq = IsInvalidate | IsRequest,
205 WriteInvalidateReq = IsWrite | IsInvalidate | IsRequest | HasData,
205 WriteInvalidateReq = IsWrite | IsInvalidate | IsRequest
206 | HasData | NeedsResponse,
207 WriteInvalidateResp = IsWrite | IsInvalidate | IsRequest | NeedsResponse,
206 UpgradeReq = IsInvalidate | IsRequest | IsUpgrade,
207 ReadExReq = IsRead | IsInvalidate | IsRequest | NeedsResponse,
208 ReadExResp = IsRead | IsInvalidate | IsResponse
209 | NeedsResponse | HasData
210 };
211
212 /** Return the string name of the cmd field (for debugging and
213 * tracing). */

--- 201 unchanged lines hidden ---
208 UpgradeReq = IsInvalidate | IsRequest | IsUpgrade,
209 ReadExReq = IsRead | IsInvalidate | IsRequest | NeedsResponse,
210 ReadExResp = IsRead | IsInvalidate | IsResponse
211 | NeedsResponse | HasData
212 };
213
214 /** Return the string name of the cmd field (for debugging and
215 * tracing). */

--- 201 unchanged lines hidden ---