Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parallel RSP pagesize at build time #541

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ ifeq (,$(ARCH))
ARCH = $(shell uname -m)
endif

ifeq ($(shell uname -m),aarch64)
CPUFLAGS += -DPAGESIZE=$(or $(shell getconf PAGESIZE),4096)
endif

# Target Dynarec
WITH_DYNAREC ?= $(ARCH)

Expand Down
2 changes: 2 additions & 0 deletions mupen64plus-rsp-paraLLEl/jit_allocator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ static size_t align_page(size_t offset)
{
#if defined(__APPLE__) && defined(__aarch64__)
size_t pagesize = sysconf(_SC_PAGESIZE) - 1;
#elif defined(PAGESIZE)
size_t pagesize = PAGESIZE - 1;
#else
size_t pagesize = 4095;
#endif
Expand Down