aboutsummaryrefslogtreecommitdiff
path: root/src/primitives.gperf
blob: 449a030cb3b5160ef1907300ce77c8c6c8ecf052 (plain) (blame)
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
%compare-strncmp
%includes
%language=ANSI-C
%readonly-tables
%struct-type

%{
#include <stdbool.h>

#include "analyzer.h"
#include "types.h"

#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#pragma GCC diagnostic ignored "-Wunused-parameter"
%}

struct typeslot { char *name; struct type inner; };
%%
i8,   { TYPE_I8,   1, true  }
i16,  { TYPE_I16,  2, true  }
i32,  { TYPE_I32,  4, true  }
i64,  { TYPE_I64,  8, true  }
int,  { TYPE_INT,  8, true  }
u8,   { TYPE_U8,   1, false }
u16,  { TYPE_U16,  2, false }
u32,  { TYPE_U32,  4, false }
u64,  { TYPE_U64,  8, false }
uint, { TYPE_UINT, 8, false }
rune, { TYPE_RUNE, 4, true  }
%%
const struct type *
typelookup(const uchar *p, size_t len)
{
	const struct typeslot *tp = in_word_set(p, len);
	return tp == NULL ? NULL : &tp->inner;
}