summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2019-03-21 11:39:55 -0400
committerGravatar Lioncash2019-03-21 11:43:35 -0400
commit18918f5f2fba9ca1ad2f34730fa122562a6ae05a (patch)
treee6b0747bb8ae4879b367eb1cf338e0f70e417c10 /src/core/hle/kernel/process.cpp
parentkernel/vm_manager: Amend flag values for CodeMutable (diff)
downloadyuzu-18918f5f2fba9ca1ad2f34730fa122562a6ae05a.tar.gz
yuzu-18918f5f2fba9ca1ad2f34730fa122562a6ae05a.tar.xz
yuzu-18918f5f2fba9ca1ad2f34730fa122562a6ae05a.zip
kernel/vm_manager: Rename CodeStatic/CodeMutable to Code and CodeData respectively
Makes it more evident that one is for actual code and one is for actual data. Mutable and static are less than ideal terms here, because read-only data is technically not mutable, but we were mapping it with that label.
Diffstat (limited to 'src/core/hle/kernel/process.cpp')
-rw-r--r--src/core/hle/kernel/process.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp
index 15a16ae14..83cfea0d4 100644
--- a/src/core/hle/kernel/process.cpp
+++ b/src/core/hle/kernel/process.cpp
@@ -220,9 +220,9 @@ void Process::LoadModule(CodeSet module_, VAddr base_addr) {
220 }; 220 };
221 221
222 // Map CodeSet segments 222 // Map CodeSet segments
223 MapSegment(module_.CodeSegment(), VMAPermission::ReadExecute, MemoryState::CodeStatic); 223 MapSegment(module_.CodeSegment(), VMAPermission::ReadExecute, MemoryState::Code);
224 MapSegment(module_.RODataSegment(), VMAPermission::Read, MemoryState::CodeMutable); 224 MapSegment(module_.RODataSegment(), VMAPermission::Read, MemoryState::CodeData);
225 MapSegment(module_.DataSegment(), VMAPermission::ReadWrite, MemoryState::CodeMutable); 225 MapSegment(module_.DataSegment(), VMAPermission::ReadWrite, MemoryState::CodeData);
226 226
227 // Clear instruction cache in CPU JIT 227 // Clear instruction cache in CPU JIT
228 system.InvalidateCpuInstructionCaches(); 228 system.InvalidateCpuInstructionCaches();