Fix usage of changed function prototype
[oota-llvm.git] / tools / gccas / gccas.cpp
index bd266f02643ff049ee353b6243c67d21ed5af1e7..dd8b8e0698498db4613ad007bd2a0ee311d0227f 100644 (file)
@@ -1,31 +1,35 @@
+//===-- gccas.cpp - The "optimizing assembler" used by the GCC frontend ---===//
+// 
+//                     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.
+// 
 //===----------------------------------------------------------------------===//
-// 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.
+// This utility is designed to be used by the GCC frontend for creating bytecode
+// files from its intermediate LLVM assembly.  The requirements for this utility
+// are thus slightly different than that of the standard `as' util.
 //
 //===----------------------------------------------------------------------===//
 
 #include "llvm/Module.h"
 #include "llvm/PassManager.h"
-#include "llvm/Assembly/Parser.h"
-#include "llvm/Transforms/RaisePointerReferences.h"
-#include "llvm/Transforms/IPO.h"
-#include "llvm/Transforms/Scalar.h"
 #include "llvm/Analysis/LoadValueNumbering.h"
 #include "llvm/Analysis/Verifier.h"
+#include "llvm/Assembly/Parser.h"
 #include "llvm/Bytecode/WriteBytecodePass.h"
 #include "llvm/Target/TargetData.h"
-#include "Support/CommandLine.h"
-#include "Support/Signals.h"
+#include "llvm/Transforms/IPO.h"
+#include "llvm/Transforms/Scalar.h"
+#include "llvm/Support/CommandLine.h"
+#include "llvm/System/Signals.h"
 #include <memory>
 #include <fstream>
 
