thread_state.cc (4434:2ea7b6e0b78f) thread_state.cc (5482:7fea9bcd84dd)
1/*
2 * Copyright (c) 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;

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

41#include "cpu/quiesce_event.hh"
42#include "mem/vport.hh"
43#endif
44
45#if FULL_SYSTEM
46ThreadState::ThreadState(BaseCPU *cpu, int _cpuId, int _tid)
47 : baseCpu(cpu), cpuId(_cpuId), tid(_tid), lastActivate(0), lastSuspend(0),
48 profile(NULL), profileNode(NULL), profilePC(0), quiesceEvent(NULL),
1/*
2 * Copyright (c) 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;

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

41#include "cpu/quiesce_event.hh"
42#include "mem/vport.hh"
43#endif
44
45#if FULL_SYSTEM
46ThreadState::ThreadState(BaseCPU *cpu, int _cpuId, int _tid)
47 : baseCpu(cpu), cpuId(_cpuId), tid(_tid), lastActivate(0), lastSuspend(0),
48 profile(NULL), profileNode(NULL), profilePC(0), quiesceEvent(NULL),
49 physPort(NULL), virtPort(NULL),
49 kernelStats(NULL), physPort(NULL), virtPort(NULL),
50 microPC(0), nextMicroPC(1), funcExeInst(0), storeCondFailures(0)
51#else
52ThreadState::ThreadState(BaseCPU *cpu, int _cpuId, int _tid, Process *_process,
53 short _asid)
54 : baseCpu(cpu), cpuId(_cpuId), tid(_tid), lastActivate(0), lastSuspend(0),
55 port(NULL), process(_process), asid(_asid),
56 microPC(0), nextMicroPC(1), funcExeInst(0), storeCondFailures(0)
57#endif

--- 140 unchanged lines hidden ---
50 microPC(0), nextMicroPC(1), funcExeInst(0), storeCondFailures(0)
51#else
52ThreadState::ThreadState(BaseCPU *cpu, int _cpuId, int _tid, Process *_process,
53 short _asid)
54 : baseCpu(cpu), cpuId(_cpuId), tid(_tid), lastActivate(0), lastSuspend(0),
55 port(NULL), process(_process), asid(_asid),
56 microPC(0), nextMicroPC(1), funcExeInst(0), storeCondFailures(0)
57#endif

--- 140 unchanged lines hidden ---