similar to: [LLVMdev] LLVM-MIPS

Displaying 20 results from an estimated 200000 matches similar to: "[LLVMdev] LLVM-MIPS"

2007 Jul 18
0
[LLVMdev] LLVM-MIPS
Somebody in this dev-list alreday did it with LLVM. He seems to consult you. ---- Original message ---- >Date: Wed, 18 Jul 2007 22:29:02 +0200 >From: Hlide <hlide at free.fr> >Subject: [LLVMdev] LLVM-MIPS >To: llvmdev at cs.uiuc.edu > >Hi, > >I would like to know if a MIPS back-end of LLVM would be done soon or we >may never see one. > >I'm looking
2008 Feb 27
2
[LLVMdev] llvm-gcc and mips
I tried to cross-compile llvm-gcc for mips, but it crashes somewhere in the build process: /home/kevin/Documents/School/2eLIC/Thesis/work/build/llvmgcc-mips/./gcc/xgcc -B/home/kevin/Documents/School/2eLIC/Thesis/work/build/llvmgcc-mips/./gcc/ -B/home/kevin/Documents/School/2eLIC/Thesis/work/build/llvmgcc-mips/../../install/llvmgcc-mips/mips-unknown-linux-gnu/bin/
2008 Mar 07
0
[LLVMdev] llvm-gcc and mips
On Fri, Mar 7, 2008 at 8:28 PM, Bruno Cardoso Lopes <bruno.cardoso at gmail.com> wrote: > When using mips-unknown-linux-gnu as a cross-compiler, the llvm Mips > backend is called by cc1 and with that you get llvm bytecode defined > relative to the Mips ABI. That was my intention. The PSP has a 32-bit MIPS (derived) CPU. What I don't know is if that triple is the right one
2008 Feb 28
2
[LLVMdev] llvm-gcc and mips
On Wed, Feb 27, 2008 at 7:32 PM, Mike Stump <mrs at apple.com> wrote: > On Feb 27, 2008, at 8:38 AM, HyperQuantum wrote: > > I tried to cross-compile llvm-gcc for mips, but it crashes > > But now I'm stuck. I don't need a full cross-compiler, just generating > > LLVM code is sufficient for me. > > make -k install will install a mips cross compiler for
2008 Feb 28
0
[LLVMdev] llvm-gcc and mips
On Feb 28, 2008, at 4:03 AM, HyperQuantum wrote: > /home/kevin/Documents/School/Thesis/work/install/llvmgcc-mips/bin/ > llvm-gcc > -nostdlib -nostdinc > -I/home/kevin/Documents/School/Thesis/work/install/psptoolchain/psp/ > include > -I/home/kevin/Documents/School/Thesis/work/install/psptoolchain/lib/ > gcc/psp/4.1.0/include > -c -emit-llvm -Wall \ >
2008 Mar 20
0
[LLVMdev] GSoC Mips backend improvement
On Mar 18, 2008, at 10:46 PM, Bruno Cardoso Lopes wrote: > Hi all, > > Last year i was mentored by Chris Lattner at GSoC and i created the > Mips back-end for LLVM. The back-end is still experimental (working > with simple benchmarks only) and this year i would like to improve it > as my GSoC proposal. Mips is still fairly used nowadays in a lot of > devices - routers,
2008 Mar 19
3
[LLVMdev] GSoC Mips backend improvement
Hi all, Last year i was mentored by Chris Lattner at GSoC and i created the Mips back-end for LLVM. The back-end is still experimental (working with simple benchmarks only) and this year i would like to improve it as my GSoC proposal. Mips is still fairly used nowadays in a lot of devices - routers, wireless cards, PSP, PS2 - and it would be great to have a stable mips backend for LLVM. General
2008 Feb 18
0
[LLVMdev] cross compiling with the C backend
> What could solve this problem? Do I have to configure llvm-gcc as a > cross compiler? MIPS might be a better candidate than the 'i686' from > the native configuration. Or could it be simply a bug in llvm-gcc or > LLVM? Btw, cross-compiling llvm-gcc for Mips wont work since the support in llvm-gcc isnt ready yet! > Another option could be to add real support for the PSP
2008 Feb 18
4
[LLVMdev] cross compiling with the C backend
For my master's thesis, I am trying to cross compile programs for the PSP (PlayStation Portable) with LLVM and llvm-gcc. This is what I do: (1) compile a program and the libraries it uses (libpng etc.) with llvm-gcc (2) link the bitcode files with llvm-ld into one file (3) run "llc -march=c" on the result (4) compile the resulting C source with the PSP toolchain It seems to work
2008 Mar 10
0
[LLVMdev] llvm-gcc and mips
On Sun, Mar 9, 2008 at 2:05 AM, Bruno Cardoso Lopes <bruno.cardoso at gmail.com> wrote: > > Supposed that you knew my approach was intentional (correct me if I'm > > wrong), what problem did you see here? > > Yes, i'm trying to help raising possible problems. For example, there are > Mips machines with different endianess, the llvm Mips default (Big) is
2007 May 28
0
[LLVMdev] [llvm-announce] LLVM 2.0 Release
<cc'ing llvmdev, please don't email me directly> On Sun, 27 May 2007, Christophe Avoinne wrote: > On 23/05/2007 22:05:48, Chris Lattner (sabre at nondot.org) wrote: > > LLVM 2.0 is done! Download it here: http://llvm.org/releases/ or view > > the release notes: http://llvm.org/releases/2.0/docs/ReleaseNotes.html > > > > Hello Chris. > > Your
2008 Mar 09
2
[LLVMdev] llvm-gcc and mips
Hi Kevin, > Supposed that you knew my approach was intentional (correct me if I'm > wrong), what problem did you see here? Yes, i'm trying to help raising possible problems. For example, there are Mips machines with different endianess, the llvm Mips default (Big) is different from the psp toochain default one (correct me if I'm wrong - Little), maybe this is messing up...
2008 Mar 07
2
[LLVMdev] llvm-gcc and mips
Hi, When using mips-unknown-linux-gnu as a cross-compiler, the llvm Mips backend is called by cc1 and with that you get llvm bytecode defined relative to the Mips ABI. This can be messing up somehow your generated C code. 2008/3/7, HyperQuantum <hyperquantum at gmail.com>: > On Fri, Feb 29, 2008 at 2:23 PM, HyperQuantum <hyperquantum at gmail.com> wrote: > > At least I got
2007 Jul 20
1
[LLVMdev] LLVM-MIPS
Selon Bruno Cardoso Lopes <bruno.cardoso at gmail.com>: > Hi Hidle, > > Yes, it's not complete yet but i'm working on it. > I can compile simple sources. As it's on a experimental > stage i did not added the patch to the llvm autoconf files. > Right now, I tried the last mingwin binaries of llvm-gcc (downloaded from your official website) : I compared the
2007 Jul 19
0
[LLVMdev] LLVM-MIPS
Hi Hidle, 2007/7/19, Hlide <hlide at free.fr>: > > On 19/07/2007 01:29:18, Seung Jae Lee (lee225 at uiuc.edu) wrote: > > Somebody in this dev-list alreday did it with LLVM. > > I guess you are speaking about Bruno Cardoso Lopes ? I can see there is > a MIPS implementation in LLVM repository but it looks like uncomplete > (that is, I'm not even sure it can
2007 Jul 19
4
[LLVMdev] LLVM-MIPS
On 19/07/2007 01:29:18, Seung Jae Lee (lee225 at uiuc.edu) wrote: > Somebody in this dev-list alreday did it with LLVM. I guess you are speaking about Bruno Cardoso Lopes ? I can see there is a MIPS implementation in LLVM repository but it looks like uncomplete (that is, I'm not even sure it can compile any source). What I hope is to have a complete MIPS implementation so I can adapt
2008 Feb 27
0
[LLVMdev] llvm-gcc and mips
On Feb 27, 2008, at 8:38 AM, HyperQuantum wrote: > I tried to cross-compile llvm-gcc for mips, but it crashes > But now I'm stuck. I don't need a full cross-compiler, just generating > LLVM code is sufficient for me. make -k install will install a mips cross compiler for you, I believe. If you don't want to install it, you can run it as cd gcc && ./xgcc - B./ t.c.
2011 Jul 09
0
[LLVMdev] LLVM position with MIPS, Sunnyvale, CA
MIPS Technologies has a new open position in its Sunnyvale, CA headquarters for an LLVM QA Engineer. This engineer will work on testing, QA, building, and benchmarking of the clang/llvm and gcc compilers. They will be responsible for generating test cases to augment already existing test suites, and to test features such as debugging. This engineer will get requirements from the compiler
2014 Jun 04
2
[LLVMdev] compiler job open at Mips/Imagination for LLVM and other compiler work
If you apply, please mention me, there is a referral fee. :) _*Software Design Engineer -- Compilers*_ *Opportunity* MIPS SW Team is responsible for enhancement, development and support of the development tools for MIPS processors. You will have some or all of the following responsibilities working as a part of a team: * researching and implementing new techniques and optimisations
2011 Jan 19
0
[LLVMdev] About test suits Cont2
*I am sorry for making you confused when I presented my problem.* *1. My steps for the test suit building:* (1) cd /home/qali/Src; * // This is my source directory for all application programs* (2) tar xzf llvm-2.8.tgz; * // now, the top directory of source tree is /home/qali/llvm-2.8* (3) cd llvm-2.8/projects (4) svn co http://llvm.org/svn/llvm-project/test-suite/trunk