exetrace.cc (3903:f005d99d790a) exetrace.cc (3928:9486450f013f)
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;

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

335 else if (staticInst->isMicroOp())
336 wasMicro = true;
337
338
339 if(!staticInst->isMicroOp() || staticInst->isLastMicroOp()) {
340 while (!compared) {
341 if (shared_data->flags == OWN_M5) {
342 m5Pc = PC & TheISA::PAddrImplMask;
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;

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

335 else if (staticInst->isMicroOp())
336 wasMicro = true;
337
338
339 if(!staticInst->isMicroOp() || staticInst->isLastMicroOp()) {
340 while (!compared) {
341 if (shared_data->flags == OWN_M5) {
342 m5Pc = PC & TheISA::PAddrImplMask;
343 if (bits(shared_data->pstate,3,3)) {
344 m5Pc &= mask(32);
345 }
343 lgnPc = shared_data->pc & TheISA::PAddrImplMask;
344 if (lgnPc != m5Pc)
345 diffPC = true;
346
347 if (shared_data->cycle_count !=
348 thread->getCpuPtr()->instCount())
349 diffCC = true;
350

--- 404 unchanged lines hidden ---
346 lgnPc = shared_data->pc & TheISA::PAddrImplMask;
347 if (lgnPc != m5Pc)
348 diffPC = true;
349
350 if (shared_data->cycle_count !=
351 thread->getCpuPtr()->instCount())
352 diffCC = true;
353

--- 404 unchanged lines hidden ---