11673e404SJohn Birrell /*
21673e404SJohn Birrell * CDDL HEADER START
31673e404SJohn Birrell *
41673e404SJohn Birrell * The contents of this file are subject to the terms of the
51673e404SJohn Birrell * Common Development and Distribution License, Version 1.0 only
61673e404SJohn Birrell * (the "License"). You may not use this file except in compliance
71673e404SJohn Birrell * with the License.
81673e404SJohn Birrell *
91673e404SJohn Birrell * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
101673e404SJohn Birrell * or http://www.opensolaris.org/os/licensing.
111673e404SJohn Birrell * See the License for the specific language governing permissions
121673e404SJohn Birrell * and limitations under the License.
131673e404SJohn Birrell *
141673e404SJohn Birrell * When distributing Covered Code, include this CDDL HEADER in each
151673e404SJohn Birrell * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
161673e404SJohn Birrell * If applicable, add the following below this CDDL HEADER, with the
171673e404SJohn Birrell * fields enclosed by brackets "[]" replaced with your own identifying
181673e404SJohn Birrell * information: Portions Copyright [yyyy] [name of copyright owner]
191673e404SJohn Birrell *
201673e404SJohn Birrell * CDDL HEADER END
211673e404SJohn Birrell */
221673e404SJohn Birrell /*
231673e404SJohn Birrell * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
241673e404SJohn Birrell * Use is subject to license terms.
251673e404SJohn Birrell */
261673e404SJohn Birrell
271673e404SJohn Birrell #pragma ident "%Z%%M% %I% %E% SMI"
281673e404SJohn Birrell
291673e404SJohn Birrell #include <sys/types.h>
301673e404SJohn Birrell #include <string.h>
311673e404SJohn Birrell
321673e404SJohn Birrell #include "symbol.h"
331673e404SJohn Birrell
341673e404SJohn Birrell int
ignore_symbol(GElf_Sym * sym,const char * name)351673e404SJohn Birrell ignore_symbol(GElf_Sym *sym, const char *name)
361673e404SJohn Birrell {
371673e404SJohn Birrell uchar_t type = GELF_ST_TYPE(sym->st_info);
381673e404SJohn Birrell
391673e404SJohn Birrell /*
401673e404SJohn Birrell * As an optimization, we do not output function or data object
411673e404SJohn Birrell * records for undefined or anonymous symbols.
421673e404SJohn Birrell */
431673e404SJohn Birrell if (sym->st_shndx == SHN_UNDEF || sym->st_name == 0)
441673e404SJohn Birrell return (1);
451673e404SJohn Birrell
461673e404SJohn Birrell /*
471673e404SJohn Birrell * _START_ and _END_ are added to the symbol table by the
481673e404SJohn Birrell * linker, and will never have associated type information.
491673e404SJohn Birrell */
501673e404SJohn Birrell if (strcmp(name, "_START_") == 0 || strcmp(name, "_END_") == 0)
511673e404SJohn Birrell return (1);
521673e404SJohn Birrell
531673e404SJohn Birrell /*
541673e404SJohn Birrell * Do not output records for absolute-valued object symbols
551673e404SJohn Birrell * that have value zero. The compiler insists on generating
561673e404SJohn Birrell * things like this for __fsr_init_value settings, etc.
571673e404SJohn Birrell */
581673e404SJohn Birrell if (type == STT_OBJECT && sym->st_shndx == SHN_ABS &&
591673e404SJohn Birrell sym->st_value == 0)
601673e404SJohn Birrell return (1);
611673e404SJohn Birrell return (0);
621673e404SJohn Birrell }
63