simple_thread.hh (8232:b28d06a175be) simple_thread.hh (8357:2fcd223a253b)
1/*
2 * Copyright (c) 2001-2006 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;

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

109 TheISA::ISA isa; // one "instance" of the current ISA.
110
111 TheISA::PCState _pcState;
112
113 /** Did this instruction execute or is it predicated false */
114 bool predicate;
115
116 public:
1/*
2 * Copyright (c) 2001-2006 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;

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

109 TheISA::ISA isa; // one "instance" of the current ISA.
110
111 TheISA::PCState _pcState;
112
113 /** Did this instruction execute or is it predicated false */
114 bool predicate;
115
116 public:
117 std::string name() const
118 {
119 return csprintf("%s.[tid:%i]", cpu->name(), tc->threadId());
120 }
121
117 // pointer to CPU associated with this SimpleThread
118 BaseCPU *cpu;
119
120 ProxyThreadContext<SimpleThread> *tc;
121
122 System *system;
123
124 TheISA::TLB *itb;

--- 269 unchanged lines hidden ---
122 // pointer to CPU associated with this SimpleThread
123 BaseCPU *cpu;
124
125 ProxyThreadContext<SimpleThread> *tc;
126
127 System *system;
128
129 TheISA::TLB *itb;

--- 269 unchanged lines hidden ---