search for: dumpedmodul

Displaying 3 results from an estimated 3 matches for "dumpedmodul".

Did you mean: dumpedmodule
2009 Aug 26
0
[LLVMdev] Slow jitter.
...ation time)? I wanted the comparison to check whether the issue is just "codegen is slow", or more specifically that JIT codegen is slow. You seem to be under the impression that it will be significantly slower, but I don't think it's self-evident. (The output of "time llc dumpedmodule.bc" would be sufficient.) -Eli
2009 Aug 25
2
[LLVMdev] Slow jitter.
Eli Friedman <eli.friedman at gmail.com> writes: > On Wed, Aug 26, 2009 at 1:10 AM, Óscar Fuentes<ofv at wanadoo.es> wrote: >> While compiling some sources, translating from my compiler's IR to LLVM >> using the C++ API requires 2.5 seconds. If the resulting LLVM module is >> dumped as LLVM assembler, the file is 240,000 lines long. Generating >> LLVM
2009 Aug 26
4
[LLVMdev] Slow jitter.
...wanted the comparison to check whether the issue is just "codegen is > slow", or more specifically that JIT codegen is slow. You seem to be > under the impression that it will be significantly slower, but I don't > think it's self-evident. (The output of "time llc dumpedmodule.bc" > would be sufficient.) Sorry Eli. I misread your message as if you were suggesting to measure the time required for dumping the module as LLVM assembler. llc needs 45 seconds. This is far worse than the 33 seconds used by the JIT. Maybe llc is using optimizations. My JIT have no opt...