[Alignment][NFC] Use Align with TargetLowering::setMinFunctionAlignment
[llvm-core.git] / include / llvm / Analysis / IndirectCallVisitor.h
blob1d1f3f4cc5c0bc44fd12c5bc80ed0536158980a3
1 //===-- IndirectCallVisitor.h - indirect call visitor ---------------------===//
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 //
9 // This file implements defines a visitor class and a helper function that find
10 // all indirect call-sites in a function.
12 #ifndef LLVM_ANALYSIS_INDIRECTCALLVISITOR_H
13 #define LLVM_ANALYSIS_INDIRECTCALLVISITOR_H
15 #include "llvm/IR/InstVisitor.h"
16 #include <vector>
18 namespace llvm {
19 // Visitor class that finds all indirect call.
20 struct PGOIndirectCallVisitor : public InstVisitor<PGOIndirectCallVisitor> {
21 std::vector<Instruction *> IndirectCalls;
22 PGOIndirectCallVisitor() {}
24 void visitCallBase(CallBase &Call) {
25 if (Call.isIndirectCall())
26 IndirectCalls.push_back(&Call);
30 // Helper function that finds all indirect call sites.
31 inline std::vector<Instruction *> findIndirectCalls(Function &F) {
32 PGOIndirectCallVisitor ICV;
33 ICV.visit(F);
34 return ICV.IndirectCalls;
36 } // namespace llvm
38 #endif