public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/19254] New: Dynamically sized static multidimensional array access in constructor uses wrong address
@ 2005-01-04 15:03 lathander at gmx dot de
  2005-01-04 18:41 ` [Bug c++/19254] [3.3 Regression] " pinskia at gcc dot gnu dot org
  2005-04-30 13:18 ` gdr at gcc dot gnu dot org
  0 siblings, 2 replies; 3+ messages in thread
From: lathander at gmx dot de @ 2005-01-04 15:03 UTC (permalink / raw)
  To: gcc-bugs

When inside a constructor a multidimensional array is declared whose size
depends on a variable, e.g.  int n = 5; int a[n][n];, address calculation for
accessing the array elements is wrong. Example code:


--- snip ---
int result;

class A {
        public:
        A();
};

void remember(int i) {
        result = i;
}

void test() {
        int n = 5;
        int a[n][n];

        a[0][4] = 42;
        a[4][0] = 43;

        remember(a[0][4]);  // a[0][4] still is 42
}

A::A() {
        int n = 5;
        int a[n][n];

        a[0][4] = 42;
        a[4][0] = 43;  // overwrites a[0][4]!

        remember(a[0][4]);  // a[0][4] is 43
}

int main(int argc, char** argv) {
        A* object = new A();
        return result;
}

--- snip ---

In the above code, the constructor will set result to 43. The identical code of
test() will set result to 42.

The assembler code of test() and the constructor differs slightly: in test(), n
is stored in %ecx, moved to %eax for some computation, and is later moved to
%eax a second time. In the constructor, however, n is moved to %eax directly and
later, where test() would movl %ecx, %eax, the constructor does movl 0, %eax
instead.

$gcc --version
gcc (GCC) 3.3.5 (Debian 1:3.3.5-5)

-- 
           Summary: Dynamically sized static multidimensional array access
                    in constructor uses wrong address
           Product: gcc
           Version: 3.3.5
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: lathander at gmx dot de
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i486-linux ?
  GCC host triplet: i486-linux ?
GCC target triplet: i486-linux ?


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


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

* [Bug c++/19254] [3.3 Regression] Dynamically sized static multidimensional array access in constructor uses wrong address
  2005-01-04 15:03 [Bug c++/19254] New: Dynamically sized static multidimensional array access in constructor uses wrong address lathander at gmx dot de
@ 2005-01-04 18:41 ` pinskia at gcc dot gnu dot org
  2005-04-30 13:18 ` gdr at gcc dot gnu dot org
  1 sibling, 0 replies; 3+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-01-04 18:41 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-01-04 18:41 -------
Confirmed, only a 3.3 regression, it works with 3.4.0.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |wrong-code
      Known to fail|                            |3.3.3 3.2.3
      Known to work|                            |3.4.0 4.0.0 2.95.3
   Last reconfirmed|0000-00-00 00:00:00         |2005-01-04 18:41:23
               date|                            |
            Summary|Dynamically sized static    |[3.3 Regression] Dynamically
                   |multidimensional array      |sized static
                   |access in constructor uses  |multidimensional array
                   |wrong address               |access in constructor uses
                   |                            |wrong address
   Target Milestone|---                         |3.3.6


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


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

* [Bug c++/19254] [3.3 Regression] Dynamically sized static multidimensional array access in constructor uses wrong address
  2005-01-04 15:03 [Bug c++/19254] New: Dynamically sized static multidimensional array access in constructor uses wrong address lathander at gmx dot de
  2005-01-04 18:41 ` [Bug c++/19254] [3.3 Regression] " pinskia at gcc dot gnu dot org
@ 2005-04-30 13:18 ` gdr at gcc dot gnu dot org
  1 sibling, 0 replies; 3+ messages in thread
From: gdr at gcc dot gnu dot org @ 2005-04-30 13:18 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From gdr at gcc dot gnu dot org  2005-04-30 13:18 -------
Not critical for 3.3.6

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|3.3.6                       |3.4.0


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


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

end of thread, other threads:[~2005-04-30 13:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-04 15:03 [Bug c++/19254] New: Dynamically sized static multidimensional array access in constructor uses wrong address lathander at gmx dot de
2005-01-04 18:41 ` [Bug c++/19254] [3.3 Regression] " pinskia at gcc dot gnu dot org
2005-04-30 13:18 ` gdr at gcc dot gnu dot org

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).