backdoor.cc (9808:13ffc0066b76) backdoor.cc (10565:23593fdaadcd)
1/*
2 * Copyright (c) 2001-2005 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;

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

106 * the device has it's physical address and then the bridge adds on whatever
107 * machine dependent address swizzle is required?
108 */
109
110 assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
111
112 Addr daddr = pkt->getAddr() - pioAddr;
113
1/*
2 * Copyright (c) 2001-2005 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;

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

106 * the device has it's physical address and then the bridge adds on whatever
107 * machine dependent address swizzle is required?
108 */
109
110 assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
111
112 Addr daddr = pkt->getAddr() - pioAddr;
113
114 pkt->allocate();
115 pkt->makeAtomicResponse();
116
117 switch (pkt->getSize())
118 {
119 case sizeof(uint32_t):
120 switch (daddr)
121 {
122 case offsetof(AlphaAccess, last_offset):

--- 193 unchanged lines hidden ---
114 pkt->makeAtomicResponse();
115
116 switch (pkt->getSize())
117 {
118 case sizeof(uint32_t):
119 switch (daddr)
120 {
121 case offsetof(AlphaAccess, last_offset):

--- 193 unchanged lines hidden ---