Static Value-Flow Analysis
Loading...
Searching...
No Matches
Functions
llvm2svf.cpp File Reference
#include "SVF-LLVM/SVFIRBuilder.h"
#include "Util/CommandLine.h"
#include "Util/Options.h"
#include <iostream>
#include <string>

Go to the source code of this file.

Functions

std::string replaceExtension (const std::string &path)
 
int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 53 of file llvm2svf.cpp.

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
std::string replaceExtension(const std::string &path)
Definition llvm2svf.cpp:41
std::ostream & outs()
Overwrite llvm::outs()
Definition SVFUtil.h:52
llvm::IRBuilder IRBuilder
Definition BasicTypes.h:74

◆ replaceExtension()

std::string replaceExtension ( const std::string path)

Definition at line 41 of file llvm2svf.cpp.

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}
std::ostream & errs()
Overwrite llvm::errs()
Definition SVFUtil.h:58