intdev.hh (7913:70b56a9ac1b2) intdev.hh (8229:78bf55f23338)
1/*
2 * Copyright (c) 2008 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;

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

27 *
28 * Authors: Gabe Black
29 */
30
31#ifndef __DEV_X86_INTDEV_HH__
32#define __DEV_X86_INTDEV_HH__
33
34#include <cassert>
1/*
2 * Copyright (c) 2008 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;

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

27 *
28 * Authors: Gabe Black
29 */
30
31#ifndef __DEV_X86_INTDEV_HH__
32#define __DEV_X86_INTDEV_HH__
33
34#include <cassert>
35#include <list>
35#include <string>
36
36#include <string>
37
37#include "arch/x86/x86_traits.hh"
38#include "arch/x86/intmessage.hh"
38#include "arch/x86/intmessage.hh"
39#include "arch/x86/x86_traits.hh"
39#include "mem/mem_object.hh"
40#include "mem/mport.hh"
40#include "mem/mem_object.hh"
41#include "mem/mport.hh"
41#include "sim/sim_object.hh"
42#include "params/X86IntSourcePin.hh"
43#include "params/X86IntSinkPin.hh"
44#include "params/X86IntLine.hh"
42#include "params/X86IntLine.hh"
43#include "params/X86IntSinkPin.hh"
44#include "params/X86IntSourcePin.hh"
45#include "sim/sim_object.hh"
45
46
46#include <list>
47
48namespace X86ISA {
49
50typedef std::list<int> ApicList;
51
52class IntDev
53{
54 protected:
55 class IntPort : public MessagePort

--- 176 unchanged lines hidden ---
47namespace X86ISA {
48
49typedef std::list<int> ApicList;
50
51class IntDev
52{
53 protected:
54 class IntPort : public MessagePort

--- 176 unchanged lines hidden ---