multi_level_page_table.hh (10905:a6ca6831e775) multi_level_page_table.hh (11168:f98eb2da15a4)
1/*
2 * Copyright (c) 2014 Advanced Micro Devices, Inc.
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;

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

148 void initState(ThreadContext* tc);
149
150 void map(Addr vaddr, Addr paddr, int64_t size,
151 uint64_t flags = 0);
152 void remap(Addr vaddr, int64_t size, Addr new_vaddr);
153 void unmap(Addr vaddr, int64_t size);
154 bool isUnmapped(Addr vaddr, int64_t size);
155 bool lookup(Addr vaddr, TheISA::TlbEntry &entry);
1/*
2 * Copyright (c) 2014 Advanced Micro Devices, Inc.
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;

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

148 void initState(ThreadContext* tc);
149
150 void map(Addr vaddr, Addr paddr, int64_t size,
151 uint64_t flags = 0);
152 void remap(Addr vaddr, int64_t size, Addr new_vaddr);
153 void unmap(Addr vaddr, int64_t size);
154 bool isUnmapped(Addr vaddr, int64_t size);
155 bool lookup(Addr vaddr, TheISA::TlbEntry &entry);
156 void serialize(CheckpointOut &cp) const M5_ATTR_OVERRIDE;
157 void unserialize(CheckpointIn &cp) M5_ATTR_OVERRIDE;
156 void serialize(CheckpointOut &cp) const override;
157 void unserialize(CheckpointIn &cp) override;
158};
159#endif // __MEM_MULTI_LEVEL_PAGE_TABLE_HH__
158};
159#endif // __MEM_MULTI_LEVEL_PAGE_TABLE_HH__