[demangler] Remove StdQualifiedName
authorNathan Sidwell <nathan@acm.org>
Fri, 21 Jan 2022 19:37:01 +0000 (11:37 -0800)
committerNathan Sidwell <nathan@acm.org>
Mon, 7 Feb 2022 15:49:30 +0000 (07:49 -0800)
commit704b21cb4fa5323564779b1a39b577b2481bf677
treee734413f099d119145aa6cd136d342d58183c4aa
parent3d7662142d50e4137332a0aa9d1e7d727aeb5941
[demangler] Remove StdQualifiedName

The StdQualifiedName node class is used for names exactly in the std
namespace.  It is not used for nested names that descend further --
those use a NestedName with NameType("std") as the scope.
Representing the compression scheme in the node graph is layer
breaking.  We can use the same structure for those exactly in std too,
and reduce code size a bit.

Reviewed By: ChuanqiXu

Differential Revision: https://reviews.llvm.org/D118249
libcxxabi/src/demangle/ItaniumDemangle.h
llvm/include/llvm/Demangle/ItaniumDemangle.h
llvm/lib/Demangle/ItaniumDemangle.cpp
llvm/lib/Support/ItaniumManglingCanonicalizer.cpp