22db5af9a46f062901728cf939e78897cf2314e8
[oota-llvm.git] / tools / gccld / GenerateCode.cpp
1 //===- GenerateCode.cpp - Functions for generating executable files  ------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains functions for generating executable files once linking
11 // has finished.  This includes generating a shell script to run the JIT or
12 // a native executable derived from the bytecode.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "gccld.h"
17 #include "llvm/Module.h"
18 #include "llvm/PassManager.h"
19 #include "llvm/Analysis/LoadValueNumbering.h"
20 #include "llvm/Analysis/Verifier.h"
21 #include "llvm/Bytecode/WriteBytecodePass.h"
22 #include "llvm/Target/TargetData.h"
23 #include "llvm/Transforms/IPO.h"
24 #include "llvm/Transforms/Scalar.h"
25 #include "llvm/Transforms/Utils/Linker.h"
26 #include "Support/SystemUtils.h"
27 #include "Support/CommandLine.h"
28
29 using namespace llvm;
30
31 namespace {
32   cl::opt<bool>
33   DisableInline("disable-inlining", cl::desc("Do not run the inliner pass"));
34
35   cl::opt<bool>
36   Verify("verify", cl::desc("Verify intermediate results of all passes"));
37
38   cl::opt<bool>
39   DisableOptimizations("disable-opt",
40                        cl::desc("Do not run any optimization passes"));
41 }
42
43 namespace llvm {
44
45 static inline void addPass(PassManager &PM, Pass *P) {
46   // Add the pass to the pass manager...
47   PM.add(P);
48   
49   // If we are verifying all of the intermediate steps, add the verifier...
50   if (Verify) PM.add(createVerifierPass());
51 }
52
53 /// GenerateBytecode - generates a bytecode file from the specified module.
54 ///
55 /// Inputs:
56 ///  M           - The module for which bytecode should be generated.
57 ///  Strip       - Flags whether symbols should be stripped from the output.
58 ///  Internalize - Flags whether all symbols should be marked internal.
59 ///  Out         - Pointer to file stream to which to write the output.
60 ///
61 /// Outputs:
62 ///  None.
63 ///
64 /// Returns non-zero value on error.
65 ///
66 int
67 GenerateBytecode (Module *M, bool Strip, bool Internalize, std::ostream *Out) {
68   // In addition to just linking the input from GCC, we also want to spiff it up
69   // a little bit.  Do this now.
70   PassManager Passes;
71
72   if (Verify) Passes.add(createVerifierPass());
73
74   // Add an appropriate TargetData instance for this module...
75   addPass (Passes, new TargetData("gccld", M));
76
77   if (!DisableOptimizations) {
78     // Linking modules together can lead to duplicated global constants, only
79     // keep one copy of each constant...
80     addPass (Passes, createConstantMergePass());
81
82     // If the -s command line option was specified, strip the symbols out of the
83     // resulting program to make it smaller.  -s is a GCC option that we are
84     // supporting.
85     if (Strip)
86       addPass (Passes, createSymbolStrippingPass());
87
88     // Often if the programmer does not specify proper prototypes for the
89     // functions they are calling, they end up calling a vararg version of the
90     // function that does not get a body filled in (the real function has typed
91     // arguments).  This pass merges the two functions.
92     addPass (Passes, createFunctionResolvingPass());
93
94     if (Internalize) {
95       // Now that composite has been compiled, scan through the module, looking
96       // for a main function.  If main is defined, mark all other functions
97       // internal.
98       addPass (Passes, createInternalizePass());
99     }
100
101     // Propagate constants at call sites into the functions they call.
102     addPass (Passes, createIPConstantPropagationPass());
103
104     // Remove unused arguments from functions...
105     addPass (Passes, createDeadArgEliminationPass());
106
107     if (!DisableInline)
108       addPass (Passes, createFunctionInliningPass()); // Inline small functions
109
110     // Run a few AA driven optimizations here and now, to cleanup the code.
111     // Eventually we should put an IP AA in place here.
112
113     addPass (Passes, createLICMPass());               // Hoist loop invariants
114     addPass (Passes, createLoadValueNumberingPass()); // GVN for load instrs
115     addPass (Passes, createGCSEPass());               // Remove common subexprs
116
117     // The FuncResolve pass may leave cruft around if functions were prototyped
118     // differently than they were defined.  Remove this cruft.
119     addPass (Passes, createInstructionCombiningPass());
120
121     // Delete basic blocks, which optimization passes may have killed...
122     addPass (Passes, createCFGSimplificationPass());
123
124     // Now that we have optimized the program, discard unreachable functions...
125     addPass (Passes, createGlobalDCEPass());
126   }
127
128   // Add the pass that writes bytecode to the output file...
129   addPass (Passes, new WriteBytecodePass(Out));
130
131   // Run our queue of passes all at once now, efficiently.
132   Passes.run(*M);
133
134   return 0;
135 }
136
137 /// GenerateAssembly - generates a native assembly language source file from the
138 /// specified bytecode file.
139 ///
140 /// Inputs:
141 ///  InputFilename  - The name of the output bytecode file.
142 ///  OutputFilename - The name of the file to generate.
143 ///  llc            - The pathname to use for LLC.
144 ///  envp           - The environment to use when running LLC.
145 ///
146 /// Outputs:
147 ///  None.
148 ///
149 /// Return non-zero value on error.
150 ///
151 int
152 GenerateAssembly(const std::string &OutputFilename,
153                  const std::string &InputFilename,
154                  const std::string &llc,
155                  char ** const envp)
156 {
157   // Run LLC to convert the bytecode file into assembly code.
158   const char *cmd[8];
159
160   cmd[0] = llc.c_str();
161   cmd[1] = "-f";
162   cmd[2] = "-o";
163   cmd[3] = OutputFilename.c_str();
164   cmd[4] = InputFilename.c_str();
165   cmd[5] = NULL;
166
167   return ExecWait(cmd, envp);
168 }
169
170 /// GenerateNative - generates a native assembly language source file from the
171 /// specified assembly source file.
172 ///
173 /// Inputs:
174 ///  InputFilename  - The name of the output bytecode file.
175 ///  OutputFilename - The name of the file to generate.
176 ///  Libraries      - The list of libraries with which to link.
177 ///  LibPaths       - The list of directories in which to find libraries.
178 ///  gcc            - The pathname to use for GGC.
179 ///  envp           - A copy of the process's current environment.
180 ///
181 /// Outputs:
182 ///  None.
183 ///
184 /// Returns non-zero value on error.
185 ///
186 int
187 GenerateNative(const std::string &OutputFilename,
188                const std::string &InputFilename,
189                const std::vector<std::string> &Libraries,
190                const std::vector<std::string> &LibPaths,
191                const std::string &gcc,
192                char ** const envp) {
193   // Remove these environment variables from the environment of the
194   // programs that we will execute.  It appears that GCC sets these
195   // environment variables so that the programs it uses can configure
196   // themselves identically.
197   //
198   // However, when we invoke GCC below, we want it to use its normal
199   // configuration.  Hence, we must sanitize its environment.
200   char ** clean_env = CopyEnv(envp);
201   if (clean_env == NULL)
202     return 1;
203   RemoveEnv("LIBRARY_PATH", clean_env);
204   RemoveEnv("COLLECT_GCC_OPTIONS", clean_env);
205   RemoveEnv("GCC_EXEC_PREFIX", clean_env);
206   RemoveEnv("COMPILER_PATH", clean_env);
207   RemoveEnv("COLLECT_GCC", clean_env);
208
209   std::vector<const char *> cmd;
210
211   // Run GCC to assemble and link the program into native code.
212   //
213   // Note:
214   //  We can't just assemble and link the file with the system assembler
215   //  and linker because we don't know where to put the _start symbol.
216   //  GCC mysteriously knows how to do it.
217   cmd.push_back(gcc.c_str());
218   cmd.push_back("-o");
219   cmd.push_back(OutputFilename.c_str());
220   cmd.push_back(InputFilename.c_str());
221
222   // Adding the library paths creates a problem for native generation.  If we
223   // include the search paths from llvmgcc, then we'll be telling normal gcc
224   // to look inside of llvmgcc's library directories for libraries.  This is
225   // bad because those libraries hold only bytecode files (not native object
226   // files).  In the end, we attempt to link the bytecode libgcc into a native
227   // program.
228 #if 0
229   // Add in the library path options.
230   for (unsigned index=0; index < LibPaths.size(); index++) {
231     cmd.push_back("-L");
232     cmd.push_back(LibPaths[index].c_str());
233   }
234 #endif
235
236   // Add in the libraries to link.
237   std::vector<std::string> Libs(Libraries);
238   for (unsigned index = 0; index < Libs.size(); index++) {
239     Libs[index] = "-l" + Libs[index];
240     cmd.push_back(Libs[index].c_str());
241   }
242   cmd.push_back(NULL);
243
244   // Run the compiler to assembly and link together the program.
245   return ExecWait(&(cmd[0]), clean_env);
246 }
247
248 } // End llvm namespace