/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License, Version 1.0 only
 * (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 2004 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	<stdio.h>
#include	<sys/elf_386.h>
#include	"_conv.h"
#include	"relocate_i386_msg.h"

/*
 * Intel386 specific relocations.
 */
static const Msg rels[] = {
	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
};

const char *
conv_reloc_386_type_str(uint_t rel)
{
	static char	string[STRSIZE] = { '\0' };

	if (rel >= R_386_NUM)
		return (conv_invalid_str(string, STRSIZE, rel, 0));
	return (MSG_ORIG(rels[rel]));
}