summaryrefslogtreecommitdiff
path: root/willow/lib/IR/Verifier.cpp
blob: d19bc835113a0f2f44de37857aa24e2ad1447a9c (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
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
#include <willow/IR/BasicBlock.h>
#include <willow/IR/Diagnostic.h>
#include <willow/IR/DiagnosticEngine.h>
#include <willow/IR/Instructions.h>
#include <willow/IR/Module.h>
#include <willow/IR/Verifier.h>

namespace willow {

/// Verify that an instruction defines an SSA result
LogicalResult verifyResult(const Instruction &inst, DiagnosticEngine &diags);
/// Verify that an instruction does not define an ssa result
LogicalResult verifyNoResult(const Instruction &inst, DiagnosticEngine &diags);

/// Verify that an instruction has the expected number of operands
LogicalResult verifyNumOperands(const Instruction &inst,
                                DiagnosticEngine &diags, std::size_t expected);

/// Verify operand type
LogicalResult expectOperandType(const Instruction &inst,
                                DiagnosticEngine &diags, std::size_t opidx,
                                Type expected);
LogicalResult expectOperandType(const Instruction &inst,
                                DiagnosticEngine &diags, const Value *operand,
                                Type expected);

LogicalResult expectResultType(const Instruction &inst, DiagnosticEngine &diags,
                               Type expected);

LogicalResult verifyBinaryIntegerInst(const Instruction &, DiagnosticEngine &);
LogicalResult verifyBinaryIntegerCmp(WillowContext &ctx, const Instruction &,
                                     DiagnosticEngine &);

LogicalResult verifyModule(WillowContext &ctx, const Module &module,
                           DiagnosticEngine &diags) {
  bool any_failure = false;

  for (auto &func : module.getFunctions()) {
    std::vector<Diagnostic> collected;
    DiagnosticEngine eng(
        [&](Diagnostic d) { collected.push_back(std::move(d)); });

    auto r = verifyFunction(ctx, func, eng);

    if (succeeded(r))
      continue;

    any_failure = true;

    auto diag = emit(diags, Severity::Error, std::nullopt);
    diag << "verification failed for function: '" << func.getName() << "'";

    for (auto &d : collected)
      diag.note(std::move(d));
  }

  return any_failure ? failure() : success();
}

LogicalResult verifyFunction(WillowContext &ctx, const Function &function,
                             DiagnosticEngine &diags) {
  if (function.empty())
    return success();

  bool has_failed = false;
  for (auto &block : function.getBlocks()) {
    if (failed(verifyBasicBlock(ctx, block, diags)))
      has_failed = true;
  }

  return has_failed ? failure() : success();
}

LogicalResult verifyBasicBlock(WillowContext &ctx, const BasicBlock &BB,
                               DiagnosticEngine &diags) {
  if (BB.empty())
    return emit(diags, Severity::Error, BB.getLoc())
           << "Basic block '" << BB.getName() << "' has an empty body";

  if (!BB.trailer()->isTerminator())
    return emit(diags, Severity::Error, BB.getLoc())
           << "Basic block '" << BB.getName()
           << "' does not end with a terminator";

  bool has_failed = false;
  for (auto &inst : BB.getBody()) {
    // verify inst
    if (failed(verifyInst(ctx, inst, diags)))
      has_failed = true;

    if (&inst != BB.trailer() && inst.isTerminator())
      return emit(diags, Severity::Error, BB.getLoc())
             << "Illegal terminator in the middle of a block";
  }

  return has_failed ? failure() : success();
}

/// Verify an instruction. This will stop on the first invariant that fails to
/// hold.
LogicalResult verifyInst(WillowContext &ctx, const Instruction &inst,
                         DiagnosticEngine &diags) {
  const BasicBlock *BB = inst.getParent();
  const Function *fn = BB ? BB->getParent() : nullptr;

  using enum Instruction::Opcode;
  switch (inst.opcode()) {
  case Add:
  case Mul:
  case Sub:
  case Div:
  case Mod:
  case Shl:
  case Shr:
  case Ashl:
  case Ashr:
  case And:
  case Or:
    return verifyBinaryIntegerInst(inst, diags);
  case Eq:
  case Lt:
  case Gt:
  case Le:
  case Ge:
    return verifyBinaryIntegerCmp(ctx, inst, diags);
  case Not: {
    Type ty = inst.getType();

    if (failed(verifyResult(inst, diags)))
      return failure();

    const Value *operand = inst.getOperand(0);
    if (!operand)
      return emit(diags, Severity::Error, inst.getLoc())
             << "instruction 'not' requires 1 operand";

    Type oty = operand->getType();
    if (ty != oty)
      return emit(diags, Severity::Error, inst.getLoc())
             << std::format("expected argument type '{}', got '{}'", ty, oty);
    return success();
  }
  case Jmp: {
    if (failed(verifyNoResult(inst, diags)))
      return failure();

    if (failed(verifyNumOperands(inst, diags, 1)))
      return failure();

    const BasicBlock *dst = static_cast<const BasicBlock *>(inst.getOperand(0));

    if (failed(
            expectOperandType(inst, diags, dst, ctx.types().BasicBlockType())))
      return failure();

    if (BB && fn) {
      if (dst->getParent() != fn)
        return emit(diags, Severity::Error, inst.getLoc()) << std::format(
                   "trying to jump to a block outside of the current function");
    }
    return success();
  }
  case Br: {
    if (failed(verifyNoResult(inst, diags)))
      return failure();

    if (failed(verifyNumOperands(inst, diags, 3)))
      return failure();

    auto *cond = inst.getOperand(0);
    auto *truedst = static_cast<const BasicBlock *>(inst.getOperand(1));
    auto *falsedst = static_cast<const BasicBlock *>(inst.getOperand(2));

    if (failed(expectOperandType(inst, diags, cond, ctx.types().IntType(1))))
      return failure();

    if (failed(expectOperandType(inst, diags, truedst,
                                 ctx.types().BasicBlockType())))
      return failure();

    if (failed(expectOperandType(inst, diags, falsedst,
                                 ctx.types().BasicBlockType())))
      return failure();

    if (BB && fn && (fn != truedst->getParent() || fn != falsedst->getParent()))
      return emit(diags, Severity::Error, inst.getLoc())
             << "branching to a basic block that does not belong to the "
                "current function";

    return success();
  }
  case Call: {
    auto &operands = inst.getOperands();
    const Function *callee = static_cast<const Function *>(inst.getOperand(0));

    Type rty = callee->getReturnType();
    auto has_result = (rty != ctx.types().VoidType());

    if (failed((has_result ? verifyResult : verifyNoResult)(inst, diags)))
      return failure();

    if (failed(expectResultType(inst, diags, callee->getReturnType())))
      return failure();

    auto args = std::ranges::subrange(operands.begin() + 1, operands.end());
    auto params = callee->getParams();

    if (args.size() != params.size())
      return emit(diags, Severity::Error, inst.getLoc())
             << "expected " << params.size()
             << " operands to match the signature of function '"
             << callee->getName() << "', got " << operands.size();

    for (const auto &&[arg, param] : std::views::zip(args, params)) {
      // TODO normalize interface
      auto aty = arg->getType();
      auto pty = param.getType();

      if (aty == pty)
        continue;

      DiagnosticBuilder d(diags, Severity::Error, inst.getLoc());
      d << "invalid argument: expected '" << pty << "', got '" << aty << "'";
      if (param.hasName())
        d.note(Diagnostic{Severity::Remark,
                          std::format("param name: {}", param.getName())});

      return failure();
    }

    return success();
  }
  case Ret: {
    if (!BB || !fn)
      return success(); // not much we can say

    bool has_arg = (fn->getReturnType() != ctx.types().VoidType());

    if (!has_arg) {
      if (failed(verifyNumOperands(inst, diags, 0)))
        return failure();
    } else {
      if (failed(verifyNumOperands(inst, diags, 1)))
        return failure();

      if (failed(expectOperandType(inst, diags, inst.getOperand(0),
                                   fn->getReturnType())))
        return failure();
    }
    break;
  }
  case Phi: {
    auto phi = static_cast<const PhiInst *>(&inst);
    if (phi->getNumOperands() % 2)
      return emit(diags, Severity::Error, inst.getLoc())
             << "Expected even number of arguments";

    for (auto [pred, val] : phi->incomings()) {
      if (!pred->isBasicBlock())
        return emit(diags, Severity::Error, inst.getLoc())
               << "Expected basic block";

      if (!BB->preds().contains(const_cast<BasicBlock *>(pred)))
        return emit(diags, Severity::Error, inst.getLoc())
               << "Incoming phi edge is not a predecessor";

      if (BB && fn && (pred->getParent() != fn))
        return emit(diags, Severity::Error, inst.getLoc())
               << "basic block: '" << pred->getName()
               << "' is not a child of function '" << fn->getName() << "'";
    }

    return success();
  }
  case Alloca: {
    Type vty = inst.getType();
    if (!vty.isPtr())
      return emit(diags, Severity::Error, inst.getLoc())
             << "expected alloca to produce a pointer";

    return success();
  }
  }

  return success();
}

LogicalResult verifyBinaryIntegerInst(const Instruction &inst,
                                      DiagnosticEngine &diags) {
  Type ty = inst.getType();

  // TODO non scalars
  if (!ty.isInt())
    return emit(diags, Severity::Error, inst.getLoc())
           << "invalid instruction '" << inst << "': "
           << "expected an integral type, got '" << ty << "'";

  if (failed(verifyNumOperands(inst, diags, 2)))
    return failure();

  auto *lhs = inst.getOperand(0);
  auto *rhs = inst.getOperand(1);

  if (lhs->getType() != ty) {
    return emit(diags, Severity::Error, inst.getLoc()) << std::format(
               "expected operand type '{}' got '{}'", ty, lhs->getType());
  }

  if (rhs->getType() != ty) {
    return emit(diags, Severity::Error, inst.getLoc()) << std::format(
               "expected operand type '{}' got '{}'", ty, rhs->getType());
  }

  return success();
}

LogicalResult verifyBinaryIntegerCmp(WillowContext &ctx,
                                     const Instruction &inst,
                                     DiagnosticEngine &diags) {
  if (failed(expectResultType(inst, diags, ctx.types().IntType(1))))
    return failure();

  if (failed(verifyNumOperands(inst, diags, 2)))
    return failure();

  const Value *lhs = inst.getOperand(0);
  const Value *rhs = inst.getOperand(1);

  Type lty = lhs->getType(), rty = rhs->getType();

  if (!lty.isInt())
    return emit(diags, Severity::Error, inst.getLoc()) << std::format(
               "invalid operand type '{}': expected integral type", lty);

  if (!rty.isInt())
    return emit(diags, Severity::Error, inst.getLoc()) << std::format(
               "invalid operand type '{}': expected integral type", rty);

  if (lty != rty)
    return emit(diags, Severity::Error, inst.getLoc())
           << "mismatched operand types";

  return success();
}

LogicalResult verifyResult(const Instruction &inst, DiagnosticEngine &diags) {
  if (inst.hasName())
    return success();

  return emit(diags, Severity::Error, inst.getLoc()) << "expected ssa result";
}

LogicalResult verifyNoResult(const Instruction &inst, DiagnosticEngine &diags) {
  if (!inst.hasName())
    return success();

  return emit(diags, Severity::Error, inst.getLoc()) << "unexpected ssa result";
}

LogicalResult verifyNumOperands(const Instruction &inst,
                                DiagnosticEngine &diags, std::size_t expected) {
  std::size_t num_operands = inst.getNumOperands();
  if (num_operands != expected)
    return emit(diags, Severity::Error, inst.getLoc())
           << std::format("wrong number of operands: expected {}, found {}",
                          expected, num_operands);

  return success();
}

LogicalResult expectOperandType(const Instruction &inst,
                                DiagnosticEngine &diags, std::size_t opidx,
                                Type expected) {
  auto *operand = inst.getOperand(opidx);

  assert(operand && "expected operand");

  if (operand->getType() == expected)
    return success();

  return emit(diags, Severity::Error, inst.getLoc())
         << std::format("expected operand #{} to be of type '{}', but got '{}'",
                        opidx, expected, operand->getType());
}

LogicalResult expectOperandType(const Instruction &inst,
                                DiagnosticEngine &diags, const Value *operand,
                                Type expected) {
  assert(operand && "expected operand");

  auto ty = operand->getType();
  if (ty == expected)
    return success();

  return emit(diags, Severity::Error, inst.getLoc()) << std::format(
             "unexpected operand type '{}': expected '{}'", ty, expected);
}

LogicalResult expectResultType(const Instruction &inst, DiagnosticEngine &diags,
                               Type expected) {
  auto ty = inst.getType();
  if (ty == expected)
    return success();

  return emit(diags, Severity::Error) << std::format(
             "unexpected result type: expected '{}', found '{}'", expected, ty);
}

} // namespace willow