Prevent output of bytecode to std::cout unless the --force flag is given.
[oota-llvm.git] / tools / llvm-as / llvm-as.cpp
1 //===--- llvm-as.cpp - The low-level LLVM assembler -----------------------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 //  This utility may be invoked in the following manner:
11 //   llvm-as --help         - Output information about command line switches
12 //   llvm-as [options]      - Read LLVM asm from stdin, write bytecode to stdout
13 //   llvm-as [options] x.ll - Read LLVM asm from the x.ll file, write bytecode
14 //                            to the x.bc file.
15 // 
16 //===------------------------------------------------------------------------===
17
18 #include "llvm/Module.h"
19 #include "llvm/Assembly/Parser.h"
20 #include "llvm/Bytecode/Writer.h"
21 #include "llvm/Analysis/Verifier.h"
22 #include "llvm/Support/CommandLine.h"
23 #include "llvm/Support/SystemUtils.h"
24 #include "llvm/System/Signals.h"
25 #include <fstream>
26 #include <iostream>
27 #include <memory>
28
29 using namespace llvm;
30
31 static cl::opt<std::string> 
32 InputFilename(cl::Positional, cl::desc("<input .llvm file>"), cl::init("-"));
33
34 static cl::opt<std::string>
35 OutputFilename("o", cl::desc("Override output filename"),
36                cl::value_desc("filename"));
37
38 static cl::opt<bool>
39 Force("f", cl::desc("Overwrite output files"));
40
41 static cl::opt<bool>
42 DumpAsm("d", cl::desc("Print assembly as parsed"), cl::Hidden);
43
44 static cl::opt<bool> 
45 NoCompress("disable-compression", cl::init(false),
46            cl::desc("Don't compress the generated bytecode"));
47
48 static cl::opt<bool>
49 DisableVerify("disable-verify", cl::Hidden,
50               cl::desc("Do not run verifier on input LLVM (dangerous!)"));
51
52 int main(int argc, char **argv) {
53   cl::ParseCommandLineOptions(argc, argv, " llvm .ll -> .bc assembler\n");
54   sys::PrintStackTraceOnErrorSignal();
55
56   int exitCode = 0;
57   std::ostream *Out = 0;
58   try {
59     // Parse the file now...
60     std::auto_ptr<Module> M(ParseAssemblyFile(InputFilename));
61     if (M.get() == 0) {
62       std::cerr << argv[0] << ": assembly didn't read correctly.\n";
63       return 1;
64     }
65
66     try {
67       if (!DisableVerify)
68         verifyModule(*M.get(), ThrowExceptionAction);
69     } catch (const std::string &Err) {
70       std::cerr << argv[0]
71                 << ": assembly parsed, but does not verify as correct!\n";
72       std::cerr << Err;
73       return 1;
74     }
75   
76     if (DumpAsm) std::cerr << "Here's the assembly:\n" << M.get();
77
78     if (OutputFilename != "") {   // Specified an output filename?
79       if (OutputFilename != "-") {  // Not stdout?
80         if (!Force && std::ifstream(OutputFilename.c_str())) {
81           // If force is not specified, make sure not to overwrite a file!
82           std::cerr << argv[0] << ": error opening '" << OutputFilename
83                     << "': file exists!\n"
84                     << "Use -f command line argument to force output\n";
85           return 1;
86         }
87         Out = new std::ofstream(OutputFilename.c_str(), std::ios_base::out | 
88                                 std::ios_base::trunc | std::ios_base::binary);
89       } else {                      // Specified stdout
90         Out = &std::cout;       
91       }
92     } else {
93       if (InputFilename == "-") {
94         OutputFilename = "-";
95         Out = &std::cout;
96       } else {
97         std::string IFN = InputFilename;
98         int Len = IFN.length();
99         if (IFN[Len-3] == '.' && IFN[Len-2] == 'l' && IFN[Len-1] == 'l') {
100           // Source ends in .ll
101           OutputFilename = std::string(IFN.begin(), IFN.end()-3);
102         } else {
103           OutputFilename = IFN;   // Append a .bc to it
104         }
105         OutputFilename += ".bc";
106
107         if (!Force && std::ifstream(OutputFilename.c_str())) {
108           // If force is not specified, make sure not to overwrite a file!
109           std::cerr << argv[0] << ": error opening '" << OutputFilename
110                     << "': file exists!\n"
111                     << "Use -f command line argument to force output\n";
112           return 1;
113         }
114
115         Out = new std::ofstream(OutputFilename.c_str(), std::ios_base::out | 
116                                 std::ios_base::trunc | std::ios_base::binary);
117         // Make sure that the Out file gets unlinked from the disk if we get a
118         // SIGINT
119         sys::RemoveFileOnSignal(sys::Path(OutputFilename));
120       }
121     }
122   
123     if (!Out->good()) {
124       std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
125       return 1;
126     }
127    
128     if (Force || !CheckBytecodeOutputToConsole(Out,true)) {
129       WriteBytecodeToFile(M.get(), *Out, !NoCompress);
130     }
131   } catch (const ParseException &E) {
132     std::cerr << argv[0] << ": " << E.getMessage() << "\n";
133     exitCode = 1;
134   } catch (const std::string& msg) {
135     std::cerr << argv[0] << ": " << msg << "\n";
136     exitCode = 1;
137   } catch (...) {
138     std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
139     exitCode = 1;
140   }
141
142   if (Out != &std::cout) delete Out;
143   return exitCode;
144 }
145