blob: 80ab1ab22e99fdd169eedc2abc0719e1ff1723f8 [file] [log] [blame]
Daniel Dunbar41b5b172010-05-20 17:49:16 +00001//===-- 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"
Chandler Carruthf59edb92012-12-04 09:25:21 +000016#include "clang/Basic/DiagnosticOptions.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000017#include "clang/Driver/CC1AsOptions.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000018#include "clang/Driver/DriverDiagnostic.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000019#include "clang/Driver/Options.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000020#include "clang/Frontend/FrontendDiagnostic.h"
21#include "clang/Frontend/TextDiagnosticPrinter.h"
Reid Klecknerb1e25a12013-06-14 17:17:23 +000022#include "clang/Frontend/Utils.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000023#include "llvm/ADT/OwningPtr.h"
24#include "llvm/ADT/StringSwitch.h"
Duncan Sands2dc14532010-08-30 09:42:39 +000025#include "llvm/ADT/Triple.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000026#include "llvm/IR/DataLayout.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000027#include "llvm/MC/MCAsmBackend.h"
Daniel Dunbar7374f1b2010-07-17 02:26:21 +000028#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000029#include "llvm/MC/MCCodeEmitter.h"
30#include "llvm/MC/MCContext.h"
Evan Cheng74e13322011-07-11 04:24:19 +000031#include "llvm/MC/MCInstrInfo.h"
Evan Cheng36fc3aa2011-07-20 06:22:27 +000032#include "llvm/MC/MCObjectFileInfo.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000033#include "llvm/MC/MCParser/MCAsmParser.h"
Evan Cheng884744b2011-07-18 20:57:51 +000034#include "llvm/MC/MCRegisterInfo.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000035#include "llvm/MC/MCStreamer.h"
Evan Chengbb36ed92011-07-09 06:04:17 +000036#include "llvm/MC/MCSubtargetInfo.h"
Evan Cheng37712352011-07-26 00:24:45 +000037#include "llvm/MC/MCTargetAsmParser.h"
Reid Klecknerb1e25a12013-06-14 17:17:23 +000038#include "llvm/Option/Arg.h"
39#include "llvm/Option/ArgList.h"
40#include "llvm/Option/OptTable.h"
Daniel Dunbarc673af72010-05-20 18:15:20 +000041#include "llvm/Support/CommandLine.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000042#include "llvm/Support/ErrorHandling.h"
Rafael Espindola2669e962013-06-26 12:48:34 +000043#include "llvm/Support/FileSystem.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000044#include "llvm/Support/FormattedStream.h"
45#include "llvm/Support/Host.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000046#include "llvm/Support/ManagedStatic.h"
47#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000048#include "llvm/Support/Path.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000049#include "llvm/Support/PrettyStackTrace.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000050#include "llvm/Support/Signals.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000051#include "llvm/Support/SourceMgr.h"
Evan Chenga6b40452011-08-24 18:09:14 +000052#include "llvm/Support/TargetRegistry.h"
53#include "llvm/Support/TargetSelect.h"
54#include "llvm/Support/Timer.h"
55#include "llvm/Support/raw_ostream.h"
Michael J. Spencer3a321e22010-12-09 17:36:38 +000056#include "llvm/Support/system_error.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000057using namespace clang;
58using namespace clang::driver;
59using namespace llvm;
Reid Klecknerb1e25a12013-06-14 17:17:23 +000060using namespace llvm::opt;
Daniel Dunbar41b5b172010-05-20 17:49:16 +000061
62namespace {
63
64/// \brief Helper class for representing a single invocation of the assembler.
65struct AssemblerInvocation {
66 /// @name Target Options
67 /// @{
68
Jim Grosbachfc308292012-02-10 20:37:10 +000069 /// The name of the target triple to assemble for.
Daniel Dunbar41b5b172010-05-20 17:49:16 +000070 std::string Triple;
71
Jim Grosbachfc308292012-02-10 20:37:10 +000072 /// If given, the name of the target CPU to determine which instructions
73 /// are legal.
74 std::string CPU;
75
76 /// The list of target specific features to enable or disable -- this should
77 /// be a list of strings starting with '+' or '-'.
78 std::vector<std::string> Features;
79
Daniel Dunbar41b5b172010-05-20 17:49:16 +000080 /// @}
81 /// @name Language Options
82 /// @{
83
84 std::vector<std::string> IncludePaths;
85 unsigned NoInitialTextSection : 1;
Daniel Dunbar402adc32011-03-28 22:49:24 +000086 unsigned SaveTemporaryLabels : 1;
Kevin Enderby567003e2011-12-22 19:31:58 +000087 unsigned GenDwarfForAssembly : 1;
88 std::string DwarfDebugFlags;
Kevin Enderby02341792013-01-17 21:38:06 +000089 std::string DwarfDebugProducer;
Chandler Carruthd566df62012-12-17 21:40:04 +000090 std::string DebugCompilationDir;
Eric Christopher27e2b982012-12-18 00:31:10 +000091 std::string MainFileName;
Daniel Dunbar41b5b172010-05-20 17:49:16 +000092
93 /// @}
94 /// @name Frontend Options
95 /// @{
96
97 std::string InputFile;
Daniel Dunbarc673af72010-05-20 18:15:20 +000098 std::vector<std::string> LLVMArgs;
Daniel Dunbar41b5b172010-05-20 17:49:16 +000099 std::string OutputPath;
100 enum FileType {
101 FT_Asm, ///< Assembly (.s) output, transliterate mode.
102 FT_Null, ///< No output, for timing purposes.
103 FT_Obj ///< Object file output.
104 };
105 FileType OutputType;
Daniel Dunbarc673af72010-05-20 18:15:20 +0000106 unsigned ShowHelp : 1;
107 unsigned ShowVersion : 1;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000108
109 /// @}
110 /// @name Transliterate Options
111 /// @{
112
113 unsigned OutputAsmVariant;
114 unsigned ShowEncoding : 1;
115 unsigned ShowInst : 1;
116
117 /// @}
118 /// @name Assembler Options
119 /// @{
120
121 unsigned RelaxAll : 1;
Rafael Espindola3176cca2011-01-23 17:58:26 +0000122 unsigned NoExecStack : 1;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000123
124 /// @}
125
126public:
127 AssemblerInvocation() {
128 Triple = "";
129 NoInitialTextSection = 0;
130 InputFile = "-";
Daniel Dunbarc673af72010-05-20 18:15:20 +0000131 OutputPath = "-";
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000132 OutputType = FT_Asm;
133 OutputAsmVariant = 0;
134 ShowInst = 0;
135 ShowEncoding = 0;
136 RelaxAll = 0;
Rafael Espindola3176cca2011-01-23 17:58:26 +0000137 NoExecStack = 0;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000138 }
139
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000140 static bool CreateFromArgs(AssemblerInvocation &Res, const char **ArgBegin,
David Blaikied6471f72011-09-25 23:23:43 +0000141 const char **ArgEnd, DiagnosticsEngine &Diags);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000142};
143
144}
145
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000146bool AssemblerInvocation::CreateFromArgs(AssemblerInvocation &Opts,
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000147 const char **ArgBegin,
148 const char **ArgEnd,
David Blaikied6471f72011-09-25 23:23:43 +0000149 DiagnosticsEngine &Diags) {
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000150 using namespace clang::driver::cc1asoptions;
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000151 bool Success = true;
152
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000153 // Parse the arguments.
154 OwningPtr<OptTable> OptTbl(createCC1AsOptTable());
155 unsigned MissingArgIndex, MissingArgCount;
156 OwningPtr<InputArgList> Args(
157 OptTbl->ParseArgs(ArgBegin, ArgEnd,MissingArgIndex, MissingArgCount));
158
159 // Check for missing argument error.
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000160 if (MissingArgCount) {
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000161 Diags.Report(diag::err_drv_missing_argument)
162 << Args->getArgString(MissingArgIndex) << MissingArgCount;
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000163 Success = false;
164 }
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000165
166 // Issue errors on unknown arguments.
167 for (arg_iterator it = Args->filtered_begin(cc1asoptions::OPT_UNKNOWN),
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000168 ie = Args->filtered_end(); it != ie; ++it) {
Daniel Dunbar7e4953e2010-06-11 22:00:13 +0000169 Diags.Report(diag::err_drv_unknown_argument) << (*it) ->getAsString(*Args);
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000170 Success = false;
171 }
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000172
173 // Construct the invocation.
174
175 // Target Options
Jim Grosbachfc308292012-02-10 20:37:10 +0000176 Opts.Triple = llvm::Triple::normalize(Args->getLastArgValue(OPT_triple));
177 Opts.CPU = Args->getLastArgValue(OPT_target_cpu);
178 Opts.Features = Args->getAllArgValues(OPT_target_feature);
179
180 // Use the default target triple if unspecified.
181 if (Opts.Triple.empty())
182 Opts.Triple = llvm::sys::getDefaultTargetTriple();
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000183
184 // Language Options
185 Opts.IncludePaths = Args->getAllArgValues(OPT_I);
186 Opts.NoInitialTextSection = Args->hasArg(OPT_n);
Daniel Dunbar402adc32011-03-28 22:49:24 +0000187 Opts.SaveTemporaryLabels = Args->hasArg(OPT_L);
Kevin Enderby567003e2011-12-22 19:31:58 +0000188 Opts.GenDwarfForAssembly = Args->hasArg(OPT_g);
189 Opts.DwarfDebugFlags = Args->getLastArgValue(OPT_dwarf_debug_flags);
Kevin Enderby02341792013-01-17 21:38:06 +0000190 Opts.DwarfDebugProducer = Args->getLastArgValue(OPT_dwarf_debug_producer);
Chandler Carruthd566df62012-12-17 21:40:04 +0000191 Opts.DebugCompilationDir = Args->getLastArgValue(OPT_fdebug_compilation_dir);
Eric Christopher27e2b982012-12-18 00:31:10 +0000192 Opts.MainFileName = Args->getLastArgValue(OPT_main_file_name);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000193
194 // Frontend Options
195 if (Args->hasArg(OPT_INPUT)) {
196 bool First = true;
197 for (arg_iterator it = Args->filtered_begin(OPT_INPUT),
198 ie = Args->filtered_end(); it != ie; ++it, First=false) {
Daniel Dunbar7e4953e2010-06-11 22:00:13 +0000199 const Arg *A = it;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000200 if (First)
Richard Smith1d489cf2012-11-01 04:30:05 +0000201 Opts.InputFile = A->getValue();
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000202 else {
Daniel Dunbar7e4953e2010-06-11 22:00:13 +0000203 Diags.Report(diag::err_drv_unknown_argument) << A->getAsString(*Args);
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000204 Success = false;
205 }
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000206 }
207 }
Daniel Dunbarc673af72010-05-20 18:15:20 +0000208 Opts.LLVMArgs = Args->getAllArgValues(OPT_mllvm);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000209 Opts.OutputPath = Args->getLastArgValue(OPT_o);
210 if (Arg *A = Args->getLastArg(OPT_filetype)) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000211 StringRef Name = A->getValue();
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000212 unsigned OutputType = StringSwitch<unsigned>(Name)
213 .Case("asm", FT_Asm)
214 .Case("null", FT_Null)
215 .Case("obj", FT_Obj)
216 .Default(~0U);
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000217 if (OutputType == ~0U) {
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000218 Diags.Report(diag::err_drv_invalid_value)
219 << A->getAsString(*Args) << Name;
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000220 Success = false;
221 } else
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000222 Opts.OutputType = FileType(OutputType);
223 }
Daniel Dunbarc673af72010-05-20 18:15:20 +0000224 Opts.ShowHelp = Args->hasArg(OPT_help);
225 Opts.ShowVersion = Args->hasArg(OPT_version);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000226
227 // Transliterate Options
Reid Klecknerb1e25a12013-06-14 17:17:23 +0000228 Opts.OutputAsmVariant =
229 getLastArgIntValue(*Args.get(), OPT_output_asm_variant, 0, Diags);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000230 Opts.ShowEncoding = Args->hasArg(OPT_show_encoding);
231 Opts.ShowInst = Args->hasArg(OPT_show_inst);
232
233 // Assemble Options
David Blaikie73168db2013-07-25 21:19:01 +0000234 Opts.RelaxAll = Args->hasArg(OPT_mrelax_all);
235 Opts.NoExecStack = Args->hasArg(OPT_mno_exec_stack);
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000236
Dylan Noblesmith89ea4162011-12-26 19:29:47 +0000237 return Success;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000238}
239
240static formatted_raw_ostream *GetOutputStream(AssemblerInvocation &Opts,
David Blaikied6471f72011-09-25 23:23:43 +0000241 DiagnosticsEngine &Diags,
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000242 bool Binary) {
Daniel Dunbarc673af72010-05-20 18:15:20 +0000243 if (Opts.OutputPath.empty())
244 Opts.OutputPath = "-";
245
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000246 // Make sure that the Out file gets unlinked from the disk if we get a
247 // SIGINT.
248 if (Opts.OutputPath != "-")
Rafael Espindola6f2e23b2013-06-13 21:02:40 +0000249 sys::RemoveFileOnSignal(Opts.OutputPath);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000250
251 std::string Error;
252 raw_fd_ostream *Out =
Rafael Espindolad965f952013-07-16 19:44:23 +0000253 new raw_fd_ostream(Opts.OutputPath.c_str(), Error,
254 (Binary ? sys::fs::F_Binary : sys::fs::F_None));
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000255 if (!Error.empty()) {
256 Diags.Report(diag::err_fe_unable_to_open_output)
257 << Opts.OutputPath << Error;
258 return 0;
259 }
260
261 return new formatted_raw_ostream(*Out, formatted_raw_ostream::DELETE_STREAM);
262}
263
David Blaikied6471f72011-09-25 23:23:43 +0000264static bool ExecuteAssembler(AssemblerInvocation &Opts,
265 DiagnosticsEngine &Diags) {
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000266 // Get the target specific parser.
267 std::string Error;
268 const Target *TheTarget(TargetRegistry::lookupTarget(Opts.Triple, Error));
269 if (!TheTarget) {
270 Diags.Report(diag::err_target_unknown_triple) << Opts.Triple;
271 return false;
272 }
273
Michael J. Spencer4eeebc42010-12-16 03:28:14 +0000274 OwningPtr<MemoryBuffer> BufferPtr;
275 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Opts.InputFile, BufferPtr)) {
Michael J. Spencer3a321e22010-12-09 17:36:38 +0000276 Error = ec.message();
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000277 Diags.Report(diag::err_fe_error_reading) << Opts.InputFile;
278 return false;
279 }
Michael J. Spencer4eeebc42010-12-16 03:28:14 +0000280 MemoryBuffer *Buffer = BufferPtr.take();
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000281
282 SourceMgr SrcMgr;
283
284 // Tell SrcMgr about this buffer, which is what the parser will pick up.
285 SrcMgr.AddNewSourceBuffer(Buffer, SMLoc());
286
287 // Record the location of the include directories so that the lexer can find
288 // it later.
289 SrcMgr.setIncludeDirs(Opts.IncludePaths);
290
Evan Cheng884744b2011-07-18 20:57:51 +0000291 OwningPtr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(Opts.Triple));
292 assert(MRI && "Unable to create target register info!");
293
Rafael Espindola1fcf31e2013-05-13 01:24:18 +0000294 OwningPtr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, Opts.Triple));
295 assert(MAI && "Unable to create target asm info!");
296
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000297 bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj;
298 formatted_raw_ostream *Out = GetOutputStream(Opts, Diags, IsBinary);
299 if (!Out)
300 return false;
301
Evan Cheng36fc3aa2011-07-20 06:22:27 +0000302 // FIXME: This is not pretty. MCContext has a ptr to MCObjectFileInfo and
303 // MCObjectFileInfo needs a MCContext reference in order to initialize itself.
304 OwningPtr<MCObjectFileInfo> MOFI(new MCObjectFileInfo());
Bill Wendling4b7bae32013-06-18 07:22:05 +0000305 MCContext Ctx(MAI.get(), MRI.get(), MOFI.get(), &SrcMgr);
Evan Cheng36fc3aa2011-07-20 06:22:27 +0000306 // FIXME: Assembler behavior can change with -static.
Evan Cheng66488ed2011-07-20 19:53:19 +0000307 MOFI->InitMCObjectFileInfo(Opts.Triple,
308 Reloc::Default, CodeModel::Default, Ctx);
Daniel Dunbar402adc32011-03-28 22:49:24 +0000309 if (Opts.SaveTemporaryLabels)
310 Ctx.setAllowTemporaryLabels(false);
Kevin Enderby567003e2011-12-22 19:31:58 +0000311 if (Opts.GenDwarfForAssembly)
312 Ctx.setGenDwarfForAssembly(true);
313 if (!Opts.DwarfDebugFlags.empty())
314 Ctx.setDwarfDebugFlags(StringRef(Opts.DwarfDebugFlags));
Kevin Enderby02341792013-01-17 21:38:06 +0000315 if (!Opts.DwarfDebugProducer.empty())
316 Ctx.setDwarfDebugProducer(StringRef(Opts.DwarfDebugProducer));
Chandler Carruthd566df62012-12-17 21:40:04 +0000317 if (!Opts.DebugCompilationDir.empty())
318 Ctx.setCompilationDir(Opts.DebugCompilationDir);
Eric Christopher27e2b982012-12-18 00:31:10 +0000319 if (!Opts.MainFileName.empty())
320 Ctx.setMainFileName(StringRef(Opts.MainFileName));
Rafael Espindola7872d482010-12-10 07:40:14 +0000321
Jim Grosbachfc308292012-02-10 20:37:10 +0000322 // Build up the feature string from the target feature list.
323 std::string FS;
324 if (!Opts.Features.empty()) {
325 FS = Opts.Features[0];
326 for (unsigned i = 1, e = Opts.Features.size(); i != e; ++i)
327 FS += "," + Opts.Features[i];
328 }
329
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000330 OwningPtr<MCStreamer> Str;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000331
Evan Chengccb21e42011-07-26 01:49:26 +0000332 OwningPtr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
333 OwningPtr<MCSubtargetInfo>
Jim Grosbachfc308292012-02-10 20:37:10 +0000334 STI(TheTarget->createMCSubtargetInfo(Opts.Triple, Opts.CPU, FS));
Evan Cheng74e13322011-07-11 04:24:19 +0000335
Rafael Espindola3176cca2011-01-23 17:58:26 +0000336 // FIXME: There is a bit of code duplication with addPassesToEmitFile.
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000337 if (Opts.OutputType == AssemblerInvocation::FT_Asm) {
338 MCInstPrinter *IP =
Bill Wendling99d43b42012-04-02 06:17:37 +0000339 TheTarget->createMCInstPrinter(Opts.OutputAsmVariant, *MAI, *MCII, *MRI,
340 *STI);
Benjamin Kramer7ac3d5a2010-07-29 17:48:03 +0000341 MCCodeEmitter *CE = 0;
Evan Cheng21118dc2011-07-25 23:25:09 +0000342 MCAsmBackend *MAB = 0;
Daniel Dunbar66cdf262010-12-16 03:06:05 +0000343 if (Opts.ShowEncoding) {
Jim Grosbach92ecfe92012-05-15 17:36:07 +0000344 CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
Bill Wendlinge904acf2013-09-09 02:37:56 +0000345 MAB = TheTarget->createMCAsmBackend(*MRI, Opts.Triple, Opts.CPU);
Daniel Dunbar66cdf262010-12-16 03:06:05 +0000346 }
Rafael Espindola7872d482010-12-10 07:40:14 +0000347 Str.reset(TheTarget->createAsmStreamer(Ctx, *Out, /*asmverbose*/true,
Rafael Espindola1bf39022011-04-30 03:46:18 +0000348 /*useLoc*/ true,
Nick Lewyckyea523d72011-10-17 23:05:52 +0000349 /*useCFI*/ true,
350 /*useDwarfDirectory*/ true,
351 IP, CE, MAB,
Rafael Espindola7872d482010-12-10 07:40:14 +0000352 Opts.ShowInst));
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000353 } else if (Opts.OutputType == AssemblerInvocation::FT_Null) {
354 Str.reset(createNullStreamer(Ctx));
355 } else {
356 assert(Opts.OutputType == AssemblerInvocation::FT_Obj &&
357 "Invalid file type!");
Jim Grosbach92ecfe92012-05-15 17:36:07 +0000358 MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
Bill Wendlinge904acf2013-09-09 02:37:56 +0000359 MCAsmBackend *MAB = TheTarget->createMCAsmBackend(*MRI, Opts.Triple,
360 Opts.CPU);
Evan Cheng7b6def72011-07-26 00:42:40 +0000361 Str.reset(TheTarget->createMCObjectStreamer(Opts.Triple, Ctx, *MAB, *Out,
362 CE, Opts.RelaxAll,
363 Opts.NoExecStack));
Rafael Espindola4f036fa2010-10-13 14:53:57 +0000364 Str.get()->InitSections();
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000365 }
366
Jim Grosbach09190be2011-08-16 18:33:55 +0000367 OwningPtr<MCAsmParser> Parser(createMCAsmParser(SrcMgr, Ctx,
Daniel Dunbar7374f1b2010-07-17 02:26:21 +0000368 *Str.get(), *MAI));
Joey Gouly12981a72013-09-12 10:59:24 +0000369 OwningPtr<MCTargetAsmParser> TAP(TheTarget->createMCAsmParser(*STI, *Parser, *MCII));
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000370 if (!TAP) {
371 Diags.Report(diag::err_target_unknown_triple) << Opts.Triple;
372 return false;
373 }
374
Daniel Dunbar7374f1b2010-07-17 02:26:21 +0000375 Parser->setTargetParser(*TAP.get());
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000376
Daniel Dunbar7374f1b2010-07-17 02:26:21 +0000377 bool Success = !Parser->Run(Opts.NoInitialTextSection);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000378
379 // Close the output.
380 delete Out;
381
382 // Delete output on errors.
383 if (!Success && Opts.OutputPath != "-")
Rafael Espindola2669e962013-06-26 12:48:34 +0000384 sys::fs::remove(Opts.OutputPath);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000385
386 return Success;
387}
388
Chad Rosier90836282013-03-27 18:28:23 +0000389static void LLVMErrorHandler(void *UserData, const std::string &Message,
390 bool GenCrashDiag) {
David Blaikied6471f72011-09-25 23:23:43 +0000391 DiagnosticsEngine &Diags = *static_cast<DiagnosticsEngine*>(UserData);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000392
393 Diags.Report(diag::err_fe_error_backend) << Message;
394
395 // We cannot recover from llvm errors.
396 exit(1);
397}
398
399int cc1as_main(const char **ArgBegin, const char **ArgEnd,
400 const char *Argv0, void *MainAddr) {
401 // Print a stack trace if we signal out.
402 sys::PrintStackTraceOnErrorSignal();
403 PrettyStackTraceProgram X(ArgEnd - ArgBegin, ArgBegin);
404 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
405
406 // Initialize targets and assembly printers/parsers.
407 InitializeAllTargetInfos();
Evan Chengd99d3e12011-07-22 21:59:11 +0000408 InitializeAllTargetMCs();
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000409 InitializeAllAsmParsers();
410
411 // Construct our diagnostic client.
Douglas Gregor02c23eb2012-10-23 22:26:28 +0000412 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000413 TextDiagnosticPrinter *DiagClient
Douglas Gregor02c23eb2012-10-23 22:26:28 +0000414 = new TextDiagnosticPrinter(errs(), &*DiagOpts);
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000415 DiagClient->setPrefix("clang -cc1as");
Dylan Noblesmithc93dc782012-02-20 14:00:23 +0000416 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
Douglas Gregor02c23eb2012-10-23 22:26:28 +0000417 DiagnosticsEngine Diags(DiagID, &*DiagOpts, DiagClient);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000418
419 // Set an error handler, so that any LLVM backend diagnostics go through our
420 // error handler.
Dan Gohman726578c2010-08-18 21:23:17 +0000421 ScopedFatalErrorHandler FatalErrorHandler
422 (LLVMErrorHandler, static_cast<void*>(&Diags));
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000423
424 // Parse the arguments.
425 AssemblerInvocation Asm;
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000426 if (!AssemblerInvocation::CreateFromArgs(Asm, ArgBegin, ArgEnd, Diags))
427 return 1;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000428
Daniel Dunbarc673af72010-05-20 18:15:20 +0000429 // Honor -help.
430 if (Asm.ShowHelp) {
Reid Klecknerb1e25a12013-06-14 17:17:23 +0000431 OwningPtr<OptTable> Opts(driver::createCC1AsOptTable());
Daniel Dunbarc673af72010-05-20 18:15:20 +0000432 Opts->PrintHelp(llvm::outs(), "clang -cc1as", "Clang Integrated Assembler");
433 return 0;
434 }
435
436 // Honor -version.
437 //
438 // FIXME: Use a better -version message?
439 if (Asm.ShowVersion) {
440 llvm::cl::PrintVersionMessage();
441 return 0;
442 }
443
444 // Honor -mllvm.
445 //
446 // FIXME: Remove this, one day.
447 if (!Asm.LLVMArgs.empty()) {
448 unsigned NumArgs = Asm.LLVMArgs.size();
449 const char **Args = new const char*[NumArgs + 2];
450 Args[0] = "clang (LLVM option parsing)";
451 for (unsigned i = 0; i != NumArgs; ++i)
452 Args[i + 1] = Asm.LLVMArgs[i].c_str();
453 Args[NumArgs + 1] = 0;
David Blaikie6bd17d22012-02-07 19:36:38 +0000454 llvm::cl::ParseCommandLineOptions(NumArgs + 1, Args);
Daniel Dunbarc673af72010-05-20 18:15:20 +0000455 }
456
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000457 // Execute the invocation, unless there were parsing errors.
458 bool Success = false;
Argyrios Kyrtzidise8f0ba72010-11-19 00:19:18 +0000459 if (!Diags.hasErrorOccurred())
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000460 Success = ExecuteAssembler(Asm, Diags);
461
462 // If any timers were active but haven't been destroyed yet, print their
463 // results now.
464 TimerGroup::printAll(errs());
465
466 return !Success;
467}