Basile Starynkevitch writes:
> What are exactly GCC code types, defined in gcc/coretypes.h?
They are types for which there was no obvious place to put them.
> Of course, they are very important types used in GCC. And there are
> probably wired in gengtype (but maybe not all of them; I didn't ch
Hello,
What are exactly GCC code types, defined in gcc/coretypes.h?
Of course, they are very important types used in GCC. And there are
probably wired in gengtype (but maybe not all of them; I didn't check
for all; certainly gengtype handle tree & gimple specially in some
way.).
However, I don't
On Tue, 2010-06-22 at 08:58 +0200, Duncan Sands wrote:
> Hi Basile,
>
> > Assuming a plugin (e.g. MELT) add a new pragma using PLUGIN_PRAGMAS, is
> > this pragma usable from Ada or Fortran code?
> >
> > I am not very familiar with Ada or Fortran. I believe Ada has some
> > syntax for pragmas -but
Hi Basile,
Assuming a plugin (e.g. MELT) add a new pragma using PLUGIN_PRAGMAS, is
this pragma usable from Ada or Fortran code?
I am not very familiar with Ada or Fortran. I believe Ada has some
syntax for pragmas -but do Ada pragma have the same API inside GCC
plugins as C or C++ pragmas?- and
On 22 June 2010 08:28, Ian Lance Taylor wrote:
> Basile Starynkevitch writes:
>
>> What are exactly GCC code types, defined in gcc/coretypes.h?
>
> They are types for which there was no obvious place to put them.
>
>> Of course, they are very important types used in GCC. And there are
>> probably
On 06/22/2010 06:20 AM, Basile Starynkevitch wrote:
> Assuming a plugin (e.g. MELT) add a new pragma using PLUGIN_PRAGMAS, is
> this pragma usable from Ada or Fortran code?
>
> I am not very familiar with Ada or Fortran. I believe Ada has some
> syntax for pragmas -but do Ada pragma have the same
Hi Basile,
Assuming a plugin (e.g. MELT) add a new pragma using PLUGIN_PRAGMAS, is
this pragma usable from Ada or Fortran code?
I am not very familiar with Ada or Fortran. I believe Ada has some
syntax for pragmas -but do Ada pragma have the same API inside GCC
plugins as C or C++ pragmas?- and
> Do I have to reorganize the code prior to slot filling? Do
> I have to make sure that some problematic instructions do
> not appear in slots?
Perhaps a easy way to solve the problem would be to claim for branches a memory
port a number of stages before and after the IF; to avoid in this way ha
On Mon, Jun 21, 2010 at 5:25 PM, Bernd Schmidt wrote:
> In PR43902, Jim has posted a patch to add support for widening
> multiply-accumulate to tree-ssa-math-opts. They are represented as a
> GIMPLE_SINGLE_RHS with a WIDEN_MULT_PLUS_EXPR tree which holds the
> actual operands of the multiply-accu
On Tue, Jun 22, 2010 at 11:34:30AM +0200, Richard Guenther wrote:
> On Mon, Jun 21, 2010 at 5:25 PM, Bernd Schmidt
> wrote:
> > In PR43902, Jim has posted a patch to add support for widening
> > multiply-accumulate to tree-ssa-math-opts. They are represented as a
> > GIMPLE_SINGLE_RHS with a WID
On 06/22/2010 11:39 AM, Jakub Jelinek wrote:
> On Tue, Jun 22, 2010 at 11:34:30AM +0200, Richard Guenther wrote:
>> We should add support for a GIMPLE_TERNARY_RHS class.
>
> It hasn't been added before because ternary ops were considered rare
> (primarily just COND_EXPR). If they are no longer s
> Are there any plugin hooks for Ada pragmas? Perhaps the Ada team might
> consider adding some, if it is simple enough. Specific pragmas have
> definitely their places in plugins.
The Ada front-end is entirely isolated from the middle-end so we would need to
devise a way of allowing the latter t
Hello all,
When I try to compile GCC (trunk revision 161164). It seems that gcc is waiting
for reading on stdin after libgcc2.c.
This is what I get :
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/export/is005060/jsalvucci/gcc-trunk-build/libcpp'
make[2]: Entering directory
On Tue, 22 Jun 2010, Basile Starynkevitch wrote:
> Hello,
>
> What are exactly GCC code types, defined in gcc/coretypes.h?
The main purpose of putting types in coretypes.h is to separate interface
from implementation. See the comments in that header.
/* Provide forward declarations of core ty
Re,
After two ./contrib/gcc_update, the bug disappeared. With Basile, we noticed
that cc1 didn't work for a couple of hours when invoked as ./cc1 id.c where
id.c is trivial.
- Mail Original -
De: "jeremie salvucci"
À: gcc@gcc.gnu.org
Envoyé: Mardi 22 Juin 2010 13h56:22 GMT +01:00 Amste
Hello,
I have a question regarding code generation for a new target I'm working
on.
I am using GCC 4.6.
In reload pass the following first instruction is replaced with the
second one after spilling reg 182 to the stack. The problem is that
the generated new instruction does not have a valid ad
On 06/22/10 08:52, Revital1 Eres wrote:
Hello,
I have a question regarding code generation for a new target I'm working
on.
I am using GCC 4.6.
In reload pass the following first instruction is replaced with the
second one after spilling reg 182 to the stack. The problem is that
the generated
Hi,
Is there any project for translations between GCC RTL and LLVM SSA,
RTL -> SSA and SSA -> RTL? I am working on a project that may reuse
existing optimization passes from LLVM and GCC. So I was wondering if
there is a way to switch between their IR's.
Thanks.
--
Jianzhou
On Tue, 2010-06-22 at 14:47 -0400, Jianzhou Zhao wrote:
> Hi,
>
> Is there any project for translations between GCC RTL and LLVM SSA,
> RTL -> SSA and SSA -> RTL? I am working on a project that may reuse
> existing optimization passes from LLVM and GCC. So I was wondering if
> there is a way to sw
On Mon, 21 Jun 2010, Boris Boesler wrote:
> The four instructions before the jump are placed into the
> delay slots, such that the delay slots are completely filled;
> but there is still the pipeline hazard, which can't be resolved
> by inserting NOPs now, because there are no free slots.
GCC por
On Tue, Jun 22, 2010 at 2:56 PM, Basile Starynkevitch
wrote:
> On Tue, 2010-06-22 at 14:47 -0400, Jianzhou Zhao wrote:
>> Hi,
>>
>> Is there any project for translations between GCC RTL and LLVM SSA,
>> RTL -> SSA and SSA -> RTL? I am working on a project that may reuse
>> existing optimization pa
On Tue, 2010-06-22 at 15:43 -0400, Jianzhou Zhao wrote:
> On Tue, Jun 22, 2010 at 2:56 PM, Basile Starynkevitch
> > To manipulate GIMPLE easily, you could be tempted to use the MELT plugin
> > or branch, see http://gcc.gnu.org/wiki/MELT for more.
> >
> > MELT is a lispy domain specific language off
On 06/22/10 13:18, Hans-Peter Nilsson wrote:
On Mon, 21 Jun 2010, Boris Boesler wrote:
The four instructions before the jump are placed into the
delay slots, such that the delay slots are completely filled;
but there is still the pipeline hazard, which can't be resolved
by inserting NOPs n
Snapshot gcc-4.4-20100622 is now available on
ftp://gcc.gnu.org/pub/gcc/snapshots/4.4-20100622/
and on various mirrors, see http://gcc.gnu.org/mirrors.html for details.
This snapshot has been generated from the GCC 4.4 SVN branch
with the following options: svn://gcc.gnu.org/svn/gcc/branches
> From: DJ Delorie
> Date: Wed, 16 Jun 2010 18:53:54 -0400
A bit of thread hijacking (moving it to gcc@) I'm afraid, but
it's too related to pass up on the opportunity...
> Index: gcc/doc/invoke.texi
> ===
> --- gcc/doc/invoke.texi
Hi:
At last of function change_loop, gcc try to change ALLOCNO_REG of
local allocno.
In the loop, ALLOCNO_SOMEWHERE_RENAMED_P (allocno) is set if allocno is not
caps.
Don't understand why the flag is set here. Doesn't all local allocnos'
flag are set in this
loop? seems conflicting with function
26 matches
Mail list logo