Blame view

tools/perf/arch/common.c 4.89 KB
68e94f4eb   Irina Tirdea   perf tools: Try t...
1
2
3
  #include <stdio.h>
  #include <sys/utsname.h>
  #include "common.h"
175729fc2   Arnaldo Carvalho de Melo   perf tools: Remov...
4
  #include "../util/util.h"
68e94f4eb   Irina Tirdea   perf tools: Try t...
5
  #include "../util/debug.h"
3d689ed60   Arnaldo Carvalho de Melo   perf tools: Move ...
6
  #include "sane_ctype.h"
68e94f4eb   Irina Tirdea   perf tools: Try t...
7
8
9
10
11
12
  const char *const arm_triplets[] = {
  	"arm-eabi-",
  	"arm-linux-androideabi-",
  	"arm-unknown-linux-",
  	"arm-unknown-linux-gnu-",
  	"arm-unknown-linux-gnueabi-",
78f69b586   Ravi Bangoria   perf tools: Add m...
13
14
15
  	"arm-linux-gnu-",
  	"arm-linux-gnueabihf-",
  	"arm-none-eabi-",
68e94f4eb   Irina Tirdea   perf tools: Try t...
16
17
  	NULL
  };
c4d2df495   Elliott Hughes   perf tools: Add a...
18
19
  const char *const arm64_triplets[] = {
  	"aarch64-linux-android-",
78f69b586   Ravi Bangoria   perf tools: Add m...
20
  	"aarch64-linux-gnu-",
c4d2df495   Elliott Hughes   perf tools: Add a...
21
22
  	NULL
  };
68e94f4eb   Irina Tirdea   perf tools: Try t...
23
24
25
  const char *const powerpc_triplets[] = {
  	"powerpc-unknown-linux-gnu-",
  	"powerpc64-unknown-linux-gnu-",
78f69b586   Ravi Bangoria   perf tools: Add m...
26
27
  	"powerpc64-linux-gnu-",
  	"powerpc64le-linux-gnu-",
68e94f4eb   Irina Tirdea   perf tools: Try t...
28
29
30
31
32
  	NULL
  };
  
  const char *const s390_triplets[] = {
  	"s390-ibm-linux-",
78f69b586   Ravi Bangoria   perf tools: Add m...
33
  	"s390x-linux-gnu-",
68e94f4eb   Irina Tirdea   perf tools: Try t...
34
35
36
37
38
39
  	NULL
  };
  
  const char *const sh_triplets[] = {
  	"sh-unknown-linux-gnu-",
  	"sh64-unknown-linux-gnu-",
78f69b586   Ravi Bangoria   perf tools: Add m...
40
41
  	"sh-linux-gnu-",
  	"sh64-linux-gnu-",
68e94f4eb   Irina Tirdea   perf tools: Try t...
42
43
44
45
46
47
  	NULL
  };
  
  const char *const sparc_triplets[] = {
  	"sparc-unknown-linux-gnu-",
  	"sparc64-unknown-linux-gnu-",
78f69b586   Ravi Bangoria   perf tools: Add m...
48
  	"sparc64-linux-gnu-",
68e94f4eb   Irina Tirdea   perf tools: Try t...
49
50
51
52
53
54
55
56
57
58
59
60
  	NULL
  };
  
  const char *const x86_triplets[] = {
  	"x86_64-pc-linux-gnu-",
  	"x86_64-unknown-linux-gnu-",
  	"i686-pc-linux-gnu-",
  	"i586-pc-linux-gnu-",
  	"i486-pc-linux-gnu-",
  	"i386-pc-linux-gnu-",
  	"i686-linux-android-",
  	"i686-android-linux-",
78f69b586   Ravi Bangoria   perf tools: Add m...
61
62
  	"x86_64-linux-gnu-",
  	"i586-linux-gnu-",
68e94f4eb   Irina Tirdea   perf tools: Try t...
63
64
65
66
67
68
  	NULL
  };
  
  const char *const mips_triplets[] = {
  	"mips-unknown-linux-gnu-",
  	"mipsel-linux-android-",
78f69b586   Ravi Bangoria   perf tools: Add m...
69
70
71
72
73
  	"mips-linux-gnu-",
  	"mips64-linux-gnu-",
  	"mips64el-linux-gnuabi64-",
  	"mips64-linux-gnuabi64-",
  	"mipsel-linux-gnu-",
68e94f4eb   Irina Tirdea   perf tools: Try t...
74
75
76
77
78
79
  	NULL
  };
  
  static bool lookup_path(char *name)
  {
  	bool found = false;
5bcaaca3e   Martin Liška   perf tools: Assig...
80
  	char *path, *tmp = NULL;
68e94f4eb   Irina Tirdea   perf tools: Try t...
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
  	char buf[PATH_MAX];
  	char *env = getenv("PATH");
  
  	if (!env)
  		return false;
  
  	env = strdup(env);
  	if (!env)
  		return false;
  
  	path = strtok_r(env, ":", &tmp);
  	while (path) {
  		scnprintf(buf, sizeof(buf), "%s/%s", path, name);
  		if (access(buf, F_OK) == 0) {
  			found = true;
  			break;
  		}
  		path = strtok_r(NULL, ":", &tmp);
  	}
  	free(env);
  	return found;
  }
  
  static int lookup_triplets(const char *const *triplets, const char *name)
  {
  	int i;
  	char buf[PATH_MAX];
  
  	for (i = 0; triplets[i] != NULL; i++) {
  		scnprintf(buf, sizeof(buf), "%s%s", triplets[i], name);
  		if (lookup_path(buf))
  			return i;
  	}
  	return -1;
  }
