xref: /onnv-gate/usr/src/cmd/sgs/libconv/common/symbols.msg (revision 9273:9a0603d78ad3)
10Sstevel@tonic-gate#
20Sstevel@tonic-gate# CDDL HEADER START
30Sstevel@tonic-gate#
40Sstevel@tonic-gate# The contents of this file are subject to the terms of the
51618Srie# Common Development and Distribution License (the "License").
61618Srie# You may not use this file except in compliance with the License.
70Sstevel@tonic-gate#
80Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate# See the License for the specific language governing permissions
110Sstevel@tonic-gate# and limitations under the License.
120Sstevel@tonic-gate#
130Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate#
190Sstevel@tonic-gate# CDDL HEADER END
201618Srie
210Sstevel@tonic-gate#
229085SAli.Bahrami@Sun.COM# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
231618Srie# Use is subject to license terms.
240Sstevel@tonic-gate#
250Sstevel@tonic-gate
26*9273SAli.Bahrami@Sun.COM@ MSG_STT_NOTYPE_CF		"STT_NOTYPE"		# 0
27*9273SAli.Bahrami@Sun.COM@ MSG_STT_NOTYPE_NF			"notype"
28*9273SAli.Bahrami@Sun.COM@ MSG_STT_NOTYPE_DEF			"NOTY"
29*9273SAli.Bahrami@Sun.COM@ MSG_STT_OBJECT_CF		"STT_OBJECT"			# 1
30*9273SAli.Bahrami@Sun.COM@ MSG_STT_OBJECT_NF			"object"
31*9273SAli.Bahrami@Sun.COM@ MSG_STT_OBJECT_DEF			"OBJT"
32*9273SAli.Bahrami@Sun.COM@ MSG_STT_FUNC_CF		"STT_FUNC"			# 2
33*9273SAli.Bahrami@Sun.COM@ MSG_STT_FUNC_NF			"func"
34*9273SAli.Bahrami@Sun.COM@ MSG_STT_FUNC_DEF			"FUNC"
35*9273SAli.Bahrami@Sun.COM@ MSG_STT_SECTION_CF		"STT_SECTION"			# 3
36*9273SAli.Bahrami@Sun.COM@ MSG_STT_SECTION_NF			"section"
37*9273SAli.Bahrami@Sun.COM@ MSG_STT_SECTION_DEF			"SECT"
38*9273SAli.Bahrami@Sun.COM@ MSG_STT_FILE_CF		"STT_FILE"			# 4
39*9273SAli.Bahrami@Sun.COM@ MSG_STT_FILE_NF			"file"
40*9273SAli.Bahrami@Sun.COM@ MSG_STT_FILE_DEF			"FILE"
41*9273SAli.Bahrami@Sun.COM@ MSG_STT_COMMON_CF		"STT_COMMON"			# 5
42*9273SAli.Bahrami@Sun.COM@ MSG_STT_COMMON_NF			"common"
43*9273SAli.Bahrami@Sun.COM@ MSG_STT_COMMON_DEF			"COMM"
44*9273SAli.Bahrami@Sun.COM@ MSG_STT_TLS_CF		"STT_TLS"			# 6
45*9273SAli.Bahrami@Sun.COM@ MSG_STT_TLS_NF			"tls"
46*9273SAli.Bahrami@Sun.COM@ MSG_STT_TLS_DEF			"TLS "
47*9273SAli.Bahrami@Sun.COM@ MSG_STT_IFUNC_CF		"STT_IFUNC"			# 6
48*9273SAli.Bahrami@Sun.COM@ MSG_STT_IFUNC_NF			"ifunc"
49*9273SAli.Bahrami@Sun.COM@ MSG_STT_IFUNC_DEF			"IFNC"
50*9273SAli.Bahrami@Sun.COM@ MSG_STT_SPARC_REGISTER_CF	"STT_SPARC_REGISTER"		#13
51*9273SAli.Bahrami@Sun.COM@ MSG_STT_SPARC_REGISTER_NF		"sparc_register"
52*9273SAli.Bahrami@Sun.COM@ MSG_STT_SPARC_REGISTER_DEF		"REGI"
53*9273SAli.Bahrami@Sun.COM
54*9273SAli.Bahrami@Sun.COM@ MSG_STB_LOCAL_CF		"STB_LOCAL"			# 0
55*9273SAli.Bahrami@Sun.COM@ MSG_STB_LOCAL_NF			"local"
56*9273SAli.Bahrami@Sun.COM@ MSG_STB_LOCAL_DEF			"LOCL"
57*9273SAli.Bahrami@Sun.COM@ MSG_STB_GLOBAL_CF		"STB_GLOBAL"			# 1
58*9273SAli.Bahrami@Sun.COM@ MSG_STB_GLOBAL_NF			"global"
59*9273SAli.Bahrami@Sun.COM@ MSG_STB_GLOBAL_DEF			"GLOB"
60*9273SAli.Bahrami@Sun.COM@ MSG_STB_WEAK_CF		"STB_WEAK"			# 2
61*9273SAli.Bahrami@Sun.COM@ MSG_STB_WEAK_NF			"weak"
62*9273SAli.Bahrami@Sun.COM@ MSG_STB_WEAK_DEF			"WEAK"
630Sstevel@tonic-gate
64*9273SAli.Bahrami@Sun.COM@ MSG_STV_DEFAULT_CF		"STV_DEFAULT"			# 0
65*9273SAli.Bahrami@Sun.COM@ MSG_STV_DEFAULT_NF			"default"
66*9273SAli.Bahrami@Sun.COM@ MSG_STV_DEFAULT_DEF			"D"
67*9273SAli.Bahrami@Sun.COM@ MSG_STV_INTERNAL_CF		"STV_INTERNAL"			# 1
68*9273SAli.Bahrami@Sun.COM@ MSG_STV_INTERNAL_NF			"internal"
69*9273SAli.Bahrami@Sun.COM@ MSG_STV_INTERNAL_DEF			"I"
70*9273SAli.Bahrami@Sun.COM@ MSG_STV_HIDDEN_CF		"STV_HIDDEN"			# 2
71*9273SAli.Bahrami@Sun.COM@ MSG_STV_HIDDEN_NF			"hidden"
72*9273SAli.Bahrami@Sun.COM@ MSG_STV_HIDDEN_DEF			"H"
73*9273SAli.Bahrami@Sun.COM@ MSG_STV_PROTECTED_CF		"STV_PROTECTED"			# 3
74*9273SAli.Bahrami@Sun.COM@ MSG_STV_PROTECTED_NF			"protected"
75*9273SAli.Bahrami@Sun.COM@ MSG_STV_PROTECTED_DEF			"P"
76*9273SAli.Bahrami@Sun.COM@ MSG_STV_EXPORTED_CF		"STV_EXPORTED"			# 4
77*9273SAli.Bahrami@Sun.COM@ MSG_STV_EXPORTED_NF			"exported"
78*9273SAli.Bahrami@Sun.COM@ MSG_STV_EXPORTED_DEF			"X"
79*9273SAli.Bahrami@Sun.COM@ MSG_STV_SINGLETON_CF		"STV_SINGLETON"			# 5
80*9273SAli.Bahrami@Sun.COM@ MSG_STV_SINGLETON_NF			"singleton"
81*9273SAli.Bahrami@Sun.COM@ MSG_STV_SINGLETON_DEF			"S"
82*9273SAli.Bahrami@Sun.COM@ MSG_STV_ELIMINATE_CF		"STV_ELIMINATE"			# 6
83*9273SAli.Bahrami@Sun.COM@ MSG_STV_ELIMINATE_NF			"eliminate"
84*9273SAli.Bahrami@Sun.COM@ MSG_STV_ELIMINATE_DEF			"E"
855088Sab196087
86*9273SAli.Bahrami@Sun.COM@ MSG_SHN_UNDEF_CF		"SHN_UNDEF"			# 0
87*9273SAli.Bahrami@Sun.COM@ MSG_SHN_UNDEF_CFNP			"UNDEF"
88*9273SAli.Bahrami@Sun.COM@ MSG_SHN_UNDEF_NF			"undef"
89*9273SAli.Bahrami@Sun.COM@ MSG_SHN_BEFORE_CF		"SHN_BEFORE"			# 0xff00
90*9273SAli.Bahrami@Sun.COM@ MSG_SHN_BEFORE_CFNP			"BEFORE"
91*9273SAli.Bahrami@Sun.COM@ MSG_SHN_BEFORE_NF			"before"
92*9273SAli.Bahrami@Sun.COM@ MSG_SHN_AFTER_CF		"SHN_AFTER"			# 0xff01
93*9273SAli.Bahrami@Sun.COM@ MSG_SHN_AFTER_CFNP			"AFTER"
94*9273SAli.Bahrami@Sun.COM@ MSG_SHN_AFTER_NF			"after"
95*9273SAli.Bahrami@Sun.COM@ MSG_SHN_AMD64_LCOMMON_CF	"SHN_AMD64_LCOMMON"		# 0xff02
96*9273SAli.Bahrami@Sun.COM@ MSG_SHN_AMD64_LCOMMON_CFNP		"AMD64_LCOMMON"
97*9273SAli.Bahrami@Sun.COM@ MSG_SHN_AMD64_LCOMMON_NF		"amd64_lcommon"
98*9273SAli.Bahrami@Sun.COM@ MSG_SHN_AMD64_LCOMMON_DEF		"LCOMMON"
99*9273SAli.Bahrami@Sun.COM@ MSG_SHN_X86_64_LCOMMON_CF	"SHN_X86_64_LCOMMON" # Alias: SHN_AMD64_LCOMMON
100*9273SAli.Bahrami@Sun.COM@ MSG_SHN_X86_64_LCOMMON_CFNP		"X86_64_LCOMMON"
101*9273SAli.Bahrami@Sun.COM@ MSG_SHN_X86_64_LCOMMON_NF		"x86_64_lcommon"
102*9273SAli.Bahrami@Sun.COM@ MSG_SHN_SUNW_IGNORE_CF	"SHN_SUNW_IGNORE"		# 0xff3f
103*9273SAli.Bahrami@Sun.COM@ MSG_SHN_SUNW_IGNORE_CFNP		"SUNW_IGNORE"
104*9273SAli.Bahrami@Sun.COM@ MSG_SHN_SUNW_IGNORE_NF		"sunw_ignore"
105*9273SAli.Bahrami@Sun.COM@ MSG_SHN_SUNW_IGNORE_DEF		"IGNORE"
106*9273SAli.Bahrami@Sun.COM@ MSG_SHN_ABS_CF		"SHN_ABS"			# 0xfff1
107*9273SAli.Bahrami@Sun.COM@ MSG_SHN_ABS_CFNP			"ABS"
108*9273SAli.Bahrami@Sun.COM@ MSG_SHN_ABS_NF			"abs"
109*9273SAli.Bahrami@Sun.COM@ MSG_SHN_COMMON_CF		"SHN_COMMON"			# 0xfff2
110*9273SAli.Bahrami@Sun.COM@ MSG_SHN_COMMON_CFNP			"COMMON"
111*9273SAli.Bahrami@Sun.COM@ MSG_SHN_COMMON_NF			"common"
112*9273SAli.Bahrami@Sun.COM@ MSG_SHN_XINDEX_CF		"SHN_XINDEX"			# 0xffff
113*9273SAli.Bahrami@Sun.COM@ MSG_SHN_XINDEX_CFNP			"XINDEX"
114*9273SAli.Bahrami@Sun.COM@ MSG_SHN_XINDEX_NF			"xindex"
1150Sstevel@tonic-gate
1161618Srie@ MSG_SYM_FMT_VAL_32	"0x%8.8llx"
1171618Srie@ MSG_SYM_FMT_VAL_64	"0x%16.16llx"
118