OSDN Git Service

Update.
[pf3gnuchains/gcc-fork.git] / gcc / cp / NEWS
1 *** Changes since EGCS 1.0:
2
3 * Massive template improvements:
4   + member template classes are supported.
5   + template friends are supported.
6   + template template parameters are supported.
7   + local classes in templates are supported.
8   + lots of bugs fixed.
9
10 * operator new now throws bad_alloc where appropriate.
11
12 * Exception handling is now thread safe, and supports nested
13   exceptions and placement delete.
14
15 * protected virtual inheritance is now supported.
16
17 * Loops are optimized better; we now move the test to the end in most
18   cases, like the C frontend does.
19
20 * For class D derived from B which has a member 'int i', &D::i is now of
21   type 'int B::*' instead of 'int D::*'.
22
23 *** Changes in EGCS 1.0:
24
25 * A public review copy of the December 1996 Draft of the ISO/ANSI C++
26   standard is now available. See
27
28         http://www.cygnus.com/misc/wp/
29
30   for more information.
31
32 * g++ now uses a new implementation of templates. The basic idea is that
33   now templates are minimally parsed when seen and then expanded later.
34   This allows conformant early name binding and instantiation controls,
35   since instantiations no longer have to go through the parser.
36
37   What you get:
38
39      + Inlining of template functions works without any extra effort or
40        modifications.
41      + Instantiations of class templates and methods defined in the class
42        body are deferred until they are actually needed (unless
43        -fexternal-templates is specified).
44      + Nested types in class templates work.
45      + Static data member templates work.
46      + Member function templates are now supported.
47      + Partial specialization of class templates is now supported.
48      + Explicit specification of template parameters to function templates
49        is now supported.
50
51   Things you may need to fix in your code:
52
53      + Syntax errors in templates that are never instantiated will now be
54        diagnosed.
55      + Types and class templates used in templates must be declared
56        first, or the compiler will assume they are not types, and fail.
57      + Similarly, nested types of template type parameters must be tagged
58        with the 'typename' keyword, except in base lists.  In many cases,
59        but not all, the compiler will tell you where you need to add
60        'typename'.  For more information, see
61
62             http://www.cygnus.com/misc/wp/dec96pub/template.html#temp.res
63
64      + Guiding declarations are no longer supported.  Function declarations, 
65        including friend declarations, do not refer to template instantiations.
66        You can restore the old behavior with -fguiding-decls until you fix
67        your code.
68
69   Other features:
70
71      + Default function arguments in templates will not be evaluated (or
72        checked for semantic validity) unless they are needed.  Default
73        arguments in class bodies will not be parsed until the class
74        definition is complete.
75      + The -ftemplate-depth-NN flag can be used to increase the maximum
76        recursive template instantiation depth, which defaults to 17. If you
77        need to use this flag, the compiler will tell you.
78      + Explicit instantiation of template constructors and destructors is
79        now supported.  For instance:
80
81             template A<int>::A(const A&);
82
83   Still not supported:
84
85      + Member class templates.
86      + Template friends.
87
88 * Exception handling support has been significantly improved and is on by
89   default.  The compiler supports two mechanisms for walking back up the
90   call stack; one relies on static information about how registers are
91   saved, and causes no runtime overhead for code that does not throw
92   exceptions.  The other mechanism uses setjmp and longjmp equivalents, and
93   can result in quite a bit of runtime overhead.  You can determine which
94   mechanism is the default for your target by compiling a testcase that
95   uses exceptions and doing an 'nm' on the object file; if it uses __throw,
96   it's using the first mechanism.  If it uses __sjthrow, it's using the
97   second.
98
99   You can turn EH support off with -fno-exceptions.
100
101 * RTTI support has been rewritten to work properly and is now on by default.
102   This means code that uses virtual functions will have a modest space
103   overhead.  You can use the -fno-rtti flag to disable RTTI support.
104
105 * On ELF systems, duplicate copies of symbols with 'initialized common'
106   linkage (such as template instantiations, vtables, and extern inlines)
107   will now be discarded by the GNU linker, so you don't need to use -frepo.
108   This support requires GNU ld from binutils 2.8 or later.
109
110 * The overload resolution code has been rewritten to conform to the latest
111   C++ Working Paper.  Built-in operators are now considered as candidates
112   in operator overload resolution.  Function template overloading chooses
113   the more specialized template, and handles base classes in type deduction
114   and guiding declarations properly.  In this release the old code can
115   still be selected with -fno-ansi-overloading, although this is not
116   supported and will be removed in a future release.
117
118 * Standard usage syntax for the std namespace is supported; std is treated
119   as an alias for global scope.  General namespaces are still not supported.
120
121 * New flags:
122
123      + New warning -Wno-pmf-conversion (don't warn about
124        converting from a bound member function pointer to function
125        pointer).
126
127      + A flag -Weffc++ has been added for violations of some of the style 
128        guidelines in Scott Meyers' _Effective C++_ books.
129
130      + -Woverloaded-virtual now warns if a virtual function in a base
131        class is hidden in a derived class, rather than warning about
132        virtual functions being overloaded (even if all of the inherited
133        signatures are overridden) as it did before.
134
135      + -Wall no longer implies -W.  The new warning flag, -Wsign-compare,
136         included in -Wall, warns about dangerous comparisons of signed and
137         unsigned values. Only the flag is new; it was previously part of
138         -W.
139
140      + The new flag, -fno-weak, disables the use of weak symbols.
141
142 * Synthesized methods are now emitted in any translation units that need
143   an out-of-line copy. They are no longer affected by #pragma interface
144   or #pragma implementation.
145
146 * __FUNCTION__ and __PRETTY_FUNCTION__ are now treated as variables by the
147   parser; previously they were treated as string constants.  So code like
148   `printf (__FUNCTION__ ": foo")' must be rewritten to 
149   `printf ("%s: foo", __FUNCTION__)'.  This is necessary for templates.
150
151 * local static variables in extern inline functions will be shared between
152   translation units.
153
154 * -fvtable-thunks is supported for all targets, and is the default for 
155   Linux with glibc 2.x (also called libc 6.x).
156
157 * bool is now always the same size as another built-in type. Previously,
158   a 64-bit RISC target using a 32-bit ABI would have 32-bit pointers and a
159   64-bit bool. This should only affect Irix 6, which was not supported in
160   2.7.2.
161
162 * new (nothrow) is now supported.
163
164 * Synthesized destructors are no longer made virtual just because the class
165   already has virtual functions, only if they override a virtual destructor
166   in a base class.  The compiler will warn if this affects your code.
167
168 * The g++ driver now only links against libstdc++, not libg++; it is
169   functionally identical to the c++ driver.
170
171 * (void *)0 is no longer considered a null pointer constant; NULL in
172   <stddef.h> is now defined as __null, a magic constant of type (void *)
173   normally, or (size_t) with -ansi.
174
175 * The name of a class is now implicitly declared in its own scope; A::A
176   refers to A.
177
178 * Local classes are now supported.
179
180 * __attribute__ can now be attached to types as well as declarations.
181
182 * The compiler no longer emits a warning if an ellipsis is used as a
183   function's argument list.
184
185 * Definition of nested types outside of their containing class is now
186   supported.  For instance:
187
188        struct A {
189               struct B;
190               B* bp;
191        };
192
193        struct A::B {
194               int member;
195        };
196
197 * On the HPPA, some classes that do not define a copy constructor
198   will be passed and returned in memory again so that functions
199   returning those types can be inlined.
200
201 *** The g++ team thanks everyone that contributed to this release,
202     but especially:
203
204 * Joe Buck <jbuck@synopsys.com>, the maintainer of the g++ FAQ.
205 * Brendan Kehoe <brendan@cygnus.com>, who coordinates testing of g++.
206 * Jason Merrill <jason@cygnus.com>, the g++ maintainer.
207 * Mark Mitchell <mmitchell@usa.net>, who implemented member function 
208   templates and explicit qualification of function templates.
209 * Mike Stump <mrs@wrs.com>, the previous g++ maintainer, who did most of
210   the exception handling work.