Symbol: M68KPagingMethod040
src/system/kernel/arch/m68k/arch_vm_translation_map.cpp
110
gM68KPagingMethod = new(&sPagingMethodBuffer) M68KPagingMethod040;
src/system/kernel/arch/m68k/arch_vm_translation_map.cpp
48
char m68040[sizeof(M68KPagingMethod040)];
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
123
struct M68KPagingMethod040::PhysicalPageSlotPool
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
151
M68KPagingMethod040::PhysicalPageSlotPool
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
152
M68KPagingMethod040::PhysicalPageSlotPool::sInitialPhysicalPagePool;
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
155
M68KPagingMethod040::PhysicalPageSlotPool::~PhysicalPageSlotPool()
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
161
M68KPagingMethod040::PhysicalPageSlotPool::InitInitial(kernel_args* args)
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
189
M68KPagingMethod040::PhysicalPageSlotPool::InitInitialPostArea(
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
223
M68KPagingMethod040::PhysicalPageSlotPool::Init(area_id dataArea, void* data,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
247
M68KPagingMethod040::PhysicalPageSlotPool::Map(phys_addr_t physicalAddress,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
260
M68KPagingMethod040::PhysicalPageSlotPool::AllocatePool(
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
329
M68KPagingMethod040::M68KPagingMethod040()
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
341
M68KPagingMethod040::~M68KPagingMethod040()
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
347
M68KPagingMethod040::Init(kernel_args* args,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
401
M68KPagingMethod040::InitPostArea(kernel_args* args)
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
449
M68KPagingMethod040::CreateTranslationMap(bool kernel, VMTranslationMap** _map)
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
469
M68KPagingMethod040::MapEarly(kernel_args* args, addr_t virtualAddress,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
587
M68KPagingMethod040::IsKernelPageAccessible(addr_t virtualAddress,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
596
M68KPagingMethod040::SetPageRoot(uint32 pageRoot)
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
610
M68KPagingMethod040::PutPageDirInPageRoot(page_root_entry* entry,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
629
M68KPagingMethod040::PutPageTableInPageDir(page_directory_entry* entry,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
639
M68KPagingMethod040::PutPageTableEntryInTable(page_table_entry* entry,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
666
M68KPagingMethod040::_EarlyPreparePageTables(page_table_entry* pageTables,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
682
= M68KPagingMethod040::Method()->fKernelVirtualPageRoot;
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
703
M68KPagingMethod040::_EarlyQuery(addr_t virtualAddress,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
707
M68KPagingMethod040* method = M68KPagingMethod040::Method();
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
112
/*static*/ inline M68KPagingMethod040*
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
113
M68KPagingMethod040::Method()
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
115
return static_cast<M68KPagingMethod040*>(gM68KPagingMethod);
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
121
M68KPagingMethod040::SetPageTableEntry(page_table_entry* entry,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
129
M68KPagingMethod040::SetPageTableEntryFlags(page_table_entry* entry,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
137
M68KPagingMethod040::TestAndSetPageTableEntry(page_table_entry* entry,
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
145
M68KPagingMethod040::ClearPageTableEntry(page_table_entry* entry)
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
152
M68KPagingMethod040::ClearPageTableEntryFlags(page_table_entry* entry, uint32 flags)
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
159
M68KPagingMethod040::MemoryTypeToPageTableEntryFlags(uint32 memoryType)
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
18
class M68KPagingMethod040 : public M68KPagingMethod {
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
20
M68KPagingMethod040();
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
21
virtual ~M68KPagingMethod040();
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.h
56
static M68KPagingMethod040* Method();
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
143
M68KPagingMethod040* method = M68KPagingMethod040::Method();
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
256
M68KPagingMethod040::PutPageDirInPageRoot(apr, pgdir, attributes
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
307
M68KPagingMethod040::PutPageTableInPageDir(apd, pgtable, attributes
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
334
M68KPagingMethod040::PutPageTableEntryInTable(&pt[pindex], pa, attributes,
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
405
= M68KPagingMethod040::ClearPageTableEntry(&pt[index]);
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
460
page_table_entry oldEntry = M68KPagingMethod040::ClearPageTableEntry(
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
573
= M68KPagingMethod040::ClearPageTableEntry(e);
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
696
M68KPagingMethod040::Method()->PhysicalPageMapper()
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
708
M68KPagingMethod040::Method()->PhysicalPageMapper()
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
716
M68KPagingMethod040::Method()->PhysicalPageMapper()
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
795
oldEntry = M68KPagingMethod040::TestAndSetPageTableEntry(
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
800
| M68KPagingMethod040::MemoryTypeToPageTableEntryFlags(
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
845
= M68KPagingMethod040::ClearPageTableEntryFlags(&pt[index],
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
896
oldEntry = M68KPagingMethod040::ClearPageTableEntryFlags(
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
902
if (M68KPagingMethod040::TestAndSetPageTableEntry(&pt[index], 0,
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
910
oldEntry = M68KPagingMethod040::ClearPageTableEntryFlags(&pt[index],