public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/15782] New: m68k_output_mi_thunk emits wrong code for ColdFire
@ 2004-06-02 20:25 peter at the-baradas dot com
  2004-06-02 20:29 ` [Bug target/15782] [3.4 only] " pinskia at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: peter at the-baradas dot com @ 2004-06-02 20:25 UTC (permalink / raw)
  To: gcc-bugs

m68k_output_mi_thunk generats an adjustment of the first parameter on the stack
and calls off to the target function.  This adjustment is done using addq/subq
for values in the range of 1-8, but fo values outside that range, it generates
'add.l #<imm>,4(%sp)' which is valid for m68k, but invalid for ColdFire.  The
suggested fix for ColdFire is to load the value into %d0, and *then* emit 'add.l
%d0,4(%sp)'.

The following code triggers this bug when compiled with:

m68k-elf-g++ -m5307 -O

     class FooA {
     public:
       virtual ~FooA () = 0;
       int data[100];
     };


     class FooB {
     public:
       virtual void foo1 () = 0;
               void fooB () {foo1 ();}
       int data[100];
     };


     class FooC : public FooA, public FooB {
     public:
       virtual void foo1 () {}
     };


     FooC* Test ()
     {
       FooC* foc = new FooC;
       foc->fooB ();
     }

-- 
           Summary: m68k_output_mi_thunk emits wrong code for ColdFire
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: target
        AssignedTo: bernie at develer dot com
        ReportedBy: peter at the-baradas dot com
                CC: gcc-bugs at gcc dot gnu dot org,peter at the-baradas dot
                    com
GCC target triplet: m68k-elf


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15782


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2004-06-03  4:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-06-02 20:25 [Bug target/15782] New: m68k_output_mi_thunk emits wrong code for ColdFire peter at the-baradas dot com
2004-06-02 20:29 ` [Bug target/15782] [3.4 only] " pinskia at gcc dot gnu dot org
2004-06-02 20:32 ` peter at the-baradas dot com
2004-06-03  3:45 ` mmitchel at gcc dot gnu dot org
2004-06-03  4:03 ` cvs-commit at gcc dot gnu dot org
2004-06-03  4:04 ` bernie at develer dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).