aboutsummaryrefslogtreecommitdiff
path: root/mfd/opcode.awk
blob: da4429e19e3686da8ee539c3011db3c5b3e974b9 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# This file is part of Mailfromd.
# Copyright (C) 2007, 2008 Sergey Poznyakoff
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

BEGIN {
	header[nh++] = "-*- buffer-read-only: t -*- vi: set ro:"
	header[nh++] = "THIS FILE IS GENERATED AUTOMATICALLY.  PLEASE DO NOT EDIT."
}

function pline(f,n)
{
	print "#line " n " \"" f "\""
}

function iterate(array, var, expr,      x, s)
{
	for (x in array) {
		if (array[x] != "NULL") {
                   s = gensub(("%" var), array[x], "g", expr);
		   print s
		}
	}
}

state == 0 && /^[ \t]*#/ { next }
state == 0 && /^TEMPLATE/ {
	START = NR-1
	state = 1; 
	if (NF > 1) {
		if (NF == 2) {
			for (i = 0; i < nh; i++)
				print $2 " " header[i]
		} else {
			for (i = 0; i < nh; i++)
				print $2 " " header[i] " " $3
		}
	}
	pline(ARGV[2], 2)
	next 
}
	
state == 0 && NF >= 1 {
	line[opcode+0] = NR
	opname[opcode++] = $1
	if (NF > 2) {
		opdump[$1] = $2;
		if (NF >= 3) 
			nwords[$1] = $3
	}
	next
}

state == 1 {
	if (match($0, "%{(.*)%}", a)) {
		for (i = 0; i < opcode; i++) {
			s = gensub("%NAME", opname[i], "g", a[1]);
			s = gensub("%CODE", i, "g", s)
			s = gensub("%DUMP",
				   opdump[opname[i]] ? opdump[opname[i]] \
				                       : "NULL",
				   "g", s)
			s = gensub("%name",
				   tolower(opname[i]),
				   "g", s)
			s = gensub("%NWORDS",
				   nwords[opname[i]] ? nwords[opname[i]] \
				                       : "0",
				   "g", s)
			pline(ARGV[1], line[i+0])
			print s 
		}
		pline(ARGV[2], NR-START+1)
	} else if (match($0, "%\\[([a-zA-Z][a-zA-Z]*)\\]\\[([a-zA-Z][a-zA-Z]*)\\]{(.*)%}", a)) {
		if (a[1] == "DUMP")
		   iterate(opdump, a[2], a[3])
		else if (a[1] == "NAME")
		   iterate(opname, a[2], a[3])
		else {
		   print NR ": unknown iterator " a[1] > "/dev/stderr";
		   exit 1
		}
	} else
		print
}
	

Return to:

Send suggestions and report system problems to the System administrator.