Displaying 20 results from an estimated 192 matches for "cbackend".
Did you mean:
backend
2012 Apr 19
2
[LLVMdev] CBackend removal
...'m specially interested in using its optimizer. After apply the optimizations, I needed to create a C/C++ source code equivalent to the original one.
I'm periodically updating my local version of the LLVM, and, when I did it today, I couldn't use the llc with -march=c. Looking for the CBackend files, I realized that they were removed from the LLVM folder. I actually don't remember reading about a drop of this capability in any of the devlist messages, so I was wondering if this removal could be only temporary, or there will be no more support for this feature in LLVM.
Thanks,
--...
2012 Apr 19
0
[LLVMdev] CBackend removal
> I'm periodically updating my local version of the LLVM, and, when I did it
> today, I couldn't use the llc with -march=c. Looking for the CBackend files,
> I realized that they were removed from the LLVM folder. I actually don't
> remember reading about a drop of this capability in any of the devlist
> messages, so I was wondering if this removal could be only temporary, or
> there will be no more support for this feature in L...
2008 Jan 11
1
[LLVMdev] Patch for NetBSD support in CBackend.cpp
NetBSD does not have alloca.h, so CBackend.cpp need to handle NetBSD
in the same way as FreeBSD and OpenBSD, as in the attached patch.
/Krister
-------------- next part --------------
Index: CBackend.cpp
===================================================================
--- CBackend.cpp (revision 45865)
+++ CBackend.cpp (working copy)...
2012 Apr 19
1
[LLVMdev] CBackend removal
...>> Best regards,
>> - Dima
>>
>> 2012/4/19 Anton Korobeynikov <anton at korobeynikov.info>:
>>>> I'm periodically updating my local version of the LLVM, and, when I did it
>>>> today, I couldn't use the llc with -march=c. Looking for the CBackend files,
>>>> I realized that they were removed from the LLVM folder. I actually don't
>>>> remember reading about a drop of this capability in any of the devlist
>>>> messages, so I was wondering if this removal could be only temporary, or
>>>> the...
2012 Apr 19
3
[LLVMdev] CBackend removal
...east one full and production quality
PTX backend.
Best regards,
- Dima
2012/4/19 Anton Korobeynikov <anton at korobeynikov.info>:
>> I'm periodically updating my local version of the LLVM, and, when I did it
>> today, I couldn't use the llc with -march=c. Looking for the CBackend files,
>> I realized that they were removed from the LLVM folder. I actually don't
>> remember reading about a drop of this capability in any of the devlist
>> messages, so I was wondering if this removal could be only temporary, or
>> there will be no more support for t...
2012 Apr 19
0
[LLVMdev] CBackend removal
...gt; PTX backend.
>
> Best regards,
> - Dima
>
> 2012/4/19 Anton Korobeynikov <anton at korobeynikov.info>:
>>> I'm periodically updating my local version of the LLVM, and, when I did it
>>> today, I couldn't use the llc with -march=c. Looking for the CBackend files,
>>> I realized that they were removed from the LLVM folder. I actually don't
>>> remember reading about a drop of this capability in any of the devlist
>>> messages, so I was wondering if this removal could be only temporary, or
>>> there will be no mo...
2011 Aug 10
1
[LLVMdev] Experimental fixes to CBackend
...test for C backend?
We really don't have a particularly good place in the existing test
infrastructure for testing the C backend... and there's generally low
interest in it. If you have a use for the C backend, I would suggest
making sure there are quality regression tests in
test/CodeGen/CBackend (so things don't accidentally break), and
regularly testing your uses yourself.
-Eli
2012 Aug 18
2
[LLVMdev] llmv3.0 CBackend convert IR to IR error
In llvm3.0,I use the llc to convert the IR to C code,
But the code lack key words like "struct", Who can tell me how to modify the CBackend, 3Q ^-^
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120818/ee901cb1/attachment.html>
2010 Feb 19
1
[LLVMdev] Cbackend is C99?
Hi,
I would like to know if the command
llc -march=c hello.bc
generates a c99 file or not. Is the cbackend target meant to be c99 or
normal C.
--
Kalyan Ponnala
phone: 8163772059
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100219/e67c7a73/attachment.html>
2012 Aug 18
0
[LLVMdev] llmv3.0 CBackend convert IR to IR error
...hed here:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2012-March/047989.html
Best,
- D.
2012/8/18 xiaoyaollvm <xiaoyaollvm at 126.com>:
> In llvm3.0,I use the llc to convert the IR to C code,
> But the code lack key words like "struct", Who can tell me how to modify the
> CBackend, 3Q ^-^
>
>
>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>
2012 Nov 21
2
[LLVMdev] Python Backend
Hi,
I have a version of the old CBackend which is working with the current
trunk.
I am in the progress of rewriting it into a new version but that project
is not going as fast as I would hope as I have been distracted by other
tasks with higher priority lately.
Anyway, for those interested, I can provide patches, optionally
separated in...
2011 Aug 05
3
[LLVMdev] Experimental fixes to CBackend
Hi,
LLVM C backend as of revision 136600 suffers from the following issues:
* Forward structs declarations block is missing (it was there
previously, why was it removed?)
* Anonymous container structs are not generated for array types,
resulting into declarations being placed directly into functions
prototypes (previously it was not happening as well)
I'm not very familiar with llvm
2011 Jan 10
1
[LLVMdev] Current state of the (new) CBackend & LLVM/clang with Microsoft Visual Studio
Hi.
I am interested in using the CBackend of LLVM. I have read about the
problems with the current version and that David Greene has started a
reimplementation. Can you tell me about its current state?
Furthermore, I use Microsoft Visual Studio. The "Getting started with
MVC" documents for release 2.8 say "To emphasize,...
2011 Aug 05
0
[LLVMdev] Experimental fixes to CBackend
Hi,
Please see the collection of test cases attached. To build everything
execute make in the top directory. Files with logs show how
compilation fails/succeeds, depending on patched/unpatched version of
llvm.
Could we setup this test suite as a regular test for C backend?
Thanks,
- D.
2011/8/5 Dmitry N. Mikushin <maemarcus at gmail.com>:
> Hi,
>
> LLVM C backend as of revision
2007 May 08
2
[LLVMdev] Problems with 'make check'
I am getting problems with 'make check' on Linux x86.
Several instances of 'couldn't execute "-emit-llvm": no such file or directory' :-
FAIL: /usr/src/llvm/test/CodeGen/CBackend/2007-01-06-Signless.c
Failed with posix(ENOENT,no such file or directory) at line 1
while running: -emit-llvm -S /usr/src/llvm/test/CodeGen/CBackend/2007-01-06-Signless.c -o - | llvm-as | llc -march=c | grep {(unsigned short}
couldn't execute "-emit-llvm": no such file o...
2008 Jun 03
2
[LLVMdev] signedness of types
Hi
I currently would like to find out the signedness of a instruction. But
looking at the CBackend, it looks as if it is not that simple? So i have two
questions:
Is there an easier way than guessing as it is done in the CBackend?
Is there a reason for that signedness is not part of the instruction type?
Best regards
ST
2008 Jun 05
0
[LLVMdev] A question about CBackend.cpp
Hi,
I'm reading the code in CBackend.cpp and found some wired chunk in
void CWriter::printConstant(Constant *CPV)
938 if (ConstantInt *CI = dyn_cast<ConstantInt>(CPV)) {
939 const Type* Ty = CI->getType();
940 if (Ty == Type::Int1Ty)
941 Out << (CI->getZExtValue() ? '1' : '0');
942 else if (Ty == Typ...
2012 Aug 20
1
[LLVMdev] llmv3.0 CBackend convert IR to IR error
...du/pipermail/llvmdev/2012-March/047989.html
>
>Best,
>- D.
>
>2012/8/18 xiaoyaollvm <xiaoyaollvm at 126.com>:
>> In llvm3.0,I use the llc to convert the IR to C code,
>> But the code lack key words like "struct", Who can tell me how to modify the
>> CBackend, 3Q ^-^
>>
>>
>>
>> _______________________________________________
>> LLVM Developers mailing list
>> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
>> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>>
2010 Jul 26
2
[LLVMdev] LLVM Dependency Graph
...AsmPrinter -> Support
BlackfinAsmPrinter -> System
BlackfinAsmPrinter -> Target
BlackfinCodeGen -> BlackfinInfo
BlackfinCodeGen -> CodeGen
BlackfinCodeGen -> Core
BlackfinCodeGen -> MC
BlackfinCodeGen -> SelectionDAG
BlackfinCodeGen -> Support
BlackfinCodeGen -> Target
CBackendInfo -> Support
CBackend -> Analysis
CBackend -> CBackendInfo
CBackend -> CodeGen
CBackend -> Core
CBackend -> MC
CBackend -> ScalarOpts
CBackend -> Support
CBackend -> System
CBackend -> Target
CBackend -> TransformUtils
CBackend -> ipa
CellSPUInfo -> Support...
2012 Nov 21
0
[LLVMdev] Python Backend
...ttle more
information - what should I read to get more informations about writing not
hardware but software backend in LLVM? (Of course the code analysis is one
way, but maybe there is other also).
2012/11/21 Roel Jordans <r.jordans at tue.nl>
> Hi,
>
> I have a version of the old CBackend which is working with the current
> trunk.
>
> I am in the progress of rewriting it into a new version but that project
> is not going as fast as I would hope as I have been distracted by other
> tasks with higher priority lately.
>
> Anyway, for those interested, I can provide...