1 //===-- MakeGuardsExplicit.h - Turn guard intrinsics into guard branches --===//
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
7 //===----------------------------------------------------------------------===//
9 // This pass lowers the @llvm.experimental.guard intrinsic to the new form of
10 // guard represented as widenable explicit branch to the deopt block. The
11 // difference between this pass and LowerGuardIntrinsic is that after this pass
12 // the guard represented as intrinsic:
14 // call void(i1, ...) @llvm.experimental.guard(i1 %old_cond) [ "deopt"() ]
16 // transforms to a guard represented as widenable explicit branch:
18 // %widenable_cond = call i1 @llvm.experimental.widenable.condition()
19 // br i1 (%old_cond & %widenable_cond), label %guarded, label %deopt
22 // - The semantics of @llvm.experimental.widenable.condition allows to replace
23 // %widenable_cond with the construction (%widenable_cond & %any_other_cond)
24 // without loss of correctness;
25 // - %guarded is the lower part of old guard intrinsic's parent block split by
26 // the intrinsic call;
27 // - %deopt is a block containing a sole call to @llvm.experimental.deoptimize
30 // Therefore, this branch preserves the property of widenability.
32 //===----------------------------------------------------------------------===//
33 #ifndef LLVM_TRANSFORMS_SCALAR_MAKEGUARDSEXPLICIT_H
34 #define LLVM_TRANSFORMS_SCALAR_MAKEGUARDSEXPLICIT_H
36 #include "llvm/IR/PassManager.h"
40 struct MakeGuardsExplicitPass
: public PassInfoMixin
<MakeGuardsExplicitPass
> {
41 PreservedAnalyses
run(Function
&F
, FunctionAnalysisManager
&AM
);
46 #endif //LLVM_TRANSFORMS_SCALAR_MAKEGUARDSEXPLICIT_H