digitalmars.D.bugs - [Bug 132] New: class template, alias and class inheritance combo leads to segfault
- d-bugmail puremagic.com (53/53) May 10 2006 http://d.puremagic.com/bugzilla/show_bug.cgi?id=132
- d-bugmail puremagic.com (5/5) May 10 2006 http://d.puremagic.com/bugzilla/show_bug.cgi?id=132
- d-bugmail puremagic.com (6/6) May 10 2006 http://d.puremagic.com/bugzilla/show_bug.cgi?id=132
- d-bugmail puremagic.com (23/23) May 10 2006 http://d.puremagic.com/bugzilla/show_bug.cgi?id=132
- d-bugmail puremagic.com (9/27) May 10 2006 http://d.puremagic.com/bugzilla/show_bug.cgi?id=132
- d-bugmail puremagic.com (9/9) May 25 2006 http://d.puremagic.com/bugzilla/show_bug.cgi?id=132
http://d.puremagic.com/bugzilla/show_bug.cgi?id=132 Summary: class template, alias and class inheritance combo leads to segfault Product: D Version: 0.156 Platform: All OS/Version: Linux Status: NEW Keywords: wrong-code Severity: critical Priority: P4 Component: DMD AssignedTo: bugzilla digitalmars.com ReportedBy: larsivar igesund.net Given the following example: --------------- badbug.d ------------- private import std.stdio; class Foo : Bar { } class FooT(V){} class Bar { alias FooT!(int) BarT; public void foo() { } } void main( char[][] aCmdLineArgs ) { Foo fooIt = new Foo(); if (fooIt !is null) writefln("fooIt should be valid"); fooIt.foo(); writefln("it worked"); } ---------------- end of file ------------ The program compiled with "dmd badbug.d" leads to a segfault or Access Violation (depending on whether it is Linux or Windows, bug present on both platforms, and with AFAICS all combinations of the compiler switches (-debug, -release, -O and -inline) in fooIt.foo() method call. * Removing the alias remove the segfault. * Changing "class FooT(V)" to "template FooT(V)" removes the segfault * Moving the content of Bar into Foo removes the segfault * Using Bar directly removes the segfault * Removing Bar as Foo's superclass removes the segfault * Moving the alias below the foo method, removes the segfault * Moving Foo below Bar removes the segfault I've set this to critical. The bug cropped up several places in the commercial project I'm contracted for. It took me several hours to pin this down, and it involved decimating 23 files in the process. Since the ordering of declarations is important here, just removing an import was enough to remove the segfault. In different places in the code where this cropped up (it was actually the same function both places), the workaround turned out to be different for each place and far from optimal, as it involved moving class declarations into relevant files. --
May 10 2006
http://d.puremagic.com/bugzilla/show_bug.cgi?id=132 The bug showed up with DMD 0.150, but I upgraded to 0.156 before finding this minimal test. --
May 10 2006
http://d.puremagic.com/bugzilla/show_bug.cgi?id=132 larsivar igesund.net changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P4 |P2 --
May 10 2006
http://d.puremagic.com/bugzilla/show_bug.cgi?id=132 benoit tionex.de changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |benoit tionex.de Another variant of this bug. Here foo is not part of Bar, it is part of a private import std.stdio; class Foo : Bar { } class FooT(V){ public void foo() {} } class Bar { FooT!(int) f; } void main() { Foo fooIt = new Foo(); if (fooIt !is null) writefln("fooIt should be valid"); fooIt.f.foo(); writefln("it worked"); } --
May 10 2006
http://d.puremagic.com/bugzilla/show_bug.cgi?id=132Another variant of this bug. Here foo is not part of Bar, it is part of a private import std.stdio; class Foo : Bar { } class FooT(V){ public void foo() {} } class Bar {public this(){ f = new FooT!(int); }FooT!(int) f; } void main() { Foo fooIt = new Foo(); if (fooIt !is null) writefln("fooIt should be valid"); fooIt.f.foo(); writefln("it worked"); }I forgot to post the constructor for initializing the member f, but this changes nothing with the bug. --
May 10 2006
http://d.puremagic.com/bugzilla/show_bug.cgi?id=132 bugzilla digitalmars.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED Fixed 0.158 --
May 25 2006