aboutsummaryrefslogtreecommitdiff
path: root/targ.c
blob: 285997575534bd48b308a78b0c75243080357880 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <stdint.h>
#include <string.h>
#include "util.h"
#include "cc.h"

const struct target *targ;

static const struct target alltargs[] = {
	{
		.name = "x86_64",
		.typewchar = &typeint,
		.signedchar = 1,
	},
	{
		.name = "aarch64",
		.typewchar = &typeuint,
	},
	{
		.name = "riscv64",
		.typewchar = &typeint,
	},
};

void
targinit(const char *name)
{
	size_t i;

	if (!name) {
		/* TODO: provide a way to set this default */
		targ = &alltargs[0];
	}
	for (i = 0; i < LEN(alltargs) && !targ; ++i) {
		if (strcmp(alltargs[i].name, name) == 0)
			targ = &alltargs[i];
	}
	if (!targ)
		fatal("unknown target '%s'", name);
	typechar.basic.issigned = targ->signedchar;
}