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
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
#include <assert.h>
#include <inttypes.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>

#include "error.h"
#include "instr.h"
#include <utils/printcode.h>

struct InstrNode
{
    struct Instr
    {
        uint32_t opCode;
        const struct FmtNode *fmt;
        const char *comment;
        struct CodeNode
        {
            const char *line;
            struct CodeNode *next;
        } * codeNode, *codeNodeLast;

        struct AsmNode
        {
            const char *notation, *copyOperands;
            const char *refmanNotation;
            const char *refmanMnemonic;
            struct AsmNode *next;
        } * asmNode, *asmNodeLast;

    } instr;
    struct InstrNode *next;
} * instrNode, *instrNodeLast;

struct Instr *
makeInstr(uint32_t opCode)
{
    // check if opCode is already defined
    for (struct InstrNode *in = instrNode; in; in = in->next) {
        if (in->instr.opCode == opCode) {
            error("opcode 0x%" PRIX32 "already defined\n", opCode);
        }
    }

    struct InstrNode *in = malloc(sizeof(*in));
    if (!in) {
        fprintf(stderr, "makeInstr: out of memory\n");
        exit(1);
    }
    in->instr.opCode = opCode;
    in->instr.fmt = 0;
    in->instr.comment = 0;
    in->instr.codeNode = in->instr.codeNodeLast = 0;
    in->instr.asmNode = in->instr.asmNodeLast = 0;
    in->next = 0;

    if (instrNode) {
        instrNodeLast = instrNodeLast->next = in;
    } else {
        instrNode = instrNodeLast = in;
    }
    return &in->instr;
}

void
setInstrFmt(struct Instr *instr, const struct FmtNode *fmt)
{
    instr->fmt = fmt;
}

const struct FmtNode *
getInstrFmt(struct Instr *instr)
{
    return instr->fmt;
}

uint32_t
getInstrOpCode(const struct Instr *instr)
{
    return instr->opCode;
}

void
appendInstrCode(struct Instr *instr, const struct Str *code)
{
    char *line = strndup(code->cstr, code->end - code->cstr);
    struct CodeNode *codeNode = malloc(sizeof(*codeNode));
    if (!codeNode || !line) {
        fprintf(stderr, "appendInstrCode: out of memory\n");
        exit(1);
    }
    codeNode->line = line;
    codeNode->next = 0;

    if (instr->codeNode) {
        instr->codeNodeLast = instr->codeNodeLast->next = codeNode;
    } else {
        instr->codeNode = instr->codeNodeLast = codeNode;
    }
}

void
appendInstrAsmNotation(struct Instr *instr, const char *asmNotation,
                       const char *asmCopyOperands, const char *refmanMnemonic,
                       const char *refmanAsmNotation)
{
    assert(asmNotation);
    asmNotation = strdup(asmNotation);
    asmCopyOperands = strdup(asmCopyOperands);
    refmanMnemonic = strdup(refmanMnemonic);
    refmanAsmNotation = strdup(refmanAsmNotation);
    struct AsmNode *node = malloc(sizeof(*node));
    if (!node || !asmNotation || !refmanAsmNotation || !asmCopyOperands) {
        fprintf(stderr, "appendInstrAsmNotation: out of memory\n");
        exit(1);
    }
    node->notation = asmNotation;
    node->copyOperands = asmCopyOperands;
    node->refmanNotation = refmanAsmNotation;
    node->refmanMnemonic = refmanMnemonic;
    node->next = 0;

    if (instr->asmNode) {
        instr->asmNodeLast = instr->asmNodeLast->next = node;
    } else {
        instr->asmNode = instr->asmNodeLast = node;
    }
}

void
appendInstrComment(struct Instr *instr, const char *comment)
{
    comment = strdup(comment);
    if (!comment) {
        fprintf(stderr, "appendInstrComment: out of memory\n");
        exit(1);
    }
    instr->comment = comment;
}

