sc_export.hh (13048:9ae0bf1b32e6) sc_export.hh (13059:4be5f408e128)
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

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

41class sc_export_base : public sc_object
42{
43 public:
44 sc_export_base(const char *n);
45 ~sc_export_base();
46
47 virtual sc_interface *get_iterface() = 0;
48 virtual const sc_interface *get_interface() const = 0;
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

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

41class sc_export_base : public sc_object
42{
43 public:
44 sc_export_base(const char *n);
45 ~sc_export_base();
46
47 virtual sc_interface *get_iterface() = 0;
48 virtual const sc_interface *get_interface() const = 0;
49
50 protected:
51 friend class sc_gem5::Kernel;
52
53 virtual void before_end_of_elaboration() = 0;
54 virtual void end_of_elaboration() = 0;
55 virtual void start_of_simulation() = 0;
56 virtual void end_of_simulation() = 0;
49};
50
51template <class IF>
52class sc_export : public sc_export_base
53{
54 public:
55 sc_export() :
56 sc_export_base(sc_gen_unique_name("export")), interface(nullptr)

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

69
70 IF *operator -> () { return interface; }
71 const IF *operator -> () const { return interface; }
72
73 sc_interface *get_iterface() override { return interface; }
74 const sc_interface *get_interface() const override { return interface; }
75
76 protected:
57};
58
59template <class IF>
60class sc_export : public sc_export_base
61{
62 public:
63 sc_export() :
64 sc_export_base(sc_gen_unique_name("export")), interface(nullptr)

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

77
78 IF *operator -> () { return interface; }
79 const IF *operator -> () const { return interface; }
80
81 sc_interface *get_iterface() override { return interface; }
82 const sc_interface *get_interface() const override { return interface; }
83
84 protected:
77 virtual void before_end_of_elaboration() {}
78 virtual void end_of_elaboration() {}
79 virtual void start_of_simulation() {}
80 virtual void end_of_simulation() {}
85 void before_end_of_elaboration() {}
86 void end_of_elaboration() {}
87 void start_of_simulation() {}
88 void end_of_simulation() {}
81
82 private:
83 IF *interface;
84
85 // Disabled
86 sc_export(const sc_export<IF> &);
87 sc_export<IF> &operator = (const sc_export<IF> &);
88};
89
90} // namespace sc_core
91
92#endif //__SYSTEMC_EXT_CORE_SC_EXPORT_HH__
89
90 private:
91 IF *interface;
92
93 // Disabled
94 sc_export(const sc_export<IF> &);
95 sc_export<IF> &operator = (const sc_export<IF> &);
96};
97
98} // namespace sc_core
99
100#endif //__SYSTEMC_EXT_CORE_SC_EXPORT_HH__