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

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

110
111 if (ran) {
112 outs << " : ";
113
114 if (Debug::ExecOpClass) {
115 outs << Enums::OpClassStrings[inst->opClass()] << " : ";
116 }
117
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;

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

110
111 if (ran) {
112 outs << " : ";
113
114 if (Debug::ExecOpClass) {
115 outs << Enums::OpClassStrings[inst->opClass()] << " : ";
116 }
117
118 if (Debug::ExecResult && predicate == false) {
118 if (Debug::ExecResult && !predicate) {
119 outs << "Predicated False";
120 }
121
122 if (Debug::ExecResult && data_status != DataInvalid) {
123 ccprintf(outs, " D=%#018x", data.as_int);
124 }
125
126 if (Debug::ExecEffAddr && addr_valid)

--- 49 unchanged lines hidden ---
119 outs << "Predicated False";
120 }
121
122 if (Debug::ExecResult && data_status != DataInvalid) {
123 ccprintf(outs, " D=%#018x", data.as_int);
124 }
125
126 if (Debug::ExecEffAddr && addr_valid)

--- 49 unchanged lines hidden ---