Deleted Added
sdiff udiff text old ( 13046:3a5e942051db ) new ( 13079:e7e261dd975b )
full compact
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

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

27 * Authors: Gabe Black
28 */
29
30#include "systemc/core/module.hh"
31
32#include <cassert>
33
34#include "base/logging.hh"
35
36namespace sc_gem5
37{
38
39namespace
40{
41
42std::list<Module *> _modules;

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

47} // anonymous namespace
48
49Module::Module(const char *name) : _name(name), _sc_mod(nullptr), _obj(nullptr)
50{
51 panic_if(_new_module, "Previous module not finished.\n");
52 _new_module = this;
53}
54
55Module::~Module() { allModules.remove(this); }
56
57void
58Module::finish(Object *this_obj)
59{
60 assert(!_obj);
61 _obj = this_obj;
62 _modules.push_back(this);
63 _new_module = nullptr;

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

81currentModule()
82{
83 if (_modules.empty())
84 return nullptr;
85 return _modules.back();
86}
87
88Module *
89newModule()
90{
91 return _new_module;
92}
93
94void callbackModule(Module *m) { _callbackModule = m; }
95Module *callbackModule() { return _callbackModule; }
96
97std::list<Module *> allModules;
98
99} // namespace sc_gem5