From: Chris Lattner Date: Fri, 10 May 2002 15:43:07 +0000 (+0000) Subject: Expose the lowerallocs pass X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=e04f4b60c6458ce63aac2b7b7ac81da267846426 Expose the lowerallocs pass git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2602 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index ebddd18c805..6de7529ec4f 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -25,18 +25,23 @@ #include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h" #include "llvm/Transforms/Instrumentation/TraceValues.h" #include "llvm/Transforms/Instrumentation/ProfilePaths.h" +#include "llvm/Target/TargetData.h" #include "Support/CommandLine.h" #include "Support/Signals.h" #include #include +// FIXME: This should be parameterizable eventually for different target +// types... +static TargetData TD("opt target"); + // Opts enum - All of the transformations we can do... enum Opts { // Basic optimizations dce, die, constprop, gcse, inlining, constmerge, strip, mstrip, mergereturn, // Miscellaneous Transformations - raiseallocs, funcresolve, cleangcc, lowerrefs, + raiseallocs, lowerallocs, funcresolve, cleangcc, lowerrefs, // Printing and verifying... print, printm, verify, @@ -59,6 +64,10 @@ static Pass *createPrintModulePass() { return new PrintModulePass(&cerr); } +static Pass *createLowerAllocationsPassNT() { + return createLowerAllocationsPass(TD); +} + // OptTable - Correlate enum Opts to Pass constructors... // struct { @@ -93,9 +102,10 @@ struct { { printm , createPrintModulePass }, { verify , createVerifierPass }, - { raiseallocs, createRaiseAllocationsPass }, - { cleangcc , createCleanupGCCOutputPass }, - { funcresolve, createFunctionResolvingPass }, + { raiseallocs, createRaiseAllocationsPass }, + { lowerallocs, createLowerAllocationsPassNT }, + { cleangcc , createCleanupGCCOutputPass }, + { funcresolve, createFunctionResolvingPass }, { internalize, createInternalizePass }, { globaldce , createGlobalDCEPass }, @@ -139,6 +149,7 @@ cl::EnumList OptimizationList(cl::NoFlags, clEnumVal(poolalloc , "Pool allocate disjoint datastructures"), clEnumVal(raiseallocs, "Raise allocations from calls to instructions"), + clEnumVal(lowerallocs, "Lower allocations from instructions to calls (TD)"), clEnumVal(cleangcc , "Cleanup GCC Output"), clEnumVal(funcresolve, "Resolve calls to foo(...) to foo()"), clEnumVal(raise , "Raise to Higher Level"),