search for: functionconstructor

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

2004 Aug 17
0
[LLVMdev] JIT API example (fibonacci)
...ionType::get(Type::IntTy, // type of result ArgT, /*not vararg*/false); // Now create the fib function entry and // insert this entry into module M // (By passing a module as the last parameter to the Functionconstructor, // it automatically gets appended to the Module.) FibF = new Function(FibT, Function::ExternalLinkage, // maybe too much "fib", M); You can do this same thing with code like this: Function *FibF = M->getOrInsertFunction(&quot...
2004 Aug 17
4
[LLVMdev] JIT API example (fibonacci)
Hi LLVMers, the example attached I have used to prove that JIT and some visible optimizations are really invoked. Proved OK. I got 30% speed-up in comparison to gcc 3.3.3 on my Athlon XP 1500. Nice. P.S. guys, no fears, I don't plan to flood the cvs repository with my "brilliant" examples ;) --- Valery A.Khamenya -------------- next part -------------- An