search for: julienpeeters

Displaying 2 results from an estimated 2 matches for "julienpeeters".

2012 Jul 17
1
[LLVMdev] Tile64 bundle-types and VLIW infrastructure
Hello, I've made a backend for Tile64 processor as my master's thesis. Of course, there is a lot to do in order to harness all the power of the processor, but LLVM programs already can be compiled to tile assembly. If anyone interested in the backend, just let me know and I release the code on our project site. One way to improve my backend is to utilize its ILP capabilities, so I'd
2013 Apr 20
1
[LLVMdev] Adding custom pragma's for generating particular LLVM IR
Hi ML readers, I would first apology if this was already addressed on this ML, but I didn't find information on this topic. I would like to add custom pragma's that generate particular LLVM IR. Here is an example: int a, b; /* ... */ #pragma mypragma shared(a, b) { a = b; b++; } would result in this (pseudo) LLVM IR: %1 alloca i32 %2 alloca i32 ... call void