exetrace.cc (3840:5f8deb240569) exetrace.cc (3863:adf3ddd4bcde)
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;

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

396 diffCleanwin = true;
397
398 if ((diffPC || diffCC || diffInst || diffRegs || diffTpc ||
399 diffTnpc || diffTstate || diffTt || diffHpstate ||
400 diffHtstate || diffHtba || diffPstate || diffY ||
401 diffCcr || diffTl || diffGl || diffAsi || diffPil ||
402 diffCwp || diffCansave || diffCanrestore ||
403 diffOtherwin || diffCleanwin)
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;

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

396 diffCleanwin = true;
397
398 if ((diffPC || diffCC || diffInst || diffRegs || diffTpc ||
399 diffTnpc || diffTstate || diffTt || diffHpstate ||
400 diffHtstate || diffHtba || diffPstate || diffY ||
401 diffCcr || diffTl || diffGl || diffAsi || diffPil ||
402 diffCwp || diffCansave || diffCanrestore ||
403 diffOtherwin || diffCleanwin)
404 && !((staticInst->machInst & 0xC1F80000) == 0x81D00000)) {
404 && !((staticInst->machInst & 0xC1F80000) == 0x81D00000)
405 && !((staticInst->machInst & 0xC1F80000) == 0xC0580000)
406 && !((staticInst->machInst & 0xC1F80000) == 0xC0000000)
407 && !((staticInst->machInst & 0xC1F80000) == 0xC0700000)) {
408
405 outs << "Differences found between M5 and Legion:";
406 if (diffPC)
407 outs << " [PC]";
408 if (diffCC)
409 outs << " [CC]";
410 if (diffInst)
411 outs << " [Instruction]";
412 if (diffRegs)

--- 287 unchanged lines hidden ---
409 outs << "Differences found between M5 and Legion:";
410 if (diffPC)
411 outs << " [PC]";
412 if (diffCC)
413 outs << " [CC]";
414 if (diffInst)
415 outs << " [Instruction]";
416 if (diffRegs)

--- 287 unchanged lines hidden ---