-namespace {
-  // FIXME: This should eventually be parameterized...
-  TargetData TD("gccas target");
+using namespace llvm;
 
+namespace {
   cl::opt<std::string>
   InputFilename(cl::Positional,cl::desc("<input llvm assembly>"),cl::init("-"));
 
@@ -33,61 +37,71 @@ namespace {
   OutputFilename("o", cl::desc("Override output filename"),
                  cl::value_desc("filename"));
 
-  cl::opt<int>
-  RunNPasses("stopAfterNPasses",
-             cl::desc("Only run the first N passes of gccas"), cl::Hidden,
-             cl::value_desc("# passes"));
-
   cl::opt<bool>   
   Verify("verify", cl::desc("Verify each pass result"));
 
+  cl::opt<bool>
+  DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
 
-  cl::opt<std::string>    // Be compatible with what GCC expects
-  QOption("Q", cl::desc("Compatibility option (ignored)"),
-          cl::Hidden, cl::Prefix);
   cl::opt<bool>
-  PrintVersion("V", cl::desc("Print GCCAS version number"), cl::Hidden);
+  DisableOptimizations("disable-opt",
+                       cl::desc("Do not run any optimization passes"));
+
+  cl::opt<bool>
+  DisableDSE("disable-dse", cl::desc("Do not run dead store elimination"));
+  cl::opt<bool> 
+  NoCompress("disable-compression", cl::init(false),
+             cl::desc("Don't ompress the generated bytecode"));
 }
 
 
 static inline void addPass(PassManager &PM, Pass *P) {
-  static int NumPassesCreated = 0;
+  // Add the pass to the pass manager...
+  PM.add(P);
   
-  // 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;
-  } else {
-    delete P;             // We don't want this pass to run, just delete it now
-  }
+  // If we are verifying all of the intermediate steps, add the verifier...
+  if (Verify) PM.add(createVerifierPass());
 }
 
 
 void AddConfiguredTransformationPasses(PassManager &PM) {
-  if (Verify) PM.add(createVerifierPass());
-
+  PM.add(createVerifierPass());                  // Verify that input is correct
+  addPass(PM, createLowerSetJmpPass());          // Lower llvm.setjmp/.longjmp
   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
+
+  if (DisableOptimizations) return;
+
   addPass(PM, createRaiseAllocationsPass());     // call %malloc -> malloc inst
-  addPass(PM, createIndVarSimplifyPass());       // Simplify indvars
-  addPass(PM, createRaisePointerReferencesPass(TD));// Recover type information
+  addPass(PM, createCFGSimplificationPass());    // Clean up disgusting code
+  addPass(PM, createPromoteMemoryToRegister());  // Kill useless allocas
+  addPass(PM, createGlobalOptimizerPass());      // Optimize out global vars
+  addPass(PM, createGlobalDCEPass());            // Remove unused fns and globs
+  addPass(PM, createIPConstantPropagationPass());// IP Constant Propagation
+  addPass(PM, createDeadArgEliminationPass());   // Dead argument elimination
+  addPass(PM, createInstructionCombiningPass()); // Clean up after IPCP & DAE
+  addPass(PM, createCFGSimplificationPass());    // Clean up after IPCP & DAE
+
+  addPass(PM, createPruneEHPass());              // Remove dead EH info
+
+  if (!DisableInline)
+    addPass(PM, createFunctionInliningPass());   // Inline small functions
+  addPass(PM, createArgumentPromotionPass());    // Scalarize uninlined fn args
+
+  addPass(PM, createRaisePointerReferencesPass());// Recover type information
+  addPass(PM, createTailDuplicationPass());      // Simplify cfg by copying code
+  addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
+  addPass(PM, createScalarReplAggregatesPass()); // Break up aggregate allocas
   addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
-  addPass(PM, createPromoteMemoryToRegister());  // Promote alloca's to regs
+
   addPass(PM, createReassociatePass());          // Reassociate expressions
-  //addPass(PM, createCorrelatedExpressionEliminationPass());// Kill corr branches
   addPass(PM, createInstructionCombiningPass()); // Combine silly seq's
+  addPass(PM, createTailCallEliminationPass());  // Eliminate tail calls
   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
   addPass(PM, createLICMPass());                 // Hoist loop invariants
+  addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller
+  addPass(PM, createIndVarSimplifyPass());       // Canonicalize indvars
+  addPass(PM, createLoopUnrollPass());           // Unroll small loops
+  addPass(PM, createInstructionCombiningPass()); // Clean up after the unroller
   addPass(PM, createLoadValueNumberingPass());   // GVN for load instructions
   addPass(PM, createGCSEPass());                 // Remove common subexprs
   addPass(PM, createSCCPPass());                 // Constant prop with SCCP
@@ -95,13 +109,18 @@ void AddConfiguredTransformationPasses(PassManager &PM) {
   // Run instcombine after redundancy elimination to exploit opportunities
   // opened up by them.
   addPass(PM, createInstructionCombiningPass());
-  addPass(PM, createAggressiveDCEPass());        // SSA based 'Agressive DCE'
+  if (!DisableDSE)
+    addPass(PM, createDeadStoreEliminationPass()); // Delete dead stores
+  addPass(PM, createAggressiveDCEPass());        // SSA based 'Aggressive DCE'
   addPass(PM, createCFGSimplificationPass());    // Merge & remove BBs
+  addPass(PM, createDeadTypeEliminationPass());  // Eliminate dead types
+  addPass(PM, createConstantMergePass());        // Merge dup global constants
 }
 
 
 int main(int argc, char **argv) {
   cl::ParseCommandLineOptions(argc, argv, " llvm .s -> .o assembler for GCC\n");
+  sys::PrintStackTraceOnErrorSignal();
 
   std::auto_ptr<Module> M;
   try {
@@ -138,9 +157,9 @@ int main(int argc, char **argv) {
   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
+    // Make sure that the Out file gets unlinked from the disk if we get a
     // signal
-    RemoveFileOnSignal(OutputFilename);
+    sys::RemoveFileOnSignal(sys::Path(OutputFilename));
   }
 
   
@@ -149,21 +168,24 @@ int main(int argc, char **argv) {
     return 1;
   }
 
-  if (PrintVersion)  /* For GNU compatibility */
-    std::cerr << "LLVM GCCAS version xx\n" << std::flush;
-
   // In addition to just parsing the input from GCC, we also want to spiff it up
   // a little bit.  Do this now.
   //
   PassManager Passes;
 
+  // Add an appropriate TargetData instance for this module...
+  Passes.add(new TargetData("gccas", M.get()));
+
   // Add all of the transformation passes to the pass manager to do the cleanup
   // and optimization of the GCC output.
   //
   AddConfiguredTransformationPasses(Passes);
 
+  // Make sure everything is still good.
+  Passes.add(createVerifierPass());
+
   // Write bytecode to file...
-  Passes.add(new WriteBytecodePass(Out));
+  Passes.add(new WriteBytecodePass(Out,false,!NoCompress));
 
   // Run our queue of passes all at once now, efficiently.
   Passes.run(*M.get());