packet.hh (3293:4ac3d9486d6e) packet.hh (3335:71bef174e59f)
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;

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

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
206 | HasData | NeedsResponse,
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;

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

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
206 | HasData | NeedsResponse,
207 WriteInvalidateResp = IsWrite | IsInvalidate | IsRequest | NeedsResponse,
207 WriteInvalidateResp = IsWrite | IsInvalidate | IsRequest | NeedsResponse
208 | IsResponse,
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 ---
209 UpgradeReq = IsInvalidate | IsRequest | IsUpgrade,
210 ReadExReq = IsRead | IsInvalidate | IsRequest | NeedsResponse,
211 ReadExResp = IsRead | IsInvalidate | IsResponse
212 | NeedsResponse | HasData
213 };
214
215 /** Return the string name of the cmd field (for debugging and
216 * tracing). */

--- 201 unchanged lines hidden ---