elftc_bfdtarget.c revision 260684
1/*-
2 * Copyright (c) 2008,2009 Kai Wang
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer
10 *    in this position and unchanged.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include <sys/cdefs.h>
28
29#include <sys/param.h>
30#include <string.h>
31#include <libelftc.h>
32
33#include "_libelftc.h"
34
35ELFTC_VCSID("$Id: elftc_bfdtarget.c 2251 2011-11-30 16:50:06Z jkoshy $");
36
37Elftc_Bfd_Target *
38elftc_bfd_find_target(const char *tgt_name)
39{
40	Elftc_Bfd_Target *tgt;
41
42	for (tgt = _libelftc_targets; tgt->bt_name; tgt++)
43		if (!strcmp(tgt_name, tgt->bt_name))
44			return (tgt);
45
46	return (NULL);		/* not found */
47}
48
49Elftc_Bfd_Target_Flavor
50elftc_bfd_target_flavor(Elftc_Bfd_Target *tgt)
51{
52
53	return (tgt->bt_type);
54}
55
56unsigned int
57elftc_bfd_target_byteorder(Elftc_Bfd_Target *tgt)
58{
59
60	return (tgt->bt_byteorder);
61}
62
63unsigned int
64elftc_bfd_target_class(Elftc_Bfd_Target *tgt)
65{
66
67	return (tgt->bt_elfclass);
68}
69
70unsigned int
71elftc_bfd_target_machine(Elftc_Bfd_Target *tgt)
72{
73
74	return (tgt->bt_machine);
75}
76