AbstractController.hh (8341:30daf1dd5c91) AbstractController.hh (8436:5648986156db)
1/*
2 * Copyright (c) 2009 Mark D. Hill and David A. Wood
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;

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

31
32#include <iostream>
33#include <string>
34
35#include "mem/protocol/AccessPermission.hh"
36#include "mem/protocol/MachineType.hh"
37#include "mem/ruby/common/Address.hh"
38#include "mem/ruby/common/Consumer.hh"
1/*
2 * Copyright (c) 2009 Mark D. Hill and David A. Wood
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;

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

31
32#include <iostream>
33#include <string>
34
35#include "mem/protocol/AccessPermission.hh"
36#include "mem/protocol/MachineType.hh"
37#include "mem/ruby/common/Address.hh"
38#include "mem/ruby/common/Consumer.hh"
39#include "mem/ruby/common/DataBlock.hh"
39#include "mem/ruby/network/Network.hh"
40#include "mem/ruby/network/Network.hh"
41#include "mem/ruby/system/System.hh"
40#include "params/RubyController.hh"
41#include "sim/sim_object.hh"
42
43class MessageBuffer;
44class Network;
45
46class AbstractController : public SimObject, public Consumer
47{
48 public:
49 typedef RubyControllerParams Params;
42#include "params/RubyController.hh"
43#include "sim/sim_object.hh"
44
45class MessageBuffer;
46class Network;
47
48class AbstractController : public SimObject, public Consumer
49{
50 public:
51 typedef RubyControllerParams Params;
50 AbstractController(const Params *p) : SimObject(p) {}
52 AbstractController(const Params *p);
51 const Params *params() const { return (const Params *)_params; }
52
53 // returns the number of controllers created of the specific subtype
54 // virtual int getNumberOfControllers() const = 0;
55 virtual MessageBuffer* getMandatoryQueue() const = 0;
56 virtual const int & getVersion() const = 0;
57 virtual const std::string toString() const = 0; // returns text version of
58 // controller type
59 virtual const std::string getName() const = 0; // return instance name
60 virtual const MachineType getMachineType() const = 0;
61 virtual void blockOnQueue(Address, MessageBuffer*) = 0;
62 virtual void unblock(Address) = 0;
63 virtual void initNetworkPtr(Network* net_ptr) = 0;
53 const Params *params() const { return (const Params *)_params; }
54
55 // returns the number of controllers created of the specific subtype
56 // virtual int getNumberOfControllers() const = 0;
57 virtual MessageBuffer* getMandatoryQueue() const = 0;
58 virtual const int & getVersion() const = 0;
59 virtual const std::string toString() const = 0; // returns text version of
60 // controller type
61 virtual const std::string getName() const = 0; // return instance name
62 virtual const MachineType getMachineType() const = 0;
63 virtual void blockOnQueue(Address, MessageBuffer*) = 0;
64 virtual void unblock(Address) = 0;
65 virtual void initNetworkPtr(Network* net_ptr) = 0;
66 virtual AccessPermission getAccessPermission(Address addr) = 0;
67 virtual DataBlock& getDataBlock(Address addr) = 0;
64
65 virtual void print(std::ostream & out) const = 0;
66 virtual void printStats(std::ostream & out) const = 0;
67 virtual void printConfig(std::ostream & out) const = 0;
68 virtual void wakeup() = 0;
69 // virtual void dumpStats(std::ostream & out) = 0;
70 virtual void clearStats() = 0;
68
69 virtual void print(std::ostream & out) const = 0;
70 virtual void printStats(std::ostream & out) const = 0;
71 virtual void printConfig(std::ostream & out) const = 0;
72 virtual void wakeup() = 0;
73 // virtual void dumpStats(std::ostream & out) = 0;
74 virtual void clearStats() = 0;
71
72 private:
73 virtual AccessPermission getAccessPermission(Address addr) = 0;
74};
75
76#endif // __MEM_RUBY_SLICC_INTERFACE_ABSTRACTCONTROLLER_HH__
75};
76
77#endif // __MEM_RUBY_SLICC_INTERFACE_ABSTRACTCONTROLLER_HH__