Query with legitimate_constant_p
Geoff Keating
geoffk@geoffk.org
Tue Feb 12 12:29:00 GMT 2002
> Date: Tue, 12 Feb 2002 15:50:54 +0000
> From: Dan Towner <dant@picochip.com>
> Organization: picoChip Designs Ltd.
> Geoff Keating wrote:
>
> >
> > > D.Towner wrote:
> >
> > > > I am writing a new port of GCC. I want to prevent symbol_refs from being
> > > > used as immediate operands, so I am specifically rejecting these in
> > > > legitimate_constant_p.
> > >
> > > You don't want to do this...
> > >
> > > > However, this also means that the addresses of
> > > > symbol_refs can't be computed (e.g, loading the address into a register),
> > >
> > > because clearly you _do_ use SYMBOL_REF as an immediate operand.
> > >
> > > > where previously a `mov??3' instruction was used to move the symbol_ref
> > > > address into a register. This no longer works, as the mov instruction can't
> > > > accept an immediate symbol_ref any more. How do I fix this?
> > >
> > > Instead of doing that, use `n' constraints, and suitable predicates
> > > where appropriate, to prevent GCC generating symbol references as
> > > immediate operands where they won't work.
>
> That doesn't work though. Consider the following:
>
> reg0 := symbol_ref("s")
> reg1 := mem(reg0 + 2)
>
> Because the symbol_ref is a valid constant, gcc propagates the constant
> into the memory load:
>
> reg1 := mem(symbol_ref("s") + 2)
>
> I don't allow this to be generated directly, but the constant
> propagation causes it to be generated, without appearing to recheck the
> constraints
> on the instruction. Thus, doesn't this mean that symbol_refs must fail
> legitimate_constant_p in order to prevent them being propagated into
> instructions?
You can use GO_IF_LEGITIMATE_ADDRESS to change this.
--
- Geoffrey Keating <geoffk@geoffk.org> <geoffk@redhat.com>
More information about the Gcc
mailing list