Deleted Added
sdiff udiff text old ( 5665:433182bf55c1 ) new ( 5677:c8479d55206c )
full compact
1/*
2 * Copyright (c) 2003-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;

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

67class InorderCPU;
68class SymbolTable;
69class AddrDecodePage;
70
71namespace Trace {
72 class InstRecord;
73}
74
75typedef uint32_t MicroPC;
76
77static const MicroPC MicroPCRomBit = 1 << (sizeof(MicroPC) * 8 - 1);
78
79static inline MicroPC
80romMicroPC(MicroPC upc)
81{
82 return upc | MicroPCRomBit;
83}

--- 593 unchanged lines hidden ---