OSDN Git Service

libstdc++/5432
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / src / locale.cc
index 2359de8..5209182 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+// Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
 // invalidate any other reasons why the executable file might be covered by
 // the GNU General Public License.
 
-#include <bits/std_clocale.h>
-#include <bits/std_cstring.h>
-#include <bits/std_cassert.h>
-#include <bits/std_cctype.h>
-#include <bits/std_limits.h>
-#include <bits/std_exception.h>
-#include <bits/std_stdexcept.h>
-#include <bits/std_locale.h>
-#include <bits/std_istream.h>
-#include <bits/std_ostream.h>
-#include <bits/std_vector.h>
-#include <bits/std_memory.h>      // for auto_ptr
+#include <clocale>
+#include <cstring>
+#include <cassert>
+#include <cctype>
+#include <limits>
+#include <exception>
+#include <stdexcept>
+#include <locale>
+#include <istream>
+#include <ostream>
+#include <vector>
+#include <memory>      // for auto_ptr
 #ifdef _GLIBCPP_USE_WCHAR_T  
-  #include <bits/std_cwctype.h>     // for towupper, etc.
+# include <cwctype>     // for towupper, etc.
 #endif
-namespace std {
+
+#include <bits/atomicity.h>
+
+namespace std 
+{
+  // Defined in globals.cc.
+  extern locale::_Impl locale_impl_c;
+  extern locale locale_c;
 
   // Definitions for static const data members of locale.
-  const locale::category locale::none;
-  const locale::category locale::collate;
-  const locale::category locale::ctype;
-  const locale::category locale::monetary;
-  const locale::category locale::numeric;
-  const locale::category locale::time;
-  const locale::category locale::messages;
-  const locale::category locale::all;
+  const locale::category       locale::none;
+  const locale::category       locale::ctype;
+  const locale::category       locale::numeric;
+  const locale::category       locale::collate;
+  const locale::category       locale::time;
+  const locale::category       locale::monetary;
+  const locale::category       locale::messages;
+  const locale::category       locale::all;
+
+  locale::_Impl*               locale::_S_classic;
+  locale::_Impl*               locale::_S_global; 
+  const size_t                         locale::_S_num_categories;
+  const size_t                         locale::_S_num_facets;
+
+  // Definitions for locale::id of standard facets. 
+  locale::id ctype<char>::id;
+  locale::id codecvt<char, char, mbstate_t>::id;
 
-  locale::_Impl* locale::_S_global;  // init'd to 0 before static ctors run
-  locale::_Impl* locale::_S_classic; // init'd to 0 before static ctors run
-  const int locale::_S_num_categories;
+#ifdef _GLIBCPP_USE_WCHAR_T  
+  locale::id ctype<wchar_t>::id;
+  locale::id codecvt<wchar_t, char, mbstate_t>::id;
+#endif
+
+  // Definitions for static const data members of locale::id
+  _Atomic_word locale::id::_S_highwater;  // init'd to 0 by linker
 
   // Definitions for static const data members of locale::_Impl
   const locale::id* const
-  locale::_Impl::_S_id_collate[] =
-  {
-    &std::collate<char>::id,
-#ifdef _GLIBCPP_USE_WCHAR_T
-    &std::collate<wchar_t>::id,
-#endif
-    0
-  };
-  
-  const locale::id* const
   locale::_Impl::_S_id_ctype[] =
   {
     &std::ctype<char>::id, 
+    &codecvt<char, char, mbstate_t>::id,
 #ifdef _GLIBCPP_USE_WCHAR_T
     &std::ctype<wchar_t>::id,
-#endif
-    &std::codecvt<char, char, mbstate_t>::id,
-#ifdef _GLIBCPP_USE_WCHAR_T
-    &std::codecvt<wchar_t, char, mbstate_t>::id,
+    &codecvt<wchar_t, char, mbstate_t>::id,
 #endif
     0
   };
 
   const locale::id* const
-  locale::_Impl::_S_id_monetary[] =
+  locale::_Impl::_S_id_numeric[] =
   {
-    &std::moneypunct<char, false>::id, 
-#ifdef _GLIBCPP_USE_WCHAR_T
-    &std::moneypunct<wchar_t, false>::id,
-#endif
-    &std::moneypunct<char,true >::id, 
-#ifdef _GLIBCPP_USE_WCHAR_T
-    &std::moneypunct<wchar_t,true >::id,
-#endif
-    &std::money_get<char>::id,        
+    &num_get<char>::id,  
+    &num_put<char>::id,  
+    &numpunct<char>::id, 
 #ifdef _GLIBCPP_USE_WCHAR_T
-    &std::money_get<wchar_t>::id,
+    &num_get<wchar_t>::id,
+    &num_put<wchar_t>::id,
+    &numpunct<wchar_t>::id,
 #endif
-    &std::money_put<char>::id,        
+    0
+  };
+  
+  const locale::id* const
+  locale::_Impl::_S_id_collate[] =
+  {
+    &std::collate<char>::id,
 #ifdef _GLIBCPP_USE_WCHAR_T
-    &std::money_put<wchar_t>::id,
+    &std::collate<wchar_t>::id,
 #endif
     0
   };
 
   const locale::id* const
-  locale::_Impl::_S_id_numeric[] =
+  locale::_Impl::_S_id_time[] =
   {
-    &std::numpunct<char>::id, 
+    &__timepunct<char>::id, 
+    &time_get<char>::id, 
+    &time_put<char>::id, 
 #ifdef _GLIBCPP_USE_WCHAR_T
-    &std::numpunct<wchar_t>::id,
-#endif
-    &std::num_get<char>::id,  
- #ifdef _GLIBCPP_USE_WCHAR_T
-    &std::num_get<wchar_t>::id,
-#endif
-    &std::num_put<char>::id,  
-#ifdef _GLIBCPP_USE_WCHAR_T
-    &std::num_put<wchar_t>::id,
+    &__timepunct<wchar_t>::id, 
+    &time_get<wchar_t>::id,
+    &time_put<wchar_t>::id,
 #endif
     0
   };
   
   const locale::id* const
-  locale::_Impl::_S_id_time[] =
+  locale::_Impl::_S_id_monetary[] =
   {
-    &std::time_get<char>::id, 
+    &money_get<char>::id,        
+    &money_put<char>::id,        
+    &moneypunct<char, false>::id, 
+    &moneypunct<char, true >::id, 
 #ifdef _GLIBCPP_USE_WCHAR_T
-    &std::time_get<wchar_t>::id,
-#endif
-    &std::time_put<char>::id, 
-#ifdef _GLIBCPP_USE_WCHAR_T
-    &std::time_put<wchar_t>::id,
+    &money_get<wchar_t>::id,
+    &money_put<wchar_t>::id,
+    &moneypunct<wchar_t, false>::id,
+    &moneypunct<wchar_t, true >::id,
 #endif
     0
   };
-  
+
   const locale::id* const
   locale::_Impl::_S_id_messages[] =
   {
-    &std::time_get<char>::id, 
-#ifdef _GLIBCPP_USE_WCHAR_T
-    &std::time_get<wchar_t>::id,
-#endif
-    &std::time_put<char>::id, 
+    &std::messages<char>::id, 
 #ifdef _GLIBCPP_USE_WCHAR_T
-    &std::time_put<wchar_t>::id,
+    &std::messages<wchar_t>::id,
 #endif
     0
   };
@@ -152,547 +156,87 @@ namespace std {
   const locale::id* const* const
   locale::_Impl::_S_facet_categories[] =
   {
-    //  order must match the decl order in class locale.
-    locale::_Impl::_S_id_collate,
+    // Order must match the decl order in class locale.
     locale::_Impl::_S_id_ctype,
-    locale::_Impl::_S_id_monetary,
     locale::_Impl::_S_id_numeric,
+    locale::_Impl::_S_id_collate,
     locale::_Impl::_S_id_time,
+    locale::_Impl::_S_id_monetary,
     locale::_Impl::_S_id_messages,
     0
   };
 
-  // Definitions for static const data members of locale::id
-  size_t locale::id::_S_highwater;  // init'd to 0 by linker
-
-  // Definitions for static const data members of money_base
-  const money_base::pattern 
-  money_base::_S_default_pattern =  {{symbol, sign, none, value}};;
-
-  template<>
-    _Format_cache<char>::_Format_cache()
-    : _M_valid(true),
-    _M_decimal_point('.'), _M_thousands_sep(','),
-    _M_truename("true"), _M_falsename("false"), _M_use_grouping(false)
-    { }
-
-#ifdef _GLIBCPP_USE_WCHAR_T
-  template<>
-    _Format_cache<wchar_t>::_Format_cache()
-    : _M_valid(true),
-    _M_decimal_point(L'.'), _M_thousands_sep(L','),
-    _M_truename(L"true"), _M_falsename(L"false"), _M_use_grouping(false)
-    { }
-#endif
-
-  template<>
-    const ctype<char>&
-    use_facet<const ctype<char> > (const locale& __loc)
-    {
-      size_t __i = ctype<char>::id._M_index;
-      const locale::_Impl* __tmp = __loc._M_impl;
-      return static_cast<const ctype<char>&>(* (*(__tmp->_M_facets))[__i]);
-    }
-
-#ifdef _GLIBCPP_USE_WCHAR_T
-  template<>
-    const ctype<wchar_t>&
-    use_facet< const ctype<wchar_t> > (const locale& __loc)
-    {
-      size_t __i = ctype<wchar_t>::id._M_index;
-      const locale::_Impl* __tmp = __loc._M_impl;
-      return static_cast<const ctype<wchar_t>&>(* (*(__tmp->_M_facets))[__i]);
-    }
-#endif
+  locale::~locale() throw()
+  { _M_impl->_M_remove_reference(); }
 
-  template<>
-    void
-    num_get<char, istreambuf_iterator<char> >::
-    _M_extract(istreambuf_iterator<char> __beg, 
-              istreambuf_iterator<char> __end, ios_base& __io, 
-              ios_base::iostate& __err, char* __xtrc, int& __base, 
-              bool __fp) const
-    {
-      typedef _Format_cache<char> __cache_type;        
-
-      // Prepare for possible failure
-      __xtrc[0] = '\0';
-
-      // Stage 1: determine a conversion specifier.
-      ios_base::fmtflags __basefield = __io.flags() & ios_base::basefield;
-      if (__basefield == ios_base::dec)
-        __base = 10;
-      else if (__basefield == ios_base::oct)
-        __base = 8;
-      else if (__basefield == ios_base::hex)
-        __base = 16;
-      else
-        __base = 0;
-      // As far as I can tell, bases other than 10 are not available for
-      // floating point types
-      if (__fp)
-        __base = 10;
-
-      // Stage 2: extract characters.
-      __cache_type const* __fmt = __cache_type::_S_get(__io);
-      bool __valid = __beg != __end;
-      // Fail quickly if !__valid
-      if (!__valid)
-        {
-          __err |= (ios_base::eofbit | ios_base::failbit);
-          return;
-        }
-
-      // Acceptable formats for numbers here are based on 22.2.3.1
-      string __grp;
-      int __sep_pos = 0;
-      int __pos = 0;
-      const char* __lits = __fmt->_S_literals;
-      char __c = *__beg;
-
-      // Check first for sign
-      bool __testsign = false;
-      if ((__c == __lits[__cache_type::_S_minus])
-          || (__c == __lits[__cache_type::_S_plus]))
-        {
-          __xtrc[__pos++] = __c;
-          ++__beg;
-          __testsign = true;
-          // whitespace may follow a sign
-          while ((__beg != __end) && (isspace(*__beg)))
-            ++__beg;
-
-          // There had better be more to come...
-          if (__beg == __end)
-            {
-              __xtrc[__pos] = '\0';
-              __err |= (ios_base::eofbit | ios_base::failbit);
-              return;
-            }
-        }
-
-      bool __testzero = false;    // Has there been a leading zero?
-
-      // Now check if first character is a zero
-      __c = *__beg;
-      if (__c == __lits[__cache_type::_S_digits])
-        {
-           __testzero = true;
-           ++__beg;
-
-           // We have to check for __beg == __end here. If so,
-           // a plain '0' (possibly with a sign) can be got rid of now
-           if (__beg == __end)
-             {
-               __xtrc[__pos++] = __c;
-               __xtrc[__pos] = '\0';
-               __err |= ios_base::eofbit;
-               return;
-             }
-
-          // Figure out base for integer types only
-          // Based on Table 55 of 22.2.2.1.2
-          if (!__fp && __base != 10 && __base != 8)
-            {
-              // Here, __base == 0 or 16
-              __c = *__beg;
-              if ((__c == __lits[__cache_type::_S_x])
-                 || (__c == __lits[__cache_type::_S_X]))
-                {
-                  ++__beg;
-                  __base = 16;
-                  __testzero = false; // "0x" is not a leading zero
-                }
-              else if (__base == 0)
-                __base = 8;
-            }
-
-          // Remove any more leading zeros
-          while (__beg != __end)
-            {
-              if (*__beg == __lits[__cache_type::_S_digits])
-                {
-                  ++__beg;
-                  __testzero = true;
-                }
-              else
-                break;
-            }
-        }
-      else if (__base == 0) // 1st character is not zero
-        __base = 10;
-
-      // We now seek "units", i.e. digits and thousands separators.
-      // We may need to know if anything is found here. A leading zero
-      // (removed by now) would count.
-      bool __testunits = __testzero;
-      while (__valid && __beg != __end)
-        {
-          __valid = false;
-          __c = *__beg;
-          const char* __p = strchr(__fmt->_S_literals, __c);
-
-          // NB: strchr returns true for __c == 0x0
-          if (__p && __c)
-            {
-              // Try first for acceptable digit; record it if found
-              if ((__p >= &__lits[__cache_type::_S_digits]
-                    && __p < &__lits[__cache_type::_S_digits + __base])
-                   || (__p >= &__lits[__cache_type::_S_udigits]
-                       && __p < &__lits[__cache_type::_S_udigits + __base]))
-                {
-                  __xtrc[__pos++] = __c;
-                  ++__sep_pos;
-                  __valid = true;
-                  __testunits = true;
-                }
-            }
-          else if (__c == __fmt->_M_thousands_sep
-                   && __fmt->_M_use_grouping)
-            {
-              // NB: Thousands separator at the beginning of a string
-              // is a no-no, as is two consecutive thousands
-              // separators
-              if (__sep_pos)
-                {
-                  __grp += static_cast<char>(__sep_pos);
-                  __sep_pos = 0;
-                  __valid = true;
-                }
-              else
-                __err |= ios_base::failbit;
-            }
-          if (__valid)
-            ++__beg;
-        }
-
-      // Digit grouping is checked. If _M_groupings() doesn't
-      // match, then get very very upset, and set failbit.
-      if (__fmt->_M_use_grouping && !__grp.empty())
-        {
-          // Add the ending grouping
-          __grp += static_cast<char>(__sep_pos);
-
-          // __grp is parsed L to R
-          // 1,222,444 == __grp of "/1/3/3"
-          // __fmt->_M_grouping is parsed R to L
-          // 1,222,444 == __fmt->_M_grouping of "/3" == "/3/3/3"
-          int __i = 0;
-          int __j = 0;
-          const int __len = __fmt->_M_grouping.size();
-          int __n = __grp.size();
-          bool __test = true;
-
-          // Parsed number groupings have to match the
-          // numpunct::grouping string exactly, starting at the
-          // right-most point of the parsed sequence of elements ...
-          while (__test && __i < __n - 1)
-            for (__j = 0; __test && __j < __len && __i < __n - 1; ++__j,++__i)
-              __test &= __fmt->_M_grouping[__j] == __grp[__n - __i - 1];
-          // ... but the last parsed grouping can be <= numpunct
-          // grouping.
-          __j == __len ? __j = 0 : __j;
-          __test &= __fmt->_M_grouping[__j] >= __grp[__n - __i - 1];
-
-          if (!__test)
-            {
-              __err |= ios_base::failbit;
-              __xtrc[__pos] = '\0';
-              if (__beg == __end)
-                __err |= ios_base::eofbit;
-              return;
-            }
-        }
-
-      // If there was nothing but zeros, put one in the output string
-      if (__testzero && (__pos == 0 || (__pos == 1 && __testsign)))
-        __xtrc[__pos++] = __lits[__cache_type::_S_digits];
-
-      // That's it for integer types. Remaining code is for floating point
-      if (__fp && __beg != __end)
-        {
-          __c = *__beg;
-          // Check first for decimal point. There MUST be one if
-          // __testunits is false.
-          bool __testdec = false;    // Is there a decimal point
-                                     // with digits following it?
-          if (__c == __fmt->_M_decimal_point)
-            {
-              __xtrc[__pos++] = '.';
-              ++__beg;
-              // Now we get any digits after the decimal point
-              // There MUST be some if __testunits is false.
-              while (__beg != __end)
-                {
-                  __c = *__beg;
-                  const char* __p = strchr(__fmt->_S_literals, __c);
-                  if ((__p >= &__lits[__cache_type::_S_digits]
-                        && __p < &__lits[__cache_type::_S_digits + __base])
-                       || (__p >= &__lits[__cache_type::_S_udigits]
-                           && __p < &__lits[__cache_type::_S_udigits + __base]))
-                    {
-                      __xtrc[__pos++] = __c;
-                      ++__beg;
-                      __testdec = true;
-                    }
-                  else
-                    break;
-                }
-            }
-          if (!__testunits && !__testdec) // Ill formed
-            {
-              __err |= ios_base::failbit;
-              __xtrc[__pos] = '\0';
-              if (__beg == __end)
-                __err |= ios_base::eofbit;
-              return;
-            }
-
-          // Now we may find an exponent
-          if (__beg != __end)
-            {
-              __c = *__beg;
-              if ((__c == __lits[__cache_type::_S_ee])
-                   || (__c == __lits[__cache_type::_S_Ee]))
-                {
-                  __xtrc[__pos++] = __c;
-                  ++__beg;
-                  // Now there may be a sign
-                  if (__beg != __end)
-                    {
-                      __c = *__beg;
-                      if ((__c == __lits[__cache_type::_S_minus])
-                          || (__c == __lits[__cache_type::_S_plus]))
-                        {
-                          __xtrc[__pos++] = __c;
-                          ++__beg;
-                          // whitespace may follow a sign
-                          while ((__beg != __end) && (isspace(*__beg)))
-                            ++__beg;
-
-                        }
-                    }
-                  // And now there must be some digits
-                  if (__beg == __end)
-                    {
-                      __xtrc[__pos] = '\0';
-                      __err |= (ios_base::eofbit | ios_base::failbit);
-                      return;
-                    }
-                  while (__beg != __end)
-                    {
-                      __c = *__beg;
-                      const char* __p = strchr(__fmt->_S_literals, __c);
-                      if ((__p >= &__lits[__cache_type::_S_digits]
-                            && __p < &__lits[__cache_type::_S_digits + __base])
-                           || (__p >= &__lits[__cache_type::_S_udigits]
-                               && __p < &__lits[__cache_type::_S_udigits + __base]))
-                        {
-                          __xtrc[__pos++] = __c;
-                          ++__beg;
-                        }
-                      else
-                        break;
-                    }
-                }
-            }
-          // Finally, that's it for floating point
-        }
-
-      // Finish up
-      __xtrc[__pos] = '\0';
-      if (__beg == __end)
-        __err |= ios_base::eofbit;
-    }
-
-  // The following code uses sprintf() to convert floating point
-  // values for insertion into a stream. The current implementation
-  // replicates the code in _S_pad_numeric() (in _S_output_float()) in
-  // order to prevent having to create a "wide" buffer in addition to
-  // the "narrow" buffer passed to sprintf(). An optimization would be
-  // to replace sprintf() with code that works directly on a wide
-  // buffer and then use _S_pad_numeric() to do the padding. It would
-  // be good to replace sprintf() anyway to avoid accidental buffer
-  // overruns and to gain back the efficiency that C++ provides by
-  // knowing up front the type of the values to insert. This
-  // implementation follows the C++ standard fairly directly as
-  // outlined in 22.2.2.2 [lib.locale.num.put]
-  bool
-  _S_build_float_format(ios_base& __io, char* __fptr, char __modifier,
-                        streamsize __prec)
-  {
-    bool __incl_prec = false;
-    ios_base::fmtflags __flags = __io.flags();
-    *__fptr++ = '%';
-    // [22.2.2.2.2] Table 60
-    if (__flags & ios_base::showpos)
-      *__fptr++ = '+';
-    if (__flags & ios_base::showpoint)
-      *__fptr++ = '#';
-    // As per [22.2.2.2.2.11]
-    if (__flags & ios_base::fixed || __prec > 0)
-      {
-        *__fptr++ = '.';
-        *__fptr++ = '*';
-        __incl_prec = true;
+  void
+  locale::_M_coalesce(const locale& __base, const locale& __add, 
+                     category __cat)
+  {
+    __cat = _S_normalize_category(__cat);  
+    _M_impl = new _Impl(*__base._M_impl, 1);  
+
+    try 
+      { _M_impl->_M_replace_categories(__add._M_impl, __cat); }
+    catch (...) 
+      { 
+       _M_impl->_M_remove_reference(); 
+       __throw_exception_again;
       }
-    if (__modifier)
-      *__fptr++ = __modifier;
-    ios_base::fmtflags __fltfield = __flags & ios_base::floatfield;
-    // [22.2.2.2.2] Table 58
-    if (__fltfield == ios_base::fixed)
-      *__fptr++ = 'f';
-    else if (__fltfield == ios_base::scientific)
-      *__fptr++ = (__flags & ios_base::uppercase) ? 'E' : 'e';
-    else
-      *__fptr++ = (__flags & ios_base::uppercase) ? 'G' : 'g';
-    *__fptr = '\0';
-    return __incl_prec;
-  }
-
-  // locale::_Impl
-  locale::_Impl::
-  ~_Impl() throw()
-  {
-    std::vector<facet*>::iterator it = _M_facets->begin();
-    for (; it != _M_facets->end(); ++it)
-      (*it)->_M_remove_reference();
-    delete _M_facets;
-    delete _M_category_names;
   }
 
-  locale::_Impl::
-  _Impl(size_t __numfacets, size_t __refs)
-  : _M_num_references(__refs - 1)
-  , _M_facets(0)
-  , _M_category_names(0)
-  , _M_has_name(false)
-  , _M_cached_name_ok(false)
-  , _M_cached_name(string ("*"))
+  locale::locale() throw()
   { 
-    typedef vector<facet*, allocator<facet*> > __vec_facet;
-    typedef vector<string, allocator<string> > __vec_string;
-
-    auto_ptr<__vec_facet> __pvf(new __vec_facet(__numfacets, (facet*)0));
-    auto_ptr<__vec_string> __pcn(new __vec_string(_S_num_categories,
-                                                 string("*")));
-    _M_facets = __pvf.release();
-    _M_category_names = __pcn.release();
+    _S_initialize(); 
+    (_M_impl = _S_global)->_M_add_reference(); 
   }
-  
-  locale::_Impl::
-  _Impl(const _Impl& __other, size_t __refs)
-  : _M_num_references(__refs)
-  , _M_facets(0)
-  , _M_category_names(0)
-  , _M_has_name(__other._M_has_name)
-  , _M_cached_name_ok(__other._M_cached_name_ok)
-  , _M_cached_name(__other._M_cached_name)
-  {
-    typedef vector<facet*, allocator<facet*> > __vec_facet;
-    typedef vector<string, allocator<string> > __vec_string;
 
-    auto_ptr<__vec_facet> __pvf(new __vec_facet(*(__other._M_facets)));
-    auto_ptr<__vec_string> 
-      __pcn(new __vec_string(*(__other._M_category_names)));
+  locale::locale(const locale& __other) throw()
+  { (_M_impl = __other._M_impl)->_M_add_reference(); }
 
-    std::vector<facet*>::iterator __it = __pvf->begin();
-    for (; __it != __pvf->end(); ++__it)
-      (*__it)->_M_add_reference();
+  // This is used to initialize global and classic locales, and
+  // assumes that the _Impl objects are constructed correctly.
+  locale::locale(_Impl* __ip) throw() : _M_impl(__ip)
+  { }
 
-    // these must be last since in the presence of an exception, the 
-    // destructor for 'this' won't run until AFTER execution has passed  
-    // the closing brace of the constructor
-    _M_facets = __pvf.release();
-    _M_category_names = __pcn.release();
-  }
-  
-  void
-  locale::_Impl::
-  _M_replace_categories(const _Impl* __other, category __cats)
+  locale::locale(const char* __s)
   {
-    assert((__cats & locale::all) && !(__cats & ~locale::all));
-    
-    unsigned mask = (locale::all & -(unsigned)locale::all);
-    for (unsigned ix = 0; (-mask & __cats) != 0; ++ix, (mask <<= 1))
+    if (__s)
       {
-       if (mask & __cats)
-         {
-           _M_replace_category(__other, _S_facet_categories[ix]);
-           (*_M_category_names)[ix] = (*(__other->_M_category_names))[ix];
-         }
+       _S_initialize(); 
+       if (strcmp(__s, "C") == 0 || strcmp(__s, "POSIX") == 0)
+         (_M_impl = _S_classic)->_M_add_reference();
+       else if (strcmp(__s, "") == 0)
+         _M_impl = new _Impl(setlocale(LC_ALL, __s), 1);
+       else
+         _M_impl = new _Impl(__s, 1);
       }
+    else
+      __throw_runtime_error("attempt to create locale from NULL name");
   }
 
-  void
-  locale::_Impl::
-  _M_replace_category(const _Impl* __other, const locale::id* const* __idpp)
-  {
-    for (; *__idpp; ++__idpp)
-      _M_replace_facet(__other, *__idpp);
-  }
-  
-  void
-  locale::_Impl::
-  _M_replace_facet(const _Impl* __other, const locale::id* __idp)
-  {
-    size_t __index = __idp->_M_index;
-    if (__index == 0 
-       || __other->_M_facets->size() <= __index 
-       || (*(__other->_M_facets))[__index] == 0)
-      throw runtime_error("no locale facet");
-       
-    _M_install_facet(__idp, (*(__other->_M_facets))[__index]); 
+  locale::locale(const locale& __base, const char* __s, category __cat)
+  { 
+    // NB: There are complicated, yet more efficient ways to do
+    // this. Building up locales on a per-category way is tedious, so
+    // let's do it this way until people complain.
+    locale __add(__s);
+    _M_coalesce(__base, __add, __cat);
   }
 
-  void
-  locale::_Impl::
-  _M_install_facet(const locale::id* __idp, facet* __fp)
-  {
-    if (__fp == 0)
-      return;
-
-    size_t& __index = __idp->_M_index;
-    if (!__index)
-      __index = ++locale::id::_S_highwater;  // XXX MT
+  locale::locale(const locale& __base, const locale& __add, category __cat)
+  { _M_coalesce(__base, __add, __cat); }
 
-    if (__index >= _M_facets->size())
-      _M_facets->resize(__index + 1, 0);  // might throw
-    facet*& __fpr = (*_M_facets)[__index];
-    // order matters, here:
-    __fp->_M_add_reference();
-    if (__fpr) 
-      __fpr->_M_remove_reference();
-    __fpr = __fp;
-  }
-  locale::
-  locale(_Impl* __ip) throw()
-  : _M_impl(__ip)
-  { __ip->_M_add_reference(); }
-
-  locale::
-  locale(const locale& __other, const locale& __one, category __cats)
+  bool
+  locale::operator==(const locale& __rhs) const throw()
   {
-    __cats = _S_normalize_category(__cats);    // might throw
-    _M_impl = new _Impl(*__other._M_impl, 1);  // might throw
-
-    try { 
-      _M_impl->_M_replace_categories(__one._M_impl, __cats); 
-    }
-    catch (...) { 
-      _M_impl->_M_remove_reference(); 
-      throw; 
-    }
-
-    _M_impl->_M_cached_name_ok = false;
-    if (!__other._M_impl->_M_has_name)
-      _M_impl->_M_has_name = false;
+    string __name = this->name();
+    return (_M_impl == __rhs._M_impl 
+           || (__name != "*" && __name == __rhs.name()));
   }
 
   const locale&
-  locale::
-  operator=(const locale& __other) throw()
+  locale::operator=(const locale& __other) throw()
   {
     __other._M_impl->_M_add_reference();
     _M_impl->_M_remove_reference();
@@ -701,430 +245,350 @@ namespace std {
   }
 
   locale
-  locale::
-  global(const locale& __other)
+  locale::global(const locale& __other)
   {
     // XXX MT
     _S_initialize();
-    locale __keep(_S_global);
+    _Impl* __old = _S_global;
     __other._M_impl->_M_add_reference();
-    _S_global->_M_remove_reference();
     _S_global = __other._M_impl; 
-    if (_S_global->_M_has_name)
+    if (_S_global->_M_check_same_name() && _S_global->_M_names[0] != "*")
       setlocale(LC_ALL, __other.name().c_str());
-    return __keep;
+
+    // Reference count sanity check: one reference removed for the
+    // subsition of __other locale, one added by return-by-value. Net
+    // difference: zero. When the returned locale object's destrutor
+    // is called, then the reference count is decremented and possibly
+    // destroyed.
+    return locale(__old);
   }
 
   string
-  locale::
-  name() const
+  locale::name() const
   {
-    // XXX not done
-    return "*";
+    string __ret;
+    // Need some kind of separator character. This one was pretty much
+    // arbitrarily chosen as to not conflict with glibc locales: the
+    // exact formatting is not set in stone.
+    const char __separator = '|';
+
+    if (_M_impl->_M_check_same_name())
+      __ret = _M_impl->_M_names[0];
+    else
+      {
+       for (size_t i = 0; i < _S_num_categories; ++i)
+         __ret += __separator + _M_impl->_M_names[i];
+      }
+    return __ret;
   }
 
   locale const&
-  locale::
-  classic()
+  locale::classic()
   {
-    static locale* __classic_locale;
-    // XXX MT
+    static _STL_mutex_lock __lock __STL_MUTEX_INITIALIZER;
+    _STL_auto_lock __auto(__lock);
+
     if (!_S_classic)
       {
-       try {
-         _S_classic = _S_global = new _Impl(26u, 2u);
-         // One reference for _M_classic, one for _M_global
-         // (constructor for (*the_classic_locale) adds a third)
-           
-         // collate category
-         _S_classic->_M_facet_init(new std::collate<char>);
-         
-         // ctype category
-         _S_classic->_M_facet_init(new std::ctype<char>);
-         _S_classic->_M_facet_init(new codecvt<char, char, mbstate_t>);
-
-         // monetary category
-         _S_classic->_M_facet_init(new moneypunct<char, false>);
-         _S_classic->_M_facet_init(new moneypunct<char,true >);
-         _S_classic->_M_facet_init(new money_get<char>);
-         _S_classic->_M_facet_init(new money_put<char>);
-         
-         // numeric category
-         _S_classic->_M_facet_init(new numpunct<char>);
-         _S_classic->_M_facet_init(new num_get<char>);
-         _S_classic->_M_facet_init(new num_put<char>);
-         
-         // time category
-         _S_classic->_M_facet_init(new time_get<char>);
-         _S_classic->_M_facet_init(new time_put<char>);
-         
-         // messages category
-         _S_classic->_M_facet_init(new std::messages<char>);
-
-#ifdef  _GLIBCPP_USE_WCHAR_T
-         _S_classic->_M_facet_init(new std::collate<wchar_t>);
-         _S_classic->_M_facet_init(new std::ctype<wchar_t>);
-         _S_classic->_M_facet_init(new codecvt<wchar_t, char, mbstate_t>);
-         _S_classic->_M_facet_init(new moneypunct<wchar_t, false>);
-         _S_classic->_M_facet_init(new moneypunct<wchar_t,true >);
-         _S_classic->_M_facet_init(new money_get<wchar_t>);
-         _S_classic->_M_facet_init(new money_put<wchar_t>);
-         _S_classic->_M_facet_init(new numpunct<wchar_t>);
-         _S_classic->_M_facet_init(new num_get<wchar_t>);
-         _S_classic->_M_facet_init(new num_put<wchar_t>);
-         _S_classic->_M_facet_init(new time_get<wchar_t>);
-         _S_classic->_M_facet_init(new time_put<wchar_t>);
-         _S_classic->_M_facet_init(new std::messages<wchar_t>);
-#endif   
-
-         // finesse static init order hassles
-         __classic_locale = new locale(_S_classic);
-       }
-       catch(...) {
-         delete __classic_locale;
-         if (_S_classic)
-           {
-             _S_classic->_M_remove_reference();
-             _S_global->_M_remove_reference();
-           }
-         _S_classic = _S_global = 0;
-         // XXX MT
-         throw;
-       }
+       try 
+         {
+           // 26 Standard facets, 2 references.
+           // One reference for _M_classic, one for _M_global
+           _S_classic = new (&locale_impl_c) _Impl("C", 2);
+           _S_global = _S_classic;         
+           new (&locale_c) locale(_S_classic);
+         }
+       catch(...) 
+         {
+           // Just call destructor, so that locale_impl_c's memory is
+           // not deallocated via a call to delete.
+           if (_S_classic)
+             _S_classic->~_Impl();
+           _S_classic = _S_global = 0;
+           __throw_exception_again;
+         }
       }
-    return *__classic_locale;
+    return locale_c;
   }
 
-  int
-  locale::
-  _S_normalize_category(int __cats) 
+  locale::category
+  locale::_S_normalize_category(category __cat) 
   {
-    if ((__cats & all) && !(__cats & ~all))
-      return __cats;
-
-    // NB: May be a C-style "LC_ALL" category; convert.
-    switch (__cats)
+    int __ret = 0;
+    if (__cat == none || (__cat & all) && !(__cat & ~all))
+      __ret = __cat;
+    else
       {
-      case LC_COLLATE:  return collate; 
-      case LC_CTYPE:    return ctype;
-      case LC_MONETARY: return monetary;
-      case LC_NUMERIC:  return numeric;
-      case LC_TIME:     return time; 
+       // NB: May be a C-style "LC_ALL" category; convert.
+       switch (__cat)
+         {
+         case LC_COLLATE:  
+           __ret = collate; 
+           break;
+         case LC_CTYPE:    
+           __ret = ctype;
+           break;
+         case LC_MONETARY: 
+           __ret = monetary;
+           break;
+         case LC_NUMERIC:  
+           __ret = numeric;
+           break;
+         case LC_TIME:     
+           __ret = time; 
+           break;
 #ifdef _GLIBCPP_HAVE_LC_MESSAGES
-      case LC_MESSAGES: return messages;
+         case LC_MESSAGES: 
+           __ret = messages;
+           break;
 #endif 
-      case LC_ALL:      return all;
+         case LC_ALL:      
+           __ret = all;
+           break;
+         default:
+           __throw_runtime_error("bad locale category");
+         }
       }
-    
-    // XXX should throw derived class here
-    throw runtime_error("bad locale category");
-    /* NOTREACHED */
+    return __ret;
   }
 
+  __c_locale
+  locale::facet::_S_c_locale;
+  
   locale::facet::
-  facet(size_t __refs) throw()
-  : _M_num_references(__refs - 1) 
-  { }
+  ~facet() { }
+
+  locale::facet::
+  facet(size_t __refs) throw() : _M_references(__refs) 
+  { 
+    if (!_S_c_locale)
+      _S_create_c_locale(_S_c_locale, "C");
+  }
 
   void  
   locale::facet::
   _M_add_reference() throw()
-  { 
-    if (this) 
-      ++_M_num_references; 
-  }                     // XXX MT
+  { __atomic_add(&_M_references, 1); }
 
   void  
   locale::facet::
   _M_remove_reference() throw()
   {
-    if (this && _M_num_references-- == 0)
+    if (__exchange_and_add(&_M_references, -1) == 0)
       {
-        try { 
-         delete this; 
-       }  // XXX MT
-       catch (...) { 
-       }
+        try 
+         { delete this; }  
+       catch (...) 
+         { }
       }
   }
-
-  char const* 
-  _Bad_use_facet::
-  what() const throw()
-  { return "bad_cast thrown from use_facet"; }
-
-  _Bad_use_facet::
-  ~_Bad_use_facet() throw() { }
   
-  // Platform-specific initialization code for ctype tables.
-  #include <ctype.cc>
+  locale::id::id() { }
+
+  // Definitions for static const data members of ctype_base.
+  const ctype_base::mask ctype_base::space;
+  const ctype_base::mask ctype_base::print;
+  const ctype_base::mask ctype_base::cntrl;
+  const ctype_base::mask ctype_base::upper;
+  const ctype_base::mask ctype_base::lower;
+  const ctype_base::mask ctype_base::alpha;
+  const ctype_base::mask ctype_base::digit;
+  const ctype_base::mask ctype_base::punct;
+  const ctype_base::mask ctype_base::xdigit;
+  const ctype_base::mask ctype_base::alnum;
+  const ctype_base::mask ctype_base::graph;
 
-  locale::id ctype<char>::id;
+  // Platform-specific initialization code for ctype tables.
+  #include <bits/ctype_noninline.h>
 
   const size_t ctype<char>::table_size;
 
-  ctype<char>::
-  ~ctype()
-  { if (_M_del) delete[] this->table(); }
+  ctype<char>::~ctype()
+  { 
+    if (_M_c_locale_ctype)
+      _S_destroy_c_locale(_M_c_locale_ctype);
+    if (_M_del) 
+      delete[] this->table(); 
+  }
 
-  char
-  ctype<char>::
-  do_widen(char __c) const
+  // These are dummy placeholders as these virtual functions are never called.
+  bool 
+  ctype<char>::do_is(mask, char_type) const 
+  { return false; }
+  
+  const char*
+  ctype<char>::do_is(const char_type* __c, const char_type*, mask*) const 
   { return __c; }
   
+  const char*
+  ctype<char>::do_scan_is(mask, const char_type* __c, const char_type*) const 
+  { return __c; }
+
   const char* 
-  ctype<char>::
-  do_widen(const char* __low, const char* __high, char* __dest) const
-  {
-    memcpy(__dest, __low, __high - __low);
-    return __high;
-  }
-  
+  ctype<char>::do_scan_not(mask, const char_type* __c, const char_type*) const
+  { return __c; }
+
   char
-  ctype<char>::
-  do_narrow(char __c, char /*__dfault*/) const
+  ctype<char>::do_widen(char __c) const
   { return __c; }
   
   const char* 
-  ctype<char>::
-  do_narrow(const char* __low, const char* __high, char /*__dfault*/,
-           char* __dest) const
+  ctype<char>::do_widen(const char* __lo, const char* __hi, char* __dest) const
   {
-    memcpy(__dest, __low, __high - __low);
-    return __high;
+    memcpy(__dest, __lo, __hi - __lo);
+    return __hi;
   }
-
-  ctype_byname<char>::
-  ctype_byname(const char* /*__s*/, size_t __refs)
-  : ctype<char>(new mask[table_size], true, __refs)
-  { }
-
-  locale::id collate<char>::id;
-
-  collate<char>::collate(size_t __refs)
-  : _Collate<char>(__refs) { }
-  
-  collate<char>::~collate() { }
   
-  int 
-  collate<char>::
-  do_compare(const char* __lo1, const char* __hi1, 
-            const char* __lo2, const char* __hi2) const
-  {
-    for (; __lo1 < __hi1 && __lo2 < __hi2; ++__lo1, ++__lo2) 
-      if (*__lo1 != *__lo2) 
-       return (*__lo1 < *__lo2) ? -1 : 1;
-    if (__lo1 < __hi1) 
-      return 1;
-    else if (__lo2 < __hi2) 
-      return -1;
-    else 
-      return 0;
-  }
-  
-  string
-  collate<char>::
-  do_transform(const char* __lo, const char* __hi) const
-  { return string(__lo, __hi - __lo); }
+  char
+  ctype<char>::do_narrow(char __c, char /*__dfault*/) const
+  { return __c; }
   
-  long
-  collate<char>::
-  do_hash(const char* __lo, const char* __hi) const
+  const char* 
+  ctype<char>::do_narrow(const char* __lo, const char* __hi, 
+                        char /*__dfault*/, char* __dest) const
   {
-    unsigned long __val = 0xdeadbeef;
-    for (; __lo < __hi; ++__lo)
-      __val = *__lo ^ ((__val << 7) & 
-                  (__val >> (numeric_limits<unsigned long>::digits - 1)));
-    return __val;
+    memcpy(__dest, __lo, __hi - __lo);
+    return __hi;
   }
-  
-  collate_byname<char>::
-  collate_byname(const char* /*__s*/, size_t __refs)
-  : collate<char>(__refs) { }
-
-  numpunct_byname<char>::
-  numpunct_byname(const char* /*__s*/, size_t __refs)
-  : numpunct<char>(__refs) { }
-
-  moneypunct_byname<char, false>::
-  moneypunct_byname(const char* /*__s*/, size_t __refs)
-  : moneypunct<char, false>(__refs) { }
-  
-  moneypunct_byname<char, true>::
-  moneypunct_byname(const char* /*__s*/, size_t __refs)
-  : moneypunct<char, true>(__refs) { }
-  
-  messages_byname<char>::
-  messages_byname(const char* /*__s*/, size_t __refs)
-  : messages<char>(__refs) { }
-
-#ifdef _GLIBCPP_USE_WCHAR_T  
-  locale::id ctype<wchar_t>::id;
 
-  ctype<wchar_t>::
-  ~ctype() { }
+#ifdef _GLIBCPP_USE_WCHAR_T
+  ctype<wchar_t>::ctype(size_t __refs) 
+  : __ctype_abstract_base<wchar_t>(__refs)
+  { _M_c_locale_ctype = _S_clone_c_locale(_S_c_locale); }
 
-  // NB: These ctype<wchar_t> methods are not configuration-specific,
-  // unlike the ctype<char> bits.
-  ctype<wchar_t>::ctype(size_t __refs) : _Ctype<wchar_t>(__refs) { }
+  ctype<wchar_t>::ctype(__c_locale __cloc, size_t __refs) 
+  : __ctype_abstract_base<wchar_t>(__refs) 
+  { _M_c_locale_ctype = _S_clone_c_locale(__cloc); }
 
-  wchar_t
-  ctype<wchar_t>::do_toupper(wchar_t __c) const
-  { return towupper(__c); }
+  ctype<wchar_t>::~ctype() 
+  { _S_destroy_c_locale(_M_c_locale_ctype); }
 
-  const wchar_t*
-  ctype<wchar_t>::do_toupper(wchar_t* __low, const wchar_t* __high) const
-  {
-    while (__low < __high)
-      {
-        *__low = towupper(*__low);
-        ++__low;
-      }
-    return __high;
-  }
-  
-  wchar_t
-  ctype<wchar_t>::do_tolower(wchar_t __c) const
-  { return towlower(__c); }
-  
-  const wchar_t*
-  ctype<wchar_t>::do_tolower(wchar_t* __low, const wchar_t* __high) const
-  {
-    while (__low < __high)
-      {
-        *__low = towlower(*__low);
-        ++__low;
-      }
-    return __high;
-  }
+  template<>
+    ctype_byname<wchar_t>::ctype_byname(const char* __s, size_t __refs)
+    : ctype<wchar_t>(__refs) 
+    {  
+      _S_destroy_c_locale(_M_c_locale_ctype);
+      _S_create_c_locale(_M_c_locale_ctype, __s); 
+    }
+#endif
 
-  bool
-  ctype<wchar_t>::
-  do_is(mask __m, char_type __c) const
-  { return static_cast<bool>(iswctype(__c, _M_convert_to_wmask(__m))); }
-  
-  const wchar_t* 
-  ctype<wchar_t>::
-  do_is(const wchar_t* __low, const wchar_t* __high, mask* __m) const
-  {
-    while (__low < __high && !this->is(*__m, *__low))
-      ++__low;
-    return __low;
-  }
-  
-  const wchar_t* 
-  ctype<wchar_t>::
-  do_scan_is(mask __m, const wchar_t* __low, const wchar_t* __high) const
-  {
-    while (__low < __high && !this->is(__m, *__low))
-      ++__low;
-    return __low;
-  }
+  // Definitions for static const data members of time_base
+  template<> 
+    const char*
+    __timepunct<char>::_S_timezones[14] =
+    { 
+      "GMT", "HST", "AKST", "PST", "MST", "CST", "EST", "AST", "NST", "CET", 
+      "IST", "EET", "CST", "JST"  
+    };
+#ifdef _GLIBCPP_USE_WCHAR_T
+  template<> 
+    const wchar_t*
+    __timepunct<wchar_t>::_S_timezones[14] =
+    { 
+      L"GMT", L"HST", L"AKST", L"PST", L"MST", L"CST", L"EST", L"AST", 
+      L"NST", L"CET", L"IST", L"EET", L"CST", L"JST"  
+    };
+#endif
 
-  const wchar_t*
-  ctype<wchar_t>::
-  do_scan_not(mask __m, const char_type* __low, const char_type* __high) const
-  {
-    while (__low < __high && this->is(__m, *__low) != 0)
-      ++__low;
-    return __low;
-  }
+  // Definitions for static const data members of money_base
+  const money_base::pattern 
+  money_base::_S_default_pattern =  { {symbol, sign, none, value} };
 
-  wchar_t
-  ctype<wchar_t>::
-  do_widen(char __c) const
-  { return btowc(__c); }
-  
-  const char* 
-  ctype<wchar_t>::
-  do_widen(const char* __low, const char* __high, wchar_t* __dest) const
-  {
-    mbstate_t __state;
-    memset(&__state, 0, sizeof(mbstate_t));
-    mbsrtowcs(__dest, &__low, __high - __low, &__state);
-    return __high;
-  }
+  template<>
+    const ctype<char>&
+    use_facet<ctype<char> >(const locale& __loc)
+    {
+      size_t __i = ctype<char>::id._M_index;
+      const locale::_Impl* __tmp = __loc._M_impl;
+      return static_cast<const ctype<char>&>(* (*(__tmp->_M_facets))[__i]);
+    }
 
-  char
-  ctype<wchar_t>::
-  do_narrow(wchar_t __wc, char __dfault) const
-  { 
-    int __c = wctob(__wc);
-    return (__c == EOF ? __dfault : static_cast<char>(__c)); 
-  }
+#ifdef _GLIBCPP_USE_WCHAR_T
+  template<>
+    const ctype<wchar_t>&
+    use_facet<ctype<wchar_t> >(const locale& __loc)
+    {
+      size_t __i = ctype<wchar_t>::id._M_index;
+      const locale::_Impl* __tmp = __loc._M_impl;
+      return static_cast<const ctype<wchar_t>&>(* (*(__tmp->_M_facets))[__i]);
+    }
+#endif
 
-  const wchar_t*
-  ctype<wchar_t>::
-  do_narrow(const wchar_t* __low, const wchar_t* __high, char __dfault, 
-           char* __dest) const
-  {
-    mbstate_t __state;
-    memset(&__state, 0, sizeof(mbstate_t));
-    size_t __len = __high - __low;
-    size_t __conv = wcsrtombs(__dest, &__low, __len, &__state);
-    if (__conv == __len)
-      *__dest = __dfault;
-    return __high;
-  }
 
-  ctype_byname<wchar_t>::
-  ctype_byname(const char* /*__s*/, size_t __refs)
-  : ctype<wchar_t>(__refs) { }
+  const char __num_base::_S_atoms[] = "0123456789eEabcdfABCDF";
 
-  locale::id collate<wchar_t>::id;
+  const double __num_base::_S_scale_hex = log(10.0)/log(16.0);
 
-  collate<wchar_t>::
-  collate(size_t __refs)
-  : _Collate<wchar_t> (__refs) { }
-  
-  collate<wchar_t>::
-  ~collate() { }
+  const double __num_base::_S_scale_oct = log(10.0)/log(8.0);
 
-  int 
-  collate<wchar_t>::
-  do_compare(const wchar_t* /*__lo1*/, const wchar_t* /*__hi1*/,
-            const wchar_t* /*__lo2*/, const wchar_t* /*__hi2*/) const
-  {
-    return 0; // XXX not done
-  }
-  
-  wstring collate<wchar_t>::
-  do_transform(const wchar_t* /*__lo*/, const wchar_t* /*__hi*/) const
+  bool
+  __num_base::_S_format_float(const ios_base& __io, char* __fptr, char __mod,
+                             streamsize __prec)
   {
-    return wstring(); // XXX not done
+    bool __incl_prec = false;
+    ios_base::fmtflags __flags = __io.flags();
+    *__fptr++ = '%';
+    // [22.2.2.2.2] Table 60
+    if (__flags & ios_base::showpos)
+      *__fptr++ = '+';
+    if (__flags & ios_base::showpoint)
+      *__fptr++ = '#';
+    // As per [22.2.2.2.2.11]
+    if (__flags & ios_base::fixed || __prec > 0)
+      {
+       *__fptr++ = '.';
+       *__fptr++ = '*';
+       __incl_prec = true;
+      }
+    if (__mod)
+      *__fptr++ = __mod;
+    ios_base::fmtflags __fltfield = __flags & ios_base::floatfield;
+    // [22.2.2.2.2] Table 58
+    if (__fltfield == ios_base::fixed)
+      *__fptr++ = 'f';
+    else if (__fltfield == ios_base::scientific)
+      *__fptr++ = (__flags & ios_base::uppercase) ? 'E' : 'e';
+    else
+      *__fptr++ = (__flags & ios_base::uppercase) ? 'G' : 'g';
+    *__fptr = '\0';
+    return __incl_prec;
   }
   
-  long collate<wchar_t>::
-  do_hash(const wchar_t* /*__lo*/, const wchar_t* /*__hi*/) const
+  void
+  __num_base::_S_format_int(const ios_base& __io, char* __fptr, char __mod, 
+                           char __modl)
   {
-    return 0; // XXX not done
-  }
+    ios_base::fmtflags __flags = __io.flags();
+    *__fptr++ = '%';
+    // [22.2.2.2.2] Table 60
+    if (__flags & ios_base::showpos)
+      *__fptr++ = '+';
+    if (__flags & ios_base::showbase)
+      *__fptr++ = '#';
+    *__fptr++ = 'l';
 
-  numpunct_byname<wchar_t>::
-  numpunct_byname(const char* /*__s*/, size_t __refs)
-  : numpunct<wchar_t> (__refs) { }
+    // For long long types.
+    if (__modl)
+      *__fptr++ = __modl;
 
-  collate_byname<wchar_t>::
-  collate_byname(const char* /*__s*/, size_t __refs)
-  : collate<wchar_t> (__refs) { }
+    ios_base::fmtflags __bsefield = __flags & ios_base::basefield;
+    if (__bsefield == ios_base::hex)
+      *__fptr++ = (__flags & ios_base::uppercase) ? 'X' : 'x';
+    else if (__bsefield == ios_base::oct)
+      *__fptr++ = 'o';
+    else
+      *__fptr++ = __mod;
+    *__fptr = '\0';
+  }
   
-  moneypunct_byname<wchar_t, false>::
-  moneypunct_byname(const char* /*__s*/, size_t __refs)
-  : moneypunct<wchar_t, false> (__refs) { }
+  template<>
+    moneypunct_byname<char, false>::moneypunct_byname(const char*, 
+                                                     size_t __refs)
+    : moneypunct<char, false>(__refs) { }
   
-  moneypunct_byname<wchar_t, true>::
-  moneypunct_byname(const char* /*__s*/, size_t __refs)
-  : moneypunct<wchar_t, true> (__refs) { }
-    
-  messages_byname<wchar_t>::
-  messages_byname(const char* /*__s*/, size_t __refs)
-  : messages<wchar_t> (__refs) { }
-#endif //  _GLIBCPP_USE_WCHAR_T
-
+  template<>
+    moneypunct_byname<char, true>::moneypunct_byname(const char*, 
+                                                    size_t __refs)
+    : moneypunct<char, true>(__refs) { }
 } // namespace std
-
-
-
-
-
-