PPU LLVM JIT Repository Early Testing
Started by Ekaseo




358 posts in this topic
gopalsr83
Unregistered


 
09-19-2014, 06:58 AM -
#71
(09-18-2014, 01:14 PM)tambre Wrote:
(09-18-2014, 12:12 PM)gopalsr83 Wrote: ZeCoxao, Darkriot, it looks like you are using Ivy Bridge processors that do not support the BMI2 instruction set. I made a commit a few minutes ago to disable the recompiler from generating BMI instructions. If possible please update your repositories and let me know if the crash is still occurring or not.

Thanks

edit: ZeCoxao, I do not have a Linux machine at the moment. This weekend, I will build a Linux VM and try to fix the compilation issues.

I understand this is early, but it would be nice to make it detect if you are running Haswell and enable the use of BMI2 instruction set in that case.

Ok. I am planning to do this at some point in the future (after the majority of the work on the recompiler is done). At the moment I am assuming that the minimum requirement is SSE4.1 (i.e. Penryn or newer required).

(09-19-2014, 06:55 AM)ZeCoxao Wrote: 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 ConvertUTF.cpp and ConvertUTF.h from Utilities
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"
on line 2795 of file SimpleIni.h remove the include line there and replace it with this one:
Code:
#include "llvm/Support/ConvertUTF.h"
Afterwards just replace the content of CMakeLists.txt in rpcs3 folder with this one:
http://pastie.org/private/bgf7rzlijd1fodtbnpolq
Don't forget to build llvm by creating a directory inside it, compiling and installing it:
Code:
cd llvm
mkdir b
cd b
cmake ..
sudo make install
when it asks for password input it
after that, try to build it, you should only have this error:
http://pastie.org/private/3fdjb3rco0ku597iz8jbjg
hope i helped Smile

Much thanks. I will try to get the Linux build to work this weekend.


