LLVM 19.0.0git
ConvergenceVerifier.cpp
Go to the documentation of this file.
1//===- ConvergenceVerifier.cpp - Verify convergence control -----*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10#include "llvm/IR/Dominators.h"
13#include "llvm/IR/SSAContext.h"
14
15using namespace llvm;
16
17template <>
19 -> ConvOpKind {
20 const auto *CB = dyn_cast<CallBase>(&I);
21 if (!CB)
22 return CONV_NONE;
23 switch (CB->getIntrinsicID()) {
24 default:
25 return CONV_NONE;
26 case Intrinsic::experimental_convergence_anchor:
27 return CONV_ANCHOR;
28 case Intrinsic::experimental_convergence_entry:
29 return CONV_ENTRY;
30 case Intrinsic::experimental_convergence_loop:
31 return CONV_LOOP;
32 }
33}
34
35template <>
37 const Instruction &I) {
38 return;
39}
40
41template <>
42const Instruction *
44 const Instruction &I) {
45 auto *CB = dyn_cast<CallBase>(&I);
46 if (!CB)
47 return nullptr;
48
49 unsigned Count =
50 CB->countOperandBundlesOfType(LLVMContext::OB_convergencectrl);
51 CheckOrNull(Count <= 1,
52 "The 'convergencectrl' bundle can occur at most once on a call",
53 {Context.print(CB)});
54 if (!Count)
55 return nullptr;
56
57 auto Bundle = CB->getOperandBundle(LLVMContext::OB_convergencectrl);
58 CheckOrNull(Bundle->Inputs.size() == 1 &&
59 Bundle->Inputs[0]->getType()->isTokenTy(),
60 "The 'convergencectrl' bundle requires exactly one token use.",
61 {Context.print(CB)});
62 auto *Token = Bundle->Inputs[0].get();
63 auto *Def = dyn_cast<Instruction>(Token);
64
65 CheckOrNull(Def && getConvOp(*Def) != CONV_NONE,
66 "Convergence control tokens can only be produced by calls to the "
67 "convergence control intrinsics.",
68 {Context.print(Token), Context.print(&I)});
69
70 if (Def)
71 Tokens[&I] = Def;
72
73 return Def;
74}
75
76template <>
78 const Instruction &I) {
79 auto *F = I.getFunction();
80 return F->isConvergent();
81}
82
83template <>
85 const Instruction &I) {
86 if (auto *CB = dyn_cast<CallBase>(&I)) {
87 return CB->isConvergent();
88 }
89 return false;
90}
91
This file declares the LLVM IR specialization of the GenericConvergenceVerifier template.
A verifier for the static rules of convergence control tokens that works with both LLVM IR and MIR.
#define CheckOrNull(C,...)
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
LLVMContext & Context
This file declares a specialization of the GenericSSAContext<X> class template for LLVM IR.
NodeAddr< DefNode * > Def
Definition: RDFGraph.h:384
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18