arch,mem: Remove the default value for page size.
This breaks one more architecture dependence outside of the ISAs. Change-Id: I071f9ed73aef78e1cd1752247c183e30854b2d28 Reviewed-on: https://gem5-review.googlesource.com/6982 Maintainer: Gabe Black <gabeblack@google.com> Reviewed-by: Alexandru Duțu <alexandru.dutu@amd.com> Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Reviewed-by: Brandon Potter <Brandon.Potter@amd.com>
This commit is contained in:
@@ -140,7 +140,7 @@ class MultiLevelPageTable : public PageTableBase
|
||||
|
||||
public:
|
||||
MultiLevelPageTable(const std::string &__name, uint64_t _pid,
|
||||
System *_sys);
|
||||
System *_sys, Addr pageSize);
|
||||
~MultiLevelPageTable();
|
||||
|
||||
void initState(ThreadContext* tc) override;
|
||||
|
||||
@@ -46,8 +46,9 @@ using namespace TheISA;
|
||||
|
||||
template <class ISAOps>
|
||||
MultiLevelPageTable<ISAOps>::MultiLevelPageTable(const std::string &__name,
|
||||
uint64_t _pid, System *_sys)
|
||||
: PageTableBase(__name, _pid), system(_sys),
|
||||
uint64_t _pid, System *_sys,
|
||||
Addr pageSize)
|
||||
: PageTableBase(__name, _pid, pageSize), system(_sys),
|
||||
logLevelSize(PageTableLayout),
|
||||
numLevels(logLevelSize.size())
|
||||
{
|
||||
|
||||
@@ -73,8 +73,7 @@ class PageTableBase : public Serializable
|
||||
|
||||
public:
|
||||
|
||||
PageTableBase(const std::string &__name, uint64_t _pid,
|
||||
Addr _pageSize = TheISA::PageBytes)
|
||||
PageTableBase(const std::string &__name, uint64_t _pid, Addr _pageSize)
|
||||
: pageSize(_pageSize), offsetMask(mask(floorLog2(_pageSize))),
|
||||
pid(_pid), _name(__name)
|
||||
{
|
||||
@@ -211,8 +210,7 @@ class FuncPageTable : public PageTableBase
|
||||
|
||||
public:
|
||||
|
||||
FuncPageTable(const std::string &__name, uint64_t _pid,
|
||||
Addr _pageSize = TheISA::PageBytes);
|
||||
FuncPageTable(const std::string &__name, uint64_t _pid, Addr _pageSize);
|
||||
|
||||
~FuncPageTable();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user