Messages In This Thread
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-14-2014, 09:48 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-15-2014, 12:34 AM
RE: PPU LLVM JIT Repository Early Testing - by Cyrax_X(Ru4slan has banned) - 09-15-2014, 10:21 PM
RE: PPU LLVM JIT Repository Early Testing - by Cyrax_X(Ru4slan has banned) - 09-15-2014, 10:23 PM
RE: PPU LLVM JIT Repository Early Testing - by Cyrax_X(Ru4slan has banned) - 09-15-2014, 10:58 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-15-2014, 11:01 PM
RE: PPU LLVM JIT Repository Early Testing - by Cyrax_X(Ru4slan has banned) - 09-15-2014, 11:15 PM
RE: PPU LLVM JIT Repository Early Testing - by Gundark - 09-16-2014, 05:15 PM
RE: PPU LLVM JIT Repository Early Testing - by Oil - 09-16-2014, 08:56 PM
RE: PPU LLVM JIT Repository Early Testing - by Cyrax_X(Ru4slan has banned) - 09-16-2014, 09:30 PM
RE: PPU LLVM JIT Repository Early Testing - by gopalsr83 - 09-17-2014, 02:49 AM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-17-2014, 09:21 AM
RE: PPU LLVM JIT Repository Early Testing - by Cyrax_X(Ru4slan has banned) - 09-17-2014, 02:17 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-17-2014, 07:02 PM
RE: PPU LLVM JIT Repository Early Testing - by gopalsr83 - 09-18-2014, 11:27 AM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-18-2014, 11:50 AM
RE: PPU LLVM JIT Repository Early Testing - by gopalsr83 - 09-18-2014, 12:12 PM
RE: PPU LLVM JIT Repository Early Testing - by tambre - 09-18-2014, 01:14 PM
RE: PPU LLVM JIT Repository Early Testing - by Cyrax_X(Ru4slan has banned) - 09-18-2014, 01:23 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-18-2014, 01:33 PM
RE: PPU LLVM JIT Repository Early Testing - by jacky400 - 09-18-2014, 02:56 PM
RE: PPU LLVM JIT Repository Early Testing - by leon112211 - 09-18-2014, 03:05 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-18-2014, 04:16 PM
RE: PPU LLVM JIT Repository Early Testing - by Alexander9000 - 09-18-2014, 04:43 PM
RE: PPU LLVM JIT Repository Early Testing - by HyPeR - 09-18-2014, 04:47 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-18-2014, 05:03 PM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 09-18-2014, 05:24 PM
RE: PPU LLVM JIT Repository Early Testing - by jacky400 - 09-18-2014, 06:37 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-18-2014, 06:43 PM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 09-18-2014, 07:25 PM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 09-18-2014, 07:51 PM
RE: PPU LLVM JIT Repository Early Testing - by Cyrax_X(Ru4slan has banned) - 09-18-2014, 08:18 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-18-2014, 09:12 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-18-2014, 09:24 PM
RE: PPU LLVM JIT Repository Early Testing - by flashmozzg - 09-18-2014, 09:43 PM
RE: PPU LLVM JIT Repository Early Testing - by Alexander9000 - 09-19-2014, 02:21 AM
RE: PPU LLVM JIT Repository Early Testing - by makotech222 - 09-19-2014, 02:38 AM
RE: PPU LLVM JIT Repository Early Testing - by derpf - 09-19-2014, 05:18 AM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-19-2014, 05:50 AM
RE: PPU LLVM JIT Repository Early Testing - by leon112211 - 09-19-2014, 06:33 AM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-19-2014, 06:55 AM
RE: PPU LLVM JIT Repository Early Testing - by gopalsr83 - 09-19-2014, 06:58 AM
RE: PPU LLVM JIT Repository Early Testing - by leon112211 - 09-19-2014, 07:55 AM
RE: PPU LLVM JIT Repository Early Testing - by Cyrax_X(Ru4slan has banned) - 09-19-2014, 08:10 AM
RE: PPU LLVM JIT Repository Early Testing - by Cyrax_X(Ru4slan has banned) - 09-19-2014, 08:31 AM
RE: PPU LLVM JIT Repository Early Testing - by leon112211 - 09-19-2014, 08:44 AM
RE: PPU LLVM JIT Repository Early Testing - by makotech222 - 09-19-2014, 09:47 AM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-19-2014, 12:36 PM
RE: PPU LLVM JIT Repository Early Testing - by flashmozzg - 09-19-2014, 02:50 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-19-2014, 04:25 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-19-2014, 04:50 PM
RE: PPU LLVM JIT Repository Early Testing - by tambre - 09-19-2014, 04:52 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-19-2014, 05:07 PM
RE: PPU LLVM JIT Repository Early Testing - by tambre - 09-19-2014, 05:28 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-19-2014, 05:33 PM
RE: PPU LLVM JIT Repository Early Testing - by tambre - 09-19-2014, 05:34 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-19-2014, 05:37 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-19-2014, 05:43 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-19-2014, 05:49 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-19-2014, 05:55 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-19-2014, 05:57 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-19-2014, 06:25 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-19-2014, 06:26 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-19-2014, 06:32 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-19-2014, 06:47 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-19-2014, 06:50 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-19-2014, 06:54 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-19-2014, 06:59 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-19-2014, 07:00 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-19-2014, 07:04 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-19-2014, 07:11 PM
RE: PPU LLVM JIT Repository Early Testing - by tambre - 09-19-2014, 07:41 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-19-2014, 09:51 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-19-2014, 10:08 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-19-2014, 10:17 PM
RE: PPU LLVM JIT Repository Early Testing - by makotech222 - 09-19-2014, 10:24 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-19-2014, 10:31 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-19-2014, 10:59 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-19-2014, 11:22 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-19-2014, 11:27 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-19-2014, 11:36 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-19-2014, 11:39 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-19-2014, 11:40 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-19-2014, 11:52 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-20-2014, 12:02 AM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-20-2014, 12:25 AM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-20-2014, 12:55 AM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-20-2014, 12:56 AM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-20-2014, 04:03 AM
RE: PPU LLVM JIT Repository Early Testing - by tambre - 09-20-2014, 07:41 AM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-21-2014, 07:37 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-22-2014, 09:23 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-22-2014, 09:46 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-22-2014, 10:04 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-22-2014, 10:36 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-22-2014, 11:05 PM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 09-22-2014, 11:12 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-23-2014, 12:23 AM
RE: PPU LLVM JIT Repository Early Testing - by leon112211 - 09-23-2014, 07:19 AM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 09-23-2014, 08:30 AM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-23-2014, 01:21 PM
RE: PPU LLVM JIT Repository Early Testing - by Alexander9000 - 09-23-2014, 02:14 PM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 09-23-2014, 03:22 PM
RE: PPU LLVM JIT Repository Early Testing - by Patrikb56 - 09-23-2014, 03:42 PM
RE: PPU LLVM JIT Repository Early Testing - by tambre - 09-23-2014, 04:02 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-23-2014, 06:47 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-24-2014, 07:46 AM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-24-2014, 07:09 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-24-2014, 07:32 PM
RE: PPU LLVM JIT Repository Early Testing - by pnkie666 - 09-24-2014, 07:40 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-24-2014, 07:42 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-24-2014, 08:13 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-24-2014, 08:19 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-24-2014, 08:49 PM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 09-24-2014, 09:12 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-24-2014, 09:22 PM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 09-24-2014, 10:18 PM
RE: PPU LLVM JIT Repository Early Testing - by Happy - 09-25-2014, 03:55 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-26-2014, 01:24 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-26-2014, 01:25 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 09-26-2014, 06:31 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-26-2014, 07:28 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-26-2014, 07:30 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-26-2014, 08:02 PM
RE: PPU LLVM JIT Repository Early Testing - by pnkie666 - 09-26-2014, 08:06 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-26-2014, 08:13 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-26-2014, 08:13 PM
RE: PPU LLVM JIT Repository Early Testing - by Alexander9000 - 09-26-2014, 08:15 PM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 09-26-2014, 08:23 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-26-2014, 08:30 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-26-2014, 08:53 PM
RE: PPU LLVM JIT Repository Early Testing - by leon112211 - 09-26-2014, 08:56 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-26-2014, 09:04 PM
RE: PPU LLVM JIT Repository Early Testing - by ZeCoxao - 09-26-2014, 09:05 PM
RE: PPU LLVM JIT Repository Early Testing - by Alexander9000 - 09-26-2014, 09:17 PM
RE: PPU LLVM JIT Repository Early Testing - by leon112211 - 09-26-2014, 09:35 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 09-26-2014, 11:01 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-27-2014, 12:28 AM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-27-2014, 12:59 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 09-27-2014, 06:25 PM
RE: PPU LLVM JIT Repository Early Testing - by umatuma - 09-28-2014, 11:19 AM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 09-28-2014, 12:53 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 10-01-2014, 01:35 PM
RE: PPU LLVM JIT Repository Early Testing - by Bigpet - 10-01-2014, 01:57 PM
RE: PPU LLVM JIT Repository Early Testing - by tambre - 10-01-2014, 03:17 PM
RE: PPU LLVM JIT Repository Early Testing - by Bigpet - 10-01-2014, 03:19 PM
RE: PPU LLVM JIT Repository Early Testing - by flashmozzg - 10-01-2014, 03:49 PM
RE: PPU LLVM JIT Repository Early Testing - by Bigpet - 10-01-2014, 05:33 PM
RE: PPU LLVM JIT Repository Early Testing - by flashmozzg - 10-01-2014, 10:22 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 10-02-2014, 12:04 AM
RE: PPU LLVM JIT Repository Early Testing - by derpf - 10-02-2014, 06:02 AM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 10-12-2014, 09:43 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 10-13-2014, 10:14 AM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 10-14-2014, 03:05 AM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 10-14-2014, 03:22 AM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 10-14-2014, 03:23 AM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 10-14-2014, 11:11 AM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 10-14-2014, 11:27 AM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 10-14-2014, 11:33 AM
RE: PPU LLVM JIT Repository Early Testing - by Bigpet - 10-14-2014, 11:48 AM
RE: PPU LLVM JIT Repository Early Testing - by tambre - 10-14-2014, 12:21 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 10-16-2014, 11:18 AM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 10-18-2014, 05:26 AM
RE: PPU LLVM JIT Repository Early Testing - by jonsalat - 10-18-2014, 08:22 AM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 10-18-2014, 09:25 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 10-18-2014, 09:56 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 10-19-2014, 12:05 AM
RE: PPU LLVM JIT Repository Early Testing - by jacky400 - 10-19-2014, 04:48 PM
RE: PPU LLVM JIT Repository Early Testing - by jacky400 - 10-19-2014, 10:20 PM
RE: PPU LLVM JIT Repository Early Testing - by leon112211 - 10-20-2014, 08:47 AM
RE: PPU LLVM JIT Repository Early Testing - by HyPeR - 10-20-2014, 10:05 AM
RE: PPU LLVM JIT Repository Early Testing - by leon112211 - 10-20-2014, 10:21 AM
RE: PPU LLVM JIT Repository Early Testing - by HyPeR - 10-20-2014, 11:01 AM
RE: PPU LLVM JIT Repository Early Testing - by gopalsr83 - 10-21-2014, 06:12 AM
RE: PPU LLVM JIT Repository Early Testing - by jacky400 - 10-21-2014, 09:53 AM
RE: PPU LLVM JIT Repository Early Testing - by agrecascino - 10-22-2014, 03:06 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 10-22-2014, 03:28 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 10-22-2014, 03:29 PM
RE: PPU LLVM JIT Repository Early Testing - by flashmozzg - 10-22-2014, 07:35 PM
RE: PPU LLVM JIT Repository Early Testing - by derpf - 10-23-2014, 01:04 AM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 10-23-2014, 05:18 AM
RE: PPU LLVM JIT Repository Early Testing - by nmzik - 10-23-2014, 09:23 AM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 11-20-2014, 07:37 PM
RE: PPU LLVM JIT Repository Early Testing - by jacky400 - 11-20-2014, 07:54 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 11-20-2014, 08:06 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 11-24-2014, 12:31 AM
RE: PPU LLVM JIT Repository Early Testing - by jacky400 - 11-24-2014, 12:47 AM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 11-24-2014, 01:12 PM
RE: PPU LLVM JIT Repository Early Testing - by gopalsr83 - 12-15-2014, 04:33 AM
RE: PPU LLVM JIT Repository Early Testing - by umatuma - 12-22-2014, 02:04 PM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 12-22-2014, 03:26 PM
RE: PPU LLVM JIT Repository Early Testing - by jonsalat - 12-25-2014, 10:44 PM
RE: PPU LLVM JIT Repository Early Testing - by Alexander9000 - 12-29-2014, 08:32 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 01-03-2015, 09:16 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 01-16-2015, 01:17 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 01-18-2015, 01:08 AM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 01-20-2015, 08:17 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 01-20-2015, 11:22 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 01-20-2015, 11:56 PM
RE: PPU LLVM JIT Repository Early Testing - by Dante38490 - 01-21-2015, 12:01 AM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 01-21-2015, 12:09 AM
RE: PPU LLVM JIT Repository Early Testing - by gopalsr83 - 01-21-2015, 03:51 AM
RE: PPU LLVM JIT Repository Early Testing - by metallicafor - 01-21-2015, 08:57 AM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 01-21-2015, 11:56 AM
RE: PPU LLVM JIT Repository Early Testing - by metallicafor - 01-21-2015, 12:58 PM
RE: PPU LLVM JIT Repository Early Testing - by tambre - 01-22-2015, 02:33 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 01-22-2015, 03:13 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 01-22-2015, 10:14 PM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 01-23-2015, 02:34 AM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 01-23-2015, 11:23 AM
RE: PPU LLVM JIT Repository Early Testing - by Yagami Light9 - 01-24-2015, 09:02 AM
RE: PPU LLVM JIT Repository Early Testing - by Yagami Light9 - 01-24-2015, 05:32 PM
RE: PPU LLVM JIT Repository Early Testing - by Yagami Light9 - 01-24-2015, 09:11 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 01-26-2015, 04:03 PM
RE: PPU LLVM JIT Repository Early Testing - by flashmozzg - 01-26-2015, 04:34 PM
RE: PPU LLVM JIT Repository Early Testing - by Mahawili - 01-30-2015, 12:03 PM
RE: PPU LLVM JIT Repository Early Testing - by Mahawili - 01-30-2015, 01:15 PM
RE: PPU LLVM JIT Repository Early Testing - by gopalsr83 - 01-30-2015, 01:29 PM
RE: PPU LLVM JIT Repository Early Testing - by flashmozzg - 01-30-2015, 02:32 PM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 01-31-2015, 12:24 PM
RE: PPU LLVM JIT Repository Early Testing - by Oil - 01-31-2015, 02:35 PM
RE: PPU LLVM JIT Repository Early Testing - by Ru4slan - 01-31-2015, 03:56 PM
RE: PPU LLVM JIT Repository Early Testing - by derpf - 02-01-2015, 03:17 AM
RE: PPU LLVM JIT Repository Early Testing - by d875j - 02-01-2015, 08:09 AM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 02-01-2015, 09:30 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 02-04-2015, 04:35 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 02-04-2015, 07:16 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 02-07-2015, 03:24 PM
RE: PPU LLVM JIT Repository Early Testing - by AMMAREN - 02-13-2015, 07:01 AM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 02-21-2015, 09:32 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 02-27-2015, 11:11 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 03-02-2015, 06:25 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 03-03-2015, 01:48 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 03-03-2015, 08:03 PM
RE: PPU LLVM JIT Repository Early Testing - by derpf - 03-04-2015, 03:03 PM
RE: PPU LLVM JIT Repository Early Testing - by tambre - 03-04-2015, 06:06 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 03-04-2015, 06:48 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 03-04-2015, 09:38 PM
RE: PPU LLVM JIT Repository Early Testing - by flashmozzg - 03-04-2015, 10:17 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 03-04-2015, 10:28 PM
RE: PPU LLVM JIT Repository Early Testing - by derpf - 03-05-2015, 01:05 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 03-05-2015, 01:29 PM
RE: PPU LLVM JIT Repository Early Testing - by Ekaseo - 03-14-2015, 03:21 PM
RE: PPU LLVM JIT Repository Early Testing - by jacky400 - 03-14-2015, 03:35 PM

Forum Jump:


Users browsing this thread: 4 Guest(s)