-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathknown_fns.h
37 lines (29 loc) · 972 Bytes
/
known_fns.h
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
#pragma once
// Copyright (c) 2018-present The Alive2 Authors.
// Distributed under the MIT license that can be found in the LICENSE file.
#include <memory>
#include <vector>
namespace llvm {
class CallInst;
class Function;
class TargetLibraryInfo;
}
namespace IR {
class BasicBlock;
class FnAttrs;
class Instr;
class ParamAttrs;
class Value;
}
namespace llvm_util {
// returns true if it's a known function call
bool llvm_implict_attrs(llvm::Function &f, const llvm::TargetLibraryInfo &TLI,
IR::FnAttrs &attrs,
std::vector<IR::ParamAttrs> ¶m_attrs,
const std::vector<IR::Value*> &args);
// returns true if it's a known function call
std::pair<std::unique_ptr<IR::Instr>, bool>
known_call(llvm::CallInst &i, const llvm::TargetLibraryInfo &TLI,
IR::BasicBlock &BB, const std::vector<IR::Value*> &args,
IR::FnAttrs &&attrs, std::vector<IR::ParamAttrs> ¶m_attr);
}