2002-01-22 03:30:46 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-10-31 04:28:11 +00:00
|
|
|
// LLVM 'GCCAS' UTILITY
|
|
|
|
//
|
|
|
|
// This utility is designed to be used by the GCC frontend for creating
|
|
|
|
// bytecode files from it's intermediate llvm assembly. The requirements for
|
|
|
|
// this utility are thus slightly different than that of the standard as util.
|
|
|
|
//
|
2002-01-22 03:30:46 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-10-31 04:28:11 +00:00
|
|
|
|
|
|
|
#include "llvm/Module.h"
|
2002-01-31 00:46:22 +00:00
|
|
|
#include "llvm/PassManager.h"
|
2001-10-31 04:28:11 +00:00
|
|
|
#include "llvm/Assembly/Parser.h"
|
2002-07-23 22:04:43 +00:00
|
|
|
#include "llvm/Transforms/RaisePointerReferences.h"
|
|
|
|
#include "llvm/Transforms/IPO.h"
|
2002-05-07 20:03:27 +00:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2002-08-30 20:25:25 +00:00
|
|
|
#include "llvm/Analysis/LoadValueNumbering.h"
|
2002-06-25 15:57:43 +00:00
|
|
|
#include "llvm/Analysis/Verifier.h"
|
2002-01-22 03:30:46 +00:00
|
|
|
#include "llvm/Bytecode/WriteBytecodePass.h"
|
2002-07-23 18:09:58 +00:00
|
|
|
#include "llvm/Target/TargetData.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-10-31 04:28:11 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <fstream>
|
|
|
|
|
2003-04-16 17:34:29 +00:00
|
|
|
namespace {
|
|
|
|
// FIXME: This should eventually be parameterized...
|
|
|
|
TargetData TD("gccas target");
|
2002-07-23 18:09:58 +00:00
|
|
|
|
2003-04-16 17:34:29 +00:00
|
|
|
cl::opt<std::string>
|
2003-04-16 17:49:18 +00:00
|
|
|
InputFilename(cl::Positional,cl::desc("<input llvm assembly>"),cl::init("-"));
|
2002-07-22 02:10:13 +00:00
|
|
|
|
2003-04-16 17:34:29 +00:00
|
|
|
cl::opt<std::string>
|
|
|
|
OutputFilename("o", cl::desc("Override output filename"),
|
|
|
|
cl::value_desc("filename"));
|
2002-07-22 02:10:13 +00:00
|
|
|
|
2003-04-16 17:34:29 +00:00
|
|
|
cl::opt<int>
|
|
|
|
RunNPasses("stopAfterNPasses",
|
|
|
|
cl::desc("Only run the first N passes of gccas"), cl::Hidden,
|
|
|
|
cl::value_desc("# passes"));
|
2002-07-22 02:10:13 +00:00
|
|
|
|
2003-04-16 17:34:29 +00:00
|
|
|
cl::opt<bool>
|
|
|
|
Verify("verify", cl::desc("Verify each pass result"));
|
|
|
|
}
|
2002-07-22 02:10:13 +00:00
|
|
|
|
2002-06-25 15:57:43 +00:00
|
|
|
|
|
|
|
static inline void addPass(PassManager &PM, Pass *P) {
|
|
|
|
static int NumPassesCreated = 0;
|
|
|
|
|
|
|
|
// If we haven't already created the number of passes that was requested...
|
|
|
|
if (RunNPasses == 0 || RunNPasses > NumPassesCreated) {
|
|
|
|
// Add the pass to the pass manager...
|
|
|
|
PM.add(P);
|
|
|
|
|
|
|
|
// If we are verifying all of the intermediate steps, add the verifier...
|
|
|
|
if (Verify) PM.add(createVerifierPass());
|
|
|
|
|
|
|
|
// Keep track of how many passes we made for -stopAfterNPasses
|
|
|
|
++NumPassesCreated;
|
2002-08-17 22:40:03 +00:00
|
|
|
} else {
|
|
|
|
delete P; // We don't want this pass to run, just delete it now
|
2002-06-25 15:57:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void AddConfiguredTransformationPasses(PassManager &PM) {
|
|
|
|
if (Verify) PM.add(createVerifierPass());
|
|
|
|
|
2002-08-30 22:55:32 +00:00
|
|
|
addPass(PM, createFunctionResolvingPass()); // Resolve (...) functions
|
|
|
|
addPass(PM, createGlobalDCEPass()); // Kill unused uinit g-vars
|
|
|
|
addPass(PM, createDeadTypeEliminationPass()); // Eliminate dead types
|
|
|
|
addPass(PM, createConstantMergePass()); // Merge dup global constants
|
|
|
|
addPass(PM, createVerifierPass()); // Verify that input is correct
|
|
|
|
addPass(PM, createDeadInstEliminationPass()); // Remove Dead code/vars
|
|
|
|
addPass(PM, createRaiseAllocationsPass()); // call %malloc -> malloc inst
|
|
|
|
addPass(PM, createIndVarSimplifyPass()); // Simplify indvars
|
|
|
|
addPass(PM, createRaisePointerReferencesPass(TD));// Recover type information
|
2002-09-22 18:50:22 +00:00
|
|
|
addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
|
2002-08-30 22:55:32 +00:00
|
|
|
addPass(PM, createPromoteMemoryToRegister()); // Promote alloca's to regs
|
2002-10-31 17:13:11 +00:00
|
|
|
addPass(PM, createReassociatePass()); // Reassociate expressions
|
2002-11-03 12:41:50 +00:00
|
|
|
//addPass(PM, createCorrelatedExpressionEliminationPass());// Kill corr branches
|
2002-09-06 18:41:33 +00:00
|
|
|
addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
|
|
|
|
addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
|
2002-08-30 22:55:32 +00:00
|
|
|
addPass(PM, createLICMPass()); // Hoist loop invariants
|
|
|
|
addPass(PM, createLoadValueNumberingPass()); // GVN for load instructions
|
|
|
|
addPass(PM, createGCSEPass()); // Remove common subexprs
|
|
|
|
addPass(PM, createSCCPPass()); // Constant prop with SCCP
|
2002-06-25 15:57:43 +00:00
|
|
|
|
|
|
|
// Run instcombine after redundancy elimination to exploit opportunities
|
|
|
|
// opened up by them.
|
|
|
|
addPass(PM, createInstructionCombiningPass());
|
2002-09-06 18:41:33 +00:00
|
|
|
addPass(PM, createAggressiveDCEPass()); // SSA based 'Agressive DCE'
|
|
|
|
addPass(PM, createCFGSimplificationPass()); // Merge & remove BBs
|
2002-06-25 15:57:43 +00:00
|
|
|
}
|
|
|
|
|
2001-10-31 04:28:11 +00:00
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
2001-10-31 04:33:33 +00:00
|
|
|
cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
|
2001-10-31 04:28:11 +00:00
|
|
|
|
|
|
|
std::auto_ptr<Module> M;
|
|
|
|
try {
|
|
|
|
// Parse the file now...
|
|
|
|
M.reset(ParseAssemblyFile(InputFilename));
|
|
|
|
} catch (const ParseException &E) {
|
2003-04-16 17:41:08 +00:00
|
|
|
std::cerr << argv[0] << ": " << E.getMessage() << "\n";
|
2001-10-31 04:28:11 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (M.get() == 0) {
|
2003-04-16 17:41:08 +00:00
|
|
|
std::cerr << argv[0] << ": assembly didn't read correctly.\n";
|
2001-10-31 04:28:11 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2003-04-16 17:49:18 +00:00
|
|
|
|
|
|
|
std::ostream *Out = 0;
|
2001-10-31 04:28:11 +00:00
|
|
|
if (OutputFilename == "") { // Didn't specify an output filename?
|
2003-04-16 17:49:18 +00:00
|
|
|
if (InputFilename == "-") {
|
|
|
|
OutputFilename = "-";
|
2001-10-31 04:28:11 +00:00
|
|
|
} else {
|
2003-04-16 17:49:18 +00:00
|
|
|
std::string IFN = InputFilename;
|
|
|
|
int Len = IFN.length();
|
|
|
|
if (IFN[Len-2] == '.' && IFN[Len-1] == 's') { // Source ends in .s?
|
|
|
|
OutputFilename = std::string(IFN.begin(), IFN.end()-2);
|
|
|
|
} else {
|
|
|
|
OutputFilename = IFN; // Append a .o to it
|
|
|
|
}
|
|
|
|
OutputFilename += ".o";
|
2001-10-31 04:28:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-16 17:49:18 +00:00
|
|
|
if (OutputFilename == "-")
|
|
|
|
Out = &std::cout;
|
|
|
|
else {
|
|
|
|
Out = new std::ofstream(OutputFilename.c_str(), std::ios::out);
|
|
|
|
|
|
|
|
// Make sure that the Out file gets unlink'd from the disk if we get a
|
|
|
|
// signal
|
|
|
|
RemoveFileOnSignal(OutputFilename);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (!Out->good()) {
|
2003-04-16 17:41:08 +00:00
|
|
|
std::cerr << argv[0] << ": error opening " << OutputFilename << "!\n";
|
2001-10-31 04:28:11 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// In addition to just parsing the input from GCC, we also want to spiff it up
|
|
|
|
// a little bit. Do this now.
|
|
|
|
//
|
2002-01-21 07:31:50 +00:00
|
|
|
PassManager Passes;
|
2002-06-25 15:57:43 +00:00
|
|
|
|
|
|
|
// Add all of the transformation passes to the pass manager to do the cleanup
|
|
|
|
// and optimization of the GCC output.
|
|
|
|
//
|
|
|
|
AddConfiguredTransformationPasses(Passes);
|
|
|
|
|
|
|
|
// Write bytecode to file...
|
2003-04-16 17:49:18 +00:00
|
|
|
Passes.add(new WriteBytecodePass(Out));
|
2001-10-31 04:28:11 +00:00
|
|
|
|
2002-01-22 03:30:46 +00:00
|
|
|
// Run our queue of passes all at once now, efficiently.
|
2002-06-25 15:57:43 +00:00
|
|
|
Passes.run(*M.get());
|
2003-04-16 17:49:18 +00:00
|
|
|
|
|
|
|
if (Out != &std::cout) delete Out;
|
2001-10-31 04:28:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|