exetrace.cc (7349:8b4564729c81) exetrace.cc (7600:eff7f79f7dfd)
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;

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

106
107 if (ran) {
108 outs << " : ";
109
110 if (IsOn(ExecOpClass)) {
111 outs << Enums::OpClassStrings[inst->opClass()] << " : ";
112 }
113
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;

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

106
107 if (ran) {
108 outs << " : ";
109
110 if (IsOn(ExecOpClass)) {
111 outs << Enums::OpClassStrings[inst->opClass()] << " : ";
112 }
113
114 if (IsOn(ExecResult) && predicate == false) {
115 outs << "Predicated False";
116 }
117
114 if (IsOn(ExecResult) && data_status != DataInvalid) {
115 ccprintf(outs, " D=%#018x", data.as_int);
116 }
117
118 if (IsOn(ExecEffAddr) && addr_valid)
119 outs << " A=0x" << hex << addr;
120
121 if (IsOn(ExecFetchSeq) && fetch_seq_valid)

--- 46 unchanged lines hidden ---
118 if (IsOn(ExecResult) && data_status != DataInvalid) {
119 ccprintf(outs, " D=%#018x", data.as_int);
120 }
121
122 if (IsOn(ExecEffAddr) && addr_valid)
123 outs << " A=0x" << hex << addr;
124
125 if (IsOn(ExecFetchSeq) && fetch_seq_valid)

--- 46 unchanged lines hidden ---