similar to: [LLVMdev] Fortran to llvm IR

Displaying 20 results from an estimated 70000 matches similar to: "[LLVMdev] Fortran to llvm IR"

2010 Nov 08
2
[LLVMdev] LLVM test-suite support for dragonegg / Fortran
Hi, I am very interested in using dragonegg as a fortran frontend for the LLVM test suite, as a start to improve fortran support. I believe this should be easy, but when I looked into this I had the impression the nightly tester in the llvm test-suite does not even support dragonegg for the C/C++ part. Is this true or did I miss something? Are there any patches flying around, that would take
2011 Jan 30
0
[LLVMdev] Fortran front-end to LLVM
Hi Avstin, > I'm completely new to LLVM (I first heard about it when I happened to come across this "/usr/ports/devel/llvm" directory in FreeBSD and was curious what it was.) Does LLVM support Fortran 2008? Is there a "Flang"? the dragonegg and llvm-gcc front-ends support Fortran. These are both gcc with LLVM replacing gcc's optimizers and code generators.
2010 Nov 08
0
[LLVMdev] LLVM test-suite support for dragonegg / Fortran
Hi Tobias, > I am very interested in using dragonegg as a fortran frontend for the LLVM test > suite, as a start to improve fortran support. > > I believe this should be easy, but when I looked into this I had the impression > the nightly tester in the llvm test-suite does not even support dragonegg for > the C/C++ part. Is this true or did I miss something? this is true. >
2011 Oct 17
3
[LLVMdev] Compile llvm-gcc fortran backend using mingw
On 10/17/2011 10:09 AM, Duncan Sands wrote: > llvm-gcc is dead, deprecated in favour of clang and dragonegg. It won't be part > of the upcoming 3.0 release. This is why no-one is interested in working on it. The tentative release notes still say otherwise: "LLVM 3.0 will be the last release of llvm-gcc." (http://llvm.org/docs/ReleaseNotes.html) I understand that llvm-gcc
2011 Oct 17
0
[LLVMdev] Compile llvm-gcc fortran backend using mingw
Hi Duncan, On 10/17/2011 04:44 PM, Duncan Sands wrote: > PS: A more convincing (IMO) argument against dragonegg is that it doesn't > work on windows. That's because the gcc plugin architecture doesn't work > on windows. Takumi has been thinking about this and has been enable to > get dragonegg to work on windows anyway using some clever tricks. Interesting, thanks for
2011 Jun 16
2
[LLVMdev] Connection llvm ir
> > I want to connect each llvm ir > > > > for example: > > 1. Turn C/C++ language into C_llvmIR assembly language using Clang > > 2. Turn Fortran language into Fortran_llvmIR assembly language using Dragonegg > > 3. Turn Python language into Python_llvmIR assembly language using Unladen-Swallow > > 4. Connect each llvm IR > > > > Is this
2011 Jun 17
1
[LLVMdev] Loop Unroll Factor
Devang, I meant as an end user. -Suresh On Thu, Jun 16, 2011 at 11:00 PM, Devang Patel <dpatel at apple.com> wrote: > Suresh, > > > On Jun 15, 2011, at 9:13 PM, Suresh Purini wrote: > >> Dear all, >> >> What is the default loop-unroll factor in llvm? How can we specify >> our own unroll-factor? > > Here "we" means end user or a
2011 Oct 18
3
[LLVMdev] Compile llvm-gcc fortran backend using mingw
2011/10/18 Albert Graef <Dr.Graef at t-online.de>: > On 10/17/2011 04:44 PM, Duncan Sands wrote: >> PS: A more convincing (IMO) argument against dragonegg is that it doesn't >> work on windows.  That's because the gcc plugin architecture doesn't work >> on windows.  Takumi has been thinking about this and has been enable to >> get dragonegg to work on
2011 Jun 15
4
[LLVMdev] Connection llvm ir
I want to connect each llvm ir for example: 1. Turn C/C++ language into C_llvmIR assembly language using Clang 2. Turn Fortran language into Fortran_llvmIR assembly language using Dragonegg 3. Turn Python language into Python_llvmIR assembly language using Unladen-Swallow 4. Connect each llvm IR Is this possible? Wonjun, Choi -------------- next part -------------- An HTML attachment was
2011 Oct 17
2
[LLVMdev] Compile llvm-gcc fortran backend using mingw
Thank you for quick reply. I see, llvm-gcc is frozen.... Is there Fortran front-end for LLVM then? On Mon, Oct 17, 2011 at 5:09 PM, Duncan Sands <baldrick at free.fr> wrote: > Hi Pavel, > > > BTW, it is little bit strange that llvm-gcc doesn't support CMake > building system. > > LLVM does and it is extremely convenient.... > > llvm-gcc is dead, deprecated
2011 Oct 18
1
[LLVMdev] Compile llvm-gcc fortran backend using mingw
> > .... but some Pure users and many of my students do. Pure relies on > LLVM-capable compilers for its C/C++/Fortran > inlining capabilities, so being able to just point Windows users to a > binary llvm-gcc package to make that work is very convenient. Nice to be called "Pure" :-) especially with capital letter. MinGW binaries for llvm-gcc don't have Fortran
2011 Oct 17
0
[LLVMdev] Compile llvm-gcc fortran backend using mingw
Hi Pavel, > Is there Fortran front-end for LLVM then? yes, dragonegg: http://dragonegg.llvm.org The development version (i.e. the upcoming 3.0 release) works better than llvm-gcc ever did. Ciao, Duncan.
2013 Mar 01
0
[LLVMdev] dragon egg + llvm for fortran to c translation
DragonEgg only converts GCC's IR to LLVM IR. And -march=c is C backend. We used it for a while last year, but its support has been dropped several months ago. There are people, who are still using it privately, as far as I know. - D. 2013/3/1 Philipp Schwaha <philipp at schwaha.net> > hi! > > I would like to know if it is feasible to use the dragon egg gcc plugin to >
2013 Feb 09
1
[LLVMdev] Impact of an analysis pass on program run time
Hello, I am working on finding good optimization sequences for a given program (phase ordering problem). I have the following setup. 1) The source programs are translated into LLVM IR using -O0 + -scalarrepl. 2) Find an optimization sequence using some strategy which translates the IR generated in the previous step into another IR. 3) Apply llc -O2 and map the IR in to target assembly code.
2011 Jun 19
2
[LLVMdev] Phase Interactions
Dear all, I am doing few experiments to do understand optimization phase interactions. Here is a brief description of my experiements. 1. I picked the list of machine independent optimizations acting on llvm IR (those that are enabled at O3). 2. for each optimzation in the optimization-list a) Compiled the program using 'clang -c O0 -flto program.c' b) opt
2011 Jun 16
2
[LLVMdev] Loop Unroll Factor
Dear all, What is the default loop-unroll factor in llvm? How can we specify our own unroll-factor? -Suresh
2011 Jun 15
0
[LLVMdev] Connection llvm ir
Hi 최원준, > I want to connect each llvm ir > > for example: > 1. Turn C/C++ language into C_llvmIR assembly language using Clang > 2. Turn Fortran language into Fortran_llvmIR assembly language using Dragonegg > 3. Turn Python language into Python_llvmIR assembly language using Unladen-Swallow > 4. Connect each llvm IR > > Is this possible? this should work fine: if you
2010 Nov 10
2
[LLVMdev] LLVM test-suite support for dragonegg / Fortran
On 11/08/2010 03:18 PM, Duncan Sands wrote: > Hi Tobias, > >> I am very interested in using dragonegg as a fortran frontend for the >> LLVM test >> suite, as a start to improve fortran support. >> >> I believe this should be easy, but when I looked into this I had the >> impression >> the nightly tester in the llvm test-suite does not even support
2014 Jul 15
4
[LLVMdev] on compiling FORTRAN programs
> -----Original Message----- > From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On > Behalf Of "C. Bergström" > Sent: Tuesday, July 15, 2014 7:39 AM > To: Rekha R > Cc: LLVM Developers Mailing List > Subject: Re: [LLVMdev] on compiling FORTRAN programs > > On 07/15/14 09:29 PM, Rekha R wrote: > > Hi, > > > > I am
2011 Oct 17
3
[LLVMdev] Compile llvm-gcc fortran backend using mingw
PS: A more convincing (IMO) argument against dragonegg is that it doesn't work on windows. That's because the gcc plugin architecture doesn't work on windows. Takumi has been thinking about this and has been enable to get dragonegg to work on windows anyway using some clever tricks.