Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 1 | //===-- cc1as_main.cpp - Clang Assembler ---------------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This is the entry point to the clang -cc1as functionality, which implements |
| 11 | // the direct interface to the LLVM MC based assembler. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "clang/Basic/Diagnostic.h" |
| 16 | #include "clang/Driver/Arg.h" |
| 17 | #include "clang/Driver/ArgList.h" |
| 18 | #include "clang/Driver/DriverDiagnostic.h" |
| 19 | #include "clang/Driver/CC1AsOptions.h" |
| 20 | #include "clang/Driver/OptTable.h" |
| 21 | #include "clang/Driver/Options.h" |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 22 | #include "clang/Frontend/FrontendDiagnostic.h" |
| 23 | #include "clang/Frontend/TextDiagnosticPrinter.h" |
Douglas Gregor | 02c23eb | 2012-10-23 22:26:28 +0000 | [diff] [blame] | 24 | #include "clang/Basic/DiagnosticOptions.h" |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/OwningPtr.h" |
| 26 | #include "llvm/ADT/StringSwitch.h" |
Duncan Sands | 2dc1453 | 2010-08-30 09:42:39 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/Triple.h" |
Daniel Dunbar | 7374f1b | 2010-07-17 02:26:21 +0000 | [diff] [blame] | 28 | #include "llvm/MC/MCParser/MCAsmParser.h" |
| 29 | #include "llvm/MC/MCAsmInfo.h" |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 30 | #include "llvm/MC/MCCodeEmitter.h" |
| 31 | #include "llvm/MC/MCContext.h" |
Evan Cheng | 74e1332 | 2011-07-11 04:24:19 +0000 | [diff] [blame] | 32 | #include "llvm/MC/MCInstrInfo.h" |
Evan Cheng | 36fc3aa | 2011-07-20 06:22:27 +0000 | [diff] [blame] | 33 | #include "llvm/MC/MCObjectFileInfo.h" |
Evan Cheng | 884744b | 2011-07-18 20:57:51 +0000 | [diff] [blame] | 34 | #include "llvm/MC/MCRegisterInfo.h" |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 35 | #include "llvm/MC/MCStreamer.h" |
Evan Cheng | bb36ed9 | 2011-07-09 06:04:17 +0000 | [diff] [blame] | 36 | #include "llvm/MC/MCSubtargetInfo.h" |
Evan Cheng | 21118dc | 2011-07-25 23:25:09 +0000 | [diff] [blame] | 37 | #include "llvm/MC/MCAsmBackend.h" |
Evan Cheng | 3771235 | 2011-07-26 00:24:45 +0000 | [diff] [blame] | 38 | #include "llvm/MC/MCTargetAsmParser.h" |
Daniel Dunbar | c673af7 | 2010-05-20 18:15:20 +0000 | [diff] [blame] | 39 | #include "llvm/Support/CommandLine.h" |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 40 | #include "llvm/Support/FormattedStream.h" |
| 41 | #include "llvm/Support/ErrorHandling.h" |
| 42 | #include "llvm/Support/ManagedStatic.h" |
| 43 | #include "llvm/Support/MemoryBuffer.h" |
| 44 | #include "llvm/Support/PrettyStackTrace.h" |
| 45 | #include "llvm/Support/SourceMgr.h" |
Michael J. Spencer | 03013fa | 2010-11-29 18:12:39 +0000 | [diff] [blame] | 46 | #include "llvm/Support/Host.h" |
| 47 | #include "llvm/Support/Path.h" |
| 48 | #include "llvm/Support/Signals.h" |
Evan Cheng | a6b4045 | 2011-08-24 18:09:14 +0000 | [diff] [blame] | 49 | #include "llvm/Support/TargetRegistry.h" |
| 50 | #include "llvm/Support/TargetSelect.h" |
| 51 | #include "llvm/Support/Timer.h" |
| 52 | #include "llvm/Support/raw_ostream.h" |
Michael J. Spencer | 3a321e2 | 2010-12-09 17:36:38 +0000 | [diff] [blame] | 53 | #include "llvm/Support/system_error.h" |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 54 | #include "llvm/DataLayout.h" |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 55 | using namespace clang; |
| 56 | using namespace clang::driver; |
| 57 | using namespace llvm; |
| 58 | |
| 59 | namespace { |
| 60 | |
| 61 | /// \brief Helper class for representing a single invocation of the assembler. |
| 62 | struct AssemblerInvocation { |
| 63 | /// @name Target Options |
| 64 | /// @{ |
| 65 | |
Jim Grosbach | fc30829 | 2012-02-10 20:37:10 +0000 | [diff] [blame] | 66 | /// The name of the target triple to assemble for. |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 67 | std::string Triple; |
| 68 | |
Jim Grosbach | fc30829 | 2012-02-10 20:37:10 +0000 | [diff] [blame] | 69 | /// If given, the name of the target CPU to determine which instructions |
| 70 | /// are legal. |
| 71 | std::string CPU; |
| 72 | |
| 73 | /// The list of target specific features to enable or disable -- this should |
| 74 | /// be a list of strings starting with '+' or '-'. |
| 75 | std::vector<std::string> Features; |
| 76 | |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 77 | /// @} |
| 78 | /// @name Language Options |
| 79 | /// @{ |
| 80 | |
| 81 | std::vector<std::string> IncludePaths; |
| 82 | unsigned NoInitialTextSection : 1; |
Daniel Dunbar | 402adc3 | 2011-03-28 22:49:24 +0000 | [diff] [blame] | 83 | unsigned SaveTemporaryLabels : 1; |
Kevin Enderby | 567003e | 2011-12-22 19:31:58 +0000 | [diff] [blame] | 84 | unsigned GenDwarfForAssembly : 1; |
| 85 | std::string DwarfDebugFlags; |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 86 | |
| 87 | /// @} |
| 88 | /// @name Frontend Options |
| 89 | /// @{ |
| 90 | |
| 91 | std::string InputFile; |
Daniel Dunbar | c673af7 | 2010-05-20 18:15:20 +0000 | [diff] [blame] | 92 | std::vector<std::string> LLVMArgs; |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 93 | std::string OutputPath; |
| 94 | enum FileType { |
| 95 | FT_Asm, ///< Assembly (.s) output, transliterate mode. |
| 96 | FT_Null, ///< No output, for timing purposes. |
| 97 | FT_Obj ///< Object file output. |
| 98 | }; |
| 99 | FileType OutputType; |
Daniel Dunbar | c673af7 | 2010-05-20 18:15:20 +0000 | [diff] [blame] | 100 | unsigned ShowHelp : 1; |
| 101 | unsigned ShowVersion : 1; |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 102 | |
| 103 | /// @} |
| 104 | /// @name Transliterate Options |
| 105 | /// @{ |
| 106 | |
| 107 | unsigned OutputAsmVariant; |
| 108 | unsigned ShowEncoding : 1; |
| 109 | unsigned ShowInst : 1; |
| 110 | |
| 111 | /// @} |
| 112 | /// @name Assembler Options |
| 113 | /// @{ |
| 114 | |
| 115 | unsigned RelaxAll : 1; |
Rafael Espindola | 3176cca | 2011-01-23 17:58:26 +0000 | [diff] [blame] | 116 | unsigned NoExecStack : 1; |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 117 | |
| 118 | /// @} |
| 119 | |
| 120 | public: |
| 121 | AssemblerInvocation() { |
| 122 | Triple = ""; |
| 123 | NoInitialTextSection = 0; |
| 124 | InputFile = "-"; |
Daniel Dunbar | c673af7 | 2010-05-20 18:15:20 +0000 | [diff] [blame] | 125 | OutputPath = "-"; |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 126 | OutputType = FT_Asm; |
| 127 | OutputAsmVariant = 0; |
| 128 | ShowInst = 0; |
| 129 | ShowEncoding = 0; |
| 130 | RelaxAll = 0; |
Rafael Espindola | 3176cca | 2011-01-23 17:58:26 +0000 | [diff] [blame] | 131 | NoExecStack = 0; |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 134 | static bool CreateFromArgs(AssemblerInvocation &Res, const char **ArgBegin, |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 135 | const char **ArgEnd, DiagnosticsEngine &Diags); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 136 | }; |
| 137 | |
| 138 | } |
| 139 | |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 140 | bool AssemblerInvocation::CreateFromArgs(AssemblerInvocation &Opts, |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 141 | const char **ArgBegin, |
| 142 | const char **ArgEnd, |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 143 | DiagnosticsEngine &Diags) { |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 144 | using namespace clang::driver::cc1asoptions; |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 145 | bool Success = true; |
| 146 | |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 147 | // Parse the arguments. |
| 148 | OwningPtr<OptTable> OptTbl(createCC1AsOptTable()); |
| 149 | unsigned MissingArgIndex, MissingArgCount; |
| 150 | OwningPtr<InputArgList> Args( |
| 151 | OptTbl->ParseArgs(ArgBegin, ArgEnd,MissingArgIndex, MissingArgCount)); |
| 152 | |
| 153 | // Check for missing argument error. |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 154 | if (MissingArgCount) { |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 155 | Diags.Report(diag::err_drv_missing_argument) |
| 156 | << Args->getArgString(MissingArgIndex) << MissingArgCount; |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 157 | Success = false; |
| 158 | } |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 159 | |
| 160 | // Issue errors on unknown arguments. |
| 161 | for (arg_iterator it = Args->filtered_begin(cc1asoptions::OPT_UNKNOWN), |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 162 | ie = Args->filtered_end(); it != ie; ++it) { |
Daniel Dunbar | 7e4953e | 2010-06-11 22:00:13 +0000 | [diff] [blame] | 163 | Diags.Report(diag::err_drv_unknown_argument) << (*it) ->getAsString(*Args); |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 164 | Success = false; |
| 165 | } |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 166 | |
| 167 | // Construct the invocation. |
| 168 | |
| 169 | // Target Options |
Jim Grosbach | fc30829 | 2012-02-10 20:37:10 +0000 | [diff] [blame] | 170 | Opts.Triple = llvm::Triple::normalize(Args->getLastArgValue(OPT_triple)); |
| 171 | Opts.CPU = Args->getLastArgValue(OPT_target_cpu); |
| 172 | Opts.Features = Args->getAllArgValues(OPT_target_feature); |
| 173 | |
| 174 | // Use the default target triple if unspecified. |
| 175 | if (Opts.Triple.empty()) |
| 176 | Opts.Triple = llvm::sys::getDefaultTargetTriple(); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 177 | |
| 178 | // Language Options |
| 179 | Opts.IncludePaths = Args->getAllArgValues(OPT_I); |
| 180 | Opts.NoInitialTextSection = Args->hasArg(OPT_n); |
Daniel Dunbar | 402adc3 | 2011-03-28 22:49:24 +0000 | [diff] [blame] | 181 | Opts.SaveTemporaryLabels = Args->hasArg(OPT_L); |
Kevin Enderby | 567003e | 2011-12-22 19:31:58 +0000 | [diff] [blame] | 182 | Opts.GenDwarfForAssembly = Args->hasArg(OPT_g); |
| 183 | Opts.DwarfDebugFlags = Args->getLastArgValue(OPT_dwarf_debug_flags); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 184 | |
| 185 | // Frontend Options |
| 186 | if (Args->hasArg(OPT_INPUT)) { |
| 187 | bool First = true; |
| 188 | for (arg_iterator it = Args->filtered_begin(OPT_INPUT), |
| 189 | ie = Args->filtered_end(); it != ie; ++it, First=false) { |
Daniel Dunbar | 7e4953e | 2010-06-11 22:00:13 +0000 | [diff] [blame] | 190 | const Arg *A = it; |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 191 | if (First) |
Richard Smith | 1d489cf | 2012-11-01 04:30:05 +0000 | [diff] [blame^] | 192 | Opts.InputFile = A->getValue(); |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 193 | else { |
Daniel Dunbar | 7e4953e | 2010-06-11 22:00:13 +0000 | [diff] [blame] | 194 | Diags.Report(diag::err_drv_unknown_argument) << A->getAsString(*Args); |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 195 | Success = false; |
| 196 | } |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 197 | } |
| 198 | } |
Daniel Dunbar | c673af7 | 2010-05-20 18:15:20 +0000 | [diff] [blame] | 199 | Opts.LLVMArgs = Args->getAllArgValues(OPT_mllvm); |
Joerg Sonnenberger | d793350 | 2011-05-19 18:42:29 +0000 | [diff] [blame] | 200 | if (Args->hasArg(OPT_fatal_warnings)) |
| 201 | Opts.LLVMArgs.push_back("-fatal-assembler-warnings"); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 202 | Opts.OutputPath = Args->getLastArgValue(OPT_o); |
| 203 | if (Arg *A = Args->getLastArg(OPT_filetype)) { |
Richard Smith | 1d489cf | 2012-11-01 04:30:05 +0000 | [diff] [blame^] | 204 | StringRef Name = A->getValue(); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 205 | unsigned OutputType = StringSwitch<unsigned>(Name) |
| 206 | .Case("asm", FT_Asm) |
| 207 | .Case("null", FT_Null) |
| 208 | .Case("obj", FT_Obj) |
| 209 | .Default(~0U); |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 210 | if (OutputType == ~0U) { |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 211 | Diags.Report(diag::err_drv_invalid_value) |
| 212 | << A->getAsString(*Args) << Name; |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 213 | Success = false; |
| 214 | } else |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 215 | Opts.OutputType = FileType(OutputType); |
| 216 | } |
Daniel Dunbar | c673af7 | 2010-05-20 18:15:20 +0000 | [diff] [blame] | 217 | Opts.ShowHelp = Args->hasArg(OPT_help); |
| 218 | Opts.ShowVersion = Args->hasArg(OPT_version); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 219 | |
| 220 | // Transliterate Options |
| 221 | Opts.OutputAsmVariant = Args->getLastArgIntValue(OPT_output_asm_variant, |
| 222 | 0, Diags); |
| 223 | Opts.ShowEncoding = Args->hasArg(OPT_show_encoding); |
| 224 | Opts.ShowInst = Args->hasArg(OPT_show_inst); |
| 225 | |
| 226 | // Assemble Options |
| 227 | Opts.RelaxAll = Args->hasArg(OPT_relax_all); |
Rafael Espindola | 3176cca | 2011-01-23 17:58:26 +0000 | [diff] [blame] | 228 | Opts.NoExecStack = Args->hasArg(OPT_no_exec_stack); |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 229 | |
Dylan Noblesmith | 89ea416 | 2011-12-26 19:29:47 +0000 | [diff] [blame] | 230 | return Success; |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | static formatted_raw_ostream *GetOutputStream(AssemblerInvocation &Opts, |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 234 | DiagnosticsEngine &Diags, |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 235 | bool Binary) { |
Daniel Dunbar | c673af7 | 2010-05-20 18:15:20 +0000 | [diff] [blame] | 236 | if (Opts.OutputPath.empty()) |
| 237 | Opts.OutputPath = "-"; |
| 238 | |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 239 | // Make sure that the Out file gets unlinked from the disk if we get a |
| 240 | // SIGINT. |
| 241 | if (Opts.OutputPath != "-") |
| 242 | sys::RemoveFileOnSignal(sys::Path(Opts.OutputPath)); |
| 243 | |
| 244 | std::string Error; |
| 245 | raw_fd_ostream *Out = |
| 246 | new raw_fd_ostream(Opts.OutputPath.c_str(), Error, |
| 247 | (Binary ? raw_fd_ostream::F_Binary : 0)); |
| 248 | if (!Error.empty()) { |
| 249 | Diags.Report(diag::err_fe_unable_to_open_output) |
| 250 | << Opts.OutputPath << Error; |
| 251 | return 0; |
| 252 | } |
| 253 | |
| 254 | return new formatted_raw_ostream(*Out, formatted_raw_ostream::DELETE_STREAM); |
| 255 | } |
| 256 | |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 257 | static bool ExecuteAssembler(AssemblerInvocation &Opts, |
| 258 | DiagnosticsEngine &Diags) { |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 259 | // Get the target specific parser. |
| 260 | std::string Error; |
| 261 | const Target *TheTarget(TargetRegistry::lookupTarget(Opts.Triple, Error)); |
| 262 | if (!TheTarget) { |
| 263 | Diags.Report(diag::err_target_unknown_triple) << Opts.Triple; |
| 264 | return false; |
| 265 | } |
| 266 | |
Michael J. Spencer | 4eeebc4 | 2010-12-16 03:28:14 +0000 | [diff] [blame] | 267 | OwningPtr<MemoryBuffer> BufferPtr; |
| 268 | if (error_code ec = MemoryBuffer::getFileOrSTDIN(Opts.InputFile, BufferPtr)) { |
Michael J. Spencer | 3a321e2 | 2010-12-09 17:36:38 +0000 | [diff] [blame] | 269 | Error = ec.message(); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 270 | Diags.Report(diag::err_fe_error_reading) << Opts.InputFile; |
| 271 | return false; |
| 272 | } |
Michael J. Spencer | 4eeebc4 | 2010-12-16 03:28:14 +0000 | [diff] [blame] | 273 | MemoryBuffer *Buffer = BufferPtr.take(); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 274 | |
| 275 | SourceMgr SrcMgr; |
| 276 | |
| 277 | // Tell SrcMgr about this buffer, which is what the parser will pick up. |
| 278 | SrcMgr.AddNewSourceBuffer(Buffer, SMLoc()); |
| 279 | |
| 280 | // Record the location of the include directories so that the lexer can find |
| 281 | // it later. |
| 282 | SrcMgr.setIncludeDirs(Opts.IncludePaths); |
| 283 | |
Evan Cheng | e27eb59 | 2011-07-14 23:50:56 +0000 | [diff] [blame] | 284 | OwningPtr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(Opts.Triple)); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 285 | assert(MAI && "Unable to create target asm info!"); |
| 286 | |
Evan Cheng | 884744b | 2011-07-18 20:57:51 +0000 | [diff] [blame] | 287 | OwningPtr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(Opts.Triple)); |
| 288 | assert(MRI && "Unable to create target register info!"); |
| 289 | |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 290 | bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj; |
| 291 | formatted_raw_ostream *Out = GetOutputStream(Opts, Diags, IsBinary); |
| 292 | if (!Out) |
| 293 | return false; |
| 294 | |
Evan Cheng | 36fc3aa | 2011-07-20 06:22:27 +0000 | [diff] [blame] | 295 | // FIXME: This is not pretty. MCContext has a ptr to MCObjectFileInfo and |
| 296 | // MCObjectFileInfo needs a MCContext reference in order to initialize itself. |
| 297 | OwningPtr<MCObjectFileInfo> MOFI(new MCObjectFileInfo()); |
Jim Grosbach | 6a9a6d2 | 2012-02-02 17:54:07 +0000 | [diff] [blame] | 298 | MCContext Ctx(*MAI, *MRI, MOFI.get(), &SrcMgr); |
Evan Cheng | 36fc3aa | 2011-07-20 06:22:27 +0000 | [diff] [blame] | 299 | // FIXME: Assembler behavior can change with -static. |
Evan Cheng | 66488ed | 2011-07-20 19:53:19 +0000 | [diff] [blame] | 300 | MOFI->InitMCObjectFileInfo(Opts.Triple, |
| 301 | Reloc::Default, CodeModel::Default, Ctx); |
Daniel Dunbar | 402adc3 | 2011-03-28 22:49:24 +0000 | [diff] [blame] | 302 | if (Opts.SaveTemporaryLabels) |
| 303 | Ctx.setAllowTemporaryLabels(false); |
Kevin Enderby | 567003e | 2011-12-22 19:31:58 +0000 | [diff] [blame] | 304 | if (Opts.GenDwarfForAssembly) |
| 305 | Ctx.setGenDwarfForAssembly(true); |
| 306 | if (!Opts.DwarfDebugFlags.empty()) |
| 307 | Ctx.setDwarfDebugFlags(StringRef(Opts.DwarfDebugFlags)); |
Rafael Espindola | 7872d48 | 2010-12-10 07:40:14 +0000 | [diff] [blame] | 308 | |
Jim Grosbach | fc30829 | 2012-02-10 20:37:10 +0000 | [diff] [blame] | 309 | // Build up the feature string from the target feature list. |
| 310 | std::string FS; |
| 311 | if (!Opts.Features.empty()) { |
| 312 | FS = Opts.Features[0]; |
| 313 | for (unsigned i = 1, e = Opts.Features.size(); i != e; ++i) |
| 314 | FS += "," + Opts.Features[i]; |
| 315 | } |
| 316 | |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 317 | OwningPtr<MCStreamer> Str; |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 318 | |
Evan Cheng | ccb21e4 | 2011-07-26 01:49:26 +0000 | [diff] [blame] | 319 | OwningPtr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo()); |
| 320 | OwningPtr<MCSubtargetInfo> |
Jim Grosbach | fc30829 | 2012-02-10 20:37:10 +0000 | [diff] [blame] | 321 | STI(TheTarget->createMCSubtargetInfo(Opts.Triple, Opts.CPU, FS)); |
Evan Cheng | 74e1332 | 2011-07-11 04:24:19 +0000 | [diff] [blame] | 322 | |
Rafael Espindola | 3176cca | 2011-01-23 17:58:26 +0000 | [diff] [blame] | 323 | // FIXME: There is a bit of code duplication with addPassesToEmitFile. |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 324 | if (Opts.OutputType == AssemblerInvocation::FT_Asm) { |
| 325 | MCInstPrinter *IP = |
Bill Wendling | 99d43b4 | 2012-04-02 06:17:37 +0000 | [diff] [blame] | 326 | TheTarget->createMCInstPrinter(Opts.OutputAsmVariant, *MAI, *MCII, *MRI, |
| 327 | *STI); |
Benjamin Kramer | 7ac3d5a | 2010-07-29 17:48:03 +0000 | [diff] [blame] | 328 | MCCodeEmitter *CE = 0; |
Evan Cheng | 21118dc | 2011-07-25 23:25:09 +0000 | [diff] [blame] | 329 | MCAsmBackend *MAB = 0; |
Daniel Dunbar | 66cdf26 | 2010-12-16 03:06:05 +0000 | [diff] [blame] | 330 | if (Opts.ShowEncoding) { |
Jim Grosbach | 92ecfe9 | 2012-05-15 17:36:07 +0000 | [diff] [blame] | 331 | CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx); |
Roman Divacky | f9361b5 | 2012-09-18 16:09:16 +0000 | [diff] [blame] | 332 | MAB = TheTarget->createMCAsmBackend(Opts.Triple, Opts.CPU); |
Daniel Dunbar | 66cdf26 | 2010-12-16 03:06:05 +0000 | [diff] [blame] | 333 | } |
Rafael Espindola | 7872d48 | 2010-12-10 07:40:14 +0000 | [diff] [blame] | 334 | Str.reset(TheTarget->createAsmStreamer(Ctx, *Out, /*asmverbose*/true, |
Rafael Espindola | 1bf3902 | 2011-04-30 03:46:18 +0000 | [diff] [blame] | 335 | /*useLoc*/ true, |
Nick Lewycky | ea523d7 | 2011-10-17 23:05:52 +0000 | [diff] [blame] | 336 | /*useCFI*/ true, |
| 337 | /*useDwarfDirectory*/ true, |
| 338 | IP, CE, MAB, |
Rafael Espindola | 7872d48 | 2010-12-10 07:40:14 +0000 | [diff] [blame] | 339 | Opts.ShowInst)); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 340 | } else if (Opts.OutputType == AssemblerInvocation::FT_Null) { |
| 341 | Str.reset(createNullStreamer(Ctx)); |
| 342 | } else { |
| 343 | assert(Opts.OutputType == AssemblerInvocation::FT_Obj && |
| 344 | "Invalid file type!"); |
Jim Grosbach | 92ecfe9 | 2012-05-15 17:36:07 +0000 | [diff] [blame] | 345 | MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx); |
Roman Divacky | f9361b5 | 2012-09-18 16:09:16 +0000 | [diff] [blame] | 346 | MCAsmBackend *MAB = TheTarget->createMCAsmBackend(Opts.Triple, Opts.CPU); |
Evan Cheng | 7b6def7 | 2011-07-26 00:42:40 +0000 | [diff] [blame] | 347 | Str.reset(TheTarget->createMCObjectStreamer(Opts.Triple, Ctx, *MAB, *Out, |
| 348 | CE, Opts.RelaxAll, |
| 349 | Opts.NoExecStack)); |
Rafael Espindola | 4f036fa | 2010-10-13 14:53:57 +0000 | [diff] [blame] | 350 | Str.get()->InitSections(); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 351 | } |
| 352 | |
Jim Grosbach | 09190be | 2011-08-16 18:33:55 +0000 | [diff] [blame] | 353 | OwningPtr<MCAsmParser> Parser(createMCAsmParser(SrcMgr, Ctx, |
Daniel Dunbar | 7374f1b | 2010-07-17 02:26:21 +0000 | [diff] [blame] | 354 | *Str.get(), *MAI)); |
Evan Cheng | ccb21e4 | 2011-07-26 01:49:26 +0000 | [diff] [blame] | 355 | OwningPtr<MCTargetAsmParser> TAP(TheTarget->createMCAsmParser(*STI, *Parser)); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 356 | if (!TAP) { |
| 357 | Diags.Report(diag::err_target_unknown_triple) << Opts.Triple; |
| 358 | return false; |
| 359 | } |
| 360 | |
Daniel Dunbar | 7374f1b | 2010-07-17 02:26:21 +0000 | [diff] [blame] | 361 | Parser->setTargetParser(*TAP.get()); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 362 | |
Daniel Dunbar | 7374f1b | 2010-07-17 02:26:21 +0000 | [diff] [blame] | 363 | bool Success = !Parser->Run(Opts.NoInitialTextSection); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 364 | |
| 365 | // Close the output. |
| 366 | delete Out; |
| 367 | |
| 368 | // Delete output on errors. |
| 369 | if (!Success && Opts.OutputPath != "-") |
| 370 | sys::Path(Opts.OutputPath).eraseFromDisk(); |
| 371 | |
| 372 | return Success; |
| 373 | } |
| 374 | |
| 375 | static void LLVMErrorHandler(void *UserData, const std::string &Message) { |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 376 | DiagnosticsEngine &Diags = *static_cast<DiagnosticsEngine*>(UserData); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 377 | |
| 378 | Diags.Report(diag::err_fe_error_backend) << Message; |
| 379 | |
| 380 | // We cannot recover from llvm errors. |
| 381 | exit(1); |
| 382 | } |
| 383 | |
| 384 | int cc1as_main(const char **ArgBegin, const char **ArgEnd, |
| 385 | const char *Argv0, void *MainAddr) { |
| 386 | // Print a stack trace if we signal out. |
| 387 | sys::PrintStackTraceOnErrorSignal(); |
| 388 | PrettyStackTraceProgram X(ArgEnd - ArgBegin, ArgBegin); |
| 389 | llvm_shutdown_obj Y; // Call llvm_shutdown() on exit. |
| 390 | |
| 391 | // Initialize targets and assembly printers/parsers. |
| 392 | InitializeAllTargetInfos(); |
Evan Cheng | d99d3e1 | 2011-07-22 21:59:11 +0000 | [diff] [blame] | 393 | InitializeAllTargetMCs(); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 394 | InitializeAllAsmParsers(); |
| 395 | |
| 396 | // Construct our diagnostic client. |
Douglas Gregor | 02c23eb | 2012-10-23 22:26:28 +0000 | [diff] [blame] | 397 | IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions(); |
Douglas Gregor | bdbb004 | 2010-08-18 22:29:43 +0000 | [diff] [blame] | 398 | TextDiagnosticPrinter *DiagClient |
Douglas Gregor | 02c23eb | 2012-10-23 22:26:28 +0000 | [diff] [blame] | 399 | = new TextDiagnosticPrinter(errs(), &*DiagOpts); |
Douglas Gregor | bdbb004 | 2010-08-18 22:29:43 +0000 | [diff] [blame] | 400 | DiagClient->setPrefix("clang -cc1as"); |
Dylan Noblesmith | c93dc78 | 2012-02-20 14:00:23 +0000 | [diff] [blame] | 401 | IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs()); |
Douglas Gregor | 02c23eb | 2012-10-23 22:26:28 +0000 | [diff] [blame] | 402 | DiagnosticsEngine Diags(DiagID, &*DiagOpts, DiagClient); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 403 | |
| 404 | // Set an error handler, so that any LLVM backend diagnostics go through our |
| 405 | // error handler. |
Dan Gohman | 726578c | 2010-08-18 21:23:17 +0000 | [diff] [blame] | 406 | ScopedFatalErrorHandler FatalErrorHandler |
| 407 | (LLVMErrorHandler, static_cast<void*>(&Diags)); |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 408 | |
| 409 | // Parse the arguments. |
| 410 | AssemblerInvocation Asm; |
Dylan Noblesmith | 8fdb6de | 2011-12-23 03:05:38 +0000 | [diff] [blame] | 411 | if (!AssemblerInvocation::CreateFromArgs(Asm, ArgBegin, ArgEnd, Diags)) |
| 412 | return 1; |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 413 | |
Daniel Dunbar | c673af7 | 2010-05-20 18:15:20 +0000 | [diff] [blame] | 414 | // Honor -help. |
| 415 | if (Asm.ShowHelp) { |
Dylan Noblesmith | 1e4c01b | 2012-02-13 12:32:21 +0000 | [diff] [blame] | 416 | OwningPtr<driver::OptTable> Opts(driver::createCC1AsOptTable()); |
Daniel Dunbar | c673af7 | 2010-05-20 18:15:20 +0000 | [diff] [blame] | 417 | Opts->PrintHelp(llvm::outs(), "clang -cc1as", "Clang Integrated Assembler"); |
| 418 | return 0; |
| 419 | } |
| 420 | |
| 421 | // Honor -version. |
| 422 | // |
| 423 | // FIXME: Use a better -version message? |
| 424 | if (Asm.ShowVersion) { |
| 425 | llvm::cl::PrintVersionMessage(); |
| 426 | return 0; |
| 427 | } |
| 428 | |
| 429 | // Honor -mllvm. |
| 430 | // |
| 431 | // FIXME: Remove this, one day. |
| 432 | if (!Asm.LLVMArgs.empty()) { |
| 433 | unsigned NumArgs = Asm.LLVMArgs.size(); |
| 434 | const char **Args = new const char*[NumArgs + 2]; |
| 435 | Args[0] = "clang (LLVM option parsing)"; |
| 436 | for (unsigned i = 0; i != NumArgs; ++i) |
| 437 | Args[i + 1] = Asm.LLVMArgs[i].c_str(); |
| 438 | Args[NumArgs + 1] = 0; |
David Blaikie | 6bd17d2 | 2012-02-07 19:36:38 +0000 | [diff] [blame] | 439 | llvm::cl::ParseCommandLineOptions(NumArgs + 1, Args); |
Daniel Dunbar | c673af7 | 2010-05-20 18:15:20 +0000 | [diff] [blame] | 440 | } |
| 441 | |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 442 | // Execute the invocation, unless there were parsing errors. |
| 443 | bool Success = false; |
Argyrios Kyrtzidis | e8f0ba7 | 2010-11-19 00:19:18 +0000 | [diff] [blame] | 444 | if (!Diags.hasErrorOccurred()) |
Daniel Dunbar | 41b5b17 | 2010-05-20 17:49:16 +0000 | [diff] [blame] | 445 | Success = ExecuteAssembler(Asm, Diags); |
| 446 | |
| 447 | // If any timers were active but haven't been destroyed yet, print their |
| 448 | // results now. |
| 449 | TimerGroup::printAll(errs()); |
| 450 | |
| 451 | return !Success; |
| 452 | } |