48ed0ece1   Namhyung Kim   perf tools: Use n...
116
117
118
119
  /*
   * Return architecture name in a normalized form.
   * The conversion logic comes from the Makefile.
   */
940e6987f   He Kuang   perf tools: Expor...
120
  const char *normalize_arch(char *arch)
48ed0ece1   Namhyung Kim   perf tools: Use n...
121
122
123
124
125
126
127
  {
  	if (!strcmp(arch, "x86_64"))
  		return "x86";
  	if (arch[0] == 'i' && arch[2] == '8' && arch[3] == '6')
  		return "x86";
  	if (!strcmp(arch, "sun4u") || !strncmp(arch, "sparc", 5))
  		return "sparc";
c4d2df495   Elliott Hughes   perf tools: Add a...
128
129
  	if (!strcmp(arch, "aarch64") || !strcmp(arch, "arm64"))
  		return "arm64";
48ed0ece1   Namhyung Kim   perf tools: Use n...
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
  	if (!strncmp(arch, "arm", 3) || !strcmp(arch, "sa110"))
  		return "arm";
  	if (!strncmp(arch, "s390", 4))
  		return "s390";
  	if (!strncmp(arch, "parisc", 6))
  		return "parisc";
  	if (!strncmp(arch, "powerpc", 7) || !strncmp(arch, "ppc", 3))
  		return "powerpc";
  	if (!strncmp(arch, "mips", 4))
  		return "mips";
  	if (!strncmp(arch, "sh", 2) && isdigit(arch[2]))
  		return "sh";
  
  	return arch;
  }
eebd0bfca   Arnaldo Carvalho de Melo   perf env: Rename ...
145
146
  static int perf_env__lookup_binutils_path(struct perf_env *env,
  					  const char *name, const char **path)
