search for: mytransformer

Displaying 11 results from an estimated 11 matches for "mytransformer".

Did you mean: mytransform
2011 Oct 08
1
[LLVMdev] Your question about LLVM
Am 07.10.2011 19:28, schrieb Dan Gohman: > Translating from Java to LLVM IR and then back to Java would > probably not be very practical. That's not what I'm aiming for. I want MyHLL -> MyCompiler -> MyIR1 -> MyTransformer -> MyIR2 -> Backend Where "Backend" could be a code generator for the JVM, CLR, or something LLVM-based. It would be nice if I could have ... -> MyIR2 -> LLVM -> JVM/CLR/native since that would take some passes out of MyTransformer. I'm not sure how useful LLVM...
2007 Apr 10
4
[LLVMdev] cvs opt broken?
I checked out llvm from cvs & llvm-gcc from svn last night and again tonight. Each time they compiled and installed fine. After installing them, I recompiled compiler transforms I had written for opt. opt seems to load the my transform libraries fine, but it complains: opt: Unknown command line argument '-mytransform' whenever I try to specify one of my transforms on the opt
2007 Apr 10
2
[LLVMdev] cvs opt broken?
PR1317 says that it is resolved. Looking at the details of the report, it says that a fix had been committed for the "instant case." Am I right that means a fix has been submitted that makes LLVMHello work with opt, but that the general problem has not been resolved and is reported in PR1318? Reid Spencer wrote: > Hi Ryan, > > On Tue, 2007-04-10 at 00:12 -0500, Ryan M.
2007 Apr 10
0
[LLVMdev] cvs opt broken?
This has been reported. http://llvm.org/bugs/show_bug.cgi?id=1317 On 4/10/07, Ryan M. Lefever <lefever at crhc.uiuc.edu> wrote: > > I checked out llvm from cvs & llvm-gcc from svn last night and again > tonight. Each time they compiled and installed fine. After installing > them, I recompiled compiler transforms I had written for opt. opt seems > to load the my
2007 Apr 10
0
[LLVMdev] cvs opt broken?
Hi Ryan, On Tue, 2007-04-10 at 00:12 -0500, Ryan M. Lefever wrote: > I checked out llvm from cvs & llvm-gcc from svn last night and again > tonight. Each time they compiled and installed fine. After installing > them, I recompiled compiler transforms I had written for opt. opt seems > to load the my transform libraries fine, but it complains: > > opt: Unknown command
2011 Oct 07
0
[LLVMdev] Your question about LLVM
On Oct 7, 2011, at 7:42 AM, Michael Clagett wrote: > Wondering if you've gotten any further answering the question you pose below? > > I also am interested in being able to generate a JVM backend, but not departing, as you are, from coding in java itself, but rather as a means to integrate my own custom vm with Java and be able to produce and consume java code easily from my custom
2007 Apr 10
0
[LLVMdev] cvs opt broken?
On Tue, 2007-04-10 at 01:27 -0500, Ryan M. Lefever wrote: > PR1317 says that it is resolved. Looking at the details of the report, > it says that a fix had been committed for the "instant case." Am I > right that means a fix has been submitted that makes LLVMHello work with > opt, but that the general problem has not been resolved and is reported > in PR1318? Yes,
2009 Jul 04
2
[LLVMdev] Pool Allocation Segfaulting with opt
Hi, I'm trying to run the pool allocation pass through opt, and I'm running into problems. It segfaults frequently; for example, it does this when the input is a simple Hello World program: [simmon12 at apoc testcases]$ opt -load /home/vadve/simmon12/llvm/llvm/projects/llvm-poolalloc/Debug/lib/libLLVMDataStructure.so -load
2011 Oct 07
2
[LLVMdev] Your question about LLVM
Wondering if you've gotten any further answering the question you pose below? I also am interested in being able to generate a JVM backend, but not departing, as you are, from coding in java itself, but rather as a means to integrate my own custom vm with Java and be able to produce and consume java code easily from my custom environment. Just curios if you made any progress answering this
2008 Oct 29
0
Propagate vector attributes to data frame
Hello, I've got a function that takes a numeric vector (x), computes a transformation value (myAttr) for x, transforms x according to myAttr and then sets myAttr as an attribute of x before returning x, so I can easily know what myAttr was used (basically it's a power transformation and myAttr is the lambda). myFunction.numeric <- function(x, ...) { myAttr <- calcMyAttr(x, ...) x
2009 Jul 06
0
[LLVMdev] Pool Allocation Segfaulting with opt
Patrick Alexander Simmons wrote: > Hi, > > I'm trying to run the pool allocation pass through opt, and I'm running > into problems. It segfaults frequently; for example, it does this when > the input is a simple Hello World program: > Can you email me the bitcode file that is causing the problem? > [simmon12 at apoc testcases]$ opt -load >