Static Value-Flow Analysis
Loading...
Searching...
No Matches
ExtAPI.h
Go to the documentation of this file.
1//===- ExtAPI.h -- External functions -----------------------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-2017> <Yulei Sui>
6//
7
8// This program is free software: you can redistribute it and/or modify
9// it under the terms of the GNU Affero General Public License as published by
10// the Free Software Foundation, either version 3 of the License, or
11// (at your option) any later version.
12
13// This program is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU Affero General Public License for more details.
17
18// You should have received a copy of the GNU Affero General Public License
19// along with this program. If not, see <http://www.gnu.org/licenses/>.
20//
21//===----------------------------------------------------------------------===//
22
23/*
24 * ExtAPI.h
25 *
26 * Created on: July 1, 2022
27 * Author: Shuangxiang Kan
28 */
29
30#ifndef __ExtAPI_H
31#define __ExtAPI_H
32
33#include "SVFIR/SVFValue.h"
34#include <Util/config.h>
35#include <string>
36#include <vector>
37#include <map>
38
40
41namespace SVF
42{
43
44class FunObjVar;
45
46class ExtAPI
47{
48 friend class LLVMModuleSet;
49 friend class SVFIRBuilder;
50
51private:
52
53 static ExtAPI *extOp;
54
55 // Map SVFFunction to its annotations
57
58 // extapi.bc file path
59 static std::string extBcPath;
60
61 ExtAPI() = default;
62
63public:
64
65 static ExtAPI *getExtAPI();
66
67 static void destory();
68
69 // Set extapi.bc file path
70 static bool setExtBcPath(const std::string& path);
71
72 // Get extapi.bc file path
73 std::string getExtBcPath();
74
75 // Get the annotation of (F)
76 std::string getExtFuncAnnotation(const FunObjVar* fun, const std::string&funcAnnotation);
77
78 const std::vector<std::string>& getExtFuncAnnotations(const FunObjVar*fun);
79
80 // Does (F) have some annotation?
81 bool hasExtFuncAnnotation(const FunObjVar* fun, const std::string&funcAnnotation);
82
83public:
84
85 // Does (F) have a static var X (unavailable to us) that its return points to?
86 bool has_static(const FunObjVar *F);
87
88 // Does (F) have a memcpy_like operation?
89 bool is_memcpy(const FunObjVar *F);
90
91 // Does (F) have a memset_like operation?
92 bool is_memset(const FunObjVar *F);
93
94 // Does (F) allocate a new object and return it?
95 bool is_alloc(const FunObjVar *F);
96
97 // Does (F) allocate a new object and assign it to one of its arguments?
98 bool is_arg_alloc(const FunObjVar *F);
99
100 // Does (F) allocate a new stack object and return it?
101 bool is_alloc_stack_ret(const FunObjVar *F);
102
103 // Get the position of argument which holds the new object
105
106 // Does (F) reallocate a new object?
107 bool is_realloc(const FunObjVar *F);
108
109 bool is_ext(const FunObjVar* funObjVar);
110
111private:
112 // Set the annotation of (F)
113 void setExtFuncAnnotations(const FunObjVar* fun, const std::vector<std::string>&funcAnnotations);
114};
115} // End namespace SVF
116
117#endif
bool is_alloc_stack_ret(const FunObjVar *F)
Definition ExtAPI.cpp:231
bool is_arg_alloc(const FunObjVar *F)
Definition ExtAPI.cpp:226
bool is_memcpy(const FunObjVar *F)
Definition ExtAPI.cpp:208
std::string getExtBcPath()
Definition ExtAPI.cpp:120
static std::string extBcPath
Definition ExtAPI.h:59
static ExtAPI * extOp
Definition ExtAPI.h:53
s32_t get_alloc_arg_pos(const FunObjVar *F)
Definition ExtAPI.cpp:237
static ExtAPI * getExtAPI()
Definition ExtAPI.cpp:43
bool is_ext(const FunObjVar *funObjVar)
Definition ExtAPI.cpp:257
std::string getExtFuncAnnotation(const FunObjVar *fun, const std::string &funcAnnotation)
Definition ExtAPI.cpp:186
bool is_realloc(const FunObjVar *F)
Definition ExtAPI.cpp:253
Map< const FunObjVar *, std::vector< std::string > > funObjVar2Annotations
Definition ExtAPI.h:56
void setExtFuncAnnotations(const FunObjVar *fun, const std::vector< std::string > &funcAnnotations)
Definition ExtAPI.cpp:166
ExtAPI()=default
static void destory()
Definition ExtAPI.cpp:52
static bool setExtBcPath(const std::string &path)
Definition ExtAPI.cpp:62
bool hasExtFuncAnnotation(const FunObjVar *fun, const std::string &funcAnnotation)
Definition ExtAPI.cpp:172
bool is_alloc(const FunObjVar *F)
Definition ExtAPI.cpp:220
const std::vector< std::string > & getExtFuncAnnotations(const FunObjVar *fun)
Definition ExtAPI.cpp:199
bool is_memset(const FunObjVar *F)
Definition ExtAPI.cpp:215
bool has_static(const FunObjVar *F)
for isBitcode
Definition BasicTypes.h:68
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74
signed s32_t
Definition GeneralType.h:48