void
instrPrintInstrList(FILE *out)
{
    printOpcodeDef(out, "FMT_OPCODE", "ulm_instrReg");
    printCode(out, 1, "switch (FMT_OPCODE) {\n");
    printCode(out, 0, "#undef FMT_OPCODE\n");
    for (struct InstrNode *in = instrNode; in; in = in->next) {
        printCode(out, 2, "case 0x%02" PRIX32 ":\n", in->instr.opCode);
        printCode(out, 3, "{\n");
        printFmtDef(out, in->instr.fmt, "ulm_instrReg");
        for (struct CodeNode *cn = in->instr.codeNode; cn; cn = cn->next) {
            if (!cn->next && *cn->line == 0) {
                break;
            }
            printCode(out, 3, "%s\n", cn->line);
        }
        printFmtUndef(out, in->instr.fmt);
        printCode(out, 3, "}\n");
        printCode(out, 3, "break;\n");
    }
    printCode(out, 2, "default:\n");
    printOpcodeDef(out, "FMT_OPCODE", "ulm_instrReg");
    printCode(out, 3, "illegalInstr(FMT_OPCODE);\n");
    printCode(out, 0, "#undef FMT_OPCODE\n");
    printCode(out, 1, "}\n");
}

void
instrPrintAsmNotation(FILE *out)
{
    printCode(out, 0, "void\n");
    printCode(out, 0, "ulm_asm(uint32_t instr, char *s, size_t len)\n");
    printCode(out, 0, "{\n");
    printCode(out, 1, "strncpy(s, \"%s\", len);\n", "");

    printOpcodeDef(out, "FMT_OPCODE", "instr");
    printCode(out, 1, "switch (FMT_OPCODE) {\n");
    printCode(out, 0, "#undef FMT_OPCODE\n");

    for (const struct InstrNode *in = instrNode; in; in = in->next) {
        printCode(out, 2, "case 0x%02" PRIX32 ": {\n", in->instr.opCode);

        bool alt = false;
        for (const struct AsmNode *an = in->instr.asmNode; an;
             an = an->next, alt = true)
        {
            if (!alt) {
                printFmtDef(out, in->instr.fmt, "instr");
                printCode(out, 3, "%s\n", an->copyOperands);
                printFmtUndef(out, in->instr.fmt);
                printCode(out, 3, "snprintf(s, len, %s);\n", an->notation);
            } else {
                printCode(out, 3, "/* ignoring alternatives for now */\n");
                printCode(out, 3, "//snprintf(s, len, %s);\n", an->notation);
            }
        }

        printCode(out, 3, "} break;\n");
    }
    printCode(out, 2, "default:\n");
    printCode(out, 3, "strncpy(s, \"%s\", len);\n", "illegal instruction");
    printCode(out, 1, "}\n");
    printCode(out, 0, "}\n");
}

void
instrPrintInstrRefman(FILE *out)
{
    for (const struct InstrNode *in = instrNode; in; in = in->next) {
        printCode(out, 1, "{\n");
        printCode(out, 2, "using namespace ULM_FMT::%s;\n",
                  getFmtId(in->instr.fmt));

        if (in->instr.asmNode) {
            const struct AsmNode *asmNode = in->instr.asmNode;

            printCode(out, 2, "ulmDoc.setActiveKey(\"%s\");\n",
                      asmNode->refmanMnemonic);
            printCode(out, 2, "ulmDoc.addAsmNotation();\n");
            printCode(out, 2, "ulmDoc.addUnescapedDescription(%s);\n",
                      asmNode->refmanNotation);

            if (asmNode->next) {
                printCode(out, 2, "ulmDoc.addAsmAlternative();\n");
                for (const struct AsmNode *n = asmNode->next; n; n = n->next) {
                    printCode(out, 2, "ulmDoc.addUnescapedDescription(%s);\n",
                              n->refmanNotation);
                    printCode(out, 2, "ulmDoc.addLineBreak();\n");
                }
            }
        } else {
            printCode(out, 2, "ulmDoc.setActiveKey(\"0x%02" PRIX32 "\");\n",
                      in->instr.opCode);
        }
        if (in->instr.comment) {
            printCode(out, 2, "ulmDoc.addPurpose();\n");
            printCode(out, 2, "ulmDoc.addUnescapedDescription(\"%s\");\n",
                      in->instr.comment);
        }

        printCode(out, 2, "ulmDoc.addFormat();\n");
        printCode(out, 2,
                  "ulmDoc.addDescription(ulm_instrFmt.tikz(0x%02" PRIX32
                  "));\n",
                  in->instr.opCode);
        printCode(out, 2, "ulmDoc.addEffect();\n");
        for (struct CodeNode *cn = in->instr.codeNode; cn; cn = cn->next) {
            if (!cn->next && *cn->line == 0) {
                break;
            }
            printCode(out, 1, "%s\n", cn->line);
        }
        printCode(out, 1, "}\n");
    }
}