The following warnings occurred: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.2.26 (Linux)
|
PPU LLVM JIT Repository Early Testing - Printable Version +- EmuNewz Network (https://www.emunewz.net/forum) +-- Forum: Official Boards for Emunews Affiliated Emu Projects (https://www.emunewz.net/forum/forumdisplay.php?fid=47) +--- Forum: Official RPCS3 Forum [archive] (https://www.emunewz.net/forum/forumdisplay.php?fid=172) +---- Forum: RPCS3 - Support & Issue Reporting (https://www.emunewz.net/forum/forumdisplay.php?fid=163) +---- Thread: PPU LLVM JIT Repository Early Testing (/showthread.php?tid=164335) |
RE: ppu recompiler repository build - Darkriot - 09-18-2014 Okay, i don't know what is this, but... http://puu.sh/bEBdR/92be3b6c68.png - REL (i think "Release"), Maybe veeery early version RE: ppu recompiler repository build - BlackDaemon - 09-19-2014 Recorded small video demo RE: ppu recompiler repository build - Alexander9000 - 09-19-2014 In my last version of rps3 i can't find this ppu recompiler setting? can someone help me.. RE: ppu recompiler repository build - twdarkeh - 09-19-2014 (09-19-2014, 02:21 AM)Alexander9000 Wrote: In my last version of rps3 i can't find this ppu recompiler setting? It is a highly experimental branch that has not even been offered to the main repository, let alone merged. The people in this thread are manually compiling it from the fork, which one of them can provide. Again, it is highly experimental, and while the results posted thus far do show promise, I cannot imagine it is very stable at this point. RE: ppu recompiler repository build - makotech222 - 09-19-2014 Is anyone even actively developing that branch? It looks like the last commit was in february. I've been thinking about helping out on the dynarec. I was reading this post on pcsx2: http://forums.pcsx2.net/Thread-blog-Introduction-to-Dynamic-Recompilation It doesn't even seem too difficult... or perhaps hes painting a very basic painting of how it works. Does anyone who knows more want to give me some pointers? Why do people always say dynarecs are so hard to write? RE: ppu recompiler repository build - derpf - 09-19-2014 (09-19-2014, 02:38 AM)makotech222 Wrote: Is anyone even actively developing that branch? It looks like the last commit was in february. I've been thinking about helping out on the dynarec. I was reading this post on pcsx2: Reading a 100 ft overview of something and actually doing it are very, very different things. Sure, it sounds easy enough to fly a plane. Just steer and hit some flashing buttons. But you actually need to go through tons of training to be able to fly one with any real chance. RE: ppu recompiler repository build - ZeCoxao - 09-19-2014 ok, guys, it seems visual studio update 3 DOES NOT compile this correctly. it IS compiled, but it is not ran properly as executable, closing with error c00000022 Also, i'll leave a couple of instructions to gopalsr here about how to "build" this thing in linux with the minimum ammount of errors. RE: ppu recompiler repository build - leon112211 - 09-19-2014 (09-19-2014, 01:46 AM)BlackDaemon Wrote: Recorded small video demo Can you upload your merged version because i can't start sonic cd it gives me network error RE: ppu recompiler repository build - Darkriot - 09-19-2014 (09-19-2014, 06:33 AM)leon112211 Wrote:(09-19-2014, 01:46 AM)BlackDaemon Wrote: Recorded small video demo check my previous messages, I gave a link to download. RE: ppu recompiler repository build - ZeCoxao - 09-19-2014 here are the instructions for a build in linux with only one linker error: first of all create an environment variable called LLVM_DIR, like so: Code: export LLVM_DIR=/usr/share/llvm/cmake then remove LLVMRecompilerTests.cpp from Cell then remove the lines that contain ConvertUTF in emucore.vcxproj on a certain line in LLVMRecompiler.cpp there's a misname (Filesystem.h) rename it correctly: Code: #include "llvm/Support/FileSystem.h" Code: #include "llvm/Support/ConvertUTF.h" http://pastie.org/private/bgf7rzlijd1fodtbnpolq Don't forget to build llvm by creating a directory inside it, compiling and installing it: Code: cd llvm after that, try to build it, you should only have this error: http://pastie.org/private/3fdjb3rco0ku597iz8jbjg hope i helped |