exetrace.cc (10231:cb2e6950956d) exetrace.cc (10383:b31580e27d1f)
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;

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

126 if (Debug::ExecEffAddr && addr_valid)
127 outs << " A=0x" << hex << addr;
128
129 if (Debug::ExecFetchSeq && fetch_seq_valid)
130 outs << " FetchSeq=" << dec << fetch_seq;
131
132 if (Debug::ExecCPSeq && cp_seq_valid)
133 outs << " CPSeq=" << dec << cp_seq;
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;

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

126 if (Debug::ExecEffAddr && addr_valid)
127 outs << " A=0x" << hex << addr;
128
129 if (Debug::ExecFetchSeq && fetch_seq_valid)
130 outs << " FetchSeq=" << dec << fetch_seq;
131
132 if (Debug::ExecCPSeq && cp_seq_valid)
133 outs << " CPSeq=" << dec << cp_seq;
134
135 if (Debug::ExecFlags) {
136 outs << " flags=(";
137 inst->printFlags(outs, "|");
138 outs << ")";
139 }
134 }
135
136 //
137 // End of line...
138 //
139 outs << endl;
140}
141

--- 34 unchanged lines hidden ---
140 }
141
142 //
143 // End of line...
144 //
145 outs << endl;
146}
147

--- 34 unchanged lines hidden ---