68e94f4eb   Irina Tirdea   perf tools: Try t...
147
148
  {
  	int idx;
48ed0ece1   Namhyung Kim   perf tools: Use n...
149
  	const char *arch, *cross_env;
68e94f4eb   Irina Tirdea   perf tools: Try t...
150
151
152
  	struct utsname uts;
  	const char *const *path_list;
  	char *buf = NULL;
48ed0ece1   Namhyung Kim   perf tools: Use n...
153
  	arch = normalize_arch(env->arch);
68e94f4eb   Irina Tirdea   perf tools: Try t...
154
155
156
157
158
159
160
  	if (uname(&uts) < 0)
  		goto out;
  
  	/*
  	 * We don't need to try to find objdump path for native system.
  	 * Just use default binutils path (e.g.: "objdump").
  	 */
48ed0ece1   Namhyung Kim   perf tools: Use n...
161
  	if (!strcmp(normalize_arch(uts.machine), arch))
68e94f4eb   Irina Tirdea   perf tools: Try t...
162
163
164
165
166
167
168
169
170
171
172
173
174
  		goto out;
  
  	cross_env = getenv("CROSS_COMPILE");
  	if (cross_env) {
  		if (asprintf(&buf, "%s%s", cross_env, name) < 0)
  			goto out_error;
  		if (buf[0] == '/') {
  			if (access(buf, F_OK) == 0)
  				goto out;
  			goto out_error;
  		}
  		if (lookup_path(buf))
  			goto out;
046625231   Arnaldo Carvalho de Melo   perf tools: Intro...
175
  		zfree(&buf);
68e94f4eb   Irina Tirdea   perf tools: Try t...
176
  	}
68e94f4eb   Irina Tirdea   perf tools: Try t...
177
178
  	if (!strcmp(arch, "arm"))
  		path_list = arm_triplets;
c4d2df495   Elliott Hughes   perf tools: Add a...
179
180
  	else if (!strcmp(arch, "arm64"))
  		path_list = arm64_triplets;
68e94f4eb   Irina Tirdea   perf tools: Try t...
181
182
183
184
185
186
187
188
  	else if (!strcmp(arch, "powerpc"))
  		path_list = powerpc_triplets;
  	else if (!strcmp(arch, "sh"))
  		path_list = sh_triplets;
  	else if (!strcmp(arch, "s390"))
  		path_list = s390_triplets;
  	else if (!strcmp(arch, "sparc"))
  		path_list = sparc_triplets;
48ed0ece1   Namhyung Kim   perf tools: Use n...
189
  	else if (!strcmp(arch, "x86"))
68e94f4eb   Irina Tirdea   perf tools: Try t...
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
  		path_list = x86_triplets;
  	else if (!strcmp(arch, "mips"))
  		path_list = mips_triplets;
  	else {
  		ui__error("binutils for %s not supported.
  ", arch);
  		goto out_error;
  	}
  
  	idx = lookup_triplets(path_list, name);
  	if (idx < 0) {
  		ui__error("Please install %s for %s.
  "
  			  "You can add it to PATH, set CROSS_COMPILE or "
  			  "override the default using --%s.
  ",
  			  name, arch, name);
  		goto out_error;
  	}
  
  	if (asprintf(&buf, "%s%s", path_list[idx], name) < 0)
  		goto out_error;
  
  out:
  	*path = buf;
  	return 0;
  out_error:
  	free(buf);
  	*path = NULL;
  	return -1;
  }
eebd0bfca   Arnaldo Carvalho de Melo   perf env: Rename ...
221
  int perf_env__lookup_objdump(struct perf_env *env)
68e94f4eb   Irina Tirdea   perf tools: Try t...
222
  {
ff6f7778a   Namhyung Kim   perf tools: Don't...
223
224
225
226
227
228
  	/*
  	 * For live mode, env->arch will be NULL and we can use
  	 * the native objdump tool.
  	 */
  	if (env->arch == NULL)
  		return 0;
eebd0bfca   Arnaldo Carvalho de Melo   perf env: Rename ...
229
  	return perf_env__lookup_binutils_path(env, "objdump", &objdump_path);
68e94f4eb   Irina Tirdea   perf tools: Try t...
230
  }