svf-tools 1.0.880 → 1.0.882
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CMakeLists.txt +9 -8
- package/README.md +1 -0
- package/SVF-doxygen/html/AE_2CMakeLists_8txt.html +1 -1
- package/SVF-doxygen/html/AbstractExecution_8cpp_source.html +4 -4
- package/SVF-doxygen/html/AbstractExecution_8h_source.html +308 -305
- package/SVF-doxygen/html/BufOverflowChecker_8cpp_source.html +30 -30
- package/SVF-doxygen/html/BufOverflowChecker_8h_source.html +179 -176
- package/SVF-doxygen/html/CFL_2CMakeLists_8txt.html +1 -1
- package/SVF-doxygen/html/DDA_2CMakeLists_8txt.html +1 -1
- package/SVF-doxygen/html/Example_2CMakeLists_8txt.html +1 -1
- package/SVF-doxygen/html/ExeState_8h_source.html +1 -1
- package/SVF-doxygen/html/ExtAPI_8cpp_source.html +1 -1
- package/SVF-doxygen/html/IntervalExeState_8h_source.html +1 -1
- package/SVF-doxygen/html/RelExeState_8h_source.html +1 -1
- package/SVF-doxygen/html/SABER_2CMakeLists_8txt.html +1 -1
- package/SVF-doxygen/html/SVFIR2ItvExeState_8cpp_source.html +1 -1
- package/SVF-doxygen/html/SVFIR2ItvExeState_8h_source.html +187 -184
- package/SVF-doxygen/html/ae_8cpp.html +3 -3
- package/SVF-doxygen/html/ae_8cpp_source.html +3 -3
- package/SVF-doxygen/html/classSVF_1_1AEAPI.html +53 -53
- package/SVF-doxygen/html/classSVF_1_1AEStat.html +52 -52
- package/SVF-doxygen/html/classSVF_1_1AbstractExecution.html +56 -56
- package/SVF-doxygen/html/classSVF_1_1BufOverflowChecker.html +28 -28
- package/SVF-doxygen/html/classSVF_1_1BufOverflowCheckerAPI.html +29 -29
- package/SVF-doxygen/html/classSVF_1_1ExtAPI.html +1 -1
- package/SVF-doxygen/html/classSVF_1_1SVFIR2ItvExeState.html +77 -77
- package/SVF-doxygen/html/classSVF_1_1SVFStat.html +1 -1
- package/SVF-doxygen/html/namespaceSVF.html +5 -5
- package/SVF-doxygen/html/structSVF_1_1BufOverflowException.html +59 -59
- package/SVF-doxygen/html/svf-ex_8cpp.html +1 -1
- package/SVF-doxygen/html/svf-ex_8cpp_source.html +1 -1
- package/package.json +1 -1
- package/svf/CMakeLists.txt +14 -0
- package/svf/include/AE/Svfexe/AbstractExecution.h +3 -0
- package/svf/include/AE/Svfexe/BufOverflowChecker.h +3 -0
- package/svf/include/AE/Svfexe/SVFIR2ItvExeState.h +3 -0
- package/svf/lib/Util/ExtAPI.cpp +1 -1
- package/svf-llvm/CMakeLists.txt +16 -3
- package/svf-llvm/tools/AE/CMakeLists.txt +1 -2
- package/svf-llvm/tools/CFL/CMakeLists.txt +1 -1
- package/svf-llvm/tools/DDA/CMakeLists.txt +1 -1
- package/svf-llvm/tools/Example/CMakeLists.txt +1 -1
- package/svf-llvm/tools/SABER/CMakeLists.txt +1 -1
package/CMakeLists.txt
CHANGED
|
@@ -23,10 +23,10 @@ option(SVF_ENABLE_ASSERTIONS "Always enable assertions")
|
|
|
23
23
|
set(SVF_INSTALL_ROOT ${CMAKE_INSTALL_PREFIX})
|
|
24
24
|
set(SVF_INSTALL_BIN_DIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR})
|
|
25
25
|
set(SVF_INSTALL_LIB_DIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
|
|
26
|
-
set(SVF_INSTALL_INCLUDE_DIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR}
|
|
26
|
+
set(SVF_INSTALL_INCLUDE_DIR ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR})
|
|
27
27
|
|
|
28
28
|
# Set where extapi.bc is exported to in the installed CMake package
|
|
29
|
-
set(SVF_INSTALL_EXTAPI_DIR ${
|
|
29
|
+
set(SVF_INSTALL_EXTAPI_DIR ${SVF_INSTALL_LIB_DIR})
|
|
30
30
|
set(SVF_INSTALL_EXTAPI_FILE ${SVF_INSTALL_EXTAPI_DIR}/extapi.bc)
|
|
31
31
|
|
|
32
32
|
message(STATUS "Building ${PROJECT_NAME} with configuration:
|
|
@@ -47,6 +47,7 @@ message(STATUS "Using CMake build configuration:
|
|
|
47
47
|
CMake current source directory: ${CMAKE_CURRENT_SOURCE_DIR}
|
|
48
48
|
CMake current binary directory: ${CMAKE_CURRENT_BINARY_DIR}")
|
|
49
49
|
|
|
50
|
+
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include)
|
|
50
51
|
# Create config.h based on config.in
|
|
51
52
|
configure_file(${SVF_SOURCE_DIR}/.config.in ${SVF_BINARY_DIR}/include/Util/config.h)
|
|
52
53
|
|
|
@@ -56,7 +57,7 @@ include_directories(${SVF_BINARY_DIR}/include)
|
|
|
56
57
|
# Install generated configuration header (see `configure_file()`) to top-level include dir of SVF
|
|
57
58
|
install(
|
|
58
59
|
FILES ${SVF_BINARY_DIR}/include/Util/config.h
|
|
59
|
-
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/
|
|
60
|
+
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/Util
|
|
60
61
|
)
|
|
61
62
|
|
|
62
63
|
# Build SVF with C++ standard C++17
|
|
@@ -149,7 +150,7 @@ include(CMakePackageConfigHelpers)
|
|
|
149
150
|
# Generate SVFConfig.cmake
|
|
150
151
|
configure_package_config_file(
|
|
151
152
|
.config.cmake.in
|
|
152
|
-
${CMAKE_CURRENT_BINARY_DIR}/SVFConfig.cmake
|
|
153
|
+
${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/SVF/SVFConfig.cmake
|
|
153
154
|
INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/SVF
|
|
154
155
|
PATH_VARS
|
|
155
156
|
SVF_INSTALL_ROOT
|
|
@@ -162,7 +163,7 @@ configure_package_config_file(
|
|
|
162
163
|
|
|
163
164
|
# Generate SVFConfigVersion.cmake
|
|
164
165
|
write_basic_package_version_file(
|
|
165
|
-
"${CMAKE_CURRENT_BINARY_DIR}/SVFConfigVersion.cmake"
|
|
166
|
+
"${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/SVF/SVFConfigVersion.cmake"
|
|
166
167
|
VERSION "${SVF_VERSION_MAJOR}.${SVF_VERSION_MINOR}"
|
|
167
168
|
COMPATIBILITY AnyNewerVersion
|
|
168
169
|
)
|
|
@@ -170,8 +171,8 @@ write_basic_package_version_file(
|
|
|
170
171
|
# Install above CMake files as part of installation
|
|
171
172
|
install(
|
|
172
173
|
FILES
|
|
173
|
-
${CMAKE_CURRENT_BINARY_DIR}/SVFConfig.cmake
|
|
174
|
-
${CMAKE_CURRENT_BINARY_DIR}/SVFConfigVersion.cmake
|
|
174
|
+
${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/SVF/SVFConfig.cmake
|
|
175
|
+
${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/SVF/SVFConfigVersion.cmake
|
|
175
176
|
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/SVF
|
|
176
177
|
)
|
|
177
178
|
|
|
@@ -183,4 +184,4 @@ install(
|
|
|
183
184
|
)
|
|
184
185
|
|
|
185
186
|
# Export targets added to SVFTargets (set by install() command)
|
|
186
|
-
export(EXPORT SVFTargets FILE "${CMAKE_CURRENT_BINARY_DIR}/SVFTargets.cmake")
|
|
187
|
+
export(EXPORT SVFTargets FILE "${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/SVF/SVFTargets.cmake")
|
package/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## News
|
|
4
4
|
* <b>SVF now supports LLVM-16.0.0 with opaque pointers (Contributed by [Xiao Cheng](https://github.com/jumormt)). </b>
|
|
5
|
+
* <b>Modernize SVF's CMake (Contributed by [Johannes](https://github.com/Johanmyst)). </b>
|
|
5
6
|
* <b>SVF now supports LLVM-13.0.0 (Thank [Shengjie Xu](https://github.com/xushengj) for his help!). </b>
|
|
6
7
|
* <b>[Object clustering](https://github.com/SVF-tools/SVF/wiki/Object-Clustering) published in our [OOPSLA paper](https://yuleisui.github.io/publications/oopsla21.pdf) is now available in SVF </b>
|
|
7
8
|
* <b>[Hash-Consed Points-To Sets](https://github.com/SVF-tools/SVF/wiki/Hash-Consed-Points-To-Sets) published in our [SAS paper](https://yuleisui.github.io/publications/sas21.pdf) is now available in SVF </b>
|
|
@@ -91,7 +91,7 @@ Functions</h2></td></tr>
|
|
|
91
91
|
</div><div class="memdoc">
|
|
92
92
|
|
|
93
93
|
<p class="definition">Definition at line <a class="el" href="AE_2CMakeLists_8txt_source.html#l00001">1</a> of file <a class="el" href="AE_2CMakeLists_8txt_source.html">CMakeLists.txt</a>.</p>
|
|
94
|
-
<div class="fragment"><div class="line"><a name="l00002"></a><span class="lineno"> 2</span>  {llvm_libs}
|
|
94
|
+
<div class="fragment"><div class="line"><a name="l00002"></a><span class="lineno"> 2</span>  {llvm_libs}</div>
|
|
95
95
|
</div><!-- fragment -->
|
|
96
96
|
</div>
|
|
97
97
|
</div>
|
|
@@ -1963,7 +1963,7 @@ $(function() {
|
|
|
1963
1963
|
<div class="ttc" id="aclassSVF_1_1AssignStmt_html_a4cec89489e82c60c287cae3327f3f01d"><div class="ttname"><a href="classSVF_1_1AssignStmt.html#a4cec89489e82c60c287cae3327f3f01d">SVF::AssignStmt::getRHSVarID</a></div><div class="ttdeci">NodeID getRHSVarID() const</div><div class="ttdef"><b>Definition:</b> <a href="SVFStatements_8h_source.html#l00298">SVFStatements.h:298</a></div></div>
|
|
1964
1964
|
<div class="ttc" id="anamespaceSVF_1_1SVFUtil_html_a145abbd2958629718fbca41d25c3124d"><div class="ttname"><a href="namespaceSVF_1_1SVFUtil.html#a145abbd2958629718fbca41d25c3124d">SVF::SVFUtil::getCallee</a></div><div class="ttdeci">const SVFFunction * getCallee(const CallSite cs)</div><div class="ttdoc">Return callee of a callsite. Return null if this is an indirect call.</div><div class="ttdef"><b>Definition:</b> <a href="SVFUtil_8h_source.html#l00241">SVFUtil.h:241</a></div></div>
|
|
1965
1965
|
<div class="ttc" id="aclassSVF_1_1ValVar_html"><div class="ttname"><a href="classSVF_1_1ValVar.html">SVF::ValVar</a></div><div class="ttdef"><b>Definition:</b> <a href="SVFVariables_8h_source.html#l00262">SVFVariables.h:262</a></div></div>
|
|
1966
|
-
<div class="ttc" id="aclassSVF_1_1SVFIR2ItvExeState_html"><div class="ttname"><a href="classSVF_1_1SVFIR2ItvExeState.html">SVF::SVFIR2ItvExeState</a></div><div class="ttdef"><b>Definition:</b> <a href="SVFIR2ItvExeState_8h_source.html#
|
|
1966
|
+
<div class="ttc" id="aclassSVF_1_1SVFIR2ItvExeState_html"><div class="ttname"><a href="classSVF_1_1SVFIR2ItvExeState.html">SVF::SVFIR2ItvExeState</a></div><div class="ttdef"><b>Definition:</b> <a href="SVFIR2ItvExeState_8h_source.html#l00044">SVFIR2ItvExeState.h:44</a></div></div>
|
|
1967
1967
|
<div class="ttc" id="aclassSVF_1_1NumericLiteral_html_a4181e5e15e10304ea524e5f8b2a3f576"><div class="ttname"><a href="classSVF_1_1NumericLiteral.html#a4181e5e15e10304ea524e5f8b2a3f576">SVF::NumericLiteral::getNumeral</a></div><div class="ttdeci">s64_t getNumeral() const</div><div class="ttdoc">Return Numeral.</div><div class="ttdef"><b>Definition:</b> <a href="NumericLiteral_8h_source.html#l00118">NumericLiteral.h:118</a></div></div>
|
|
1968
1968
|
<div class="ttc" id="aclassSVF_1_1WTO_html_a22b67a51964cb1d7882aab7e74b026f2"><div class="ttname"><a href="classSVF_1_1WTO.html#a22b67a51964cb1d7882aab7e74b026f2">SVF::WTO::end</a></div><div class="ttdeci">Iterator end() const</div><div class="ttdoc">End iterator over the components.</div><div class="ttdef"><b>Definition:</b> <a href="WTO_8h_source.html#l00589">WTO.h:589</a></div></div>
|
|
1969
1969
|
<div class="ttc" id="aclassSVF_1_1BinaryOPStmt_html"><div class="ttname"><a href="classSVF_1_1BinaryOPStmt.html">SVF::BinaryOPStmt</a></div><div class="ttdef"><b>Definition:</b> <a href="SVFStatements_8h_source.html#l00970">SVFStatements.h:970</a></div></div>
|
|
@@ -2055,7 +2055,7 @@ $(function() {
|
|
|
2055
2055
|
<div class="ttc" id="aclassSVF_1_1IntervalESBase_html_af7451ea87d5117a90b5912a1e6f34e10"><div class="ttname"><a href="classSVF_1_1IntervalESBase.html#af7451ea87d5117a90b5912a1e6f34e10">SVF::IntervalESBase::getLocToVal</a></div><div class="ttdeci">const LocToValMap & getLocToVal() const</div><div class="ttdoc">get loc2val map</div><div class="ttdef"><b>Definition:</b> <a href="IntervalExeState_8h_source.html#l00195">IntervalExeState.h:195</a></div></div>
|
|
2056
2056
|
<div class="ttc" id="aclassSVF_1_1FILOWorkList_html_a071a624c91def82a4bbbf3806c7b7eea"><div class="ttname"><a href="classSVF_1_1FILOWorkList.html#a071a624c91def82a4bbbf3806c7b7eea">SVF::FILOWorkList::empty</a></div><div class="ttdeci">bool empty() const</div><div class="ttdef"><b>Definition:</b> <a href="WorkList_8h_source.html#l00238">WorkList.h:238</a></div></div>
|
|
2057
2057
|
<div class="ttc" id="aclassSVF_1_1AddressValue_html"><div class="ttname"><a href="classSVF_1_1AddressValue.html">SVF::AddressValue</a></div><div class="ttdef"><b>Definition:</b> <a href="AddressValue_8h_source.html#l00043">AddressValue.h:43</a></div></div>
|
|
2058
|
-
<div class="ttc" id="aclassSVF_1_1AEStat_html"><div class="ttname"><a href="classSVF_1_1AEStat.html">SVF::AEStat</a></div><div class="ttdoc">AEStat: Statistic for AE.</div><div class="ttdef"><b>Definition:</b> <a href="AbstractExecution_8h_source.html#
|
|
2058
|
+
<div class="ttc" id="aclassSVF_1_1AEStat_html"><div class="ttname"><a href="classSVF_1_1AEStat.html">SVF::AEStat</a></div><div class="ttdoc">AEStat: Statistic for AE.</div><div class="ttdef"><b>Definition:</b> <a href="AbstractExecution_8h_source.html#l00053">AbstractExecution.h:53</a></div></div>
|
|
2059
2059
|
<div class="ttc" id="aclassSVF_1_1AEAPI_html_aa2a97be698768ddbcab0fec27bde60c8"><div class="ttname"><a href="classSVF_1_1AEAPI.html#aa2a97be698768ddbcab0fec27bde60c8">SVF::AEAPI::checkPointAllSet</a></div><div class="ttdeci">void checkPointAllSet()</div><div class="ttdef"><b>Definition:</b> <a href="AbstractExecution_8cpp_source.html#l01332">AbstractExecution.cpp:1332</a></div></div>
|
|
2060
2060
|
<div class="ttc" id="aclassSVF_1_1AbstractExecution_html_adb88a8be0bc1c1ac2d1546e9191c6f93"><div class="ttname"><a href="classSVF_1_1AbstractExecution.html#adb88a8be0bc1c1ac2d1546e9191c6f93">SVF::AbstractExecution::handleFunc</a></div><div class="ttdeci">virtual void handleFunc(const SVFFunction *func)</div><div class="ttdoc">handle user defined function, ext function is not included.</div><div class="ttdef"><b>Definition:</b> <a href="AbstractExecution_8cpp_source.html#l00875">AbstractExecution.cpp:875</a></div></div>
|
|
2061
2061
|
<div class="ttc" id="aclassSVF_1_1CFBasicBlockNode_html_a6bfafe540f83e097370ca0dc66422214"><div class="ttname"><a href="classSVF_1_1CFBasicBlockNode.html#a6bfafe540f83e097370ca0dc66422214">SVF::CFBasicBlockNode::getInEdges</a></div><div class="ttdeci">const CFBBEdgeSetTy & getInEdges() const</div><div class="ttdef"><b>Definition:</b> <a href="CFBasicBlockG_8h_source.html#l00199">CFBasicBlockG.h:199</a></div></div>
|
|
@@ -2091,11 +2091,11 @@ $(function() {
|
|
|
2091
2091
|
<div class="ttc" id="aAbstractExecution_8cpp_html_a6baa35cec0782ac3179849752a732e5c"><div class="ttname"><a href="AbstractExecution_8cpp.html#a6baa35cec0782ac3179849752a732e5c">_reverse_predicate</a></div><div class="ttdeci">Map< s32_t, s32_t > _reverse_predicate</div><div class="ttdef"><b>Definition:</b> <a href="AbstractExecution_8cpp_source.html#l00046">AbstractExecution.cpp:46</a></div></div>
|
|
2092
2092
|
<div class="ttc" id="anamespaceSVF_html_ad781b0b14e89773e774072b280658ef3"><div class="ttname"><a href="namespaceSVF.html#ad781b0b14e89773e774072b280658ef3">SVF::s64_t</a></div><div class="ttdeci">signed long long s64_t</div><div class="ttdef"><b>Definition:</b> <a href="GeneralType_8h_source.html#l00049">GeneralType.h:49</a></div></div>
|
|
2093
2093
|
<div class="ttc" id="aclassSVF_1_1IntervalExeState_html_ad17ceaf8058043151ae0f23b3415458a"><div class="ttname"><a href="classSVF_1_1IntervalExeState.html#ad17ceaf8058043151ae0f23b3415458a">SVF::IntervalExeState::loadAddrs</a></div><div class="ttdeci">Addrs & loadAddrs(u32_t addr) override</div><div class="ttdef"><b>Definition:</b> <a href="IntervalExeState_8h_source.html#l00564">IntervalExeState.h:564</a></div></div>
|
|
2094
|
-
<div class="ttc" id="aclassSVF_1_1AEAPI_html"><div class="ttname"><a href="classSVF_1_1AEAPI.html">SVF::AEAPI</a></div><div class="ttdef"><b>Definition:</b> <a href="AbstractExecution_8h_source.html#
|
|
2094
|
+
<div class="ttc" id="aclassSVF_1_1AEAPI_html"><div class="ttname"><a href="classSVF_1_1AEAPI.html">SVF::AEAPI</a></div><div class="ttdef"><b>Definition:</b> <a href="AbstractExecution_8h_source.html#l00283">AbstractExecution.h:283</a></div></div>
|
|
2095
2095
|
<div class="ttc" id="aclassSVF_1_1IntervalExeState_html_a50aee49f7f34e05f7e2cb28ae55099f8"><div class="ttname"><a href="classSVF_1_1IntervalExeState.html#a50aee49f7f34e05f7e2cb28ae55099f8">SVF::IntervalExeState::inLocToValTable</a></div><div class="ttdeci">bool inLocToValTable(u32_t id) const override</div><div class="ttdoc">whether the memory address stores interval value</div><div class="ttdef"><b>Definition:</b> <a href="IntervalExeState_8h_source.html#l00495">IntervalExeState.h:495</a></div></div>
|
|
2096
2096
|
<div class="ttc" id="aclassSVF_1_1AEAPI_html_a13abbe8b8622df63e7f160732bc1cbfc"><div class="ttname"><a href="classSVF_1_1AEAPI.html#a13abbe8b8622df63e7f160732bc1cbfc">SVF::AEAPI::handleStrcpy</a></div><div class="ttdeci">virtual void handleStrcpy(const CallICFGNode *call)</div><div class="ttdef"><b>Definition:</b> <a href="AbstractExecution_8cpp_source.html#l01350">AbstractExecution.cpp:1350</a></div></div>
|
|
2097
2097
|
<div class="ttc" id="aclassSVF_1_1IntervalValue_html_ae081b5c462f8ed5b306719822e35cea9"><div class="ttname"><a href="classSVF_1_1IntervalValue.html#ae081b5c462f8ed5b306719822e35cea9">SVF::IntervalValue::getNumeral</a></div><div class="ttdeci">s64_t getNumeral() const</div><div class="ttdoc">Return.</div><div class="ttdef"><b>Definition:</b> <a href="IntervalValue_8h_source.html#l00263">IntervalValue.h:263</a></div></div>
|
|
2098
|
-
<div class="ttc" id="aclassSVF_1_1AEAPI_html_a29ab312d273e6c9c32a40d61861afb04"><div class="ttname"><a href="classSVF_1_1AEAPI.html#a29ab312d273e6c9c32a40d61861afb04">SVF::AEAPI::ExtAPIType</a></div><div class="ttdeci">ExtAPIType</div><div class="ttdef"><b>Definition:</b> <a href="AbstractExecution_8h_source.html#
|
|
2098
|
+
<div class="ttc" id="aclassSVF_1_1AEAPI_html_a29ab312d273e6c9c32a40d61861afb04"><div class="ttname"><a href="classSVF_1_1AEAPI.html#a29ab312d273e6c9c32a40d61861afb04">SVF::AEAPI::ExtAPIType</a></div><div class="ttdeci">ExtAPIType</div><div class="ttdef"><b>Definition:</b> <a href="AbstractExecution_8h_source.html#l00288">AbstractExecution.h:288</a></div></div>
|
|
2099
2099
|
<div class="ttc" id="anamespaceSVF_html_a8234d4b959abc9123993bcff4eee34c1"><div class="ttname"><a href="namespaceSVF.html#a8234d4b959abc9123993bcff4eee34c1">SVF::Map</a></div><div class="ttdeci">std::unordered_map< Key, Value, Hash, KeyEqual, Allocator > Map</div><div class="ttdef"><b>Definition:</b> <a href="GeneralType_8h_source.html#l00097">GeneralType.h:97</a></div></div>
|
|
2100
2100
|
<div class="ttc" id="aclassSVF_1_1CallICFGNode_html_ae23a7540609879ac0379fc53b4e7eead"><div class="ttname"><a href="classSVF_1_1CallICFGNode.html#ae23a7540609879ac0379fc53b4e7eead">SVF::CallICFGNode::getRetICFGNode</a></div><div class="ttdeci">const RetICFGNode * getRetICFGNode() const</div><div class="ttdoc">Return callsite.</div><div class="ttdef"><b>Definition:</b> <a href="ICFGNode_8h_source.html#l00415">ICFGNode.h:415</a></div></div>
|
|
2101
2101
|
<div class="ttc" id="aclassSVF_1_1AbstractExecution_html_ab807fd4f914cd35a07fe19bb0d7f9860"><div class="ttname"><a href="classSVF_1_1AbstractExecution.html#ab807fd4f914cd35a07fe19bb0d7f9860">SVF::AbstractExecution::isFunEntry</a></div><div class="ttdeci">bool isFunEntry(const CFBasicBlockNode *block)</div><div class="ttdef"><b>Definition:</b> <a href="AbstractExecution_8cpp_source.html#l00270">AbstractExecution.cpp:270</a></div></div>
|