Do not emit empty namespaces in abixml
authorDodji Seketeli <dodji@redhat.com>
Mon, 19 Sep 2016 08:40:53 +0000 (10:40 +0200)
committerDodji Seketeli <dodji@redhat.com>
Wed, 21 Sep 2016 16:35:07 +0000 (18:35 +0200)
Today The abixml writer emits namespaces even if they are empty or
contain empty namespaces.  This leads to abixml files that are
unnecessarily big and verbose.  This patch prevents that.

* include/abg-ir.h
(namespace_decl::is_empty_or_has_empty_sub_namespaces): Declare
new function ...
* src/abg-ir.cc
(namespace_decl::is_empty_or_has_empty_sub_namespaces): ... and
define it.
* src/abg-writer.cc (write_namespace_decl): Do not write empty
namespaces or namespaces containing empty namespaces.
* tests/data/test-read-dwarf/test9-pr18818-clang.so.abi: Adjust.
* tests/data/test-read-dwarf/test11-pr18828.so.abi: Adjust.
* tests/data/test-read-dwarf/test12-pr18844.so.abi: Adjust.
* tests/data/test-read-dwarf/test15-pr18892.so.abi: Adjust.
* tests/data/test-read-dwarf/test16-pr18904.so.abi: Adjust.
* tests/data/test-read-dwarf/test17-pr19027.so.abi: Adjust.
* tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi: Adjust.
* tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi: Adjust.
* tests/data/test-read-dwarf/test20-pr19025-libvtkParallelCore-6.1.so.abi: Adjust.
* tests/data/test-read-dwarf/test21-pr19092.so.abi: Adjust.
* tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi: Adjust.
* tests/data/test-read-dwarf/libtest23.so.abi: Adjust.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
16 files changed:
include/abg-ir.h
src/abg-ir.cc
src/abg-writer.cc
tests/data/test-read-dwarf/libtest23.so.abi
tests/data/test-read-dwarf/test10-pr18818-gcc.so.abi
tests/data/test-read-dwarf/test11-pr18828.so.abi
tests/data/test-read-dwarf/test12-pr18844.so.abi
tests/data/test-read-dwarf/test15-pr18892.so.abi
tests/data/test-read-dwarf/test16-pr18904.so.abi
tests/data/test-read-dwarf/test17-pr19027.so.abi
tests/data/test-read-dwarf/test18-pr19037-libvtkRenderingLIC-6.1.so.abi
tests/data/test-read-dwarf/test19-pr19023-libtcmalloc_and_profiler.so.abi
tests/data/test-read-dwarf/test20-pr19025-libvtkParallelCore-6.1.so.abi
tests/data/test-read-dwarf/test21-pr19092.so.abi
tests/data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so.abi
tests/data/test-read-dwarf/test9-pr18818-clang.so.abi

index dd32f47bc32179815d9f55d102a5016825714731..a96c5b7d498ae491a08d2246c326ba8a223d4aa2 100644 (file)
@@ -1602,6 +1602,8 @@ public:
   traverse(ir_node_visitor&);
 
   virtual ~namespace_decl();
+
+  bool is_empty_or_has_empty_sub_namespaces() const;
 };// end class namespace_decl
 
 bool
index 00636dfa51886f69b982850c73caa723b5d6576e..6e3429cc8726e66dad9a83295fe46a9418040a86 100644 (file)
@@ -7949,6 +7949,34 @@ namespace_decl::operator==(const decl_base& o) const
   return scope_decl::operator==(*other);
 }
 
+/// Test if the current namespace_decl is empty or contains empty
+/// namespaces itself.
+///
+/// @return true iff the current namespace_decl is empty or contains
+/// empty itself.
+bool
+namespace_decl::is_empty_or_has_empty_sub_namespaces() const
+{
+  if (is_empty())
+    return true;
+
+  for (declarations::const_iterator i = get_member_decls().begin();
+       i != get_member_decls().end();
+       ++i)
+    {
+      if (!is_namespace(*i))
+       return false;
+
+      namespace_decl_sptr ns = is_namespace(*i);
+      assert(ns);
+
+      if (!ns->is_empty_or_has_empty_sub_namespaces())
+       return false;
+    }
+
+  return true;
+}
+
 /// This implements the ir_traversable_base::traverse pure virtual
 /// function.
 ///
