2017-01-25 14:43:24 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
#include "ppsspp_config.h"
|
|
|
|
|
2017-01-25 19:34:57 +00:00
|
|
|
#if !defined(_WIN32) && !defined(ANDROID) && !defined(__APPLE__)
|
2017-01-25 14:43:24 +00:00
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <cerrno>
|
|
|
|
#include <cstring>
|
2020-10-04 18:48:47 +00:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "Common/Log.h"
|
|
|
|
#include "Common/File/FileUtil.h"
|
|
|
|
#include "Common/MemoryUtil.h"
|
|
|
|
#include "Common/MemArena.h"
|
2017-01-25 14:43:24 +00:00
|
|
|
|
|
|
|
static const std::string tmpfs_location = "/dev/shm";
|
|
|
|
static const std::string tmpfs_ram_temp_file = "/dev/shm/gc_mem.tmp";
|
|
|
|
|
|
|
|
// do not make this "static"
|
|
|
|
std::string ram_temp_file = "/tmp/gc_mem.tmp";
|
|
|
|
|
|
|
|
size_t MemArena::roundup(size_t x) {
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2017-01-25 16:14:43 +00:00
|
|
|
bool MemArena::NeedsProbing() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-01-25 14:43:24 +00:00
|
|
|
void MemArena::GrabLowMemSpace(size_t size) {
|
|
|
|
mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
|
|
|
|
|
|
|
|
// Some platforms (like Raspberry Pi) end up flushing to disk.
|
|
|
|
// To avoid this, we try to use /dev/shm (tmpfs) if it exists.
|
|
|
|
fd = -1;
|
|
|
|
if (File::Exists(tmpfs_location)) {
|
|
|
|
fd = open(tmpfs_ram_temp_file.c_str(), O_RDWR | O_CREAT, mode);
|
|
|
|
if (fd >= 0) {
|
|
|
|
// Great, this definitely shouldn't flush to disk.
|
|
|
|
ram_temp_file = tmpfs_ram_temp_file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd < 0) {
|
|
|
|
fd = open(ram_temp_file.c_str(), O_RDWR | O_CREAT, mode);
|
|
|
|
}
|
|
|
|
if (fd < 0) {
|
|
|
|
ERROR_LOG(MEMMAP, "Failed to grab memory space as a file: %s of size: %08x errno: %d", ram_temp_file.c_str(), (int)size, (int)(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// delete immediately, we keep the fd so it still lives
|
|
|
|
if (unlink(ram_temp_file.c_str()) != 0) {
|
|
|
|
WARN_LOG(MEMMAP, "Failed to unlink %s", ram_temp_file.c_str());
|
|
|
|
}
|
|
|
|
if (ftruncate(fd, size) != 0) {
|
|
|
|
ERROR_LOG(MEMMAP, "Failed to ftruncate %d (%s) to size %08x", (int)fd, ram_temp_file.c_str(), (int)size);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MemArena::ReleaseSpace() {
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *MemArena::CreateView(s64 offset, size_t size, void *base)
|
|
|
|
{
|
|
|
|
void *retval = mmap(base, size, PROT_READ | PROT_WRITE, MAP_SHARED |
|
|
|
|
// Do not sync memory to underlying file. Linux has this by default.
|
|
|
|
#if defined(__DragonFly__) || defined(__FreeBSD__)
|
|
|
|
MAP_NOSYNC |
|
|
|
|
#endif
|
|
|
|
((base == 0) ? 0 : MAP_FIXED), fd, offset);
|
|
|
|
|
|
|
|
if (retval == MAP_FAILED) {
|
|
|
|
NOTICE_LOG(MEMMAP, "mmap on %s (fd: %d) failed", ram_temp_file.c_str(), (int)fd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MemArena::ReleaseView(void* view, size_t size) {
|
|
|
|
munmap(view, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
u8* MemArena::Find4GBBase() {
|
|
|
|
// Now, create views in high memory where there's plenty of space.
|
2018-01-31 13:22:38 +00:00
|
|
|
#if PPSSPP_ARCH(64BIT) && !defined(USE_ADDRESS_SANITIZER)
|
2019-09-01 15:07:35 +00:00
|
|
|
// We should probably just go look in /proc/self/maps for some free space.
|
|
|
|
// But let's try the anonymous mmap trick, just like on 32-bit, but bigger and
|
|
|
|
// aligned to 4GB for the movk trick. We can ensure that we get an aligned 4GB
|
|
|
|
// address by grabbing 8GB and aligning the pointer.
|
|
|
|
const uint64_t EIGHT_GIGS = 0x200000000ULL;
|
2020-12-19 10:45:42 +00:00
|
|
|
void *base = mmap(0, EIGHT_GIGS, PROT_NONE, MAP_ANON | MAP_PRIVATE | MAP_NORESERVE, -1, 0);
|
2020-09-13 07:36:20 +00:00
|
|
|
if (base && base != MAP_FAILED) {
|
2019-09-01 15:07:35 +00:00
|
|
|
INFO_LOG(MEMMAP, "base: %p", base);
|
|
|
|
uint64_t aligned_base = ((uint64_t)base + 0xFFFFFFFF) & ~0xFFFFFFFFULL;
|
|
|
|
INFO_LOG(MEMMAP, "aligned_base: %p", (void *)aligned_base);
|
|
|
|
munmap(base, EIGHT_GIGS);
|
|
|
|
return reinterpret_cast<u8 *>(aligned_base);
|
|
|
|
} else {
|
|
|
|
u8 *hardcoded_ptr = reinterpret_cast<u8*>(0x2300000000ULL);
|
|
|
|
INFO_LOG(MEMMAP, "Failed to anonymously map 8GB. Fall back to the hardcoded pointer %p.", hardcoded_ptr);
|
|
|
|
// Just grab some random 4GB...
|
|
|
|
// This has been known to fail lately though, see issue #12249.
|
|
|
|
return hardcoded_ptr;
|
|
|
|
}
|
2017-01-25 14:43:24 +00:00
|
|
|
#else
|
2017-01-25 19:34:57 +00:00
|
|
|
size_t size = 0x10000000;
|
2020-09-13 15:09:36 +00:00
|
|
|
void* base = mmap(0, size, PROT_READ | PROT_WRITE, MAP_ANON | MAP_SHARED | MAP_NORESERVE, -1, 0);
|
2020-07-19 15:52:41 +00:00
|
|
|
_assert_msg_(base != MAP_FAILED, "Failed to map 256 MB of memory space: %s", strerror(errno));
|
2017-01-25 19:34:57 +00:00
|
|
|
munmap(base, size);
|
2017-01-25 14:43:24 +00:00
|
|
|
return static_cast<u8*>(base);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-01-25 16:14:43 +00:00
|
|
|
#endif
|