2003-10-20 17:52:11 +00:00
|
|
|
//===--- llvm-as.cpp - The low-level LLVM assembler -----------------------===//
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-22 00:00:37 +00:00
|
|
|
//
|
2003-10-20 17:47:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
// This utility may be invoked in the following manner:
|
2003-08-28 21:32:57 +00:00
|
|
|
// llvm-as --help - Output information about command line switches
|
|
|
|
// llvm-as [options] - Read LLVM asm from stdin, write bytecode to stdout
|
|
|
|
// llvm-as [options] x.ll - Read LLVM asm from the x.ll file, write bytecode
|
|
|
|
// to the x.bc file.
|
2005-04-22 00:00:37 +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"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2005-01-02 00:08:46 +00:00
|
|
|
#include "llvm/Support/SystemUtils.h"
|
2004-05-27 05:41:36 +00:00
|
|
|
#include "llvm/System/Signals.h"
|
2001-11-27 00:03:19 +00:00
|
|
|
#include <fstream>
|
2004-07-04 12:20:55 +00:00
|
|
|
#include <iostream>
|
2002-01-20 22:54:45 +00:00
|
|
|
#include <memory>
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2005-04-22 00:00:37 +00:00
|
|
|
static cl::opt<std::string>
|
2002-07-22 02:10:13 +00:00
|
|
|
InputFilename(cl::Positional, cl::desc("<input .llvm file>"), cl::init("-"));
|
|
|
|
|
2003-05-22 20:13:16 +00:00
|
|
|
static cl::opt<std::string>
|
2002-07-22 02:10:13 +00:00
|
|
|
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
|
|
|
|
2005-04-22 00:00:37 +00:00
|
|
|
static cl::opt<bool>
|
2004-11-14 22:30:54 +00:00
|
|
|
NoCompress("disable-compression", cl::init(false),
|
2005-01-01 22:10:32 +00:00
|
|
|
cl::desc("Don't compress the generated bytecode"));
|
2004-11-06 23:17:23 +00:00
|
|
|
|
2003-08-18 20:47:13 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
DisableVerify("disable-verify", cl::Hidden,
|
2004-07-11 23:20:54 +00:00
|
|
|
cl::desc("Do not run verifier on input LLVM (dangerous!)"));
|
2003-08-18 20:47:13 +00:00
|
|
|
|
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");
|
2004-08-29 19:28:55 +00:00
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2004-12-30 05:36:08 +00:00
|
|
|
int exitCode = 0;
|
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) {
|
2003-05-22 20:13:16 +00:00
|
|
|
std::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
|
|
|
|
2004-07-13 08:48:04 +00:00
|
|
|
try {
|
|
|
|
if (!DisableVerify)
|
|
|
|
verifyModule(*M.get(), ThrowExceptionAction);
|
|
|
|
} catch (const std::string &Err) {
|
2003-05-22 20:13:16 +00:00
|
|
|
std::cerr << argv[0]
|
|
|
|
<< ": assembly parsed, but does not verify as correct!\n";
|
2004-07-13 08:48:04 +00:00
|
|
|
std::cerr << Err;
|
2002-08-30 22:54:41 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2005-04-22 00:00:37 +00:00
|
|
|
|
2005-02-13 19:12:31 +00:00
|
|
|
if (DumpAsm) std::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?
|
2003-05-31 21:47:16 +00:00
|
|
|
if (OutputFilename != "-") { // Not stdout?
|
|
|
|
if (!Force && std::ifstream(OutputFilename.c_str())) {
|
|
|
|
// If force is not specified, make sure not to overwrite a file!
|
|
|
|
std::cerr << argv[0] << ": error opening '" << OutputFilename
|
|
|
|
<< "': file exists!\n"
|
|
|
|
<< "Use -f command line argument to force output\n";
|
|
|
|
return 1;
|
|
|
|
}
|
2005-04-22 00:00:37 +00:00
|
|
|
Out = new std::ofstream(OutputFilename.c_str(), std::ios::out |
|
2005-01-22 17:36:17 +00:00
|
|
|
std::ios::trunc | std::ios::binary);
|
2003-05-31 21:47:16 +00:00
|
|
|
} else { // Specified stdout
|
2005-01-22 17:36:17 +00:00
|
|
|
// FIXME: cout is not binary!
|
|
|
|
Out = &std::cout;
|
2002-01-20 22:54:45 +00:00
|
|
|
}
|
2001-07-23 02:35:57 +00:00
|
|
|
} else {
|
2001-07-23 19:27:24 +00:00
|
|
|
if (InputFilename == "-") {
|
2005-01-22 17:36:17 +00:00
|
|
|
OutputFilename = "-";
|
|
|
|
Out = &std::cout;
|
2001-07-23 02:35:57 +00:00
|
|
|
} else {
|
2005-01-22 17:36:17 +00:00
|
|
|
std::string IFN = InputFilename;
|
|
|
|
int Len = IFN.length();
|
|
|
|
if (IFN[Len-3] == '.' && IFN[Len-2] == 'l' && IFN[Len-1] == 'l') {
|
|
|
|
// Source ends in .ll
|
|
|
|
OutputFilename = std::string(IFN.begin(), IFN.end()-3);
|
2001-07-23 02:35:57 +00:00
|
|
|
} else {
|
2005-01-22 17:36:17 +00:00
|
|
|
OutputFilename = IFN; // Append a .bc to it
|
|
|
|
}
|
|
|
|
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!
|
2003-05-22 20:13:16 +00:00
|
|
|
std::cerr << argv[0] << ": error opening '" << OutputFilename
|
|
|
|
<< "': file exists!\n"
|
|
|
|
<< "Use -f command line argument to force output\n";
|
2002-01-20 22:54:45 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-04-22 00:00:37 +00:00
|
|
|
Out = new std::ofstream(OutputFilename.c_str(), std::ios::out |
|
2005-01-22 17:36:17 +00:00
|
|
|
std::ios::trunc | std::ios::binary);
|
2003-10-10 17:56:49 +00:00
|
|
|
// Make sure that the Out file gets unlinked from the disk if we get a
|
2002-04-18 19:55:25 +00:00
|
|
|
// SIGINT
|
2004-11-14 22:30:54 +00:00
|
|
|
sys::RemoveFileOnSignal(sys::Path(OutputFilename));
|
2001-07-23 02:35:57 +00:00
|
|
|
}
|
2002-01-20 22:54:45 +00:00
|
|
|
}
|
2005-04-22 00:00:37 +00:00
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
if (!Out->good()) {
|
2003-05-22 20:13:16 +00:00
|
|
|
std::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
|
|
|
}
|
2005-04-22 00:00:37 +00:00
|
|
|
|
2005-01-02 00:08:46 +00:00
|
|
|
if (Force || !CheckBytecodeOutputToConsole(Out,true)) {
|
|
|
|
WriteBytecodeToFile(M.get(), *Out, !NoCompress);
|
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
} catch (const ParseException &E) {
|
2003-05-22 20:13:16 +00:00
|
|
|
std::cerr << argv[0] << ": " << E.getMessage() << "\n";
|
2004-12-30 05:36:08 +00:00
|
|
|
exitCode = 1;
|
|
|
|
} catch (const std::string& msg) {
|
|
|
|
std::cerr << argv[0] << ": " << msg << "\n";
|
|
|
|
exitCode = 1;
|
|
|
|
} catch (...) {
|
|
|
|
std::cerr << argv[0] << ": Unexpected unknown exception occurred.\n";
|
|
|
|
exitCode = 1;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2002-06-25 21:43:28 +00:00
|
|
|
if (Out != &std::cout) delete Out;
|
2004-12-30 05:36:08 +00:00
|
|
|
return exitCode;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|