From the C++ compiler's point of view, is namespace just a name decoration convention? I have inspected the generated assembly listing and found that everything just looks the same except the identifiers are decorated by the namespace's name.

link|improve this question

71% accept rate
4  
But what else did you expect? :) It's name-space, after all. – Xion Jun 9 '11 at 10:03
1  
Yes. And what is the question? – Christopher Jun 9 '11 at 10:03
feedback

4 Answers

up vote 2 down vote accepted

As you point out, name mangling is part of the story (but the reasons for doing it have more to do with linkers rather than compilers).

However, name mangling is far from the whole story as far as the handling of namespaces in the compiler is concerned. Among other things, the compiler has to be able to figure out unqualified names, which can be non-trivial: see argument-dependent lookup.

link|improve this answer
feedback

As far as I know that's what it is. The desciption can be found under name mangling: http://en.wikipedia.org/wiki/Name_mangling

link|improve this answer
feedback

From the C++ compiler's point of view, is namespace just a name decoration convention?

I think yes. Its just a name decoration at the end.

In order to do that compiler does lots of things. It chooses the correct namespace(s), possibly out of many, when resolving a name.

For example,

namespace X
{
  void f(); //compiler chooses X only when decorating f()
  namespace Y
  {
      void f();  //compiler chooses X and Y when decorating f()
      void g()   //compiler chooses X and Y when decorating g()
      {
          f();    //which f? Compiler decorates it with both X and Y.
          X::f(); //which f? Compiler decorates it with X only.
      }
  }
}
link|improve this answer
Doesn't namespace have a scope of some sort? You could potentially have two classes with the same name, but the namespace prevents collision. – rcapote Jun 9 '11 at 10:06
feedback

It is no coincidence that the first C++ compiler written by Bjarne Stroustrup was called CFront. It converted C++ code to C and fed it to a C compiler. So, I believe it is just name mangling to create unique symbols for overloading & avoid name conflicts (namespace)

link|improve this answer
CFront did not have namespaces. – nbt Jun 9 '11 at 10:37
@neil: I agree but the concept was there as classes with same named functions, hence they needed name mangling since C needs unique function names. – hackworks Jun 9 '11 at 10:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.