search for: wipliez

Displaying 4 results from an estimated 4 matches for "wipliez".

2013 Jul 04
1
Hardware design of an Opus IP
...Broadcom, Orange, Huawei) could thus have a dedicated, efficient, low-power solution for phones and tablets. As LTE is being deployed en masse, it would probably be very nice to have one such integrated VoIP solution. Cheers, Matthieu -- logo_synflow <https://www.synflow.com> *Matthieu Wipliez - CTO (Directeur technique) - Synflow SAS* Mobile: +33.6.83.75.23.47 - E-mail: matthieu.wipliez at synflow.com Web: www.synflow.com <https://www.synflow.com> *Synflow - Hardware made better* -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.or...
2010 Oct 21
0
[LLVMdev] Re : Source to source translation.
Hello Carlos, I don't think so. LLVM is not a source-to-source translator, but an optimizing compiler based on a portable, typed, assembly-like intermediate representation. One of the primary goals of LLVM is to generate optimized object code on a variety of platforms. Even if you do not use any optimizations, your C++ code would still need to be lowered to LLVM, which makes it very hard
2010 Oct 20
4
[LLVMdev] Source to source translation.
Hello, I'm trying to do a source to source translation from C++ code to C++ code. I want the output to contains some automatically inserted annotations, and the rest of the code exactly the same as it was before the processing. Is this possible with llvm? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Oct 20
1
[LLVMdev] Re : How to assign a constant to a register?
leledumbo, from what you say, I assume you have some kind of representation (AST or a lower-level intermediate representation) from which you generate LLVM assembly. Is this representation in SSA form? If it is, you might want to do a "copy propagation" transformation that replaces the uses of all variables that are assigned a constant value by their definitions. Example: x = 5 y =