Deleted Added
sdiff udiff text old ( 5664:3b3756efad89 ) new ( 5704:98224505352a )
full compact
1/*
2 * Copyright (c) 2002-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;

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

103 * @param begin_tick The tick that the event is completing on.
104 */
105 Tick nextCycle(Tick begin_tick);
106
107 TheISA::MicrocodeRom microcodeRom;
108
109#if FULL_SYSTEM
110 protected:
111// uint64_t interrupts[TheISA::NumInterruptLevels];
112// uint64_t intstatus;
113 TheISA::Interrupts * interrupts;
114
115 public:
116 TheISA::Interrupts *
117 getInterruptController()
118 {
119 return interrupts;
120 }
121
122 virtual void post_interrupt(int int_num, int index);
123 virtual void clear_interrupt(int int_num, int index);
124 virtual void clear_interrupts();
125
126 bool check_interrupts(ThreadContext * tc) const
127 { return interrupts->check_interrupts(tc); }
128
129 class ProfileEvent : public Event
130 {
131 private:
132 BaseCPU *cpu;
133 Tick interval;
134
135 public:

--- 149 unchanged lines hidden ---