simple_thread.cc (9441:1133617844c8) simple_thread.cc (9461:67a6ba6604c8)
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;

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

138void
139SimpleThread::unserialize(Checkpoint *cp, const std::string &section)
140{
141 ThreadState::unserialize(cp, section);
142 ::unserialize(*tc, cp, section);
143}
144
145void
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;

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

138void
139SimpleThread::unserialize(Checkpoint *cp, const std::string &section)
140{
141 ThreadState::unserialize(cp, section);
142 ::unserialize(*tc, cp, section);
143}
144
145void
146SimpleThread::startup()
147{
148 isa->startup(tc);
149}
150
151void
146SimpleThread::dumpFuncProfile()
147{
148 std::ostream *os = simout.create(csprintf("profile.%s.dat",
149 baseCpu->name()));
150 profile->dump(tc, *os);
151}
152
153void

--- 55 unchanged lines hidden ---
152SimpleThread::dumpFuncProfile()
153{
154 std::ostream *os = simout.create(csprintf("profile.%s.dat",
155 baseCpu->name()));
156 profile->dump(tc, *os);
157}
158
159void

--- 55 unchanged lines hidden ---