[comp.lang.c++] Cfront output

pedersen@acf3.NYU.EDU (paul pedersen) (02/23/88)

Sorry to post this, but megatest.UUCP and riacs.ARPA are both unknown to my
mailer.

In article <275@goofy.megatest.UUCP> you write:
>
>A while back, I asked what bad things would happen if I hacked cfront so
>that it does not prefix automatic variables with au0_, etc.
>Nobody said anything. You may have thought I was jesting.
>I was serious.    Stop me if I'm going to break something. Really.  
>Also cfront changes the field names in structs, prefixing
>the name of the struct.  What if I change it so that it doesn't do that?
>
>Please comment.
>
>
>		Dave Jones
>		ARPA: megatest!djones@riacs.ARPA


The reason for prefixing field names with struct names is to handle old
C compilers, which barf if more than one struct uses a given field name.
When K&R was written, this was standard C behavior, and any variable whatever
could be qualified with the "." operator, followed by any structure member
name whatever.  More modern compilers restrict the use of member names,
allowing them to follow only structures (using ".") or structure pointers
(using "->") of the proper type, and therefore allowing the same member name
to appear in more than one struct.  See K&R page 209 (the C reference manual,
section 14.1).

I can't account for the "au0_" prefixes, but probably the reason is something
similar: handling old C compilers.

bc@halley.UUCP (Bill Crews) (02/24/88)

In article <542@acf3.NYU.EDU> pedersen@acf3.UUCP (paul pedersen) writes:

>The reason for prefixing field names with struct names is to handle old
>C compilers, which barf if more than one struct uses a given field name.

>I can't account for the "au0_" prefixes, but probably the reason is something
>similar: handling old C compilers.

Here's a vote for a default of assuming modern compilers and a compile option
for generating code for olden compilers.  It's tough to debug this stuff
otherwise.

-bc
-- 
Bill Crews                                   Tandem Computers
bc@halley.UUCP                               Austin, Texas
..!rutgers!im4u!halley!bc                    (512) 244-8350

roger@dgcad.UUCP (Roger Scott) (03/01/88)

In article <542@acf3.NYU.EDU> pedersen@acf3.UUCP (paul pedersen) writes:
>Sorry to post this, but megatest.UUCP and riacs.ARPA are both unknown to my
>mailer.
>
>In article <275@goofy.megatest.UUCP> you write:
>>
>>A while back, I asked what bad things would happen if I hacked cfront ...
>
>The reason for prefixing field names with struct names is to handle old
>C compilers, ...
>
>I can't account for the "au0_" prefixes, but probably the reason is something
>similar: handling old C compilers.
>

Sorry, but this explanation is wrong on both counts.  Structure member names
are prefixed with the structure name in order to handle the following case:
	struct base {
	    int bb;
	};
	struct derived : base {
	    int bb; // perfectly legal
	    int dd;
	    void f();
	};
	void derived::f() {base::bb = bb;}

base::bb and derived::bb can't very well be called the same thing in the C
code.  If you do not use this marginally useful ``feature'', you can make
a trivial change to print.c to fix this.  If you don't have source access,
but you are adventuresome, you can modify the symbol table info in the
a.out file (for dbx) [write me if you want to know more].

As for _au0, etc., it is used to handle a similarly marginal feature:
	int x;
	void foo() {
	    int x = ::x; // remember the ol' scope resolution operator?
	    // ...
	}

Again, if you don't use this you can eliminate the _au0.

p.s. - if you think things are bad now, wait 'till you see what 2.0 does
to names.

jima@hplsla.HP.COM ( Jim Adcock) (03/01/88)

Mmm, seems to me you'd have a problem it this area:

int foo;

...

void somthintodo
{
    int foo;
    ::foo = 5;
}

Right now the somthintodo foo is renamed by cfront to
_au_foo [or something similar] so that ::foo still has
a chance to reference back to a long since previously declared
global foo.

Unless you're proposing that cfront go back and backpatch the
global foo (possible across several compilation boundaries),
how would you address this issue? :-)