Static Value-Flow Analysis
Loading...
Searching...
No Matches
llvm2svf.cpp
Go to the documentation of this file.
1//===- llvm2svf.cpp -- LLVM IR to SVF IR conversion -------------------------//
2//
3// SVF: Static Value-Flow Analysis
4//
5// Copyright (C) <2013-2023> <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 * llvm2svf.cpp
25 *
26 * Created on: 21 Apr 2023
27 * Authors: Xudong Wang
28 */
29
31#include "Util/CommandLine.h"
32#include "Util/Options.h"
33
34
35using namespace std;
36using namespace SVF;
37
38#include <iostream>
39#include <string>
40
41std::string replaceExtension(const std::string& path)
42{
43 size_t pos = path.rfind('.');
44 if (pos == std::string::npos ||
45 (path.substr(pos) != ".bc" && path.substr(pos) != ".ll"))
46 {
47 SVFUtil::errs() << "Error: expect file with extension .bc or .ll\n";
48 exit(EXIT_FAILURE);
49 }
50 return path.substr(0, pos) + ".svf.json";
51}
52
53int main(int argc, char** argv)
54{
56 argc, argv, "llvm2svf", "[options] <input-bitcode...>");
57
58 if (Options::WriteAnder() == "ir_annotator")
59 {
61 }
62
63 const std::string jsonPath = replaceExtension(moduleNameVec.front());
64 // PAG is borrowed from a unique_ptr, so we don't need to delete it.
65
66 assert(false && "Please implement SVFIRWriter::writeJsonToPath");
67 SVFUtil::outs() << "SVF IR is written to '" << jsonPath << "'\n";
69 return 0;
70}
static std::vector< std::string > parseOptions(int argc, char *argv[], std::string description, std::string callFormat)
Definition CommandLine.h:75
static void releaseLLVMModuleSet()
Definition LLVMModule.h:136
static void preProcessBCs(std::vector< std::string > &moduleNameVec)
static const Option< std::string > WriteAnder
Definition Options.h:212
int main(int argc, char **argv)
Definition llvm2svf.cpp:53
std::string replaceExtension(const std::string &path)
Definition llvm2svf.cpp:41
std::ostream & errs()
Overwrite llvm::errs()
Definition SVFUtil.h:58
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
for isBitcode
Definition BasicTypes.h:68
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74