Make sure that there is no case where a signal can occur leaving a partially
[oota-llvm.git] / tools / as / as.cpp
1 //===------------------------------------------------------------------------===
2 // LLVM 'AS' UTILITY 
3 //
4 //  This utility may be invoked in the following manner:
5 //   as --help     - Output information about command line switches
6 //   as [options]      - Read LLVM assembly from stdin, write bytecode to stdout
7 //   as [options] x.ll - Read LLVM assembly from the x.ll file, write bytecode
8 //                       to the x.bc file.
9 //
10 //===------------------------------------------------------------------------===
11
12 #include "llvm/Module.h"
13 #include "llvm/Assembly/Parser.h"
14 #include "llvm/Bytecode/Writer.h"
15 #include "Support/CommandLine.h"
16 #include "Support/Signals.h"
17 #include <fstream>
18 #include <string>
19 #include <memory>
20
21 cl::String InputFilename ("", "Parse <arg> file, compile to bytecode", 0, "-");
22 cl::String OutputFilename("o", "Override output filename", cl::NoFlags, "");
23 cl::Flag   Force         ("f", "Overwrite output files", cl::NoFlags, false);
24 cl::Flag   DumpAsm       ("d", "Print assembly as parsed", cl::Hidden, false);
25
26 int main(int argc, char **argv) {
27   cl::ParseCommandLineOptions(argc, argv, " llvm .ll -> .bc assembler\n");
28
29   ostream *Out = 0;
30   try {
31     // Parse the file now...
32     std::auto_ptr<Module> M(ParseAssemblyFile(InputFilename));
33     if (M.get() == 0) {
34       cerr << "assembly didn't read correctly.\n";
35       return 1;
36     }
37   
38     if (DumpAsm) {
39       cerr << "Here's the assembly:\n";
40       M.get()->dump();
41     }
42
43     if (OutputFilename != "") {   // Specified an output filename?
44       if (!Force && std::ifstream(OutputFilename.c_str())) {
45         // If force is not specified, make sure not to overwrite a file!
46         cerr << "Error opening '" << OutputFilename << "': File exists!\n"
47              << "Use -f command line argument to force output\n";
48         return 1;
49       }
50       Out = new std::ofstream(OutputFilename.c_str());
51     } else {
52       if (InputFilename == "-") {
53         OutputFilename = "-";
54         Out = &cout;
55       } else {
56         std::string IFN = InputFilename;
57         int Len = IFN.length();
58         if (IFN[Len-3] == '.' && IFN[Len-2] == 'l' && IFN[Len-1] == 'l') {
59           // Source ends in .ll
60           OutputFilename = std::string(IFN.begin(), IFN.end()-3);
61         } else {
62           OutputFilename = IFN;   // Append a .bc to it
63         }
64         OutputFilename += ".bc";
65
66         if (!Force && std::ifstream(OutputFilename.c_str())) {
67           // If force is not specified, make sure not to overwrite a file!
68           cerr << "Error opening '" << OutputFilename << "': File exists!\n"
69                << "Use -f command line argument to force output\n";
70           return 1;
71         }
72
73         Out = new std::ofstream(OutputFilename.c_str());
74         // Make sure that the Out file gets unlink'd from the disk if we get a
75         // SIGINT
76         RemoveFileOnSignal(OutputFilename);
77       }
78     }
79   
80     if (!Out->good()) {
81       cerr << "Error opening " << OutputFilename << "!\n";
82       return 1;
83     }
84    
85     WriteBytecodeToFile(M.get(), *Out);
86   } catch (const ParseException &E) {
87     cerr << E.getMessage() << endl;
88     return 1;
89   }
90
91   if (Out != &cout) delete Out;
92   return 0;
93 }
94