multi_level_page_table.hh (12446:c4ad23df356a) multi_level_page_table.hh (12448:b299e560f1d8)
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;

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

95 * For every level of the page table, from n to 1, the base address
96 * of the entry is loaded, the offset in the virtual address for
97 * that particular level is used to index into the entry which
98 * will reveal the memory address of the entry in the next level.
99 *
100 * @see MultiLevelPageTable
101 */
102template <class ISAOps>
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;

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

95 * For every level of the page table, from n to 1, the base address
96 * of the entry is loaded, the offset in the virtual address for
97 * that particular level is used to index into the entry which
98 * will reveal the memory address of the entry in the next level.
99 *
100 * @see MultiLevelPageTable
101 */
102template <class ISAOps>
103class MultiLevelPageTable : public FuncPageTable
103class MultiLevelPageTable : public EmulationPageTable
104{
105 /**
106 * ISA specific operations
107 */
108 ISAOps pTableISAOps;
109
110 /**
111 * Pointer to System object

--- 43 unchanged lines hidden ---
104{
105 /**
106 * ISA specific operations
107 */
108 ISAOps pTableISAOps;
109
110 /**
111 * Pointer to System object

--- 43 unchanged lines hidden ---