2001-06-06 20:29:01 +00:00
|
|
|
//===------------------------------------------------------------------------===
|
|
|
|
// LLVM 'AS' UTILITY
|
|
|
|
//
|
|
|
|
// This utility may be invoked in the following manner:
|
|
|
|
// as --help - Output information about command line switches
|
|
|
|
// as [options] - Read LLVM assembly from stdin, write bytecode to stdout
|
|
|
|
// as [options] x.ll - Read LLVM assembly from the x.ll file, write bytecode
|
|
|
|
// to the x.bc file.
|
2002-06-25 21:43:28 +00:00
|
|
|
//
|
2001-06-06 20:29:01 +00:00
|
|
|
//===------------------------------------------------------------------------===
|
|
|
|
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Assembly/Parser.h"
|
|
|
|
#include "llvm/Bytecode/Writer.h"
|
2002-08-30 22:54:41 +00:00
|
|
|
#include "llvm/Analysis/Verifier.h"
|
2001-11-27 00:03:19 +00:00
|
|
|
#include "Support/CommandLine.h"
|
2002-04-18 19:55:25 +00:00
|
|
|
#include "Support/Signals.h"
|
2001-11-27 00:03:19 +00:00
|
|
|
#include <fstream>
|
2002-01-20 22:54:45 +00:00
|
|
|
#include <memory>
|
2002-06-25 21:43:28 +00:00
|
|
|
using std::cerr;
|
2002-07-25 15:00:45 +00:00
|
|
|
using std::string;
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-07-22 02:10:13 +00:00
|
|
|
static cl::opt<string>
|
|
|
|
InputFilename(cl::Positional, cl::desc("<input .llvm file>"), cl::init("-"));
|
|
|
|
|
|
|
|
static cl::opt<string>
|
|
|
|
OutputFilename("o", cl::desc("Override output filename"),
|
|
|
|
cl::value_desc("filename"));
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
|
|
|
Force("f", cl::desc("Overwrite output files"));
|
|
|
|
|
|
|
|
static cl::opt<bool>
|
|
|
|
DumpAsm("d", cl::desc("Print assembly as parsed"), cl::Hidden);
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2001-07-23 02:35:57 +00:00
|
|
|
cl::ParseCommandLineOptions(argc, argv, " llvm .ll -> .bc assembler\n");
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-06-25 21:43:28 +00:00
|
|
|
std::ostream *Out = 0;
|
2001-06-06 20:29:01 +00:00
|
|
|
try {
|
|
|
|
// Parse the file now...
|
2002-04-07 22:34:19 +00:00
|
|
|
std::auto_ptr<Module> M(ParseAssemblyFile(InputFilename));
|
|
|
|
if (M.get() == 0) {
|
2002-07-30 21:43:25 +00:00
|
|
|
cerr << argv[0] << ": assembly didn't read correctly.\n";
|
2001-06-06 20:29:01 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2002-08-30 22:54:41 +00:00
|
|
|
|
|
|
|
if (verifyModule(*M.get())) {
|
|
|
|
cerr << argv[0] << ": assembly parsed, but does not verify as correct!\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-04-28 05:13:45 +00:00
|
|
|
if (DumpAsm) cerr << "Here's the assembly:\n" << M.get();
|
2001-07-23 02:35:57 +00:00
|
|
|
|
2001-07-23 19:27:24 +00:00
|
|
|
if (OutputFilename != "") { // Specified an output filename?
|
2002-01-22 21:07:24 +00:00
|
|
|
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
2002-01-20 22:54:45 +00:00
|
|
|
// If force is not specified, make sure not to overwrite a file!
|
2002-07-30 21:43:25 +00:00
|
|
|
cerr << argv[0] << ": error opening '" << OutputFilename
|
|
|
|
<< "': file exists!\n"
|
2002-01-20 22:54:45 +00:00
|
|
|
<< "Use -f command line argument to force output\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
Out = new std::ofstream(OutputFilename.c_str());
|
2001-07-23 02:35:57 +00:00
|
|
|
} else {
|
2001-07-23 19:27:24 +00:00
|
|
|
if (InputFilename == "-") {
|
|
|
|
OutputFilename = "-";
|
2002-06-25 21:43:28 +00:00
|
|
|
Out = &std::cout;
|
2001-07-23 02:35:57 +00:00
|
|
|
} else {
|
2002-01-20 22:54:45 +00:00
|
|
|
std::string IFN = InputFilename;
|
2001-07-23 02:35:57 +00:00
|
|
|
int Len = IFN.length();
|
|
|
|
if (IFN[Len-3] == '.' && IFN[Len-2] == 'l' && IFN[Len-1] == 'l') {
|
|
|
|
// Source ends in .ll
|
2002-01-20 22:54:45 +00:00
|
|
|
OutputFilename = std::string(IFN.begin(), IFN.end()-3);
|
2001-07-23 02:35:57 +00:00
|
|
|
} else {
|
2001-07-23 19:27:24 +00:00
|
|
|
OutputFilename = IFN; // Append a .bc to it
|
2001-07-23 02:35:57 +00:00
|
|
|
}
|
2001-07-23 19:27:24 +00:00
|
|
|
OutputFilename += ".bc";
|
2002-01-20 22:54:45 +00:00
|
|
|
|
2002-01-22 21:07:24 +00:00
|
|
|
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
2002-01-20 22:54:45 +00:00
|
|
|
// If force is not specified, make sure not to overwrite a file!
|
2002-07-30 21:43:25 +00:00
|
|
|
cerr << argv[0] << ": error opening '" << OutputFilename
|
|
|
|
<< "': file exists!\n"
|
2002-01-20 22:54:45 +00:00
|
|
|
<< "Use -f command line argument to force output\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Out = new std::ofstream(OutputFilename.c_str());
|
2002-04-18 19:55:25 +00:00
|
|
|
// Make sure that the Out file gets unlink'd from the disk if we get a
|
|
|
|
// SIGINT
|
|
|
|
RemoveFileOnSignal(OutputFilename);
|
2001-07-23 02:35:57 +00:00
|
|
|
}
|
2002-01-20 22:54:45 +00:00
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
if (!Out->good()) {
|
2002-07-30 21:43:25 +00:00
|
|
|
cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
|
2002-01-20 22:54:45 +00:00
|
|
|
return 1;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2002-04-07 22:34:19 +00:00
|
|
|
WriteBytecodeToFile(M.get(), *Out);
|
2001-06-06 20:29:01 +00:00
|
|
|
} catch (const ParseException &E) {
|
2002-07-30 21:43:25 +00:00
|
|
|
cerr << argv[0] << ": " << E.getMessage() << "\n";
|
2001-06-06 20:29:01 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2002-06-25 21:43:28 +00:00
|
|
|
if (Out != &std::cout) delete Out;
|
2001-06-06 20:29:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|