/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at usr/src/OPENSOLARIS.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #pragma ident "%Z%%M% %I% %E% SMI" /* * String conversion routine for relocation types. */ #include #include #include "_conv.h" #include "relocate_i386_msg.h" /* * 386 specific relocations. */ static const Msg rels[R_386_NUM] = { MSG_R_386_NONE, MSG_R_386_32, MSG_R_386_PC32, MSG_R_386_GOT32, MSG_R_386_PLT32, MSG_R_386_COPY, MSG_R_386_GLOB_DAT, MSG_R_386_JMP_SLOT, MSG_R_386_RELATIVE, MSG_R_386_GOTOFF, MSG_R_386_GOTPC, MSG_R_386_32PLT, MSG_R_386_TLS_GD_PLT, MSG_R_386_TLS_LDM_PLT, MSG_R_386_TLS_TPOFF, MSG_R_386_TLS_IE, MSG_R_386_TLS_GOTIE, MSG_R_386_TLS_LE, MSG_R_386_TLS_GD, MSG_R_386_TLS_LDM, MSG_R_386_16, MSG_R_386_PC16, MSG_R_386_8, MSG_R_386_PC8, MSG_R_386_UNKNOWN24, MSG_R_386_UNKNOWN25, MSG_R_386_UNKNOWN26, MSG_R_386_UNKNOWN27, MSG_R_386_UNKNOWN28, MSG_R_386_UNKNOWN29, MSG_R_386_UNKNOWN30, MSG_R_386_UNKNOWN31, MSG_R_386_TLS_LDO_32, MSG_R_386_UNKNOWN33, MSG_R_386_UNKNOWN34, MSG_R_386_TLS_DTPMOD32, MSG_R_386_TLS_DTPOFF32, MSG_R_386_UNKNOWN37 }; #if (R_386_NUM != (R_386_UNKNOWN37 + 1)) #error "R_386_NUM has grown" #endif const char * conv_reloc_386_type(Word type, int fmt_flags) { static char string[CONV_INV_STRSIZE]; if (type >= R_386_NUM) return (conv_invalid_val(string, CONV_INV_STRSIZE, type, fmt_flags)); return (MSG_ORIG(rels[type])); }