exetrace.cc (10664:61a0b02aa800) exetrace.cc (10665:aef704eaedd2)
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;

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

115 if (Debug::ExecResult && !predicate) {
116 outs << "Predicated False";
117 }
118
119 if (Debug::ExecResult && data_status != DataInvalid) {
120 ccprintf(outs, " D=%#018x", data.as_int);
121 }
122
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;

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

115 if (Debug::ExecResult && !predicate) {
116 outs << "Predicated False";
117 }
118
119 if (Debug::ExecResult && data_status != DataInvalid) {
120 ccprintf(outs, " D=%#018x", data.as_int);
121 }
122
123 if (Debug::ExecEffAddr && addr_valid)
123 if (Debug::ExecEffAddr && getMemValid())
124 outs << " A=0x" << hex << addr;
125
126 if (Debug::ExecFetchSeq && fetch_seq_valid)
127 outs << " FetchSeq=" << dec << fetch_seq;
128
129 if (Debug::ExecCPSeq && cp_seq_valid)
130 outs << " CPSeq=" << dec << cp_seq;
131

--- 47 unchanged lines hidden ---
124 outs << " A=0x" << hex << addr;
125
126 if (Debug::ExecFetchSeq && fetch_seq_valid)
127 outs << " FetchSeq=" << dec << fetch_seq;
128
129 if (Debug::ExecCPSeq && cp_seq_valid)
130 outs << " CPSeq=" << dec << cp_seq;
131

--- 47 unchanged lines hidden ---