Displaying 4 results from an estimated 4 matches for "deco33000".
2015 Jul 13
2
[LLVMdev] Poor register allocations vs gcc
...n from gcc. If ecx was not used, it would be as fast.<br />-- <br />Sent from Yandex.Mail for mobile<br /><br />20:03, 13 July 2015, Matthias Braun <mbraun@apple.com>:<br /><blockquote><br /><br /><blockquote>šOn Jul 13, 2015, at 10:03 AM, deco33000@yandex.com wrote:<br /><br />šHello,<br /><br />šI have an issue with the llvm optimizations. I need to create object codes.<br /><br />šthe -ON PURPOSE poor && useless- code :<br />š---------------------------------------------------<br />š#i...
2015 Jul 13
5
[LLVMdev] Poor register allocations vs gcc
Hello,
I have an issue with the llvm optimizations. I need to create object codes.
the -ON PURPOSE poor && useless- code :
---------------------------------------------------
#include <stdio.h>
#include <stdlib.h>
int ci(int a){
return 23;
}
int flop(int a, char ** c){
a += 71;
int b = 0;
if (a == 56){
b = 69;
b += ci(a);
}
puts("ok");
return a +
2015 Jul 09
2
[LLVMdev] llvm jit acting at runtime, like libgccjit ?
Hello,
i mainly code in c/c++ on linux.
I would like to know if I can generate code at runtime using llvm, like libgccjit -> https://gcc.gnu.org/onlinedocs/jit/
My needs are : create functions, conditions, loops at runtime. libgccjit does the job pretty well but I would like to test llvm too (licence issue).
Is it possible ?
Is there a resource that helps in that regard ? Kaleidoscope
2015 Jul 09
2
[LLVMdev] llvm jit acting at runtime, like libgccjit ?
<div>Thanks James,</div><div>š</div><div>Kaleidoscope seems to differ in the sense that I cannot really understand how to create, say, a loop. It all looks like very complicated (<a