Displaying 11 results from an estimated 11 matches for "bengu".
Did you mean:
bengt
2010 Jan 29
2
[LLVMdev] C code generation from LLVM IR
Hello,
Does anybody know whether the functionality of generating C code from LLVM
IR is still available?
As described in the document of getting started with VS, to compile IR to C
you can use "llc -march=c hello.bc". But it no longer works.
Thanks,
Bengu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100129/efe83032/attachment.html>
2010 Jan 29
0
[LLVMdev] C code generation from LLVM IR
Found it in 2.6 release note. It is no longer considered as release criteria
and no more maintenance on this.
Bengu
On Fri, Jan 29, 2010 at 11:55 AM, Bengu Li <libengu at gmail.com> wrote:
> Hello,
>
> Does anybody know whether the functionality of generating C code from LLVM
> IR is still available?
> As described in the document of getting started with VS, to compile IR to C
> you can...
2010 Jan 28
4
[LLVMdev] llc generated machine assembly code for NASM
Thanks for Anton's reply.
Does anybody have an idea of roughly how much effort is required to make
intel asm printer to be usable? If it is within weeks, probably I can give
it a try.
Thanks,
Bengu
On Thu, Jan 28, 2010 at 12:18 AM, Anton Korobeynikov <
anton at korobeynikov.info> wrote:
> Hello
>
> > system native assemlber and linker to generate executables. And it
> runs. I
> > ran into problems on Windows since the generated assembly code is not
> able
>...
2010 Jan 28
0
[LLVMdev] llc generated machine assembly code for NASM
Hello
> Does anybody have an idea of roughly how much effort is required to make
> intel asm printer to be usable? If it is within weeks, probably I can give
> it a try.
The required efforts equal to ones required to write new assembler.
"Too weak to be usable" means "it's not possible to represent many
important constructs with masm/nasm/fasm".
--
With best
2005 Sep 17
1
[LLVMdev] Subword register allocation
...I'm not sure, and I
need your comments before implementing this similar techniques because
I have a tight schedule.
REFERENCES
[1] S. Tallam and R. Gupta, "Bitwidth aware global register
allocation", Annual Symposium on Principles of Programming Languages,
pp.85 - 96, 2003.
[2] Bengu Li, Youtao Zhang, and Rajiv Gupta, "Speculative Subword
Register Allocation in Embedded Processors", The 17th International
Workshop on Languages and Compilers
for Parallel Computing, 2004.
--
Tzu-Chien Chiu,
3D Graphics Hardware Architect
<URL:http://www.csie.nctu.edu.tw/~jwchiu&g...
2010 Jan 28
2
[LLVMdev] llc generated machine assembly code for NASM
...nd line option that is required for
generating NASM assembly code. Looked into the document and command line
help. But I cannot find anything that helps. I would appreciate it if anyone
could provide some hint.
BTW: The getting started document with Visual Studio looks very
out-of-dated.
Thanks,
Bengu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100127/e66e1a9e/attachment.html>
2010 Jan 28
0
[LLVMdev] llc generated machine assembly code for NASM
Hello
> system native assemlber and linker to generate executables. And it runs. I
> ran into problems on Windows since the generated assembly code is not able
> to be assembled by NASM.
That's correct. Use AT&T asm printer and GNU as everywhere. Everything
else is too weak to be usable and thus one should consider intel asm
printer to be of "listing quality".
--
With
2010 Jan 28
1
[LLVMdev] llc generated machine assembly code for NASM
Could you give me some examples of such constructs that are not possible to
represent with MASM/NASM/FASM but are able to represent with gas?
Thanks,
Bengu
On Thu, Jan 28, 2010 at 11:41 AM, Anton Korobeynikov <
anton at korobeynikov.info> wrote:
> Hello
>
> > Does anybody have an idea of roughly how much effort is required to make
> > intel asm printer to be usable? If it is within weeks, probably I can
> give
> > it...
2010 Feb 03
1
[LLVMdev] llc generated machine assembly code for NASM
>> I am sure that you've run into many problems when efforts were carried out
>> to implement the Intel ASM printer between version 1.6 and 1.7. I'd
>> appreciated it if you could point me to any document with regard to relavent
>> problems at that time.
> I don't have such document.
> Just grab some non-trivial c++ app (with several source files) and try
2010 Feb 03
2
[LLVMdev] llc generated machine assembly code for NASM
...cument with regard to relavent
problems at that time. Probably I don't need a fully functional production
quality assembler for my purpose. If I could find out that the gap between
the current llc and what I need is not huge, I would like to enhance the llc
Intel ASM printer by myself.
Thanks,
Bengu
On Thu, Jan 28, 2010 at 11:41 AM, Anton Korobeynikov <
anton at korobeynikov.info> wrote:
> Hello
>
> > Does anybody have an idea of roughly how much effort is required to make
> > intel asm printer to be usable? If it is within weeks, probably I can
> give
> > it...
[LLVMdev] Add a function splitting pass to LLVM which extracts cold regions into their own functions
2012 May 21
1
[LLVMdev] Add a function splitting pass to LLVM which extracts cold regions into their own functions
...even a little bit more) in linear time.
> They state this algorithm is simpler than the previous. Basically, it seems to be equivalent to calculate the treeconnected components.
>
> 2) Code Compaction of Matching Single-Entry Multiple-Exit Regions (2003)
> Cached
> Wen-ke Chen , Bengu Li , Rajiv Gupta, 2003
>
> I missed this one earlier. They calculate SEME regions based on the control dependence graph.
>
> I am currently a little busy, but I like the idea of moving to SEME regions and having a generic Region iterator API. We could test this API with the current Re...