Check.cc (9542:683991c46ac8) Check.cc (10302:0e9e99e6369a)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * Copyright (c) 2009 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

261 DPRINTF(RubyTest, "failed to initiate check - cpu port not ready\n");
262 }
263
264 DPRINTF(RubyTest, "status after check update: %s\n",
265 TesterStatus_to_string(m_status).c_str());
266}
267
268void
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * Copyright (c) 2009 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

261 DPRINTF(RubyTest, "failed to initiate check - cpu port not ready\n");
262 }
263
264 DPRINTF(RubyTest, "status after check update: %s\n",
265 TesterStatus_to_string(m_status).c_str());
266}
267
268void
269Check::performCallback(NodeID proc, SubBlock* data, Time curTime)
269Check::performCallback(NodeID proc, SubBlock* data, Cycles curTime)
270{
271 Address address = data->getAddress();
272
273 // This isn't exactly right since we now have multi-byte checks
274 // assert(getAddress() == address);
275
276 assert(getAddress().getLineAddress() == address.getLineAddress());
277 assert(data != NULL);

--- 99 unchanged lines hidden ---
270{
271 Address address = data->getAddress();
272
273 // This isn't exactly right since we now have multi-byte checks
274 // assert(getAddress() == address);
275
276 assert(getAddress().getLineAddress() == address.getLineAddress());
277 assert(data != NULL);

--- 99 unchanged lines hidden ---