packet.cc (5507:52bcc301b467) packet.cc (5650:d2782c951841)
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;

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

113 { SET4(IsWrite, NeedsExclusive, IsLocked, IsResponse),
114 InvalidCmd, "StoreCondResp" },
115 /* SwapReq -- for Swap ldstub type operations */
116 { SET6(IsRead, IsWrite, NeedsExclusive, IsRequest, HasData, NeedsResponse),
117 SwapResp, "SwapReq" },
118 /* SwapResp -- for Swap ldstub type operations */
119 { SET5(IsRead, IsWrite, NeedsExclusive, IsResponse, HasData),
120 InvalidCmd, "SwapResp" },
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;

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

113 { SET4(IsWrite, NeedsExclusive, IsLocked, IsResponse),
114 InvalidCmd, "StoreCondResp" },
115 /* SwapReq -- for Swap ldstub type operations */
116 { SET6(IsRead, IsWrite, NeedsExclusive, IsRequest, HasData, NeedsResponse),
117 SwapResp, "SwapReq" },
118 /* SwapResp -- for Swap ldstub type operations */
119 { SET5(IsRead, IsWrite, NeedsExclusive, IsResponse, HasData),
120 InvalidCmd, "SwapResp" },
121 /* IntReq -- for interrupts */
122 { SET4(IsWrite, IsRequest, NeedsResponse, HasData),
123 MessageReq, "MessageReq" },
124 /* IntResp -- for interrupts */
125 { SET2(IsWrite, IsResponse), MessageResp, "MessageResp" },
121 /* NetworkNackError -- nacked at network layer (not by protocol) */
122 { SET2(IsResponse, IsError), InvalidCmd, "NetworkNackError" },
123 /* InvalidDestError -- packet dest field invalid */
124 { SET2(IsResponse, IsError), InvalidCmd, "InvalidDestError" },
125 /* BadAddressError -- memory address invalid */
126 { SET2(IsResponse, IsError), InvalidCmd, "BadAddressError" },
127 /* PrintReq */
128 { SET2(IsRequest, IsPrint), InvalidCmd, "PrintReq" }

--- 165 unchanged lines hidden ---
126 /* NetworkNackError -- nacked at network layer (not by protocol) */
127 { SET2(IsResponse, IsError), InvalidCmd, "NetworkNackError" },
128 /* InvalidDestError -- packet dest field invalid */
129 { SET2(IsResponse, IsError), InvalidCmd, "InvalidDestError" },
130 /* BadAddressError -- memory address invalid */
131 { SET2(IsResponse, IsError), InvalidCmd, "BadAddressError" },
132 /* PrintReq */
133 { SET2(IsRequest, IsPrint), InvalidCmd, "PrintReq" }

--- 165 unchanged lines hidden ---