* Print commands as we execute them with `-v'
[oota-llvm.git] / tools / gccld / gccld.h
index b94fa89a7a67c07505f1af02ad4391a7f1b6f5f0..85dfb2d5c5cef31eb45f77a3ce0c9c363b60acc2 100644 (file)
@@ -1,64 +1,52 @@
-//===- util.h - Utility functions header file -----------------------------===//
+//===- gccld.h - Utility functions header file ------------------*- C++ -*-===//
+// 
+//                     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.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This file contains function prototypes for the functions in util.cpp.
 //
 //===----------------------------------------------------------------------===//
 
 #include "llvm/Module.h"
+#include "llvm/Linker.h"
 
 #include <string>
 #include <set>
 #include <ostream>
 
-int
-PrintAndReturn (const char *progname,
-                const std::string &Message,
-                const std::string &Extra = "");
-
-void
-GetAllDefinedSymbols (Module *M, std::set<std::string> &DefinedSymbols);
-
-void
-GetAllUndefinedSymbols(Module *M, std::set<std::string> &UndefinedSymbols);
-
-char **
-CopyEnv (char ** const envp);
-
-void
-RemoveEnv (const char * name, char ** const envp);
+namespace llvm {
 
 int
 GenerateBytecode (Module * M,
-                  bool Strip,
+                  int StripLevel,
                   bool Internalize,
                   std::ostream * Out);
 
 int
 GenerateAssembly (const std::string & OutputFilename,
                   const std::string & InputFilename,
-                  const std::string & llc,
-                  char ** const envp);
+                  const sys::Path & llc,
+                  bool Verbose=false);
+
+int 
+GenerateCFile (const std::string &OutputFile, 
+               const std::string &InputFile,
+               const sys::Path &llc,
+               bool Verbose=false);
 int
 GenerateNative (const std::string & OutputFilename,
                 const std::string & InputFilename,
-                const std::vector<std::string> & Libraries,
                 const std::vector<std::string> & LibPaths,
-                const std::string & gcc,
-                char ** const envp);
-
-std::auto_ptr<Module>
-LoadObject (const std::string & FN, std::string &OutErrorMessage);
-
-bool
-LinkLibraries (const char * progname,
-               Module * HeadModule,
-               const std::vector<std::string> & Libraries,
-               const std::vector<std::string> & LibPaths,
-               bool Verbose,
-               bool Native);
-bool
-LinkFiles (const char * progname,
-           Module * HeadModule,
-           const std::vector<std::string> & Files,
-           bool Verbose);
-
+                const std::vector<std::string> & Libraries,
+                const sys::Path & gcc,
+                char ** const envp,
+                bool Shared,
+                const std::string & RPath,
+                const std::string & SOName,
+                bool Verbose=false);
+
+} // End llvm namespace