Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/contrib/elftoolchain/libelftc/elftc_bfdtarget.c
39478 views
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/param.h>
28
#include <string.h>
29
#include <libelftc.h>
30
31
#include "_libelftc.h"
32
33
ELFTC_VCSID("$Id: elftc_bfdtarget.c 3174 2015-03-27 17:13:41Z emaste $");
34
35
Elftc_Bfd_Target *
36
elftc_bfd_find_target(const char *tgt_name)
37
{
38
Elftc_Bfd_Target *tgt;
39
40
for (tgt = _libelftc_targets; tgt->bt_name; tgt++)
41
if (!strcmp(tgt_name, tgt->bt_name))
42
return (tgt);
43
44
return (NULL); /* not found */
45
}
46
47
Elftc_Bfd_Target_Flavor
48
elftc_bfd_target_flavor(Elftc_Bfd_Target *tgt)
49
{
50
51
return (tgt->bt_type);
52
}
53
54
unsigned int
55
elftc_bfd_target_byteorder(Elftc_Bfd_Target *tgt)
56
{
57
58
return (tgt->bt_byteorder);
59
}
60
61
unsigned int
62
elftc_bfd_target_class(Elftc_Bfd_Target *tgt)
63
{
64
65
return (tgt->bt_elfclass);
66
}
67
68
unsigned int
69
elftc_bfd_target_machine(Elftc_Bfd_Target *tgt)
70
{
71
72
return (tgt->bt_machine);
73
}
74
75
unsigned int
76
elftc_bfd_target_osabi(Elftc_Bfd_Target *tgt)
77
{
78
79
return (tgt->bt_osabi);
80
}
81
82