index 834938a7ab5f27add26e3138009e7fd169b89c43..b0702ee5f2733e7d941cf58016112dadcc80b06d 100644 (file)
@@ -1501,7 +1501,7 @@ static bool
 write_namespace_decl(const shared_ptr<namespace_decl> decl,
                     write_context& ctxt, unsigned indent)
 {
-  if (!decl)
+  if (!decl || decl->is_empty_or_has_empty_sub_namespaces())
     return false;
 
   ostream& o = ctxt.get_ostream();
index 98036cfaa7f087a6bd96903c99a7f7d524ba86c4..b7d2841a63b028ac37763f257564c80621ca3a2b 100644 (file)
@@ -13,8 +13,7 @@
   </elf-function-symbols>
   <abi-instr version='1.0' address-size='64' path='test23-first-tu.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='basic_ostream&lt;char, std::char_traits&lt;char&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-1'/>
       <typedef-decl name='ostream' type-id='type-id-1' filepath='/usr/include/c++/4.8.2/iosfwd' line='136' column='1' id='type-id-2'/>
       <var-decl name='cout' type-id='type-id-2' mangled-name='_ZSt4cout' visibility='default' filepath='/usr/include/c++/4.8.2/iostream' line='61' column='1'/>
@@ -92,8 +91,7 @@
         </data-member>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <type-decl name='unsigned int' size-in-bits='32' id='type-id-16'/>
     <typedef-decl name='wint_t' type-id='type-id-16' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h' line='353' column='1' id='type-id-17'/>
     <type-decl name='int' size-in-bits='32' id='type-id-18'/>
     <type-decl name='short int' size-in-bits='16' id='type-id-110'/>
     <qualified-type-def type-id='type-id-110' const='yes' id='type-id-13'/>
     <qualified-type-def type-id='type-id-43' const='yes' id='type-id-15'/>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
+
+
+
+
+
+
+
+
+
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='test23-second-tu.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='basic_ostream&lt;char, std::char_traits&lt;char&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-1'/>
       <var-decl name='cout' type-id='type-id-2' mangled-name='_ZSt4cout' visibility='default' filepath='/usr/include/c++/4.8.2/iostream' line='61' column='1'/>
     </namespace-decl>
         </data-member>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-18'/>
       <return type-id='type-id-17'/>
       <return type-id='type-id-39'/>
     </function-decl>
     <var-decl name='__dso_handle' type-id='type-id-38' visibility='default'/>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
+
+
+
+
+
+
+
+
+
+
   </abi-instr>
 </abi-corpus>
index 0ba09df4b00142213bbed012628b92027f5e2d41..2238f4bbb1e926dbfb5809df058298d865c9cff5 100644 (file)
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/codecvt_error_category.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__detail'>
-      </namespace-decl>
+
+
+
       <class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' size-in-bits='64' visibility='default' filepath='/usr/include/c++/4.9/bits/basic_string.h' line='112' column='1' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='_Alloc_hider' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/include/c++/4.9/bits/basic_string.h' line='272' column='1' id='type-id-2'>
         <parameter type-id='type-id-90'/>
         <return type-id='type-id-91'/>
       </function-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
       <class-decl name='new_allocator&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='58' column='1' id='type-id-43'>
         <member-type access='public'>
           <typedef-decl name='size_type' type-id='type-id-44' filepath='/usr/include/c++/4.9/ext/new_allocator.h' line='61' column='1' id='type-id-92'/>
       <return type-id='type-id-129'/>
     </function-decl>
     <namespace-decl name='boost'>
-      <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-      </namespace-decl>
-      <namespace-decl name='type_traits'>
-      </namespace-decl>
-      <namespace-decl name='detail'>
-      </namespace-decl>
+
+
+
       <namespace-decl name='noncopyable_'>
         <class-decl name='noncopyable' size-in-bits='8' visibility='default' filepath='src/third_party/boost-1.56.0/boost/core/noncopyable.hpp' line='23' column='1' id='type-id-130'>
           <member-function access='protected' constructor='yes'>
         </class-decl>
       </namespace-decl>
       <namespace-decl name='system'>
-        <namespace-decl name='errc'>
-        </namespace-decl>
+
         <class-decl name='error_condition' size-in-bits='128' visibility='default' filepath='src/third_party/boost-1.56.0/boost/system/error_code.hpp' line='230' column='1' id='type-id-134'>
           <member-type access='public'>
             <typedef-decl name='unspecified_bool_type' type-id='type-id-73' filepath='src/third_party/boost-1.56.0/boost/system/error_code.hpp' line='272' column='1' id='type-id-135'/>
         </function-decl>
       </namespace-decl>
       <namespace-decl name='filesystem'>
-        <namespace-decl name='path_traits'>
-        </namespace-decl>
+
         <function-decl name='codecvt_error_category' mangled-name='_ZN5boost10filesystem22codecvt_error_categoryEv' filepath='src/third_party/boost-1.56.0/libs/filesystem/src/codecvt_error_category.cpp' line='77' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost10filesystem22codecvt_error_categoryEv'>
           <return type-id='type-id-138'/>
         </function-decl>
     <pointer-type-def type-id='type-id-134' size-in-bits='64' id='type-id-137'/>
     <pointer-type-def type-id='type-id-159' size-in-bits='64' id='type-id-139'/>
     <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
+
       <class-decl name='int_&lt;3&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/mpl/aux_/integral_wrapper.hpp' line='43' column='1' id='type-id-161'>
         <data-member access='public' static='yes'>
           <var-decl name='value' type-id='type-id-115' mangled-name='_ZN4mpl_4int_ILi3EE5valueE' visibility='default' filepath='src/third_party/boost-1.56.0/boost/mpl/aux_/integral_wrapper.hpp' line='45' column='1'/>
       <parameter type-id='type-id-36'/>
       <return type-id='type-id-127'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-34'/>
       <parameter type-id='type-id-191'/>
       <return type-id='type-id-76'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <var-decl name='__dso_handle' type-id='type-id-75' visibility='default'/>
     <qualified-type-def type-id='type-id-30' const='yes' id='type-id-67'/>
     <qualified-type-def type-id='type-id-65' const='yes' id='type-id-217'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/operations.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__detail'>
-      </namespace-decl>
+
+
+
       <class-decl name='remove_reference&lt;boost::filesystem::filesystem_error::m_imp*&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/include/c++/4.9/type_traits' line='1504' column='1' id='type-id-224'>
         <member-type access='public'>
           <typedef-decl name='type' type-id='type-id-226' filepath='/usr/include/c++/4.9/type_traits' line='1505' column='1' id='type-id-225'/>
     </namespace-decl>
     <namespace-decl name='boost'>
       <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-        <namespace-decl name='placeholders'>
-        </namespace-decl>
+
+
         <class-decl name='if_&lt;boost::detail::use_operator_brackets_proxy&lt;const boost::filesystem::path, const boost::filesystem::path&amp;&gt;, boost::detail::operator_brackets_proxy&lt;boost::filesystem::path::iterator&gt;, const boost::filesystem::path&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/mpl/if.hpp' line='55' column='1' id='type-id-318'>
           <member-type access='public'>
             <typedef-decl name='type' type-id='type-id-320' filepath='src/third_party/boost-1.56.0/boost/mpl/if.hpp' line='70' column='1' id='type-id-319'/>
           </member-type>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name='type_traits'>
-      </namespace-decl>
+
       <namespace-decl name='detail'>
-        <namespace-decl name='indirect_traits'>
-        </namespace-decl>
+
         <function-decl name='atomic_exchange_and_add' mangled-name='_ZN5boost6detail23atomic_exchange_and_addEPii' filepath='src/third_party/boost-1.56.0/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost6detail23atomic_exchange_and_addEPii'>
           <parameter type-id='type-id-328'/>
           <parameter type-id='type-id-36'/>
         </member-type>
       </class-decl>
       <namespace-decl name='system'>
-        <namespace-decl name='errc'>
-        </namespace-decl>
+
         <function-decl name='system_category' mangled-name='_ZN5boost6system15system_categoryEv' filepath='src/third_party/boost-1.56.0/boost/system/error_code.hpp' line='212' column='1' visibility='default' binding='global' size-in-bits='64'>
           <return type-id='type-id-138'/>
         </function-decl>
           </member-type>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name='exception_detail'>
-      </namespace-decl>
-      <namespace-decl name='io'>
-      </namespace-decl>
-      <namespace-decl name='type_traits_detail'>
-      </namespace-decl>
+
+
+
       <function-decl name='addressof&lt;boost::filesystem::directory_entry&gt;' filepath='src/third_party/boost-1.56.0/boost/core/addressof.hpp' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-341'/>
         <return type-id='type-id-340'/>
         <parameter type-id='type-id-90'/>
         <return type-id='type-id-91'/>
       </function-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
       <function-decl name='__is_null_pointer&lt;char&gt;' mangled-name='_ZN9__gnu_cxx17__is_null_pointerIcEEbPT_' filepath='/usr/include/c++/4.9/ext/type_traits.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx17__is_null_pointerIcEEbPT_'>
         <parameter type-id='type-id-4'/>
         <return type-id='type-id-30'/>
       <return type-id='type-id-129'/>
     </function-decl>
     <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
+
       <class-decl name='bool_&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/mpl/bool.hpp' line='23' column='1' id='type-id-543'>
         <data-member access='public' static='yes'>
           <var-decl name='value' type-id='type-id-67' mangled-name='_ZN4mpl_5bool_ILb1EE5valueE' visibility='default' filepath='src/third_party/boost-1.56.0/boost/mpl/bool.hpp' line='25' column='1'/>
       <parameter type-id='type-id-36'/>
       <return type-id='type-id-127'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-34'/>
       <parameter type-id='type-id-191'/>
       <return type-id='type-id-76'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-75'/>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-34'/>
       <return type-id='type-id-34'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <qualified-type-def type-id='type-id-341' id='type-id-381'/>
     <pointer-type-def type-id='type-id-380' size-in-bits='64' id='type-id-382'/>
     <qualified-type-def type-id='type-id-380' const='yes' id='type-id-559'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/path.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__detail'>
-      </namespace-decl>
+
+
+
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char const*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-20'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-22'/>
       <function-decl name='operator&lt; &lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' mangled-name='_ZStltIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_ES8_' filepath='/usr/include/c++/4.9/bits/basic_string.h' line='2588' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZStltIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_ES8_'>
         <parameter type-id='type-id-90'/>
         <return type-id='type-id-91'/>
       </function-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
       <function-decl name='__is_null_pointer&lt;char const&gt;' mangled-name='_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_' filepath='/usr/include/c++/4.9/ext/type_traits.h' line='150' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN9__gnu_cxx17__is_null_pointerIKcEEbPT_'>
         <parameter type-id='type-id-34'/>
         <return type-id='type-id-30'/>
     </function-decl>
     <namespace-decl name='boost'>
       <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-        <namespace-decl name='placeholders'>
-        </namespace-decl>
-      </namespace-decl>
-      <namespace-decl name='type_traits'>
+
+
       </namespace-decl>
+
       <namespace-decl name='detail'>
-        <namespace-decl name='indirect_traits'>
-        </namespace-decl>
+
         <class-decl name='operator_brackets_proxy&lt;boost::filesystem::path::iterator&gt;' visibility='default' is-declaration-only='yes' id='type-id-322'/>
         <class-decl name='addr_impl_ref&lt;const boost::filesystem::path&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/core/addressof.hpp' line='25' column='1' id='type-id-580'>
           <data-member access='public' layout-offset-in-bits='0'>
       <namespace-decl name='noncopyable_'>
       </namespace-decl>
       <namespace-decl name='system'>
-        <namespace-decl name='errc'>
-        </namespace-decl>
+
       </namespace-decl>
       <namespace-decl name='filesystem'>
         <namespace-decl name='path_traits'>
       </namespace-decl>
       <namespace-decl name='iterators'>
       </namespace-decl>
-      <namespace-decl name='exception_detail'>
-      </namespace-decl>
-      <namespace-decl name='core'>
-      </namespace-decl>
-      <namespace-decl name='io'>
-      </namespace-decl>
-      <namespace-decl name='type_traits_detail'>
-      </namespace-decl>
+
+
+
+
       <function-decl name='addressof&lt;const boost::filesystem::path&gt;' filepath='src/third_party/boost-1.56.0/boost/core/addressof.hpp' line='108' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-335'/>
         <return type-id='type-id-334'/>
       </function-decl>
     </namespace-decl>
     <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
+
     </namespace-decl>
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-36'/>
       <return type-id='type-id-127'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-34'/>
       <parameter type-id='type-id-191'/>
       <return type-id='type-id-76'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-75'/>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-34'/>
       <return type-id='type-id-34'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <qualified-type-def type-id='type-id-335' id='type-id-581'/>
     <pointer-type-def type-id='type-id-580' size-in-bits='64' id='type-id-582'/>
     <qualified-type-def type-id='type-id-580' const='yes' id='type-id-587'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/path_traits.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__detail'>
-      </namespace-decl>
+
+
+
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;wchar_t const*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-247'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-249'/>
       <class-decl name='codecvt&lt;wchar_t, char, __mbstate_t&gt;' visibility='default' is-declaration-only='yes' id='type-id-229'/>
         <parameter type-id='type-id-90'/>
         <return type-id='type-id-91'/>
       </function-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
     </namespace-decl>
     <function-decl name='lldiv' filepath='/usr/include/stdlib.h' line='796' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-90'/>
       <return type-id='type-id-129'/>
     </function-decl>
     <namespace-decl name='boost'>
-      <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-      </namespace-decl>
-      <namespace-decl name='type_traits'>
-      </namespace-decl>
-      <namespace-decl name='detail'>
-      </namespace-decl>
+
+
+
       <namespace-decl name='noncopyable_'>
       </namespace-decl>
       <namespace-decl name='system'>
-        <namespace-decl name='errc'>
-        </namespace-decl>
+
       </namespace-decl>
       <namespace-decl name='filesystem'>
         <namespace-decl name='path_traits'>
     </namespace-decl>
     <reference-type-def kind='lvalue' type-id='type-id-279' size-in-bits='64' id='type-id-607'/>
     <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
+
     </namespace-decl>
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-36'/>
       <return type-id='type-id-127'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-34'/>
       <parameter type-id='type-id-34'/>
       <return type-id='type-id-34'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <qualified-type-def type-id='type-id-590' const='yes' id='type-id-613'/>
     <pointer-type-def type-id='type-id-613' size-in-bits='64' id='type-id-596'/>
     <reference-type-def kind='lvalue' type-id='type-id-593' size-in-bits='64' id='type-id-597'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/portability.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__detail'>
-      </namespace-decl>
+
+
+
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char const*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-20'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-22'/>
       <function-decl name='operator==&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' mangled-name='_ZSteqIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_EPKS3_' filepath='/usr/include/c++/4.9/bits/basic_string.h' line='2538' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSteqIcSt11char_traitsIcESaIcEEbRKSbIT_T0_T1_EPKS3_'>
         <parameter type-id='type-id-90'/>
         <return type-id='type-id-91'/>
       </function-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
     </namespace-decl>
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='519' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-73'/>
       <return type-id='type-id-129'/>
     </function-decl>
     <namespace-decl name='boost'>
-      <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-        <namespace-decl name='placeholders'>
-        </namespace-decl>
-      </namespace-decl>
-      <namespace-decl name='type_traits'>
-      </namespace-decl>
-      <namespace-decl name='detail'>
-        <namespace-decl name='indirect_traits'>
-        </namespace-decl>
-      </namespace-decl>
+
+
+
       <namespace-decl name='noncopyable_'>
       </namespace-decl>
       <namespace-decl name='system'>
-        <namespace-decl name='errc'>
-        </namespace-decl>
+
       </namespace-decl>
       <namespace-decl name='filesystem'>
-        <namespace-decl name='path_traits'>
-        </namespace-decl>
+
         <function-decl name='native' mangled-name='_ZN5boost10filesystem6nativeERKSs' filepath='src/third_party/boost-1.56.0/libs/filesystem/src/portability.cpp' line='61' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost10filesystem6nativeERKSs'>
           <parameter type-id='type-id-425'/>
           <return type-id='type-id-30'/>
           <return type-id='type-id-30'/>
         </function-decl>
       </namespace-decl>
-      <namespace-decl name='iterators'>
-      </namespace-decl>
-      <namespace-decl name='exception_detail'>
-      </namespace-decl>
-      <namespace-decl name='core'>
-      </namespace-decl>
-      <namespace-decl name='io'>
-      </namespace-decl>
-      <namespace-decl name='type_traits_detail'>
-      </namespace-decl>
+
+
+
+
+
     </namespace-decl>
     <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
+
     </namespace-decl>
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-36'/>
       <return type-id='type-id-127'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-34'/>
       <parameter type-id='type-id-191'/>
       <return type-id='type-id-76'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-75'/>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-34'/>
       <return type-id='type-id-34'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <var-decl name='__dso_handle' type-id='type-id-75' visibility='default'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/unique_path.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__detail'>
-      </namespace-decl>
+
+
+
       <var-decl name='nothrow' type-id='type-id-311' mangled-name='_ZSt7nothrow' visibility='default' filepath='/usr/include/c++/4.9/new' line='101' column='1'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;wchar_t const*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-247'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-249'/>
         <parameter type-id='type-id-90'/>
         <return type-id='type-id-91'/>
       </function-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
     </namespace-decl>
     <function-decl name='lldiv' filepath='/usr/include/stdlib.h' line='796' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-90'/>
     </function-decl>
     <namespace-decl name='boost'>
       <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-        <namespace-decl name='placeholders'>
-        </namespace-decl>
-      </namespace-decl>
-      <namespace-decl name='type_traits'>
+
+
       </namespace-decl>
+
       <namespace-decl name='detail'>
-        <namespace-decl name='indirect_traits'>
-        </namespace-decl>
+
         <class-decl name='operator_brackets_proxy&lt;boost::filesystem::path::iterator&gt;' visibility='default' is-declaration-only='yes' id='type-id-322'/>
       </namespace-decl>
       <namespace-decl name='noncopyable_'>
       </namespace-decl>
       <namespace-decl name='system'>
-        <namespace-decl name='errc'>
-        </namespace-decl>
+
       </namespace-decl>
       <namespace-decl name='filesystem'>
         <namespace-decl name='path_traits'>
         </namespace-decl>
       </namespace-decl>
       <class-decl name='enable_if_c&lt;true, void&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/core/enable_if.hpp' line='28' column='1' id='type-id-618'/>
-      <namespace-decl name='iterators'>
-      </namespace-decl>
-      <namespace-decl name='exception_detail'>
-      </namespace-decl>
-      <namespace-decl name='core'>
-      </namespace-decl>
-      <namespace-decl name='io'>
-      </namespace-decl>
-      <namespace-decl name='type_traits_detail'>
-      </namespace-decl>
+
+
+
+
+
     </namespace-decl>
     <reference-type-def kind='lvalue' type-id='type-id-426' size-in-bits='64' id='type-id-617'/>
     <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
+
     </namespace-decl>
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-36'/>
       <return type-id='type-id-127'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-34'/>
       <parameter type-id='type-id-191'/>
       <return type-id='type-id-76'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='78' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-75'/>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-34'/>
       <return type-id='type-id-34'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/utf8_codecvt_facet.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <class-decl name='codecvt&lt;wchar_t, char, __mbstate_t&gt;' visibility='default' is-declaration-only='yes' id='type-id-229'/>
       <class-decl name='numeric_limits&lt;wchar_t&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/include/c++/4.9/limits' line='650' column='1' id='type-id-619'>
         <data-member access='public' static='yes'>
         <parameter type-id='type-id-90'/>
         <return type-id='type-id-91'/>
       </function-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
     </namespace-decl>
     <function-decl name='lldiv' filepath='/usr/include/stdlib.h' line='796' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-90'/>
       <parameter type-id='type-id-36'/>
       <return type-id='type-id-127'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='clearerr' filepath='/usr/include/stdio.h' line='826' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-197'/>
       <return type-id='type-id-7'/>
       <parameter type-id='type-id-191'/>
       <return type-id='type-id-76'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <namespace-decl name='boost'>
       <namespace-decl name='filesystem'>
         <namespace-decl name='detail'>
     <qualified-type-def type-id='type-id-623' const='yes' id='type-id-621'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/windows_file_codecvt.cpp' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='519' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-73'/>
       <return type-id='type-id-36'/>
index 62aa4d6601900b464cc37e6d7c99ed2c845315c4..c0b2d4a810f155dbf3c2d58808aedb57095cf732 100644 (file)
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='src/mongo/db/auth/sasl_options.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <namespace-decl name='__detail'>
         <class-decl name='_List_node_base' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/include/c++/4.9/bits/stl_list.h' line='77' column='1' id='type-id-1'>
           <data-member access='public' layout-offset-in-bits='0'>
         </class-decl>
         <typedef-decl name='seconds' type-id='type-id-172' filepath='/usr/include/c++/4.9/chrono' line='536' column='1' id='type-id-179'/>
       </namespace-decl>
-      <namespace-decl name='placeholders'>
-      </namespace-decl>
+
       <enum-decl name='_Ios_Openmode' id='type-id-180'>
         <underlying-type type-id='type-id-181'/>
         <enumerator name='_S_app' value='1'/>
     </namespace-decl>
     <type-decl name='unnamed-enum-underlying-type' is-anonymous='yes' size-in-bits='32' alignment-in-bits='32' id='type-id-181'/>
     <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
       <function-decl name='div' mangled-name='_ZN9__gnu_cxx3divExx' filepath='/usr/include/c++/4.9/cstdlib' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-1887'/>
         <parameter type-id='type-id-1887'/>
     <reference-type-def kind='lvalue' type-id='type-id-246' size-in-bits='64' id='type-id-248'/>
     <reference-type-def kind='rvalue' type-id='type-id-250' size-in-bits='64' id='type-id-251'/>
     <namespace-decl name='mongo'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <namespace-decl name='optionenvironment'>
         <class-decl name='OptionSection' size-in-bits='320' visibility='default' filepath='src/mongo/util/options_parser/option_section.h' line='77' column='1' id='type-id-259'>
           <data-member access='private' layout-offset-in-bits='0'>
           </member-function>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name='stdx'>
-      </namespace-decl>
+
       <function-decl name='intrusive_ptr_release' mangled-name='_ZN5mongo21intrusive_ptr_releaseEPNS_12SharedBuffer6HolderE' filepath='src/mongo/util/shared_buffer.h' line='93' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5mongo21intrusive_ptr_releaseEPNS_12SharedBuffer6HolderE'>
         <parameter type-id='type-id-2285'/>
         <return type-id='type-id-4'/>
     <qualified-type-def type-id='type-id-2284' const='yes' id='type-id-2654'/>
     <pointer-type-def type-id='type-id-2654' size-in-bits='64' id='type-id-2286'/>
     <namespace-decl name='boost'>
-      <namespace-decl name='exception_detail'>
-      </namespace-decl>
-      <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-        <namespace-decl name='placeholders'>
-        </namespace-decl>
-      </namespace-decl>
+
+
       <namespace-decl name='type_traits'>
         <class-decl name='ice_eq&lt;8, 16&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/type_traits/detail/ice_eq.hpp' line='17' column='1' id='type-id-2655'>
           <data-member access='public' static='yes'>
         </class-decl>
       </namespace-decl>
       <namespace-decl name='detail'>
-        <namespace-decl name='function'>
-        </namespace-decl>
-        <namespace-decl name='has_left_shift_impl'>
-        </namespace-decl>
-        <namespace-decl name='has_right_shift_impl'>
-        </namespace-decl>
-        <namespace-decl name='indirect_traits'>
-        </namespace-decl>
-        <namespace-decl name='aligned_storage'>
-        </namespace-decl>
+
+
+
+
+
         <class-decl name='integer_traits_base&lt;signed char, -128, 127&gt;' size-in-bits='8' visibility='default' filepath='src/third_party/boost-1.56.0/boost/integer_traits.hpp' line='52' column='1' id='type-id-2656'>
           <data-member access='public' static='yes'>
             <var-decl name='is_integral' type-id='type-id-147' visibility='default' filepath='src/third_party/boost-1.56.0/boost/integer_traits.hpp' line='55' column='1'/>
           </data-member>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name='tt_align_ns'>
-      </namespace-decl>
-      <namespace-decl name='move_detail'>
-      </namespace-decl>
-      <namespace-decl name='optional_detail'>
-      </namespace-decl>
-      <namespace-decl name='date_time'>
-      </namespace-decl>
-      <namespace-decl name='CV'>
-      </namespace-decl>
-      <namespace-decl name='gregorian'>
-      </namespace-decl>
-      <namespace-decl name='core'>
-      </namespace-decl>
-      <namespace-decl name='posix_time'>
-      </namespace-decl>
+
+
+
+
+
+
+
+
       <namespace-decl name='program_options'>
-        <namespace-decl name='validators'>
-        </namespace-decl>
-        <namespace-decl name='command_line_style'>
-        </namespace-decl>
-        <namespace-decl name='detail'>
-        </namespace-decl>
+
+
+
         <var-decl name='arg' type-id='type-id-255' mangled-name='_ZN5boost15program_options3argE' visibility='default' filepath='src/third_party/boost-1.56.0/boost/program_options/detail/value_semantic.hpp' line='13' column='1'/>
         <class-decl name='options_description' size-in-bits='832' visibility='default' filepath='src/third_party/boost-1.56.0/boost/program_options/options_description.hpp' line='173' column='1' id='type-id-2672'>
           <data-member access='public' static='yes'>
           </member-function>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name='numeric'>
-        <namespace-decl name='convdetail'>
-        </namespace-decl>
-      </namespace-decl>
-      <namespace-decl name='math'>
-        <namespace-decl name='tools'>
-        </namespace-decl>
-        <namespace-decl name='policies'>
-          <namespace-decl name='detail'>
-          </namespace-decl>
-        </namespace-decl>
-        <namespace-decl name='detail'>
-        </namespace-decl>
-      </namespace-decl>
-      <namespace-decl name='iterators'>
-      </namespace-decl>
-      <namespace-decl name='range_adl_barrier'>
-      </namespace-decl>
-      <namespace-decl name='range_detail'>
-      </namespace-decl>
-      <namespace-decl name='concepts'>
-      </namespace-decl>
-      <namespace-decl name='noncopyable_'>
-      </namespace-decl>
-      <namespace-decl name='iterator_range_detail'>
-      </namespace-decl>
-      <namespace-decl name='intrusive'>
-      </namespace-decl>
-      <namespace-decl name='container'>
-        <namespace-decl name='container_detail'>
-        </namespace-decl>
-        <namespace-decl name='container_detail_really_deep_namespace'>
-        </namespace-decl>
-      </namespace-decl>
-      <namespace-decl name='type_traits_detail'>
-      </namespace-decl>
+
+
+
+
+
+
+
+
+
+
+
       <class-decl name='intrusive_ptr&lt;mongo::SharedBuffer::Holder&gt;' size-in-bits='64' visibility='default' filepath='src/third_party/boost-1.56.0/boost/smart_ptr/intrusive_ptr.hpp' line='52' column='1' id='type-id-2287'>
         <data-member access='private' layout-offset-in-bits='0'>
           <var-decl name='px' type-id='type-id-2285' visibility='default' filepath='src/third_party/boost-1.56.0/boost/smart_ptr/intrusive_ptr.hpp' line='190' column='1'/>
     <reference-type-def kind='lvalue' type-id='type-id-250' size-in-bits='64' id='type-id-1693'/>
     <qualified-type-def type-id='type-id-691' const='yes' id='type-id-1694'/>
     <pointer-type-def type-id='type-id-2894' size-in-bits='64' id='type-id-1695'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <typedef-decl name='wint_t' type-id='type-id-616' filepath='/usr/lib/gcc/x86_64-linux-gnu/4.9/include/stddef.h' line='353' column='1' id='type-id-2895'/>
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-160'/>
       <return type-id='type-id-2943'/>
     </function-decl>
     <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
+
       <class-decl name='bool_&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/mpl/bool.hpp' line='23' column='1' id='type-id-2948'>
         <data-member access='public' static='yes'>
           <var-decl name='value' type-id='type-id-147' mangled-name='_ZN4mpl_5bool_ILb1EE5valueE' visibility='default' filepath='src/third_party/boost-1.56.0/boost/mpl/bool.hpp' line='25' column='1'/>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <typedef-decl name='__clock_t' type-id='type-id-157' filepath='/usr/include/x86_64-linux-gnu/bits/types.h' line='135' column='1' id='type-id-2988'/>
     <typedef-decl name='clock_t' type-id='type-id-2988' filepath='/usr/include/time.h' line='59' column='1' id='type-id-2989'/>
     <function-decl name='clock' filepath='/usr/include/time.h' line='189' column='1' visibility='default' binding='global' size-in-bits='64'>
index 90dd9b2fb5ab551ca70fca6660213ff86d400410..4ffe7f8e6266374713c4a6a55c3bfe77be532d4a 100644 (file)
           <typedef-decl name='type' type-id='type-id-7' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/type_traits' line='1954' column='1' id='type-id-20'/>
         </member-type>
       </class-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
       <namespace-decl name='__detail'>
         <class-decl name='_List_node_base' size-in-bits='128' is-struct='yes' visibility='default' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/bits/stl_list.h' line='77' column='1' id='type-id-44'>
           <data-member access='public' layout-offset-in-bits='0'>
           </member-function>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='placeholders'>
-      </namespace-decl>
-      <namespace-decl name='this_thread'>
-      </namespace-decl>
+
+
+
       <class-decl name='_Bind_helper&lt;false, mongo::OperationContext *(mongo::repl::StorageInterface::*)(), mongo::repl::StorageInterface *&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/functional' line='1601' column='1' id='type-id-187'>
         <member-type access='public'>
           <typedef-decl name='type' type-id='type-id-189' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/functional' line='1606' column='1' id='type-id-188'/>
         </member-function>
       </class-decl>
       <namespace-decl name='repl'>
-        <namespace-decl name=''>
-        </namespace-decl>
+
         <class-decl name='ReplicationExecutor' size-in-bits='7488' visibility='default' filepath='src/mongo/db/repl/replication_executor.h' line='92' column='1' id='type-id-2527'>
           <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2528'/>
           <member-type access='private'>
         <typedef-decl name='thread' type-id='type-id-501' filepath='src/mongo/stdx/thread.h' line='36' column='1' id='type-id-2544'/>
         <typedef-decl name='condition_variable' type-id='type-id-596' filepath='src/mongo/stdx/condition_variable.h' line='36' column='1' id='type-id-2533'/>
       </namespace-decl>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='SharedBuffer' size-in-bits='64' visibility='default' filepath='src/mongo/util/shared_buffer.h' line='37' column='1' id='type-id-1797'>
         <member-type access='private'>
           <class-decl name='Holder' size-in-bits='32' visibility='default' filepath='src/mongo/util/shared_buffer.h' line='83' column='1' id='type-id-2581'>
     <reference-type-def kind='lvalue' type-id='type-id-2451' size-in-bits='64' id='type-id-2456'/>
     <pointer-type-def type-id='type-id-2848' size-in-bits='64' id='type-id-2457'/>
     <namespace-decl name='boost'>
-      <namespace-decl name='date_time'>
-      </namespace-decl>
+
       <namespace-decl name='optional_detail'>
         <function-decl name='prevent_binding_rvalue_ref_to_optional_lvalue_ref&lt;mongo::executor::TaskExecutor::CallbackHandle, mongo::executor::TaskExecutor::CallbackHandle &amp;&amp;&gt;' mangled-name='_ZN5boost15optional_detail49prevent_binding_rvalue_ref_to_optional_lvalue_refIN5mongo8executor12TaskExecutor14CallbackHandleEOS5_EEvv' filepath='src/third_party/boost-1.56.0/boost/optional/optional.hpp' line='192' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost15optional_detail49prevent_binding_rvalue_ref_to_optional_lvalue_refIN5mongo8executor12TaskExecutor14CallbackHandleEOS5_EEvv'>
           <return type-id='type-id-11'/>
           </member-function>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name='tt_align_ns'>
-      </namespace-decl>
+
       <namespace-decl name='detail'>
         <class-decl name='make_reference_content&lt;mongo::executor::RemoteCommandResponse&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/detail/reference_content.hpp' line='78' column='1' id='type-id-2938'>
           <member-type access='public'>
       <namespace-decl name='move_detail'>
         <class-decl name='enable_if_c&lt;true, void&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/move/detail/meta_utils.hpp' line='45' column='1' id='type-id-2941'/>
       </namespace-decl>
-      <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-      </namespace-decl>
-      <namespace-decl name='gregorian'>
-      </namespace-decl>
-      <namespace-decl name='posix_time'>
-      </namespace-decl>
+
+
+
       <class-decl name='optional&lt;mongo::executor::RemoteCommandResponse&gt;' size-in-bits='384' visibility='default' filepath='src/third_party/boost-1.56.0/boost/optional/optional.hpp' line='749' column='1' id='type-id-2706'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-2849'/>
         <member-type access='private'>
     <reference-type-def kind='rvalue' type-id='type-id-2849' size-in-bits='64' id='type-id-2871'/>
     <pointer-type-def type-id='type-id-3179' size-in-bits='64' id='type-id-2872'/>
     <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
+
       <class-decl name='bool_&lt;false&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/mpl/bool.hpp' line='23' column='1' id='type-id-3180'>
         <data-member access='public' static='yes'>
           <var-decl name='value' type-id='type-id-4' visibility='default' filepath='src/third_party/boost-1.56.0/boost/mpl/bool.hpp' line='25' column='1'/>
         </class-decl>
       </namespace-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <typedef-decl name='wint_t' type-id='type-id-308' filepath='/usr/lib/llvm-3.6/bin/../lib/clang/3.6.0/include/stddef.h' line='132' column='1' id='type-id-3312'/>
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-15'/>
       <parameter type-id='type-id-240'/>
       <return type-id='type-id-3373'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-3378' size-in-bits='64' id='type-id-2086'/>
     <pointer-type-def type-id='type-id-2083' size-in-bits='64' id='type-id-2087'/>
     <qualified-type-def type-id='type-id-2083' const='yes' id='type-id-3379'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/mongo/db/repl/scatter_gather_algorithm.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
       <namespace-decl name='chrono'>
         <namespace-decl name='_V2'>
         </namespace-decl>
       </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='placeholders'>
-      </namespace-decl>
-      <namespace-decl name='this_thread'>
-      </namespace-decl>
+
+
+
       <class-decl name='vector&lt;mongo::executor::RemoteCommandRequest, std::allocator&lt;mongo::executor::RemoteCommandRequest&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-3760'/>
       <class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-56'/>
       <class-decl name='set&lt;std::basic_string&lt;char&gt;, std::less&lt;std::basic_string&lt;char&gt; &gt;, std::allocator&lt;std::basic_string&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-1150'/>
       </function-decl>
     </namespace-decl>
     <namespace-decl name='boost'>
-      <namespace-decl name='date_time'>
-      </namespace-decl>
+
       <namespace-decl name='optional_detail'>
       </namespace-decl>
-      <namespace-decl name='tt_align_ns'>
-      </namespace-decl>
+
       <namespace-decl name='detail'>
       </namespace-decl>
-      <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-      </namespace-decl>
-      <namespace-decl name='gregorian'>
-      </namespace-decl>
-      <namespace-decl name='posix_time'>
-      </namespace-decl>
+
+
+
     </namespace-decl>
     <namespace-decl name='mongo'>
       <namespace-decl name='repl'>
           </member-type>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name=''>
-      </namespace-decl>
-      <namespace-decl name='stdx'>
-      </namespace-decl>
+
+
       <class-decl name='StatusWith&lt;mongo::HostAndPort&gt;' visibility='default' is-declaration-only='yes' id='type-id-2604'/>
     </namespace-decl>
     <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
+
     </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-15'/>
       <return type-id='type-id-3312'/>
       <parameter type-id='type-id-240'/>
       <return type-id='type-id-3373'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <qualified-type-def type-id='type-id-3662' const='yes' id='type-id-3764'/>
     <pointer-type-def type-id='type-id-3764' size-in-bits='64' id='type-id-3761'/>
     <qualified-type-def type-id='type-id-3763' const='yes' id='type-id-3765'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/mongo/db/repl/scatter_gather_runner.cpp' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
       <namespace-decl name='chrono'>
         <namespace-decl name='_V2'>
         </namespace-decl>
       </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='placeholders'>
-      </namespace-decl>
-      <namespace-decl name='this_thread'>
-      </namespace-decl>
+
+
+
       <class-decl name='_Bind_helper&lt;false, void (&amp;)(const mongo::executor::TaskExecutor::CallbackArgs &amp;, mongo::repl::ScatterGatherRunner *, mongo::StatusWith&lt;mongo::executor::TaskExecutor::EventHandle&gt; *), const std::_Placeholder&lt;1&gt; &amp;, mongo::repl::ScatterGatherRunner *, mongo::StatusWith&lt;mongo::executor::TaskExecutor::EventHandle&gt; *&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/functional' line='1601' column='1' id='type-id-3766'>
         <member-type access='public'>
           <typedef-decl name='type' type-id='type-id-1434' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/functional' line='1606' column='1' id='type-id-3767'/>
       </namespace-decl>
       <namespace-decl name='repl'>
       </namespace-decl>
-      <namespace-decl name=''>
-      </namespace-decl>
-      <namespace-decl name='stdx'>
-      </namespace-decl>
+
+
       <class-decl name='ObjScopeGuardImpl1&lt;mongo::repl::ScatterGatherRunner, void (mongo::repl::ScatterGatherRunner::*)(mongo::repl::ReplicationExecutor *), mongo::repl::ReplicationExecutor *&gt;' size-in-bits='320' visibility='default' filepath='src/mongo/util/scopeguard.h' line='277' column='1' id='type-id-3997'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-3998'/>
         <data-member access='protected' layout-offset-in-bits='64'>
     <pointer-type-def type-id='type-id-4005' size-in-bits='64' id='type-id-4003'/>
     <reference-type-def kind='lvalue' type-id='type-id-3997' size-in-bits='64' id='type-id-4004'/>
     <namespace-decl name='boost'>
-      <namespace-decl name='date_time'>
-      </namespace-decl>
+
       <namespace-decl name='optional_detail'>
       </namespace-decl>
-      <namespace-decl name='tt_align_ns'>
-      </namespace-decl>
+
       <namespace-decl name='detail'>
       </namespace-decl>
-      <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-      </namespace-decl>
-      <namespace-decl name='gregorian'>
-      </namespace-decl>
-      <namespace-decl name='posix_time'>
-      </namespace-decl>
+
+
+
       <class-decl name='remove_reference&lt;boost::optional&lt;mongo::executor::TaskExecutor::EventHandle&gt; &amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/type_traits/remove_reference.hpp' line='42' column='1' id='type-id-4006'>
         <member-type access='public'>
           <typedef-decl name='type' type-id='type-id-2711' filepath='src/third_party/boost-1.56.0/boost/type_traits/remove_reference.hpp' line='42' column='1' id='type-id-4007'/>
       </function-decl>
     </namespace-decl>
     <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
+
     </namespace-decl>
     <reference-type-def kind='rvalue' type-id='type-id-4007' size-in-bits='64' id='type-id-4008'/>
     <namespace-decl name='__gnu_cxx'>
     <reference-type-def kind='rvalue' type-id='type-id-3907' size-in-bits='64' id='type-id-3908'/>
     <reference-type-def kind='rvalue' type-id='type-id-3910' size-in-bits='64' id='type-id-3911'/>
     <reference-type-def kind='lvalue' type-id='type-id-3913' size-in-bits='64' id='type-id-3914'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-15'/>
       <return type-id='type-id-3312'/>
       <parameter type-id='type-id-240'/>
       <return type-id='type-id-3373'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-3957' size-in-bits='64' id='type-id-3967'/>
     <reference-type-def kind='lvalue' type-id='type-id-3975' size-in-bits='64' id='type-id-3973'/>
     <reference-type-def kind='lvalue' type-id='type-id-4020' size-in-bits='64' id='type-id-4021'/>
index 1f3bceed884d410a675205452e64dd6c3381d51d..d1550e00fc9f1f56883f78bfbc92a4a9da9ecfe3 100644 (file)
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/sanitizer_common/sanitizer_symbolizer_libbacktrace.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__sanitizer'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <var-decl name='SanitizerToolName' type-id='type-id-1' mangled-name='_ZN11__sanitizer17SanitizerToolNameE' visibility='default' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_common.h' line='36' column='1'/>
       <function-decl name='InternalAlloc' mangled-name='_ZN11__sanitizer13InternalAllocEmPNS_28SizeClassAllocatorLocalCacheINS_20SizeClassAllocator32ILm0ELy140737488355328ELm16ENS_12SizeClassMapILm17ELm64ELm14EEELm24ENS_15TwoLevelByteMapILy2048ELy4096ENS_20NoOpMapUnmapCallbackEEES5_EEEE' filepath='../../.././libsanitizer/sanitizer_common/sanitizer_allocator_internal.h' line='60' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-3'/>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/interception/interception_linux.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='__sanitizer'>
-    </namespace-decl>
+
     <namespace-decl name='__interception'>
       <function-decl name='GetRealFunctionAddress' mangled-name='_ZN14__interception22GetRealFunctionAddressEPKcPmmm' filepath='../../.././libsanitizer/interception/interception_linux.cc' line='19' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-1'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/interception/interception_type_test.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='__sanitizer'>
-    </namespace-decl>
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libsanitizer/libbacktrace/../../libbacktrace/atomic.c' language='LANG_C89'>
     <var-decl name='stdin' type-id='type-id-502' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
index 3dbc242e4f10958de9f83395fd479bc2f0eb1af1..377250bb0d18f1230d76ec2333f1b7a3b5a341e0 100644 (file)
     <qualified-type-def type-id='type-id-15' const='yes' id='type-id-20'/>
     <pointer-type-def type-id='type-id-20' size-in-bits='64' id='type-id-21'/>
     <var-decl name='_sys_nerr' type-id='type-id-3' visibility='default' filepath='/usr/include/bits/sys_errlist.h' line='30' column='1'/>
-    <namespace-decl name='std'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-    </namespace-decl>
+
+
     <typedef-decl name='ptrdiff_t' type-id='type-id-17' filepath='/export/users/iverbin/gcc_build_host/gcc/include/stddef.h' line='149' column='1' id='type-id-22'/>
     <pointer-type-def type-id='type-id-23' size-in-bits='64' id='type-id-24'/>
     <var-decl name='__morecore' type-id='type-id-24' visibility='default' filepath='/usr/include/malloc.h' line='71' column='1'/>
     <qualified-type-def type-id='type-id-38' volatile='yes' id='type-id-39'/>
     <var-decl name='__memalign_hook' type-id='type-id-39' visibility='default' filepath='/usr/include/malloc.h' line='160' column='1'/>
     <var-decl name='__after_morecore_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='164' column='1'/>
-    <namespace-decl name='__offload'>
-    </namespace-decl>
+
     <array-type-def dimensions='1' type-id='type-id-4' size-in-bits='128' id='type-id-40'>
       <subrange length='2'/>
     </array-type-def>
     <var-decl name='stderr' type-id='type-id-6' visibility='default' filepath='/usr/include/stdio.h' line='170' column='1'/>
     <var-decl name='sys_nerr' type-id='type-id-3' visibility='default' filepath='/usr/include/bits/sys_errlist.h' line='26' column='1'/>
     <var-decl name='_sys_nerr' type-id='type-id-3' visibility='default' filepath='/usr/include/bits/sys_errlist.h' line='30' column='1'/>
-    <namespace-decl name='std'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-    </namespace-decl>
+
+
     <var-decl name='__morecore' type-id='type-id-24' visibility='default' filepath='/usr/include/malloc.h' line='71' column='1'/>
     <var-decl name='__malloc_initialize_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='147' column='1'/>
     <var-decl name='__free_hook' type-id='type-id-30' visibility='default' filepath='/usr/include/malloc.h' line='150' column='1'/>
     <var-decl name='__realloc_hook' type-id='type-id-36' visibility='default' filepath='/usr/include/malloc.h' line='156' column='1'/>
     <var-decl name='__memalign_hook' type-id='type-id-39' visibility='default' filepath='/usr/include/malloc.h' line='160' column='1'/>
     <var-decl name='__after_morecore_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='164' column='1'/>
-    <namespace-decl name='__offload'>
-    </namespace-decl>
+
     <var-decl name='__tzname' type-id='type-id-40' visibility='default' filepath='/usr/include/time.h' line='282' column='1'/>
     <var-decl name='__daylight' type-id='type-id-3' visibility='default' filepath='/usr/include/time.h' line='283' column='1'/>
     <var-decl name='__timezone' type-id='type-id-17' visibility='default' filepath='/usr/include/time.h' line='284' column='1'/>
     <var-decl name='stderr' type-id='type-id-6' visibility='default' filepath='/usr/include/stdio.h' line='170' column='1'/>
     <var-decl name='sys_nerr' type-id='type-id-3' visibility='default' filepath='/usr/include/bits/sys_errlist.h' line='26' column='1'/>
     <var-decl name='_sys_nerr' type-id='type-id-3' visibility='default' filepath='/usr/include/bits/sys_errlist.h' line='30' column='1'/>
-    <namespace-decl name='std'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-    </namespace-decl>
+
+
     <var-decl name='__morecore' type-id='type-id-24' visibility='default' filepath='/usr/include/malloc.h' line='71' column='1'/>
     <var-decl name='__malloc_initialize_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='147' column='1'/>
     <var-decl name='__free_hook' type-id='type-id-30' visibility='default' filepath='/usr/include/malloc.h' line='150' column='1'/>
     <var-decl name='__realloc_hook' type-id='type-id-36' visibility='default' filepath='/usr/include/malloc.h' line='156' column='1'/>
     <var-decl name='__memalign_hook' type-id='type-id-39' visibility='default' filepath='/usr/include/malloc.h' line='160' column='1'/>
     <var-decl name='__after_morecore_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='164' column='1'/>
-    <namespace-decl name='__offload'>
-    </namespace-decl>
+
     <var-decl name='timer_enabled' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_timer.h' line='39' column='1'/>
     <var-decl name='offload_report_level' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_timer.h' line='76' column='1'/>
     <var-decl name='offload_report_enabled' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_timer.h' line='77' column='1'/>
           </member-function>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
       <class-decl name='nothrow_t' size-in-bits='8' is-struct='yes' visibility='default' filepath='/export/users/iverbin/gcc/libstdc++-v3/libsupc++/new' line='82' column='1' id='type-id-178'/>
       <var-decl name='nothrow' type-id='type-id-179' mangled-name='_ZSt7nothrow' visibility='default' filepath='/export/users/iverbin/gcc/libstdc++-v3/libsupc++/new' line='84' column='1'/>
-      <namespace-decl name='_V2'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-180'>
         <member-type access='private'>
           <typedef-decl name='seekdir' type-id='type-id-182' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='455' column='1' id='type-id-181'/>
     <reference-type-def kind='lvalue' type-id='type-id-259' size-in-bits='64' id='type-id-196'/>
     <reference-type-def kind='lvalue' type-id='type-id-188' size-in-bits='64' id='type-id-195'/>
     <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
+
       <function-decl name='div' mangled-name='_ZN9__gnu_cxx3divExx' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/cstdlib' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-132'/>
         <parameter type-id='type-id-132'/>
       <parameter type-id='type-id-3'/>
       <return type-id='type-id-325'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-3'/>
       <parameter type-id='type-id-21'/>
     <var-decl name='stderr' type-id='type-id-6' visibility='default' filepath='/usr/include/stdio.h' line='170' column='1'/>
     <var-decl name='sys_nerr' type-id='type-id-3' visibility='default' filepath='/usr/include/bits/sys_errlist.h' line='26' column='1'/>
     <var-decl name='_sys_nerr' type-id='type-id-3' visibility='default' filepath='/usr/include/bits/sys_errlist.h' line='30' column='1'/>
-    <namespace-decl name='std'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-    </namespace-decl>
+
+
     <var-decl name='__morecore' type-id='type-id-24' visibility='default' filepath='/usr/include/malloc.h' line='71' column='1'/>
     <var-decl name='__malloc_initialize_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='147' column='1'/>
     <var-decl name='__free_hook' type-id='type-id-30' visibility='default' filepath='/usr/include/malloc.h' line='150' column='1'/>
     <var-decl name='__realloc_hook' type-id='type-id-36' visibility='default' filepath='/usr/include/malloc.h' line='156' column='1'/>
     <var-decl name='__memalign_hook' type-id='type-id-39' visibility='default' filepath='/usr/include/malloc.h' line='160' column='1'/>
     <var-decl name='__after_morecore_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='164' column='1'/>
-    <namespace-decl name='__offload'>
-    </namespace-decl>
+
     <var-decl name='__offload_entries' type-id='type-id-41' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_table.h' line='202' column='1'/>
     <var-decl name='__offload_funcs' type-id='type-id-41' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_table.h' line='203' column='1'/>
     <var-decl name='__offload_vars' type-id='type-id-55' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_table.h' line='204' column='1'/>
     <pointer-type-def type-id='type-id-498' size-in-bits='64' id='type-id-394'/>
     <pointer-type-def type-id='type-id-499' size-in-bits='64' id='type-id-500'/>
     <pointer-type-def type-id='type-id-501' size-in-bits='64' id='type-id-395'/>
-    <namespace-decl name='std'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-    </namespace-decl>
+
+
     <var-decl name='__morecore' type-id='type-id-24' visibility='default' filepath='/usr/include/malloc.h' line='71' column='1'/>
     <var-decl name='__malloc_initialize_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='147' column='1'/>
     <var-decl name='__free_hook' type-id='type-id-30' visibility='default' filepath='/usr/include/malloc.h' line='150' column='1'/>
     <var-decl name='__realloc_hook' type-id='type-id-36' visibility='default' filepath='/usr/include/malloc.h' line='156' column='1'/>
     <var-decl name='__memalign_hook' type-id='type-id-39' visibility='default' filepath='/usr/include/malloc.h' line='160' column='1'/>
     <var-decl name='__after_morecore_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='164' column='1'/>
-    <namespace-decl name='__offload'>
-    </namespace-decl>
+
     <var-decl name='__offload_entries' type-id='type-id-41' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/coi/../offload_table.h' line='202' column='1'/>
     <var-decl name='__offload_funcs' type-id='type-id-41' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/coi/../offload_table.h' line='203' column='1'/>
     <var-decl name='__offload_vars' type-id='type-id-55' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/coi/../offload_table.h' line='204' column='1'/>
           </member-function>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <var-decl name='nothrow' type-id='type-id-179' mangled-name='_ZSt7nothrow' visibility='default' filepath='/export/users/iverbin/gcc/libstdc++-v3/libsupc++/new' line='84' column='1'/>
       <namespace-decl name='__detail'>
         <class-decl name='_List_node_base' size-in-bits='128' is-struct='yes' visibility='default' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='80' column='1' id='type-id-789'>
       </class-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
+
       <function-decl name='div' mangled-name='_ZN9__gnu_cxx3divExx' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/cstdlib' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-132'/>
         <parameter type-id='type-id-132'/>
     <var-decl name='__realloc_hook' type-id='type-id-36' visibility='default' filepath='/usr/include/malloc.h' line='156' column='1'/>
     <var-decl name='__memalign_hook' type-id='type-id-39' visibility='default' filepath='/usr/include/malloc.h' line='160' column='1'/>
     <var-decl name='__after_morecore_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='164' column='1'/>
-    <namespace-decl name='__offload'>
-    </namespace-decl>
+
     <var-decl name='__tzname' type-id='type-id-40' visibility='default' filepath='/usr/include/time.h' line='282' column='1'/>
     <var-decl name='__daylight' type-id='type-id-3' visibility='default' filepath='/usr/include/time.h' line='283' column='1'/>
     <var-decl name='__timezone' type-id='type-id-17' visibility='default' filepath='/usr/include/time.h' line='284' column='1'/>
     <var-decl name='console_enabled' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='64' column='1'/>
     <var-decl name='prefix' type-id='type-id-21' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='68' column='1'/>
     <var-decl name='offload_number' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='69' column='1'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-3'/>
       <return type-id='type-id-301'/>
     <namespace-decl name='std'>
       <namespace-decl name='__cxx11'>
       </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <var-decl name='nothrow' type-id='type-id-179' mangled-name='_ZSt7nothrow' visibility='default' filepath='/export/users/iverbin/gcc/libstdc++-v3/libsupc++/new' line='84' column='1'/>
       <namespace-decl name='__detail'>
       </namespace-decl>
-      <namespace-decl name='_V2'>
-      </namespace-decl>
+
       <class-decl name='move_iterator&lt;const VarTable::Entry**&gt;' size-in-bits='64' visibility='default' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='998' column='1' id='type-id-2411'>
         <member-type access='private'>
           <typedef-decl name='iterator_type' type-id='type-id-2413' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/stl_iterator.h' line='1007' column='1' id='type-id-2412'/>
     <reference-type-def kind='lvalue' type-id='type-id-2675' size-in-bits='64' id='type-id-2428'/>
     <reference-type-def kind='lvalue' type-id='type-id-2430' size-in-bits='64' id='type-id-2431'/>
     <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
+
       <namespace-decl name='__ops'>
         <class-decl name='_Iter_comp_val&lt;bool (*)(const VarTable::Entry*, const VarTable::Entry*)&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/bits/predefined_ops.h' line='133' column='1' id='type-id-2439'>
           <data-member access='public' layout-offset-in-bits='0'>
     <reference-type-def kind='lvalue' type-id='type-id-2488' size-in-bits='64' id='type-id-2489'/>
     <reference-type-def kind='lvalue' type-id='type-id-2491' size-in-bits='64' id='type-id-2492'/>
     <reference-type-def kind='lvalue' type-id='type-id-2494' size-in-bits='64' id='type-id-2495'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-3'/>
       <return type-id='type-id-301'/>
     <var-decl name='__realloc_hook' type-id='type-id-36' visibility='default' filepath='/usr/include/malloc.h' line='156' column='1'/>
     <var-decl name='__memalign_hook' type-id='type-id-39' visibility='default' filepath='/usr/include/malloc.h' line='160' column='1'/>
     <var-decl name='__after_morecore_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='164' column='1'/>
-    <namespace-decl name='__offload'>
-    </namespace-decl>
+
     <var-decl name='__offload_entries' type-id='type-id-41' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_table.h' line='202' column='1'/>
     <var-decl name='__offload_funcs' type-id='type-id-41' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_table.h' line='203' column='1'/>
     <var-decl name='__offload_vars' type-id='type-id-55' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_table.h' line='204' column='1'/>
           </member-function>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <var-decl name='nothrow' type-id='type-id-179' mangled-name='_ZSt7nothrow' visibility='default' filepath='/export/users/iverbin/gcc/libstdc++-v3/libsupc++/new' line='84' column='1'/>
       <namespace-decl name='__detail'>
       </namespace-decl>
       <class-decl name='initializer_list&lt;char*&gt;' visibility='default' is-declaration-only='yes' id='type-id-2812'/>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
+
       <class-decl name='new_allocator&lt;std::_List_node&lt;char*&gt; &gt;' size-in-bits='8' visibility='default' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='58' column='1' id='type-id-2817'>
         <member-type access='private'>
           <typedef-decl name='size_type' type-id='type-id-204' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/ext/new_allocator.h' line='61' column='1' id='type-id-2949'/>
     <reference-type-def kind='lvalue' type-id='type-id-2880' size-in-bits='64' id='type-id-2881'/>
     <reference-type-def kind='lvalue' type-id='type-id-2883' size-in-bits='64' id='type-id-2884'/>
     <reference-type-def kind='lvalue' type-id='type-id-2886' size-in-bits='64' id='type-id-2887'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <var-decl name='__tzname' type-id='type-id-40' visibility='default' filepath='/usr/include/time.h' line='282' column='1'/>
     <var-decl name='__daylight' type-id='type-id-3' visibility='default' filepath='/usr/include/time.h' line='283' column='1'/>
     <var-decl name='__timezone' type-id='type-id-17' visibility='default' filepath='/usr/include/time.h' line='284' column='1'/>
     <namespace-decl name='std'>
       <namespace-decl name='__cxx11'>
       </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <var-decl name='nothrow' type-id='type-id-179' mangled-name='_ZSt7nothrow' visibility='default' filepath='/export/users/iverbin/gcc/libstdc++-v3/libsupc++/new' line='84' column='1'/>
       <namespace-decl name='__detail'>
       </namespace-decl>
-      <namespace-decl name='_V2'>
-      </namespace-decl>
+
       <function-decl name='get&lt;0ul, void const* const&amp;&gt;' mangled-name='_ZSt3getILm0EJRKPKvEERNSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeERS8_' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/tuple' line='1223' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt3getILm0EJRKPKvEERNSt13tuple_elementIXT_ESt5tupleIJDpT0_EEE4typeERS8_'>
         <parameter type-id='type-id-1169'/>
         <return type-id='type-id-1585'/>
     <reference-type-def kind='lvalue' type-id='type-id-3006' size-in-bits='64' id='type-id-3007'/>
     <reference-type-def kind='lvalue' type-id='type-id-3009' size-in-bits='64' id='type-id-3010'/>
     <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
+
       <function-decl name='div' mangled-name='_ZN9__gnu_cxx3divExx' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/cstdlib' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-132'/>
         <parameter type-id='type-id-132'/>
     <var-decl name='__realloc_hook' type-id='type-id-36' visibility='default' filepath='/usr/include/malloc.h' line='156' column='1'/>
     <var-decl name='__memalign_hook' type-id='type-id-39' visibility='default' filepath='/usr/include/malloc.h' line='160' column='1'/>
     <var-decl name='__after_morecore_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='164' column='1'/>
-    <namespace-decl name='__offload'>
-    </namespace-decl>
+
     <var-decl name='__tzname' type-id='type-id-40' visibility='default' filepath='/usr/include/time.h' line='282' column='1'/>
     <var-decl name='__daylight' type-id='type-id-3' visibility='default' filepath='/usr/include/time.h' line='283' column='1'/>
     <var-decl name='__timezone' type-id='type-id-17' visibility='default' filepath='/usr/include/time.h' line='284' column='1'/>
     <var-decl name='console_enabled' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='64' column='1'/>
     <var-decl name='prefix' type-id='type-id-21' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='68' column='1'/>
     <var-decl name='offload_number' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='69' column='1'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-3'/>
       <return type-id='type-id-301'/>
           </member-function>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <var-decl name='nothrow' type-id='type-id-179' mangled-name='_ZSt7nothrow' visibility='default' filepath='/export/users/iverbin/gcc/libstdc++-v3/libsupc++/new' line='84' column='1'/>
       <namespace-decl name='__detail'>
       </namespace-decl>
       </class-decl>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
+
       <function-decl name='div' mangled-name='_ZN9__gnu_cxx3divExx' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/cstdlib' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-132'/>
         <parameter type-id='type-id-132'/>
     <var-decl name='__realloc_hook' type-id='type-id-36' visibility='default' filepath='/usr/include/malloc.h' line='156' column='1'/>
     <var-decl name='__memalign_hook' type-id='type-id-39' visibility='default' filepath='/usr/include/malloc.h' line='160' column='1'/>
     <var-decl name='__after_morecore_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='164' column='1'/>
-    <namespace-decl name='__offload'>
-    </namespace-decl>
+
     <var-decl name='__tzname' type-id='type-id-40' visibility='default' filepath='/usr/include/time.h' line='282' column='1'/>
     <var-decl name='__daylight' type-id='type-id-3' visibility='default' filepath='/usr/include/time.h' line='283' column='1'/>
     <var-decl name='__timezone' type-id='type-id-17' visibility='default' filepath='/usr/include/time.h' line='284' column='1'/>
     <var-decl name='console_enabled' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='64' column='1'/>
     <var-decl name='prefix' type-id='type-id-21' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='68' column='1'/>
     <var-decl name='offload_number' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='69' column='1'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-3'/>
       <return type-id='type-id-301'/>
     <namespace-decl name='std'>
       <namespace-decl name='__cxx11'>
       </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <var-decl name='nothrow' type-id='type-id-179' mangled-name='_ZSt7nothrow' visibility='default' filepath='/export/users/iverbin/gcc/libstdc++-v3/libsupc++/new' line='84' column='1'/>
       <namespace-decl name='__detail'>
       </namespace-decl>
       <class-decl name='pair&lt;std::_Rb_tree_const_iterator&lt;AutoData&gt;, std::_Rb_tree_const_iterator&lt;AutoData&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1702'/>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
+
       <function-decl name='div' mangled-name='_ZN9__gnu_cxx3divExx' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/cstdlib' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-132'/>
         <parameter type-id='type-id-132'/>
     <var-decl name='__realloc_hook' type-id='type-id-36' visibility='default' filepath='/usr/include/malloc.h' line='156' column='1'/>
     <var-decl name='__memalign_hook' type-id='type-id-39' visibility='default' filepath='/usr/include/malloc.h' line='160' column='1'/>
     <var-decl name='__after_morecore_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='164' column='1'/>
-    <namespace-decl name='__offload'>
-    </namespace-decl>
+
     <var-decl name='__environ' type-id='type-id-335' visibility='default' filepath='/usr/include/unistd.h' line='543' column='1'/>
     <var-decl name='environ' type-id='type-id-335' visibility='default' filepath='/usr/include/unistd.h' line='545' column='1'/>
     <var-decl name='optarg' type-id='type-id-4' visibility='default' filepath='/usr/include/getopt.h' line='57' column='1'/>
     <var-decl name='console_enabled' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='64' column='1'/>
     <var-decl name='prefix' type-id='type-id-21' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='68' column='1'/>
     <var-decl name='offload_number' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='69' column='1'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-3'/>
       <return type-id='type-id-301'/>
     <namespace-decl name='std'>
       <namespace-decl name='__cxx11'>
       </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <var-decl name='nothrow' type-id='type-id-179' mangled-name='_ZSt7nothrow' visibility='default' filepath='/export/users/iverbin/gcc/libstdc++-v3/libsupc++/new' line='84' column='1'/>
       <namespace-decl name='__detail'>
       </namespace-decl>
       <class-decl name='pair&lt;std::_Rb_tree_const_iterator&lt;AutoData&gt;, std::_Rb_tree_const_iterator&lt;AutoData&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1702'/>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
+
       <function-decl name='div' mangled-name='_ZN9__gnu_cxx3divExx' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/cstdlib' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-132'/>
         <parameter type-id='type-id-132'/>
     <var-decl name='__realloc_hook' type-id='type-id-36' visibility='default' filepath='/usr/include/malloc.h' line='156' column='1'/>
     <var-decl name='__memalign_hook' type-id='type-id-39' visibility='default' filepath='/usr/include/malloc.h' line='160' column='1'/>
     <var-decl name='__after_morecore_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='164' column='1'/>
-    <namespace-decl name='__offload'>
-    </namespace-decl>
+
     <var-decl name='__offload_entries' type-id='type-id-41' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_table.h' line='202' column='1'/>
     <var-decl name='__offload_funcs' type-id='type-id-41' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_table.h' line='203' column='1'/>
     <var-decl name='__offload_vars' type-id='type-id-55' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_table.h' line='204' column='1'/>
     <var-decl name='console_enabled' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='64' column='1'/>
     <var-decl name='prefix' type-id='type-id-21' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='68' column='1'/>
     <var-decl name='offload_number' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='69' column='1'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-3'/>
       <return type-id='type-id-301'/>
     <namespace-decl name='std'>
       <namespace-decl name='__cxx11'>
       </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <var-decl name='nothrow' type-id='type-id-179' mangled-name='_ZSt7nothrow' visibility='default' filepath='/export/users/iverbin/gcc/libstdc++-v3/libsupc++/new' line='84' column='1'/>
       <namespace-decl name='__detail'>
       </namespace-decl>
-      <namespace-decl name='_V2'>
-      </namespace-decl>
+
       <class-decl name='basic_istream&lt;char, std::char_traits&lt;char&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-3427'/>
       <typedef-decl name='istream' type-id='type-id-3427' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/iosfwd' line='138' column='1' id='type-id-3428'/>
       <var-decl name='cin' type-id='type-id-3428' mangled-name='_ZSt3cin' visibility='default' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/iostream' line='60' column='1'/>
     <typedef-decl name='_Atomic_word' type-id='type-id-3' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/x86_64-pc-linux-gnu/bits/atomic_word.h' line='32' column='1' id='type-id-3437'/>
     <pointer-type-def type-id='type-id-3436' size-in-bits='64' id='type-id-3438'/>
     <namespace-decl name='__gnu_cxx'>
-      <namespace-decl name='__cxx11'>
-      </namespace-decl>
-      <namespace-decl name='__ops'>
-      </namespace-decl>
+
+
       <function-decl name='div' mangled-name='_ZN9__gnu_cxx3divExx' filepath='/export/users/iverbin/gcc_build_host/x86_64-pc-linux-gnu/libstdc++-v3/include/cstdlib' line='227' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-132'/>
         <parameter type-id='type-id-132'/>
     <var-decl name='__realloc_hook' type-id='type-id-36' visibility='default' filepath='/usr/include/malloc.h' line='156' column='1'/>
     <var-decl name='__memalign_hook' type-id='type-id-39' visibility='default' filepath='/usr/include/malloc.h' line='160' column='1'/>
     <var-decl name='__after_morecore_hook' type-id='type-id-27' visibility='default' filepath='/usr/include/malloc.h' line='164' column='1'/>
-    <namespace-decl name='__offload'>
-    </namespace-decl>
+
     <var-decl name='__tzname' type-id='type-id-40' visibility='default' filepath='/usr/include/time.h' line='282' column='1'/>
     <var-decl name='__daylight' type-id='type-id-3' visibility='default' filepath='/usr/include/time.h' line='283' column='1'/>
     <var-decl name='__timezone' type-id='type-id-17' visibility='default' filepath='/usr/include/time.h' line='284' column='1'/>
     <var-decl name='console_enabled' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='64' column='1'/>
     <var-decl name='prefix' type-id='type-id-21' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='68' column='1'/>
     <var-decl name='offload_number' type-id='type-id-3' visibility='default' filepath='../../../gcc/liboffloadmic/runtime/offload_common.h' line='69' column='1'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='353' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-3'/>
       <return type-id='type-id-301'/>
index 0ecd42b765af0fd24869830d2d456d4585ae3e70..003bc746980f5f829cf3f7a22aa65e24ad56cb60 100644 (file)
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='hb-font.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='OT'>
-    </namespace-decl>
+
     <function-decl name='hb_font_funcs_get_empty' mangled-name='hb_font_funcs_get_empty' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-font.cc' line='264' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='hb_font_funcs_get_empty'>
       <return type-id='type-id-314'/>
     </function-decl>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='hb-ot-map.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='OT'>
-    </namespace-decl>
+
     <class-decl name='hb_prealloced_array_t&lt;hb_ot_map_builder_t::stage_info_t, 8u&gt;' size-in-bits='1152' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-private.hh' line='329' column='1' id='type-id-1739'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='len' type-id='type-id-10' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-private.hh' line='330' column='1'/>
     <var-decl name='min_size' type-id='type-id-77' mangled-name='_ZN2OT7ArrayOfINS_8OffsetToINS_11SubstLookupENS_7IntTypeItLj2EEEEES4_E8min_sizeE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-open-type-private.hh' line='895' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='hb-ot-shape-complex-default.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='OT'>
-    </namespace-decl>
+
     <var-decl name='stdin' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
     <var-decl name='stdout' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
     <var-decl name='stderr' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='167' column='1'/>
     <var-decl name='num_bits' type-id='type-id-77' mangled-name='_ZN27hb_set_digest_lowest_bits_tImLj9EE8num_bitsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-set-private.hh' line='55' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='hb-ot-shape-complex-hangul.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='OT'>
-    </namespace-decl>
+
     <var-decl name='stdin' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
     <var-decl name='stdout' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
     <var-decl name='stderr' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='167' column='1'/>
     <var-decl name='num_bits' type-id='type-id-77' mangled-name='_ZN27hb_set_digest_lowest_bits_tImLj9EE8num_bitsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-set-private.hh' line='55' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='hb-ot-shape-complex-hebrew.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='OT'>
-    </namespace-decl>
+
     <var-decl name='stdin' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
     <var-decl name='stdout' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
     <var-decl name='stderr' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='167' column='1'/>
     <var-decl name='num_bits' type-id='type-id-77' mangled-name='_ZN27hb_set_digest_lowest_bits_tImLj9EE8num_bitsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-set-private.hh' line='55' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='hb-ot-shape-complex-indic.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='OT'>
-    </namespace-decl>
+
     <class-decl name='indic_shape_plan_t' size-in-bits='1344' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-shape-complex-indic.cc' line='507' column='1' id='type-id-1818'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='config' type-id='type-id-1819' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-shape-complex-indic.cc' line='529' column='1'/>
     <var-decl name='num_bits' type-id='type-id-77' mangled-name='_ZN27hb_set_digest_lowest_bits_tImLj9EE8num_bitsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-set-private.hh' line='55' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='hb-ot-shape-complex-indic-table.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='OT'>
-    </namespace-decl>
+
     <function-decl name='hb_indic_get_categories' mangled-name='_Z23hb_indic_get_categoriesj' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-shape-complex-indic-table.cc' line='859' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-70' name='u' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-shape-complex-indic-table.cc' line='859' column='1'/>
       <return type-id='type-id-155'/>
     <var-decl name='num_bits' type-id='type-id-77' mangled-name='_ZN27hb_set_digest_lowest_bits_tImLj9EE8num_bitsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-set-private.hh' line='55' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='hb-ot-shape-complex-myanmar.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='OT'>
-    </namespace-decl>
+
     <var-decl name='stdin' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
     <var-decl name='stdout' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
     <var-decl name='stderr' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='167' column='1'/>
     <var-decl name='num_bits' type-id='type-id-77' mangled-name='_ZN27hb_set_digest_lowest_bits_tImLj9EE8num_bitsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-set-private.hh' line='55' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='hb-ot-shape-complex-sea.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='OT'>
-    </namespace-decl>
+
     <var-decl name='stdin' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
     <var-decl name='stdout' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
     <var-decl name='stderr' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='167' column='1'/>
     <var-decl name='num_bits' type-id='type-id-77' mangled-name='_ZN27hb_set_digest_lowest_bits_tImLj9EE8num_bitsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-set-private.hh' line='55' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='hb-ot-shape-complex-thai.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='OT'>
-    </namespace-decl>
+
     <var-decl name='stdin' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
     <var-decl name='stdout' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
     <var-decl name='stderr' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='167' column='1'/>
     <var-decl name='num_bits' type-id='type-id-77' mangled-name='_ZN27hb_set_digest_lowest_bits_tImLj9EE8num_bitsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-set-private.hh' line='55' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='hb-ot-shape-complex-tibetan.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='OT'>
-    </namespace-decl>
+
     <var-decl name='stdin' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
     <var-decl name='stdout' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
     <var-decl name='stderr' type-id='type-id-53' visibility='default' filepath='/usr/include/stdio.h' line='167' column='1'/>
     <var-decl name='num_bits' type-id='type-id-77' mangled-name='_ZN27hb_set_digest_lowest_bits_tImLj9EE8num_bitsE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-set-private.hh' line='55' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='hb-ot-shape-normalize.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='OT'>
-    </namespace-decl>
+
     <function-decl name='_hb_ot_shape_normalize' mangled-name='_Z22_hb_ot_shape_normalizePK18hb_ot_shape_plan_tP11hb_buffer_tP9hb_font_t' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-shape-normalize.cc' line='288' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-1688' name='plan' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-shape-normalize.cc' line='288' column='1'/>
       <parameter type-id='type-id-143' name='buffer' filepath='/tmp/legendre/spack-stage/spack-stage-04g73E/harfbuzz-0.9.37/src/hb-ot-shape-normalize.cc' line='289' column='1'/>
index 42542febe541eba778b8640585f1b4510927e759..d16e3e331a3e1c699088bef3f3439ac95c43ecd6 100644 (file)
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkImageDataLIC2D.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-204'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-28'/>
       <parameter type-id='type-id-212'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-218' size-in-bits='64' id='type-id-219'/>
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-219'/>
     <var-decl name='stdin' type-id='type-id-144' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
     <var-decl name='stdout' type-id='type-id-144' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
     <var-decl name='__dso_handle' type-id='type-id-149' visibility='default'/>
-    <namespace-decl name='vtkglX'>
-    </namespace-decl>
+
     <namespace-decl name='vtkgl'>
       <typedef-decl name='PFNGLMULTITEXCOORD2FPROC' type-id='type-id-323' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/OpenGL/vtkgl.h' line='11604' column='1' id='type-id-324'/>
       <var-decl name='MultiTexCoord2f' type-id='type-id-324' mangled-name='_ZN5vtkgl15MultiTexCoord2fE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/OpenGL/vtkgl.h' line='11641' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkImageDataLIC2DExtentTranslator.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-204'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-28'/>
       <parameter type-id='type-id-212'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <class-decl name='vtkObjectBase' visibility='default' is-declaration-only='yes' id='type-id-237'>
       <member-function access='protected' vtable-offset='11'>
         <function-decl name='CollectRevisions' mangled-name='_ZN13vtkObjectBase16CollectRevisionsERSo' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkObjectBase.h' line='163' column='1' visibility='default' binding='global' size-in-bits='64'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-204'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-28'/>
       <parameter type-id='type-id-212'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-219'/>
       <return type-id='type-id-7'/>
     <var-decl name='vtkLineIntegralConvolution2D_AAH' type-id='type-id-28' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='89' column='1'/>
     <var-decl name='vtkLineIntegralConvolution2D_AAV' type-id='type-id-28' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkLineIntegralConvolution2D.cxx' line='90' column='1'/>
     <var-decl name='__dso_handle' type-id='type-id-149' visibility='default'/>
-    <namespace-decl name='vtkglX'>
-    </namespace-decl>
+
     <namespace-decl name='vtkgl'>
       <typedef-decl name='PFNGLACTIVETEXTUREPROC' type-id='type-id-497' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/OpenGL/vtkgl.h' line='11536' column='1' id='type-id-498'/>
       <var-decl name='ActiveTexture' type-id='type-id-498' mangled-name='_ZN5vtkgl13ActiveTextureE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/OpenGL/vtkgl.h' line='11545' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkPixelTransfer.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-204'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-28'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-204'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-28'/>
     <var-decl name='stdout' type-id='type-id-144' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
     <var-decl name='vtkStructuredGridLIC2D_fs' type-id='type-id-28' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkStructuredGridLIC2D.cxx' line='45' column='1'/>
     <var-decl name='__dso_handle' type-id='type-id-149' visibility='default'/>
-    <namespace-decl name='vtkglX'>
-    </namespace-decl>
+
     <namespace-decl name='vtkgl'>
       <var-decl name='ActiveTexture' type-id='type-id-498' mangled-name='_ZN5vtkgl13ActiveTextureE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/OpenGL/vtkgl.h' line='11545' column='1'/>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICComposite.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-204'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-28'/>
       <parameter type-id='type-id-212'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-219'/>
       <return type-id='type-id-7'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICDefaultPainter.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-204'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-28'/>
       <parameter type-id='type-id-212'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <class-decl name='vtkObject' visibility='default' is-declaration-only='yes' id='type-id-249'>
       <member-function access='private' static='yes'>
         <function-decl name='IsTypeOf' mangled-name='_ZN9vtkObject8IsTypeOfEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkObject.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-204'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-28'/>
       <parameter type-id='type-id-212'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-219'/>
       <return type-id='type-id-7'/>
     <var-decl name='vtkSurfaceLICPainter_CE' type-id='type-id-28' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='117' column='1'/>
     <var-decl name='vtkSurfaceLICPainter_DCpy' type-id='type-id-28' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkSurfaceLICPainter.cxx' line='118' column='1'/>
     <var-decl name='__dso_handle' type-id='type-id-149' visibility='default'/>
-    <namespace-decl name='vtkglX'>
-    </namespace-decl>
+
     <namespace-decl name='vtkgl'>
       <var-decl name='MultiTexCoord2f' type-id='type-id-324' mangled-name='_ZN5vtkgl15MultiTexCoord2fE' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/OpenGL/vtkgl.h' line='11641' column='1'/>
       <typedef-decl name='PFNGLBINDFRAMEBUFFEREXTPROC' type-id='type-id-778' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/spack-build/Rendering/OpenGL/vtkgl.h' line='17579' column='1' id='type-id-779'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Rendering/LIC/vtkTextureIO.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-204'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-28'/>
       <parameter type-id='type-id-225'/>
       <return type-id='type-id-203'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='*memchr' filepath='/usr/include/string.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-149'/>
       <parameter type-id='type-id-7'/>
index b3f74501d1f7c7597e928949a3c608fc09304635..71871c62c3e67f7530593356552b41f39b7806d8 100644 (file)
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='src/tcmalloc.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='_Destroy&lt;MallocExtension::FreeListInfo*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_construct.h' line='119' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-1'/>
         <parameter type-id='type-id-1'/>
     <qualified-type-def type-id='type-id-18' const='yes' id='type-id-103'/>
     <reference-type-def kind='lvalue' type-id='type-id-103' size-in-bits='64' id='type-id-9'/>
     <qualified-type-def type-id='type-id-10' const='yes' id='type-id-11'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-104' size-in-bits='64' id='type-id-105'/>
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-105'/>
     <namespace-decl name='FLAG__namespace_do_not_use_directly_use_DECLARE_double_instead'>
       <var-decl name='FLAGS_tcmalloc_release_rate' type-id='type-id-106' mangled-name='_ZN62FLAG__namespace_do_not_use_directly_use_DECLARE_double_instead27FLAGS_tcmalloc_release_rateE' visibility='default' filepath='src/tcmalloc.cc' line='170' column='1'/>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <class-decl name='SpinLock' size-in-bits='32' visibility='default' filepath='src/base/spinlock.h' line='48' column='1' id='type-id-248'>
       <member-type access='private'>
         <enum-decl name='__anonymous_enum__' is-anonymous='yes' id='type-id-309'>
     <var-decl name='stdout' type-id='type-id-124' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/base/linuxthreads.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <typedef-decl name='__pid_t' type-id='type-id-7' filepath='/usr/include/bits/types.h' line='143' column='1' id='type-id-377'/>
     <typedef-decl name='pid_t' type-id='type-id-377' filepath='/usr/include/sched.h' line='37' column='1' id='type-id-378'/>
     <pointer-type-def type-id='type-id-378' size-in-bits='64' id='type-id-379'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/heap-checker.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='swap&lt;AllocObject*&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/move.h' line='76' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-383'/>
         <parameter type-id='type-id-383'/>
     <pointer-type-def type-id='type-id-408' size-in-bits='64' id='type-id-410'/>
     <qualified-type-def type-id='type-id-407' const='yes' id='type-id-472'/>
     <reference-type-def kind='lvalue' type-id='type-id-472' size-in-bits='64' id='type-id-423'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
       <var-decl name='FLAGS_heap_check_max_pointer_offset' type-id='type-id-288' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead35FLAGS_heap_check_max_pointer_offsetE' visibility='default' filepath='src/heap-checker.cc' line='204' column='1' elf-symbol-id='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead35FLAGS_heap_check_max_pointer_offsetE'/>
       <var-decl name='FLAGS_noheap_check_max_pointer_offset' type-id='type-id-65' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead37FLAGS_noheap_check_max_pointer_offsetE' visibility='default' filepath='src/heap-checker.cc' line='209' column='1' elf-symbol-id='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead37FLAGS_noheap_check_max_pointer_offsetE'/>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <class-decl name='HeapProfileTable' size-in-bits='832' visibility='default' filepath='src/heap-profile-table.h' line='51' column='1' id='type-id-783'>
       <member-type access='private'>
         <class-decl name='AllocInfo' size-in-bits='192' is-struct='yes' visibility='default' filepath='src/heap-profile-table.h' line='66' column='1' id='type-id-784'>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/heap-checker-bcad.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <function-decl name='localeconv' filepath='/usr/include/locale.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-148'/>
     </function-decl>
-    <namespace-decl name='base'>
-    </namespace-decl>
+
     <class-decl name='HeapLeakCheckerGlobalPrePost' size-in-bits='8' visibility='default' filepath='src/heap-checker-bcad.cc' line='60' column='1' id='type-id-979'>
       <data-member access='private' static='yes'>
         <var-decl name='count_' type-id='type-id-7' mangled-name='_ZN28HeapLeakCheckerGlobalPrePost6count_E' visibility='default' filepath='src/heap-checker-bcad.cc' line='87' column='1' elf-symbol-id='_ZN28HeapLeakCheckerGlobalPrePost6count_E'/>
     <var-decl name='__digits' type-id='type-id-42' mangled-name='_ZN9__gnu_cxx24__numeric_traits_integerIlE8__digitsE' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/ext/numeric_traits.h' line='62' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/profiler.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
       </namespace-decl>
     </namespace-decl>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='_List_iterator&lt;ProfileHandlerToken*&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_list.h' line='114' column='1' id='type-id-1048'>
         <data-member access='public' layout-offset-in-bits='0'>
           <var-decl name='_M_node' type-id='type-id-1049' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_list.h' line='179' column='1'/>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <namespace-decl name='FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead'>
       <var-decl name='FLAGS_verbose' type-id='type-id-315' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' visibility='default' filepath='./src/base/logging.h' line='76' column='1'/>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-1056' size-in-bits='64' id='type-id-1049'/>
     <reference-type-def kind='lvalue' type-id='type-id-1056' size-in-bits='64' id='type-id-1057'/>
     <pointer-type-def type-id='type-id-1048' size-in-bits='64' id='type-id-1050'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/profiledata.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='base'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
       </class-decl>
     </namespace-decl>
     <pointer-type-def type-id='type-id-1125' size-in-bits='64' id='type-id-1120'/>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/system-alloc.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
         </function-decl>
       </namespace-decl>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <namespace-decl name='FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead'>
       <var-decl name='FLAGS_malloc_devmem_start' type-id='type-id-315' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead25FLAGS_malloc_devmem_startE' visibility='default' filepath='src/system-alloc.cc' line='130' column='1' elf-symbol-id='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead25FLAGS_malloc_devmem_startE'/>
       <var-decl name='FLAGS_malloc_devmem_limit' type-id='type-id-315' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead25FLAGS_malloc_devmem_limitE' visibility='default' filepath='src/system-alloc.cc' line='134' column='1' elf-symbol-id='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead25FLAGS_malloc_devmem_limitE'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/memfs_malloc.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-70'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-71'/>
     </namespace-decl>
       <class-decl name='__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-64'/>
       <class-decl name='__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-66'/>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <function-decl name='localeconv' filepath='/usr/include/locale.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-148'/>
     </function-decl>
-    <namespace-decl name='base'>
-    </namespace-decl>
+
     <namespace-decl name='FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead'>
       <var-decl name='FLAGS_verbose' type-id='type-id-315' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' visibility='default' filepath='./src/base/logging.h' line='76' column='1'/>
     </namespace-decl>
       <var-decl name='FLAGS_nomemfs_malloc_ignore_mmap_fail' type-id='type-id-65' mangled-name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_nomemfs_malloc_ignore_mmap_failE' visibility='default' filepath='src/memfs_malloc.cc' line='84' column='1' elf-symbol-id='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead37FLAGS_nomemfs_malloc_ignore_mmap_failE'/>
       <var-decl name='FLAGS_nomemfs_malloc_map_private' type-id='type-id-65' mangled-name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_nomemfs_malloc_map_privateE' visibility='default' filepath='src/memfs_malloc.cc' line='87' column='1' elf-symbol-id='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead32FLAGS_nomemfs_malloc_map_privateE'/>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <class-decl name='SysAllocator' visibility='default' is-declaration-only='yes' id='type-id-356'>
       <member-function access='private' constructor='yes'>
         <function-decl name='SysAllocator' filepath='./src/gperftools/malloc_extension.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/central_freelist.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='max&lt;int&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='209' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-1140'/>
         <parameter type-id='type-id-1140'/>
         <return type-id='type-id-81'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-105'/>
       <return type-id='type-id-7'/>
       </namespace-decl>
     </namespace-decl>
     <namespace-decl name='tcmalloc'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <function-decl name='SLL_SetNext' filepath='src/linked_list.h' line='48' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-92'/>
         <parameter type-id='type-id-92'/>
     <var-decl name='kAllocIncrement' type-id='type-id-42' mangled-name='_ZN8tcmalloc17PageHeapAllocatorINS_15StackTraceTable6BucketEE15kAllocIncrementE' visibility='default' filepath='src/page_heap_allocator.h' line='99' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/page_heap.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <var-decl name='kAllocIncrement' type-id='type-id-42' mangled-name='_ZN8tcmalloc17PageHeapAllocatorINS_15StackTraceTable6BucketEE15kAllocIncrementE' visibility='default' filepath='src/page_heap_allocator.h' line='99' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/sampler.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='base'>
-    </namespace-decl>
+
     <namespace-decl name='tcmalloc'>
       <namespace-decl name='commandlineflags'>
         <function-decl name='StringToLongLong' filepath='src/base/commandlineflags.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64'>
       </namespace-decl>
     </namespace-decl>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='min&lt;double&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='186' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-302'/>
         <parameter type-id='type-id-302'/>
         <return type-id='type-id-81'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-105'/>
       <return type-id='type-id-7'/>
     </namespace-decl>
     <namespace-decl name='base'>
     </namespace-decl>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
         </function-decl>
       </namespace-decl>
     </namespace-decl>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
       </namespace-decl>
     </namespace-decl>
     <namespace-decl name='tcmalloc'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <namespace-decl name='commandlineflags'>
         <function-decl name='StringToBool' filepath='./src/base/commandlineflags.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-34'/>
         </function-decl>
       </namespace-decl>
     </namespace-decl>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/symbolize.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-70'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-71'/>
       <class-decl name='_Rb_tree&lt;const void*, std::pair&lt;const void* const, const char*&gt;, std::_Select1st&lt;std::pair&lt;const void* const, const char*&gt; &gt;, std::less&lt;const void*&gt;, std::allocator&lt;std::pair&lt;const void* const, const char*&gt; &gt; &gt;' size-in-bits='384' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_tree.h' line='323' column='1' id='type-id-1149'>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <function-decl name='localeconv' filepath='/usr/include/locale.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-148'/>
     </function-decl>
-    <namespace-decl name='base'>
-    </namespace-decl>
+
     <namespace-decl name='FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead'>
       <var-decl name='FLAGS_verbose' type-id='type-id-315' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' visibility='default' filepath='src/base/logging.h' line='76' column='1'/>
     </namespace-decl>
       </namespace-decl>
     </namespace-decl>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='max&lt;double&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='209' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-302'/>
         <parameter type-id='type-id-302'/>
         <return type-id='type-id-81'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/malloc_hook.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='__copy_move_a&lt;false, void**, void**&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-210'/>
         <parameter type-id='type-id-210'/>
         <return type-id='type-id-81'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-105'/>
       <return type-id='type-id-7'/>
     <namespace-decl name='FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead'>
       <var-decl name='FLAGS_verbose' type-id='type-id-315' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' visibility='default' filepath='src/base/logging.h' line='76' column='1'/>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <function-decl name='bit_cast&lt;void (*)(const void*, size_t), base::subtle::Atomic64&gt;' filepath='./src/base/basictypes.h' line='219' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-863' name='source' filepath='./src/base/basictypes.h' line='219' column='1'/>
       <return type-id='type-id-153'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/malloc_extension.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-70'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-71'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;MallocExtension::FreeListInfo*, std::vector&lt;MallocExtension::FreeListInfo, std::allocator&lt;MallocExtension::FreeListInfo&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-27'/>
         </function-decl>
       </member-function>
     </class-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <namespace-decl name='FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead'>
       <var-decl name='FLAGS_verbose' type-id='type-id-315' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' visibility='default' filepath='./src/base/logging.h' line='76' column='1'/>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <function-decl name='LogPrintf' mangled-name='_Z9LogPrintfiPKcP13__va_list_tag' filepath='./src/base/logging.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Z9LogPrintfiPKcP13__va_list_tag'>
       <parameter type-id='type-id-7' name='severity' filepath='./src/base/logging.h' line='198' column='1'/>
       <parameter type-id='type-id-34' name='pat' filepath='./src/base/logging.h' line='198' column='1'/>
         </function-decl>
       </namespace-decl>
     </namespace-decl>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
         </data-member>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-1269' size-in-bits='64' id='type-id-1272'/>
     <array-type-def dimensions='1' type-id='type-id-1272' size-in-bits='1920' id='type-id-1271'>
       <subrange length='30'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/heap-profile-table.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='__equal_aux&lt;const void* const*, const void**&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='822' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-693'/>
         <parameter type-id='type-id-693'/>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/heap-profiler.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <var-decl name='nothrow' type-id='type-id-11' mangled-name='_ZSt7nothrow' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/new' line='69' column='1'/>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
         <return type-id='type-id-81'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-105'/>
       <return type-id='type-id-7'/>
       <var-decl name='FLAGS_nommap_profile' type-id='type-id-65' mangled-name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead20FLAGS_nommap_profileE' visibility='default' filepath='src/heap-profiler.cc' line='121' column='1' elf-symbol-id='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead20FLAGS_nommap_profileE'/>
       <var-decl name='FLAGS_noonly_mmap_profile' type-id='type-id-65' mangled-name='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead25FLAGS_noonly_mmap_profileE' visibility='default' filepath='src/heap-profiler.cc' line='125' column='1' elf-symbol-id='_ZN60FLAG__namespace_do_not_use_directly_use_DECLARE_bool_instead25FLAGS_noonly_mmap_profileE'/>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <namespace-decl name='tcmalloc'>
       <namespace-decl name='commandlineflags'>
         <function-decl name='StringToLongLong' filepath='./src/base/commandlineflags.h' line='132' column='1' visibility='default' binding='global' size-in-bits='64'>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/memory_region_map.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='__equal_aux&lt;const void* const*, const void**&gt;' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/stl_algobase.h' line='822' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-693'/>
         <parameter type-id='type-id-693'/>
         <return type-id='type-id-81'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-105'/>
       <return type-id='type-id-7'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/base/atomicops-internals-x86.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='base'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <namespace-decl name='FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead'>
       <var-decl name='FLAGS_verbose' type-id='type-id-315' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' visibility='default' filepath='./src/base/logging.h' line='76' column='1'/>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <function-decl name='LogPrintf' mangled-name='_Z9LogPrintfiPKcP13__va_list_tag' filepath='./src/base/logging.h' line='198' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7' name='severity' filepath='./src/base/logging.h' line='198' column='1'/>
       <parameter type-id='type-id-34' name='pat' filepath='./src/base/logging.h' line='198' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/base/elf_mem_image.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='base'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='ElfMemImage' size-in-bits='576' visibility='default' filepath='./src/base/elf_mem_image.h' line='56' column='1' id='type-id-1445'>
         <member-type access='private'>
           <class-decl name='SymbolInfo' size-in-bits='256' is-struct='yes' visibility='default' filepath='./src/base/elf_mem_image.h' line='64' column='1' id='type-id-1446'>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <var-decl name='_S_terminal' type-id='type-id-116' mangled-name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalE' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='56' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/base/logging.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <function-decl name='localeconv' filepath='/usr/include/locale.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-148'/>
     </function-decl>
-    <namespace-decl name='base'>
-    </namespace-decl>
+
     <namespace-decl name='FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead'>
       <var-decl name='FLAGS_verbose' type-id='type-id-315' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' visibility='default' filepath='./src/base/logging.h' line='76' column='1' elf-symbol-id='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE'/>
       <var-decl name='FLAGS_noverbose' type-id='type-id-65' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead15FLAGS_noverboseE' visibility='default' filepath='src/base/logging.cc' line='40' column='1' elf-symbol-id='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead15FLAGS_noverboseE'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/base/spinlock.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='base'>
-      <namespace-decl name='internal'>
-      </namespace-decl>
+
       <namespace-decl name='subtle'>
         <function-decl name='NoBarrier_CompareAndSwap' filepath='./src/base/atomicops-internals-x86.h' line='74' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-191'/>
         <return type-id='type-id-2'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <namespace-decl name='FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead'>
       <var-decl name='FLAGS_verbose' type-id='type-id-315' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' visibility='default' filepath='./src/base/logging.h' line='76' column='1'/>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <class-decl name='CycleClock' size-in-bits='8' is-struct='yes' visibility='default' filepath='./src/base/cycleclock.h' line='79' column='1' id='type-id-1488'>
       <member-function access='public' static='yes'>
         <function-decl name='Now' mangled-name='_ZN10CycleClock3NowEv' filepath='./src/base/cycleclock.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
     </namespace-decl>
     <qualified-type-def type-id='type-id-1489' const='yes' id='type-id-1491'/>
     <pointer-type-def type-id='type-id-1491' size-in-bits='64' id='type-id-1490'/>
-    <namespace-decl name=''>
-    </namespace-decl>
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/stacktrace.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <function-decl name='localeconv' filepath='/usr/include/locale.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-148'/>
     </function-decl>
-    <namespace-decl name='base'>
-    </namespace-decl>
+
     <namespace-decl name='FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead'>
       <var-decl name='FLAGS_verbose' type-id='type-id-315' mangled-name='_ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int32_instead13FLAGS_verboseE' visibility='default' filepath='./src/base/logging.h' line='76' column='1'/>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <namespace-decl name='tcmalloc'>
       <namespace-decl name='commandlineflags'>
         <function-decl name='StringToBool' filepath='src/base/commandlineflags.h' line='118' column='1' visibility='default' binding='global' size-in-bits='64'>
     <var-decl name='kInvalidBase' type-id='type-id-720' mangled-name='_ZN4base11ElfMemImage12kInvalidBaseE' visibility='default' filepath='./src/base/elf_mem_image.h' line='59' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/base/sysinfo.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='base'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <var-decl name='_S_terminal' type-id='type-id-116' mangled-name='_ZNSbIwSt11char_traitsIwESaIwEE4_Rep11_S_terminalE' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/basic_string.tcc' line='56' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/maybe_threads.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-121'/>
     <function-decl name='localeconv' filepath='/usr/include/locale.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-148'/>
     </function-decl>
-    <namespace-decl name='base'>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-1115' size-in-bits='64' id='type-id-1515'/>
     <function-decl name='perftools_pthread_once' mangled-name='_Z22perftools_pthread_oncePiPFvvE' filepath='src/maybe_threads.cc' line='128' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_Z22perftools_pthread_oncePiPFvvE'>
       <parameter type-id='type-id-1515' name='ctl' filepath='src/maybe_threads.cc' line='128' column='1'/>
index 4a905ffc6963d476e956961beab3336aecb3f213..1e3d0ca5fe9470dc3ab10ecab4bbb779f88bf285 100644 (file)
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkCommunicator.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-234'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-29'/>
       <parameter type-id='type-id-276'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-282' size-in-bits='64' id='type-id-283'/>
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-283'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkDummyCommunicator.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-234'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-29'/>
       <parameter type-id='type-id-276'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <class-decl name='vtkOStreamWrapper' visibility='default' is-declaration-only='yes' id='type-id-433'>
       <member-type access='private'>
         <class-decl name='EndlType' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkOStreamWrapper.h' line='58' column='1' id='type-id-434'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkDummyController.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-234'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-29'/>
       <parameter type-id='type-id-276'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <class-decl name='vtkOStreamWrapper' visibility='default' is-declaration-only='yes' id='type-id-433'>
       <member-type access='private'>
         <class-decl name='EndlType' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkOStreamWrapper.h' line='58' column='1' id='type-id-434'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkMultiProcessController.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-234'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-29'/>
       <parameter type-id='type-id-276'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-283'/>
       <return type-id='type-id-7'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkMultiProcessStream.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-234'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-29'/>
       <parameter type-id='type-id-276'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-1116' size-in-bits='64' id='type-id-1117'/>
     <qualified-type-def type-id='type-id-1107' const='yes' id='type-id-1145'/>
     <pointer-type-def type-id='type-id-1145' size-in-bits='64' id='type-id-1118'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkProcess.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-234'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-29'/>
       <parameter type-id='type-id-276'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <class-decl name='vtkObject' visibility='default' is-declaration-only='yes' id='type-id-309'>
       <member-function access='private' static='yes'>
         <function-decl name='IsTypeOf' mangled-name='_ZN9vtkObject8IsTypeOfEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkObject.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkProcessGroup.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-234'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-29'/>
       <parameter type-id='type-id-276'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-283'/>
       <return type-id='type-id-7'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkSocketCommunicator.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-234'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-29'/>
       <parameter type-id='type-id-276'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-283'/>
       <return type-id='type-id-7'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkSocketController.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-234'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-29'/>
       <parameter type-id='type-id-276'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <class-decl name='vtkOStreamWrapper' visibility='default' is-declaration-only='yes' id='type-id-433'>
       <member-type access='private'>
         <class-decl name='EndlType' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkOStreamWrapper.h' line='58' column='1' id='type-id-434'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkSubCommunicator.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-234'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-29'/>
       <parameter type-id='type-id-276'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <class-decl name='vtkObject' visibility='default' is-declaration-only='yes' id='type-id-309'>
       <member-function access='private' static='yes'>
         <function-decl name='IsTypeOf' mangled-name='_ZN9vtkObject8IsTypeOfEPKc' filepath='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Common/Core/vtkObject.h' line='53' column='1' visibility='default' binding='global' size-in-bits='64'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkSubGroup.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-234'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-29'/>
       <parameter type-id='type-id-276'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-283'/>
       <return type-id='type-id-7'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='/tmp/legendre/spack-stage/spack-stage-R_crTC/VTK-6.1.0/Parallel/Core/vtkFieldDataSerializer.cxx' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ios_base' visibility='default' is-declaration-only='yes' id='type-id-1'>
         <member-type access='private'>
           <class-decl name='Init' size-in-bits='8' visibility='default' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/bits/ios_base.h' line='538' column='1' id='type-id-2'>
       <parameter type-id='type-id-7'/>
       <return type-id='type-id-234'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-7'/>
       <parameter type-id='type-id-29'/>
       <parameter type-id='type-id-276'/>
       <return type-id='type-id-7'/>
     </function-decl>
-    <namespace-decl name='detail'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='*memchr' filepath='/usr/include/string.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-195'/>
       <parameter type-id='type-id-7'/>
index 3aae916040ad9ea0a8af4f1354978b07155b1655..a8a6bc180565936027edaea60295e06581723f15 100644 (file)
     <elf-symbol name='vflag' size='1' type='object-type' binding='global-binding' is-defined='yes'/>
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='../.././gcc/collect2.c' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <type-decl name='void' id='type-id-1'/>
     <pointer-type-def type-id='type-id-1' size-in-bits='64' id='type-id-2'/>
     <type-decl name='int' size-in-bits='32' id='type-id-3'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../.././gcc/collect2-aix.c' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-2'/>
       <parameter type-id='type-id-3'/>
     <var-decl name='stdout' type-id='type-id-28' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../.././gcc/tlink.c' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-2'/>
       <parameter type-id='type-id-3'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../.././gcc/vec.c' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-2'/>
       <parameter type-id='type-id-3'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../.././gcc/ggc-none.c' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-2'/>
       <parameter type-id='type-id-3'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../.././gcc/diagnostic.c' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-2'/>
       <parameter type-id='type-id-3'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../.././gcc/pretty-print.c' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-2'/>
       <parameter type-id='type-id-3'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../.././gcc/intl.c' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-2'/>
       <parameter type-id='type-id-3'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../.././gcc/input.c' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <function-decl name='memchr' mangled-name='memchr' filepath='/usr/include/string.h' line='88' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-2'/>
       <parameter type-id='type-id-3'/>
index e149a4d78855d1d4c7c80099ef14003b47267874..f3f735ebbe5bd6c2ca0838086a6dcdb372364248 100644 (file)
   </elf-variable-symbols>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/src/c++98/compatibility.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <namespace-decl name='__detail'>
         <class-decl name='_List_node_baseXX' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='78' column='1' id='type-id-1'>
           <data-member access='public' layout-offset-in-bits='0'>
         </data-member>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <type-decl name='unsigned int' size-in-bits='32' id='type-id-237'/>
     <typedef-decl name='wint_t' type-id='type-id-237' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/host-x86_64-unknown-linux-gnu/gcc/include/stddef.h' line='354' column='1' id='type-id-58'/>
     <type-decl name='int' size-in-bits='32' id='type-id-27'/>
       <parameter type-id='type-id-259'/>
       <return type-id='type-id-27'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-20' size-in-bits='64' id='type-id-25'/>
     <qualified-type-def type-id='type-id-19' const='yes' id='type-id-285'/>
     <pointer-type-def type-id='type-id-285' size-in-bits='64' id='type-id-24'/>
     <pointer-type-def type-id='type-id-310' size-in-bits='64' id='type-id-190'/>
     <reference-type-def kind='lvalue' type-id='type-id-181' size-in-bits='64' id='type-id-191'/>
     <reference-type-def kind='lvalue' type-id='type-id-310' size-in-bits='64' id='type-id-192'/>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <qualified-type-def type-id='type-id-193' const='yes' id='type-id-311'/>
     <pointer-type-def type-id='type-id-311' size-in-bits='64' id='type-id-194'/>
     <qualified-type-def type-id='type-id-195' const='yes' id='type-id-312'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/src/c++11/compatibility-c++0x.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <namespace-decl name='chrono'>
         <class-decl name='system_clock' size-in-bits='8' is-struct='yes' visibility='default' filepath='../../.././libstdc++-v3/src/c++11/compatibility-c++0x.cc' line='116' column='1' id='type-id-345'>
           <data-member access='public' static='yes'>
       </data-member>
     </class-decl>
     <typedef-decl name='lldiv_t' type-id='type-id-428' filepath='/usr/include/stdlib.h' line='122' column='1' id='type-id-394'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-58'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/src/c++11/compatibility-atomic-c++0x.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='chrono'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
+
       <namespace-decl name='__atomic0'>
         <class-decl name='atomic_flag' size-in-bits='8' is-struct='yes' visibility='default' filepath='../../.././libstdc++-v3/src/c++11/compatibility-atomic-c++0x.cc' line='64' column='1' id='type-id-487'>
           <base-class access='public' layout-offset-in-bits='0' type-id='type-id-488'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
       <parameter type-id='type-id-259'/>
       <return type-id='type-id-27'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-504' size-in-bits='64' id='type-id-508'/>
     <qualified-type-def type-id='type-id-504' const='yes' id='type-id-535'/>
     <reference-type-def kind='lvalue' type-id='type-id-535' size-in-bits='64' id='type-id-509'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/src/c++11/compatibility-thread-c++0x.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='chrono'>
-      </namespace-decl>
+
+
+
       <class-decl name='thread' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/thread' line='60' column='1' id='type-id-541'>
         <member-type access='private'>
           <class-decl name='id' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/thread' line='68' column='1' id='type-id-542'>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-58'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/array_type_info.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='__array_type_info' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/cxxabi.h' line='219' column='1' id='type-id-754'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-576'/>
         <member-function access='private' constructor='yes'>
     <pointer-type-def type-id='type-id-754' size-in-bits='64' id='type-id-755'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/atexit_arm.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/bad_alloc.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/class_type_info.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='__class_type_info' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/cxxabi.h' line='385' column='1' id='type-id-768'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-576'/>
         <member-type access='private'>
     <typedef-decl name='ptrdiff_t' type-id='type-id-28' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/host-x86_64-unknown-linux-gnu/gcc/include/stddef.h' line='150' column='1' id='type-id-778'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/del_op.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-430'/>
       <return type-id='type-id-27'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/del_opv.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <function-decl name='operator delete []' mangled-name='_ZdaPv' filepath='../../.././libstdc++-v3/libsupc++/del_opv.cc' line='31' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZdaPv@@GLIBCXX_3.4'>
       <parameter type-id='type-id-221' name='ptr' filepath='../../.././libstdc++-v3/libsupc++/del_opv.cc' line='31' column='1'/>
       <return type-id='type-id-4'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/dyncast.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <function-decl name='__dynamic_cast' mangled-name='__dynamic_cast' filepath='../../.././libstdc++-v3/libsupc++/dyncast.cc' line='46' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='__dynamic_cast@@CXXABI_1.3'>
         <parameter type-id='type-id-221'/>
         <parameter type-id='type-id-771'/>
         <return type-id='type-id-221'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/eh_alloc.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
     <typedef-decl name='_Unwind_Exception_Cleanup_Fn' type-id='type-id-822' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/host-x86_64-unknown-linux-gnu/gcc/include/unwind.h' line='82' column='1' id='type-id-816'/>
     <typedef-decl name='_Unwind_Word' type-id='type-id-39' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/host-x86_64-unknown-linux-gnu/gcc/include/unwind.h' line='43' column='1' id='type-id-817'/>
     <pointer-type-def type-id='type-id-803' size-in-bits='64' id='type-id-811'/>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-369' size-in-bits='64' id='type-id-787'/>
     <qualified-type-def type-id='type-id-788' const='yes' id='type-id-823'/>
     <pointer-type-def type-id='type-id-823' size-in-bits='64' id='type-id-789'/>
     </function-type>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/eh_arm.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/eh_aux_runtime.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
         <return type-id='type-id-828'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/eh_personality.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/eh_throw.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
       <function-decl name='terminate' mangled-name='_ZSt9terminatev' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/exception' line='99' column='1' visibility='default' binding='global' size-in-bits='64'>
         <return type-id='type-id-4'/>
       </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/enum_type_info.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='__enum_type_info' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/cxxabi.h' line='246' column='1' id='type-id-853'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-576'/>
         <member-function access='private' constructor='yes'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/function_type_info.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='__function_type_info' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/cxxabi.h' line='230' column='1' id='type-id-855'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-576'/>
         <member-function access='private' constructor='yes'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/fundamental_type_info.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='__fundamental_type_info' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/cxxabi.h' line='208' column='1' id='type-id-859'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-576'/>
         <member-function access='private' constructor='yes'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/guard.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
     </namespace-decl>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <typedef-decl name='__guard' type-id='type-id-28' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/x86_64-unknown-linux-gnu/bits/cxxabi_tweaks.h' line='46' column='1' id='type-id-861'/>
       <function-decl name='__cxa_guard_acquire' mangled-name='__cxa_guard_acquire' filepath='../../.././libstdc++-v3/libsupc++/guard.cc' line='232' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='__cxa_guard_acquire@@CXXABI_1.3'>
         <parameter type-id='type-id-862'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/guard_error.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <namespace-decl name='__gnu_cxx'>
       <class-decl name='recursive_init_error' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/cxxabi.h' line='682' column='1' id='type-id-863'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-369'/>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/hash_bytes.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <namespace-decl name='std'>
       <function-decl name='_Hash_bytes' mangled-name='_ZSt11_Hash_bytesPKvmm' filepath='../../.././libstdc++-v3/libsupc++/hash_bytes.cc' line='129' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt11_Hash_bytesPKvmm@@CXXABI_1.3.5'>
         <parameter type-id='type-id-221'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/pbase_type_info.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='__pbase_type_info' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/cxxabi.h' line='257' column='1' id='type-id-872'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-576'/>
         <member-type access='private'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/pmem_type_info.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='__pointer_to_member_type_info' size-in-bits='320' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/cxxabi.h' line='324' column='1' id='type-id-879'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-872'/>
         <data-member access='private' layout-offset-in-bits='256'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/pointer_type_info.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='__pointer_type_info' size-in-bits='256' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/cxxabi.h' line='299' column='1' id='type-id-885'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-872'/>
         <member-function access='private' constructor='yes'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/si_class_type_info.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='__si_class_type_info' size-in-bits='192' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/cxxabi.h' line='478' column='1' id='type-id-891'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-768'/>
         <data-member access='private' layout-offset-in-bits='128'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/tinfo.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
     </namespace-decl>
     <namespace-decl name='std'>
       <class-decl name='type_info' size-in-bits='128' visibility='default' filepath='../../.././libstdc++-v3/libsupc++/typeinfo' line='90' column='1' id='type-id-576'>
     <reference-type-def kind='lvalue' type-id='type-id-576' size-in-bits='64' id='type-id-897'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/tinfo2.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
-    </namespace-decl>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/vec.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <typedef-decl name='__cxa_cdtor_type' type-id='type-id-810' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/cxxabi.h' line='65' column='1' id='type-id-898'/>
       <function-decl name='__cxa_vec_cleanup' mangled-name='__cxa_vec_cleanup' filepath='../../.././libstdc++-v3/libsupc++/vec.cc' line='253' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='__cxa_vec_cleanup@@CXXABI_1.3'>
         <parameter type-id='type-id-221'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../.././libstdc++-v3/libsupc++/vmi_class_type_info.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='__cxxabiv1'>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='__base_class_type_info' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/cxxabi.h' line='351' column='1' id='type-id-905'>
         <member-type access='private'>
           <enum-decl name='__offset_flags_masks' id='type-id-906'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/bitmap_allocator.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='__addressof&lt;char&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/move.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-100'/>
         <return type-id='type-id-67'/>
     <qualified-type-def type-id='type-id-1064' const='yes' id='type-id-1104'/>
     <qualified-type-def type-id='type-id-919' const='yes' id='type-id-1105'/>
     <reference-type-def kind='lvalue' type-id='type-id-1105' size-in-bits='64' id='type-id-921'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='operator new' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='111' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-221' name='__p' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='111' column='1'/>
       <parameter type-id='type-id-438'/>
       <return type-id='type-id-267'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <function-decl name='operator new' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='111' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-221' name='__p' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='111' column='1'/>
       <parameter type-id='type-id-13'/>
       <return type-id='type-id-13'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-1141' size-in-bits='64' id='type-id-1142'/>
     <pointer-type-def type-id='type-id-1143' size-in-bits='64' id='type-id-1144'/>
     <pointer-type-def type-id='type-id-1145' size-in-bits='64' id='type-id-1146'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/codecvt.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='min&lt;long unsigned int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_algobase.h' line='187' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-994'/>
         <parameter type-id='type-id-994'/>
       <parameter type-id='type-id-246'/>
       <return type-id='type-id-133'/>
     </function-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
+
     <function-decl name='wcstold' filepath='/usr/include/wchar.h' line='457' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-133'/>
       <parameter type-id='type-id-265'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/complex_io.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-5'/>
         <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/ctype.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ctype&lt;char&gt;' size-in-bits='4608' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='676' column='1' id='type-id-1377'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1206'/>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1378'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/globals_io.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <typedef-decl name='fake_istream' type-id='type-id-1405' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='53' column='1' id='type-id-1406'/>
       <var-decl name='cin' type-id='type-id-1406' mangled-name='_ZSt3cin' visibility='default' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='57' column='1' elf-symbol-id='_ZSt3cin@@GLIBCXX_3.4'/>
       <typedef-decl name='fake_ostream' type-id='type-id-1407' filepath='../../../.././libstdc++-v3/src/c++98/globals_io.cc' line='55' column='1' id='type-id-1408'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/hash_tr1.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <namespace-decl name='tr1'>
-        <namespace-decl name=''>
-        </namespace-decl>
-        <namespace-decl name='placeholders'>
-          <namespace-decl name=''>
-          </namespace-decl>
-        </namespace-decl>
+
+
         <class-decl name='_Fnv_hash_base&lt;8ul&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='121' column='1' id='type-id-1420'>
           <member-function access='public' static='yes'>
             <function-decl name='hash&lt;char&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tr1/functional_hash.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-58'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/ios.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-5'/>
         <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/ios_failure.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-82'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-84'/>
     </namespace-decl>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/ios_init.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-1334'/>
         <parameter type-id='type-id-1334'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/ios_locale.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-1334'/>
         <parameter type-id='type-id-1334'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/list.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <namespace-decl name='__detail'>
         <class-decl name='_List_node_base' size-in-bits='128' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_list.h' line='78' column='1' id='type-id-1484'>
           <data-member access='public' layout-offset-in-bits='0'>
     <pointer-type-def type-id='type-id-1484' size-in-bits='64' id='type-id-1485'/>
     <reference-type-def kind='lvalue' type-id='type-id-1484' size-in-bits='64' id='type-id-1486'/>
     <reference-type-def kind='lvalue' type-id='type-id-1485' size-in-bits='64' id='type-id-1487'/>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/locale.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-82'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-84'/>
       <function-decl name='operator==&lt;char&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_string.h' line='2490' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='clock' filepath='/usr/include/time.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-528'/>
     </function-decl>
       <parameter type-id='type-id-262'/>
       <return type-id='type-id-246'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <class-decl name='__locale_data' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1262'/>
     <array-type-def dimensions='1' type-id='type-id-21' size-in-bits='16' id='type-id-1490'>
       <subrange length='2'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/locale_init.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-82'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-84'/>
       <function-decl name='operator!=&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_string.h' line='2553' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='clock' filepath='/usr/include/time.h' line='183' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-528'/>
     </function-decl>
       <parameter type-id='type-id-262'/>
       <return type-id='type-id-246'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <function-decl name='operator new' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='111' column='1' declared-inline='yes' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <parameter type-id='type-id-221' name='__p' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='111' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/locale_facets.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator&amp;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-1334'/>
         <parameter type-id='type-id-1334'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/localename.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-82'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-84'/>
       <function-decl name='operator==&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/basic_string.h' line='2516' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
     </function-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/math_stubs_float.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
+
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/math_stubs_long_double.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
+
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/stdexcept.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-82'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-84'/>
       <class-decl name='logic_error' size-in-bits='128' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/stdexcept' line='56' column='1' id='type-id-1579'>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-58'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/strstream.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator&amp;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-42'/>
         <parameter type-id='type-id-42'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/tree.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <enum-decl name='_Rb_tree_color' id='type-id-1637'>
         <underlying-type type-id='type-id-6'/>
         <enumerator name='_S_red' value='0'/>
     <pointer-type-def type-id='type-id-1646' size-in-bits='64' id='type-id-1643'/>
     <reference-type-def kind='lvalue' type-id='type-id-1641' size-in-bits='64' id='type-id-1644'/>
     <reference-type-def kind='lvalue' type-id='type-id-1639' size-in-bits='64' id='type-id-1645'/>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/istream.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-5'/>
         <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
       <parameter type-id='type-id-13'/>
       <return type-id='type-id-272'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/streambuf.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='basic_streambuf&lt;char, std::char_traits&lt;char&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-19'>
         <member-type access='private'>
           <typedef-decl name='char_type' type-id='type-id-21' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/streambuf' line='126' column='1' id='type-id-20'/>
       <parameter type-id='type-id-246'/>
       <return type-id='type-id-133'/>
     </function-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
+
     <function-decl name='wcstold' filepath='/usr/include/wchar.h' line='457' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-133'/>
       <parameter type-id='type-id-265'/>
     <function-decl name='localeconv' filepath='/usr/include/locale.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-271'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/valarray.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='__valarray_product&lt;long unsigned int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/valarray_array.h' line='359' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-1658'/>
         <parameter type-id='type-id-1658'/>
         <return type-id='type-id-394'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-430'/>
       <return type-id='type-id-27'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='codecvt_members.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
     </namespace-decl>
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='collate_members.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='collate&lt;char&gt;' visibility='default' is-declaration-only='yes' id='type-id-1504'>
         <member-function access='private'>
           <function-decl name='_M_compare' mangled-name='_ZNKSt7collateIcE10_M_compareEPKcS2_' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/collate_members.cc' line='42' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt7collateIcE10_M_compareEPKcS2_@@GLIBCXX_3.4'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='ctype_configure_char.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
     </namespace-decl>
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='ctype_members.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='ctype_byname&lt;char&gt;' size-in-bits='4608' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1484' column='1' id='type-id-1785'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-1377'/>
         <member-function access='private'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='messages_members.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-82'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;char*, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-84'/>
       <class-decl name='reverse_iterator&lt;__gnu_cxx::__normal_iterator&lt;const wchar_t*, std::basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt; &gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-121'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='monetary_members.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='__moneypunct_cache&lt;char, true&gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1514'>
         <member-function access='public'>
           <function-decl name='__moneypunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets_nonio.h' line='890' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='numeric_members.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='__numpunct_cache&lt;char&gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1496'>
         <member-function access='public'>
           <function-decl name='__numpunct_cache' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/locale_facets.h' line='1596' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='time_members.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='__timepunct&lt;char&gt;' visibility='default' is-declaration-only='yes' id='type-id-1522'>
         <member-function access='private'>
           <function-decl name='_M_put' mangled-name='_ZNKSt11__timepunctIcE6_M_putEPcmPKcPK2tm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/time_members.cc' line='42' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNKSt11__timepunctIcE6_M_putEPcmPKcPK2tm@@GLIBCXX_3.4'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='basic_file.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='min&lt;long int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_algobase.h' line='187' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-9'/>
         <parameter type-id='type-id-9'/>
       <parameter type-id='type-id-246'/>
       <return type-id='type-id-133'/>
     </function-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
+
     <function-decl name='wcstold' filepath='/usr/include/wchar.h' line='457' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-133'/>
       <parameter type-id='type-id-265'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
       <parameter type-id='type-id-13'/>
       <return type-id='type-id-272'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <class-decl name='stat64' size-in-bits='1152' is-struct='yes' visibility='default' filepath='/usr/include/bits/stat.h' line='119' column='1' id='type-id-1805'>
       <data-member access='public' layout-offset-in-bits='0'>
         <var-decl name='st_dev' type-id='type-id-1806' visibility='default' filepath='/usr/include/bits/stat.h' line='121' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='c++locale.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='__convert_to_v&lt;float&gt;' mangled-name='_ZSt14__convert_to_vIfEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/src/c++98/c++locale.cc' line='44' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZSt14__convert_to_vIfEvPKcRT_RSt12_Ios_IostateRKP15__locale_struct@@GLIBCXX_3.4'>
         <parameter type-id='type-id-13'/>
         <parameter type-id='type-id-1291'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/allocator-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <var-decl name='nothrow' type-id='type-id-664' mangled-name='_ZSt7nothrow' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='71' column='1'/>
     </namespace-decl>
     <namespace-decl name='__gnu_cxx'>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/concept-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <var-decl name='nothrow' type-id='type-id-664' mangled-name='_ZSt7nothrow' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='71' column='1'/>
       <class-decl name='basic_streambuf&lt;char, std::char_traits&lt;char&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-19'>
         <member-type access='private'>
     <reference-type-def kind='lvalue' type-id='type-id-442' size-in-bits='64' id='type-id-1847'/>
     <reference-type-def kind='lvalue' type-id='type-id-447' size-in-bits='64' id='type-id-1848'/>
     <reference-type-def kind='lvalue' type-id='type-id-445' size-in-bits='64' id='type-id-1849'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-58'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/ext-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='tr1'>
-        <namespace-decl name=''>
-        </namespace-decl>
-        <namespace-decl name='placeholders'>
-          <namespace-decl name=''>
-          </namespace-decl>
-        </namespace-decl>
-      </namespace-decl>
+
+
       <function-decl name='__throw_length_error' mangled-name='_ZSt20__throw_length_errorPKc' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/functexcept.h' line='73' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-13'/>
         <return type-id='type-id-4'/>
           <enumerator name='_S_function' value='3'/>
         </enum-decl>
       </namespace-decl>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='stdio_filebuf&lt;wchar_t, std::char_traits&lt;wchar_t&gt; &gt;' size-in-bits='1920' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/ext/stdio_filebuf.h' line='51' column='1' id='type-id-1483'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-201'/>
         <member-type access='private'>
       <class-decl name='char_producer&lt;wchar_t&gt;' visibility='default' is-declaration-only='yes' id='type-id-1987'/>
       <class-decl name='_Rope_RopeSubstring&lt;wchar_t, std::allocator&lt;wchar_t&gt; &gt;' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-1962'/>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-430'/>
       <return type-id='type-id-27'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/ios-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-5'/>
         <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/iostream-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <class-decl name='_Setfill&lt;char&gt;' size-in-bits='8' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='153' column='1' id='type-id-2040'>
         <data-member access='private' layout-offset-in-bits='0'>
           <var-decl name='_M_c' type-id='type-id-21' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/iomanip' line='153' column='1'/>
       <parameter type-id='type-id-246'/>
       <return type-id='type-id-133'/>
     </function-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
+
     <function-decl name='wcstold' filepath='/usr/include/wchar.h' line='457' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-133'/>
       <parameter type-id='type-id-265'/>
     <function-decl name='localeconv' filepath='/usr/include/locale.h' line='128' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-271'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/istream-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='81' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-1334'/>
         <parameter type-id='type-id-1334'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
     <pointer-type-def type-id='type-id-2141' size-in-bits='64' id='type-id-2117'/>
     <qualified-type-def type-id='type-id-1528' const='yes' id='type-id-2142'/>
     <pointer-type-def type-id='type-id-2142' size-in-bits='64' id='type-id-2120'/>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <function-decl name='operator delete' mangled-name='_ZdlPv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-221'/>
       <return type-id='type-id-4'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/locale-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-5'/>
         <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
       <parameter type-id='type-id-13'/>
       <return type-id='type-id-67'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <function-decl name='operator new' mangled-name='_Znwm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <return type-id='type-id-221'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/misc-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-5'/>
         <parameter type-id='type-id-5'/>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-58'/>
     <qualified-type-def type-id='type-id-1481' const='yes' id='type-id-2272'/>
     <qualified-type-def type-id='type-id-2271' const='yes' id='type-id-2273'/>
     <qualified-type-def type-id='type-id-1412' const='yes' id='type-id-2274'/>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <var-decl name='stdin' type-id='type-id-240' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
     <var-decl name='stdout' type-id='type-id-240' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
     <function-decl name='fseeko64' filepath='/usr/include/stdio.h' line='813' column='1' visibility='default' binding='global' size-in-bits='64'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/ostream-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator&amp;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='77' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-1334'/>
         <parameter type-id='type-id-1334'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
       <parameter type-id='type-id-13'/>
       <return type-id='type-id-272'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <function-decl name='operator delete' mangled-name='_ZdlPv' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='97' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-221'/>
       <return type-id='type-id-4'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/sstream-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator&amp;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='117' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-42'/>
         <parameter type-id='type-id-42'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/streambuf-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='min&lt;long int&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/stl_algobase.h' line='187' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-9'/>
         <parameter type-id='type-id-9'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/wlocale-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-5'/>
         <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='iswctype' filepath='/usr/include/wctype.h' line='176' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-58'/>
       <parameter type-id='type-id-272'/>
       <parameter type-id='type-id-13'/>
       <return type-id='type-id-67'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <function-decl name='operator new' mangled-name='_Znwm' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='93' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-36'/>
       <return type-id='type-id-221'/>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++98/parallel_settings.cc' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-      <namespace-decl name='__parallel'>
-      </namespace-decl>
-      <namespace-decl name='tr1'>
-      </namespace-decl>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-430'/>
       <return type-id='type-id-27'/>
       </enum-decl>
       <typedef-decl name='_SequenceIndex' type-id='type-id-2526' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/parallel/types.h' line='117' column='1' id='type-id-2522'/>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <typedef-decl name='uint64_t' type-id='type-id-39' filepath='/usr/include/stdint.h' line='56' column='1' id='type-id-2526'/>
     <qualified-type-def type-id='type-id-2515' const='yes' id='type-id-2527'/>
     <reference-type-def kind='lvalue' type-id='type-id-2527' size-in-bits='64' id='type-id-2523'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++11/condition_variable.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='chrono'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
+
       <var-decl name='__once_callable' type-id='type-id-221' mangled-name='_ZSt15__once_callable' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='783' column='1'/>
       <var-decl name='__once_call' type-id='type-id-430' mangled-name='_ZSt11__once_call' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/mutex' line='784' column='1'/>
       <function-decl name='__throw_system_error' mangled-name='_ZSt20__throw_system_errori' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/functexcept.h' line='95' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
       <subrange length='47'/>
     </array-type-def>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__detail'>
-      </namespace-decl>
+
+
+
       <class-decl name='remove_reference&lt;__gnu_debug::_Safe_iterator_base*&amp;&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1330' column='1' id='type-id-2591'>
         <member-type access='public'>
           <typedef-decl name='type' type-id='type-id-2563' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/type_traits' line='1331' column='1' id='type-id-2592'/>
       <parameter type-id='type-id-13'/>
       <return type-id='type-id-13'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-2573' size-in-bits='64' id='type-id-2575'/>
     <qualified-type-def type-id='type-id-2573' const='yes' id='type-id-2602'/>
     <pointer-type-def type-id='type-id-2602' size-in-bits='64' id='type-id-2576'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++11/functexcept.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='chrono'>
-      </namespace-decl>
-      <namespace-decl name='__detail'>
-      </namespace-decl>
+
+
+
+
       <namespace-decl name='regex_constants'>
         <enum-decl name='error_type' id='type-id-2607'>
           <underlying-type type-id='type-id-6'/>
           </member-function>
         </class-decl>
       </namespace-decl>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <class-decl name='__weak_count&lt;(__gnu_cxx::_Lock_policy)2u&gt;' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='644' column='1' id='type-id-578'>
         <data-member access='private' layout-offset-in-bits='0'>
           <var-decl name='_M_pi' type-id='type-id-565' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='722' column='1'/>
       <parameter type-id='type-id-438'/>
       <return type-id='type-id-267'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-58'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++11/functional.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
       <class-decl name='bad_function_call' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/functional' line='1633' column='1' id='type-id-2667'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-369'/>
         <member-function access='private' destructor='yes' vtable-offset='0'>
     <namespace-decl name='std'>
       <namespace-decl name='__exception_ptr'>
       </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='chrono'>
-      </namespace-decl>
+
+
       <class-decl name='__add_ref&lt;std::__future_base::_Result_base*&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='56' column='1' id='type-id-2826'>
         <member-type access='public'>
           <typedef-decl name='type' type-id='type-id-2828' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/tuple' line='57' column='1' id='type-id-2827'/>
         <return type-id='type-id-394'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-58'/>
       <parameter type-id='type-id-259'/>
       <return type-id='type-id-27'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <qualified-type-def type-id='type-id-2761' const='yes' id='type-id-2996'/>
     <pointer-type-def type-id='type-id-2996' size-in-bits='64' id='type-id-2958'/>
     <reference-type-def kind='lvalue' type-id='type-id-459' size-in-bits='64' id='type-id-2959'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++11/mutex.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='chrono'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
+
       <function-decl name='__once_proxy' mangled-name='__once_proxy' filepath='../../../.././libstdc++-v3/src/c++11/mutex.cc' line='77' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='__once_proxy@@GLIBCXX_3.4.11'>
         <return type-id='type-id-4'/>
       </function-decl>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++11/placeholders.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
       <namespace-decl name='placeholders'>
         <var-decl name='_1' type-id='type-id-2598' mangled-name='_ZNSt12placeholders2_1E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='36' column='1' elf-symbol-id='_ZNSt12placeholders2_1E@@GLIBCXX_3.4.15'/>
         <var-decl name='_2' type-id='type-id-3021' mangled-name='_ZNSt12placeholders2_2E' visibility='default' filepath='../../../.././libstdc++-v3/src/c++11/placeholders.cc' line='37' column='1' elf-symbol-id='_ZNSt12placeholders2_2E@@GLIBCXX_3.4.15'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++11/regex.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__detail'>
-      </namespace-decl>
+
+
+
       <namespace-decl name='regex_constants'>
       </namespace-decl>
       <namespace-decl name='__regex'>
         <class-decl name='_Results' is-struct='yes' visibility='default' is-declaration-only='yes' id='type-id-2619'/>
       </namespace-decl>
-      <namespace-decl name=''>
-      </namespace-decl>
+
       <function-decl name='__addressof&lt;std::__regex::_State&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/move.h' line='47' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-2658'/>
         <return type-id='type-id-2613'/>
         <return type-id='type-id-394'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='atexit' filepath='/usr/include/stdlib.h' line='518' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-430'/>
       <return type-id='type-id-27'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++11/shared_ptr.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <var-decl name='nothrow' type-id='type-id-664' mangled-name='_ZSt7nothrow' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='71' column='1'/>
       <class-decl name='bad_weak_ptr' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/shared_ptr_base.h' line='61' column='1' id='type-id-3081'>
         <base-class access='public' layout-offset-in-bits='0' type-id='type-id-369'/>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_cxx'>
-    </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-58'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++11/system_error.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
       <class-decl name='error_category' size-in-bits='64' visibility='default' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/system_error' line='66' column='1' id='type-id-367'>
         <member-function access='protected' constructor='yes'>
           <function-decl name='error_category' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/system_error' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
       <parameter type-id='type-id-259'/>
       <return type-id='type-id-27'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <qualified-type-def type-id='type-id-2759' const='yes' id='type-id-3089'/>
     <pointer-type-def type-id='type-id-3089' size-in-bits='64' id='type-id-3088'/>
     <var-decl name='stdin' type-id='type-id-240' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++11/thread.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='chrono'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
+
       <namespace-decl name=''>
         <function-decl name='execute_native_thread_routine' filepath='../../../.././libstdc++-v3/src/c++11/thread.cc' line='66' column='1' visibility='default' binding='global' size-in-bits='64'>
           <parameter type-id='type-id-221'/>
         <return type-id='type-id-394'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-58'/>
       <parameter type-id='type-id-704' name='__thread2' filepath='/usr/include/pthread.h' line='1137' column='1'/>
       <return type-id='type-id-27'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <var-decl name='stdin' type-id='type-id-240' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
     <var-decl name='stdout' type-id='type-id-240' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
     <function-decl name='get_nprocs' filepath='/usr/include/sys/sysinfo.h' line='37' column='1' visibility='default' binding='global' size-in-bits='64'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++11/fstream-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
       <function-decl name='operator|' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/ios_base.h' line='159' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-5'/>
         <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-269'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='125' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <parameter type-id='type-id-13'/>
     <pointer-type-def type-id='type-id-3146' size-in-bits='64' id='type-id-3149'/>
     <qualified-type-def type-id='type-id-3145' const='yes' id='type-id-3161'/>
     <pointer-type-def type-id='type-id-3161' size-in-bits='64' id='type-id-3148'/>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <var-decl name='stdin' type-id='type-id-240' visibility='default' filepath='/usr/include/stdio.h' line='165' column='1'/>
     <var-decl name='stdout' type-id='type-id-240' visibility='default' filepath='/usr/include/stdio.h' line='166' column='1'/>
     <function-decl name='operator new []' mangled-name='_Znam' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/libstdc++-v3/libsupc++/new' line='95' column='1' visibility='default' binding='global' size-in-bits='64'>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++11/string-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <function-decl name='operator==&lt;char&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-69'/>
         <parameter type-id='type-id-69'/>
     <qualified-type-def type-id='type-id-3192' const='yes' id='type-id-3193'/>
     <qualified-type-def type-id='type-id-65' const='yes' id='type-id-3194'/>
     <qualified-type-def type-id='type-id-72' const='yes' id='type-id-3195'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-58'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='../../../.././libstdc++-v3/src/c++11/wstring-inst.cc' language='LANG_C_plus_plus'>
     <namespace-decl name='std'>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
+
+
       <function-decl name='operator==&lt;wchar_t&gt;' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig/gcc-4.7.4/x86_64-unknown-linux-gnu/libstdc++-v3/include/bits/allocator.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-108'/>
         <parameter type-id='type-id-108'/>
     <qualified-type-def type-id='type-id-3227' const='yes' id='type-id-3228'/>
     <qualified-type-def type-id='type-id-104' const='yes' id='type-id-3229'/>
     <qualified-type-def type-id='type-id-111' const='yes' id='type-id-3230'/>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='btowc' filepath='/usr/include/wchar.h' line='386' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-27'/>
       <return type-id='type-id-58'/>
index 1f270060d2002086621bbbb9b9b370b1e76e9209..10cac2075dc970f023021f8dd3abea75c3d65c56 100644 (file)
         </class-decl>
       </namespace-decl>
       <typedef-decl name='noncopyable' type-id='type-id-13' filepath='src/third_party/boost-1.56.0/boost/core/noncopyable.hpp' line='44' column='1' id='type-id-25'/>
-      <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-      </namespace-decl>
+
     </namespace-decl>
     <type-decl name='bool' size-in-bits='8' id='type-id-11'/>
     <type-decl name='int' size-in-bits='32' id='type-id-5'/>
     <qualified-type-def type-id='type-id-12' const='yes' id='type-id-29'/>
     <pointer-type-def type-id='type-id-29' size-in-bits='64' id='type-id-6'/>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
       <class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-30'/>
       <typedef-decl name='string' type-id='type-id-30' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/bits/stringfwd.h' line='62' column='1' id='type-id-10'/>
     </namespace-decl>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
-    </namespace-decl>
+
     <function-decl name='abort' filepath='/usr/include/stdlib.h' line='515' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-8'/>
     </function-decl>
       <parameter type-id='type-id-5'/>
       <return type-id='type-id-63'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-15'/>
         </function-decl>
       </namespace-decl>
       <namespace-decl name='system'>
-        <namespace-decl name='errc'>
-        </namespace-decl>
+
         <function-decl name='system_category' mangled-name='_ZN5boost6system15system_categoryEv' filepath='src/third_party/boost-1.56.0/boost/system/error_code.hpp' line='212' column='1' visibility='default' binding='global' size-in-bits='64'>
           <return type-id='type-id-1'/>
         </function-decl>
         </member-function>
       </class-decl>
       <namespace-decl name='detail'>
-        <namespace-decl name='indirect_traits'>
-        </namespace-decl>
+
         <function-decl name='atomic_exchange_and_add' mangled-name='_ZN5boost6detail23atomic_exchange_and_addEPii' filepath='src/third_party/boost-1.56.0/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp' line='35' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost6detail23atomic_exchange_and_addEPii'>
           <parameter type-id='type-id-202' name='pw' filepath='src/third_party/boost-1.56.0/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp' line='35' column='1'/>
           <parameter type-id='type-id-5' name='dv' filepath='src/third_party/boost-1.56.0/boost/smart_ptr/detail/sp_counted_base_gcc_x86.hpp' line='35' column='1'/>
         </member-function>
       </class-decl>
       <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-        <namespace-decl name='placeholders'>
-        </namespace-decl>
+
+
         <class-decl name='if_&lt;boost::detail::use_operator_brackets_proxy&lt;const boost::filesystem::path, const boost::filesystem::path &amp;&gt;, boost::detail::operator_brackets_proxy&lt;boost::filesystem::path::iterator&gt;, const boost::filesystem::path&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/mpl/if.hpp' line='55' column='1' id='type-id-275'>
           <member-type access='public'>
             <typedef-decl name='type' type-id='type-id-276' filepath='src/third_party/boost-1.56.0/boost/mpl/if.hpp' line='70' column='1' id='type-id-240'/>
     </namespace-decl>
     <qualified-type-def type-id='type-id-130' const='yes' id='type-id-141'/>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
       <class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-30'>
         <member-type access='private'>
           <typedef-decl name='size_type' type-id='type-id-300' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/bits/basic_string.h' line='121' column='1' id='type-id-137'/>
     <reference-type-def kind='lvalue' type-id='type-id-365' size-in-bits='64' id='type-id-289'/>
     <reference-type-def kind='lvalue' type-id='type-id-377' size-in-bits='64' id='type-id-290'/>
     <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
+
       <class-decl name='bool_&lt;true&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/mpl/bool.hpp' line='23' column='1' id='type-id-379'>
         <data-member access='public' static='yes'>
           <var-decl name='value' type-id='type-id-380' visibility='default' filepath='src/third_party/boost-1.56.0/boost/mpl/bool.hpp' line='25' column='1'/>
       </class-decl>
       <typedef-decl name='true_' type-id='type-id-379' filepath='src/third_party/boost-1.56.0/boost/mpl/bool_fwd.hpp' line='24' column='1' id='type-id-299'/>
     </namespace-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <namespace-decl name='__gnu_cxx'>
       <function-decl name='div' mangled-name='_ZN9__gnu_cxx3divExx' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/cstdlib' line='214' column='1' visibility='default' binding='global' size-in-bits='64'>
         <parameter type-id='type-id-60'/>
       <parameter type-id='type-id-5'/>
       <return type-id='type-id-63'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-15'/>
       <parameter type-id='type-id-86'/>
       <return type-id='type-id-41'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <function-decl name='acos' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-37'/>
       <return type-id='type-id-37'/>
     <qualified-type-def type-id='type-id-328' const='yes' id='type-id-391'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/path.cpp' language='LANG_C_plus_plus'>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <namespace-decl name='boost'>
       <namespace-decl name='filesystem'>
         <namespace-decl name='detail'>
         </namespace-decl>
       </namespace-decl>
       <namespace-decl name='detail'>
-        <namespace-decl name='indirect_traits'>
-        </namespace-decl>
+
         <class-decl name='operator_brackets_proxy&lt;boost::filesystem::path::iterator&gt;' visibility='default' is-declaration-only='yes' id='type-id-241'/>
         <class-decl name='addr_impl_ref&lt;const boost::filesystem::path&gt;' size-in-bits='64' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/core/addressof.hpp' line='25' column='1' id='type-id-392'>
           <data-member access='public' layout-offset-in-bits='0'>
         </class-decl>
       </namespace-decl>
       <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-        <namespace-decl name='placeholders'>
-        </namespace-decl>
+
+
       </namespace-decl>
       <namespace-decl name='system'>
       </namespace-decl>
       </function-decl>
     </namespace-decl>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
       <class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-30'>
         <member-type access='private'>
           <typedef-decl name='size_type' type-id='type-id-300' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/bits/basic_string.h' line='121' column='1' id='type-id-137'/>
     <reference-type-def kind='lvalue' type-id='type-id-28' size-in-bits='64' id='type-id-401'/>
     <reference-type-def kind='lvalue' type-id='type-id-371' size-in-bits='64' id='type-id-405'/>
     <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
+
     </namespace-decl>
     <function-decl name='abort' filepath='/usr/include/stdlib.h' line='515' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-8'/>
       <parameter type-id='type-id-5'/>
       <return type-id='type-id-63'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-15'/>
       <parameter type-id='type-id-86'/>
       <return type-id='type-id-41'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <function-decl name='acos' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-37'/>
       <return type-id='type-id-37'/>
     </namespace-decl>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/path_traits.cpp' language='LANG_C_plus_plus'>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
       <class-decl name='basic_string&lt;wchar_t, std::char_traits&lt;wchar_t&gt;, std::allocator&lt;wchar_t&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-328'>
         <member-function access='public'>
           <function-decl name='append&lt;wchar_t *&gt;' mangled-name='_ZNSbIwSt11char_traitsIwESaIwEE6appendIPwEERS2_T_S6_' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/bits/basic_string.h' line='1061' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZNSbIwSt11char_traitsIwESaIwEE6appendIPwEERS2_T_S6_'>
         </member-type>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
-    </namespace-decl>
+
     <namespace-decl name='boost'>
       <namespace-decl name='system'>
       </namespace-decl>
-      <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-      </namespace-decl>
+
       <namespace-decl name='filesystem'>
         <namespace-decl name='path_traits'>
           <function-decl name='convert' mangled-name='_ZN5boost10filesystem11path_traits7convertEPKcS3_RSbIwSt11char_traitsIwESaIwEERKSt7codecvtIwc11__mbstate_tE' filepath='src/third_party/boost-1.56.0/libs/filesystem/src/path_traits.cpp' line='133' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost10filesystem11path_traits7convertEPKcS3_RSbIwSt11char_traitsIwESaIwEERKSt7codecvtIwc11__mbstate_tE'>
       <parameter type-id='type-id-5'/>
       <return type-id='type-id-63'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-15'/>
     <reference-type-def kind='lvalue' type-id='type-id-452' size-in-bits='64' id='type-id-453'/>
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/portability.cpp' language='LANG_C_plus_plus'>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
       <class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-30'>
         <member-type access='private'>
           <typedef-decl name='size_type' type-id='type-id-300' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/bits/basic_string.h' line='121' column='1' id='type-id-137'/>
         <return type-id='type-id-61'/>
       </function-decl>
     </namespace-decl>
-    <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
-    </namespace-decl>
+
     <namespace-decl name='boost'>
       <namespace-decl name='system'>
       </namespace-decl>
-      <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-        <namespace-decl name='placeholders'>
-        </namespace-decl>
-      </namespace-decl>
-      <namespace-decl name='detail'>
-        <namespace-decl name='indirect_traits'>
-        </namespace-decl>
-      </namespace-decl>
+
+
       <namespace-decl name='filesystem'>
         <function-decl name='native' mangled-name='_ZN5boost10filesystem6nativeERKSs' filepath='src/third_party/boost-1.56.0/libs/filesystem/src/portability.cpp' line='61' column='1' visibility='default' binding='global' size-in-bits='64' elf-symbol-id='_ZN5boost10filesystem6nativeERKSs'>
           <parameter type-id='type-id-148' name='name' filepath='src/third_party/boost-1.56.0/libs/filesystem/src/portability.cpp' line='61' column='1'/>
       <parameter type-id='type-id-5'/>
       <return type-id='type-id-63'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-15'/>
       <parameter type-id='type-id-86'/>
       <return type-id='type-id-41'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <function-decl name='acos' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-37'/>
       <return type-id='type-id-37'/>
         </namespace-decl>
       </namespace-decl>
       <namespace-decl name='detail'>
-        <namespace-decl name='indirect_traits'>
-        </namespace-decl>
+
         <class-decl name='operator_brackets_proxy&lt;boost::filesystem::path::iterator&gt;' visibility='default' is-declaration-only='yes' id='type-id-241'/>
       </namespace-decl>
       <namespace-decl name='mpl'>
-        <namespace-decl name='aux'>
-        </namespace-decl>
-        <namespace-decl name='placeholders'>
-        </namespace-decl>
+
+
       </namespace-decl>
       <class-decl name='enable_if_c&lt;true, void&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='src/third_party/boost-1.56.0/boost/core/enable_if.hpp' line='28' column='1' id='type-id-467'/>
       <namespace-decl name='system'>
       </namespace-decl>
     </namespace-decl>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
       <class-decl name='basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;' visibility='default' is-declaration-only='yes' id='type-id-30'>
         <member-type access='private'>
           <typedef-decl name='size_type' type-id='type-id-300' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/bits/basic_string.h' line='121' column='1' id='type-id-137'/>
         </member-function>
       </class-decl>
     </namespace-decl>
-    <namespace-decl name='mpl_'>
-      <namespace-decl name='aux'>
-      </namespace-decl>
-    </namespace-decl>
+
     <function-decl name='abort' filepath='/usr/include/stdlib.h' line='515' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-8'/>
     </function-decl>
       <parameter type-id='type-id-5'/>
       <return type-id='type-id-63'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='setlocale' filepath='/usr/include/locale.h' line='124' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-5'/>
       <parameter type-id='type-id-15'/>
       <parameter type-id='type-id-86'/>
       <return type-id='type-id-41'/>
     </function-decl>
-    <namespace-decl name='__cxxabiv1'>
-    </namespace-decl>
+
     <function-decl name='acos' filepath='/usr/include/x86_64-linux-gnu/bits/mathcalls.h' line='54' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-37'/>
       <return type-id='type-id-37'/>
       <parameter type-id='type-id-15'/>
       <return type-id='type-id-15'/>
     </function-decl>
-    <namespace-decl name=''>
-    </namespace-decl>
+
     <pointer-type-def type-id='type-id-476' size-in-bits='64' id='type-id-480'/>
     <qualified-type-def type-id='type-id-58' const='yes' id='type-id-484'/>
     <reference-type-def kind='lvalue' type-id='type-id-484' size-in-bits='64' id='type-id-481'/>
       </namespace-decl>
     </namespace-decl>
     <namespace-decl name='std'>
-      <namespace-decl name='__exception_ptr'>
-      </namespace-decl>
-      <namespace-decl name='__debug'>
-      </namespace-decl>
+
+
       <class-decl name='codecvt&lt;wchar_t, char, __mbstate_t&gt;' visibility='default' is-declaration-only='yes' id='type-id-133'/>
       <class-decl name='numeric_limits&lt;wchar_t&gt;' size-in-bits='8' is-struct='yes' visibility='default' filepath='/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../../include/c++/4.9/limits' line='650' column='1' id='type-id-495'>
         <data-member access='public' static='yes'>
       <parameter type-id='type-id-5'/>
       <return type-id='type-id-5'/>
     </function-decl>
-    <namespace-decl name='__gnu_debug'>
-    </namespace-decl>
+
     <function-decl name='clearerr' filepath='/usr/include/stdio.h' line='826' column='1' visibility='default' binding='global' size-in-bits='64'>
       <parameter type-id='type-id-94'/>
       <return type-id='type-id-8'/>
     <qualified-type-def type-id='type-id-5' const='yes' id='type-id-496'/>
     <qualified-type-def type-id='type-id-499' const='yes' id='type-id-497'/>
     <qualified-type-def type-id='type-id-500' const='yes' id='type-id-498'/>
-    <namespace-decl name=''>
-    </namespace-decl>
+
   </abi-instr>
   <abi-instr version='1.0' address-size='64' path='src/third_party/boost-1.56.0/libs/filesystem/src/windows_file_codecvt.cpp' language='LANG_C_plus_plus'>
-    <namespace-decl name='std'>
-    </namespace-decl>
+
     <function-decl name='abort' filepath='/usr/include/stdlib.h' line='515' column='1' visibility='default' binding='global' size-in-bits='64'>
       <return type-id='type-id-8'/>
     </function-decl>