1 // Methods for type_info for -*- C++ -*- Run Time Type Identification.
2 // Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 // 2003, 2004, 2005, 2006, 2007, 2009
4 // Free Software Foundation
6 // This file is part of GCC.
8 // GCC is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3, or (at your option)
13 // GCC is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // Under Section 7 of GPL version 3, you are granted additional
19 // permissions described in the GCC Runtime Library Exception, version
20 // 3.1, as published by the Free Software Foundation.
22 // You should have received a copy of the GNU General Public License and
23 // a copy of the GCC Runtime Library Exception along with this program;
24 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 // <http://www.gnu.org/licenses/>.
27 #include <bits/c++config.h>
35 #if !__GXX_TYPEINFO_EQUALITY_INLINE
37 // We can't rely on common symbols being shared between shared objects.
39 operator== (const std::type_info
& arg
) const
41 #if __GXX_MERGED_TYPEINFO_NAMES
42 return name () == arg
.name ();
44 /* The name() method will strip any leading '*' prefix. Therefore
45 take care to look at __name rather than name() when looking for
46 the "pointer" prefix. */
48 || (__name
[0] != '*' && (__builtin_strcmp (name (), arg
.name ()) == 0));
56 // return true if this is a type_info for a pointer type
58 __is_pointer_p () const
63 // return true if this is a type_info for a function type
65 __is_function_p () const
70 // try and catch a thrown object.
72 __do_catch (const type_info
*thr_type
, void **, unsigned) const
74 return *this == *thr_type
;
77 // upcast from this type to the target. __class_type_info will override
79 __do_upcast (const abi::__class_type_info
*, void **) const