Skip to content

Commit

Permalink
git subrepo clone --force [email protected]:libretro/parallel-rsp.git mu…
Browse files Browse the repository at this point in the history
…pen64plus-rsp-paraLLEl

subrepo:
  subdir:   "mupen64plus-rsp-paraLLEl"
  merged:   "aa3edda"
upstream:
  origin:   "[email protected]:libretro/parallel-rsp.git"
  branch:   "master"
  commit:   "aa3edda"
git-subrepo:
  version:  "0.4.6"
  origin:   "https://github.com/Homebrew/brew"
  commit:   "b3751bca8"
  • Loading branch information
warmenhoven committed Jan 25, 2024
1 parent 98c321b commit 8f4d53e
Show file tree
Hide file tree
Showing 140 changed files with 23,006 additions and 5,293 deletions.
8 changes: 4 additions & 4 deletions mupen64plus-rsp-paraLLEl/.gitrepo
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
;
[subrepo]
remote = [email protected]:Themaister/parallel-rsp.git
remote = [email protected]:libretro/parallel-rsp.git
branch = master
commit = ec6817fb8619d4fcc6d5d5f85f3cf7def0851246
parent = a3dcc7bfc8960663a34d8d1a0b96ac29b0616345
commit = aa3eddaaf0abd9e32b8a8a660a6f8a0ab8d7ad13
parent = 98c321bae4426fa23f7789f959a3e9a539ce95c4
method = rebase
cmdver = 0.4.0
cmdver = 0.4.6
1 change: 1 addition & 0 deletions mupen64plus-rsp-paraLLEl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ if (PARALLEL_RSP_BAKED_LIGHTNING)
target_sources(lightning PRIVATE win32/mman/sys/mman.c)
target_include_directories(lightning PRIVATE win32/mman)
endif()
target_compile_definitions(lightning PUBLIC HAVE_MMAP=1)
endif()
target_link_libraries(parallel-rsp PUBLIC lightning)
target_compile_definitions(parallel-rsp PUBLIC DEBUG_JIT)
Expand Down
4 changes: 4 additions & 0 deletions mupen64plus-rsp-paraLLEl/jit_allocator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ namespace RSP
{
namespace JIT
{
#if TARGET_OS_TV // tvOS is 64bit but does not allow an infinite amount of VA space
static constexpr bool huge_va = false;
#else
static constexpr bool huge_va = std::numeric_limits<size_t>::max() > 0x100000000ull;
#endif
// On 64-bit systems, we will never allocate more than one block, this is important since we must ensure that
// relative jumps are reachable in 32-bits.
// We won't actually allocate 1 GB on 64-bit, but just reserve VA space for it, which we have basically an infinite amount of.
Expand Down
21 changes: 16 additions & 5 deletions mupen64plus-rsp-paraLLEl/lightning/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
/build-aux
+*

*.o
*.lo
*.la

.libs/
.deps/
*/.libs/
*/.deps/

autom4te.cache
aclocal.m4
depcomp
Expand All @@ -20,14 +31,14 @@ missing
size
stamp-h1
test-driver
check/.deps
doc/.deps
lib/.deps

m4/libtool.m4
m4/lt~obsolete.m4
m4/ltoptions.m4
m4/ltsugar.m4
m4/ltversion.m4
doc/mdate-sh
doc/texinfo.tex

lightning.pc
include/lightning.h

build-aux/
3 changes: 3 additions & 0 deletions mupen64plus-rsp-paraLLEl/lightning/.gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "gnulib"]
path = gnulib
url = git://git.sv.gnu.org/gnulib.git
6 changes: 3 additions & 3 deletions mupen64plus-rsp-paraLLEl/lightning/.gitrepo
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[subrepo]
remote = https://git.savannah.gnu.org/git/lightning.git
branch = master
commit = b0b8eb5e856c0d29053dc842e1919a2eb58c8cda
parent = 9f797430963d9cf0fcef7d963466f9cac7026de2
commit = 75e5274ba59feab99a2afcf329d890911ed01eaf
parent = b7d23a9d07791c7006d57c58ab1e442103741cd6
method = merge
cmdver = 0.4.1
cmdver = 0.4.5
Loading

0 comments on commit 8f4d53e

Please sign in to comment.