#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.
◆ main()
Definition at line 53 of file llvm2svf.cpp.
54{
56 argc,
argv,
"llvm2svf",
"[options] <input-bitcode...>");
57
59 {
61 }
62
64
65
66 assert(
false &&
"Please implement SVFIRWriter::writeJsonToPath");
69 return 0;
70}
static std::vector< std::string > parseOptions(int argc, char *argv[], std::string description, std::string callFormat)
static void releaseLLVMModuleSet()
static void preProcessBCs(std::vector< std::string > &moduleNameVec)
static const Option< std::string > WriteAnder
std::string replaceExtension(const std::string &path)
std::ostream & outs()
Overwrite llvm::outs()
llvm::IRBuilder IRBuilder
◆ replaceExtension()
Definition at line 41 of file llvm2svf.cpp.
42{
44 if (
pos == std::string::npos ||
46 {
47 SVFUtil::errs() <<
"Error: expect file with extension .bc or .ll\n";
49 }
50 return path.substr(0,
pos) +
".svf.json";
51}
std::ostream & errs()
Overwrite llvm::errs()