blob: 7a4460282d74b857dbfad535b74ac1566b8407ce [file] [log] [blame]
Reid Spencerd9169d32006-05-29 02:35:29 +00001//===--- llvm2cpp.cpp - LLVM IR to C++ Translator -------------------------===//
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00002//
3// The LLVM Compiler Infrastructure
4//
Reid Spencerba570d72006-05-29 18:06:28 +00005// This file was developed by Reid Spencer and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
Reid Spencerfb0c0dc2006-05-29 00:57:22 +00007//
8//===----------------------------------------------------------------------===//
9//
Reid Spencerd9169d32006-05-29 02:35:29 +000010// This program converts an input LLVM assembly file (.ll) into a C++ source
11// file that makes calls to the LLVM C++ API to produce the same module. The
12// generated program verifies what it built and then runs the PrintAssemblyPass
13// to reproduce the input originally given to llvm2cpp.
14//
15// Use the --help option for help with command line options.
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000016//
17//===------------------------------------------------------------------------===
18
19#include "llvm/Module.h"
Chris Lattnerb958ba32007-05-06 05:21:42 +000020#include "llvm/Bitcode/ReaderWriter.h"
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000021#include "llvm/Analysis/Verifier.h"
22#include "llvm/Support/CommandLine.h"
Chris Lattnerc30598b2006-12-06 01:18:01 +000023#include "llvm/Support/ManagedStatic.h"
Chris Lattnerb958ba32007-05-06 05:21:42 +000024#include "llvm/Support/MemoryBuffer.h"
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000025#include "llvm/Support/SystemUtils.h"
26#include "llvm/System/Signals.h"
27#include "CppWriter.h"
28#include <fstream>
29#include <iostream>
30#include <memory>
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000031using namespace llvm;
32
33static cl::opt<std::string>
Chris Lattner8eaafde2006-07-06 23:48:57 +000034InputFilename(cl::Positional, cl::desc("<input LLVM bytecode file>"),
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000035 cl::init("-"));
36
37static cl::opt<std::string>
38OutputFilename("o", cl::desc("Override output filename"),
39 cl::value_desc("filename"));
40
41static cl::opt<bool>
42Force("f", cl::desc("Overwrite output files"));
43
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000044int main(int argc, char **argv) {
Chris Lattnerc30598b2006-12-06 01:18:01 +000045 llvm_shutdown_obj X; // Call llvm_shutdown() on exit.
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000046 cl::ParseCommandLineOptions(argc, argv, " llvm .ll -> .cpp assembler\n");
47 sys::PrintStackTraceOnErrorSignal();
48
49 int exitCode = 0;
50 std::ostream *Out = 0;
Chris Lattner8eaafde2006-07-06 23:48:57 +000051 std::string ErrorMessage;
Chris Lattnerb958ba32007-05-06 05:21:42 +000052
53 std::auto_ptr<Module> M;
Chris Lattner44dadff2007-05-06 09:29:57 +000054 std::auto_ptr<MemoryBuffer> Buffer(
55 MemoryBuffer::getFileOrSTDIN(&InputFilename[0], InputFilename.size()));
56 if (Buffer.get())
57 M.reset(ParseBitcodeFile(Buffer.get(), &ErrorMessage));
58 else
59 ErrorMessage = "Error reading file '" + InputFilename + "'";
Chris Lattner8eaafde2006-07-06 23:48:57 +000060 if (M.get() == 0) {
61 std::cerr << argv[0] << ": ";
62 if (ErrorMessage.size())
63 std::cerr << ErrorMessage << "\n";
64 else
65 std::cerr << "bytecode didn't read correctly.\n";
66 return 1;
Reid Spencerfb0c0dc2006-05-29 00:57:22 +000067 }
68
Chris Lattner8eaafde2006-07-06 23:48:57 +000069 if (OutputFilename != "") { // Specified an output filename?
70 if (OutputFilename != "-") { // Not stdout?
71 if (!Force && std::ifstream(OutputFilename.c_str())) {
72 // If force is not specified, make sure not to overwrite a file!
73 std::cerr << argv[0] << ": error opening '" << OutputFilename
74 << "': file exists!\n"
75 << "Use -f command line argument to force output\n";
76 return 1;
77 }
78 Out = new std::ofstream(OutputFilename.c_str(), std::ios::out |
79 std::ios::trunc | std::ios::binary);
80 } else { // Specified stdout
81 Out = &std::cout;
82 }
83 } else {
84 if (InputFilename == "-") {
85 OutputFilename = "-";
86 Out = &std::cout;
87 } else {
88 std::string IFN = InputFilename;
89 int Len = IFN.length();
90 if (IFN[Len-3] == '.' && IFN[Len-2] == 'l' && IFN[Len-1] == 'l') {
91 // Source ends in .ll
92 OutputFilename = std::string(IFN.begin(), IFN.end()-3);
93 } else {
94 OutputFilename = IFN; // Append a .cpp to it
95 }
96 OutputFilename += ".cpp";
97
98 if (!Force && std::ifstream(OutputFilename.c_str())) {
99 // If force is not specified, make sure not to overwrite a file!
100 std::cerr << argv[0] << ": error opening '" << OutputFilename
101 << "': file exists!\n"
102 << "Use -f command line argument to force output\n";
103 return 1;
104 }
105
106 Out = new std::ofstream(OutputFilename.c_str(), std::ios::out |
107 std::ios::trunc | std::ios::binary);
108 // Make sure that the Out file gets unlinked from the disk if we get a
109 // SIGINT
110 sys::RemoveFileOnSignal(sys::Path(OutputFilename));
111 }
112 }
113
114 if (!Out->good()) {
115 std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
116 return 1;
117 }
118
119 WriteModuleToCppFile(M.get(), *Out);
120
Reid Spencerfb0c0dc2006-05-29 00:57:22 +0000121 if (Out != &std::cout) delete Out;
122 return exitCode;
123}
124