blob: 726af19af6c4f54f0de7f84cc8ed9f74c7182cf1 [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/Arg.h"
18#include "clang/Driver/ArgList.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000019#include "clang/Driver/CC1AsOptions.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000020#include "clang/Driver/DriverDiagnostic.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000021#include "clang/Driver/OptTable.h"
22#include "clang/Driver/Options.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000023#include "clang/Frontend/FrontendDiagnostic.h"
24#include "clang/Frontend/TextDiagnosticPrinter.h"
25#include "llvm/ADT/OwningPtr.h"
26#include "llvm/ADT/StringSwitch.h"
Duncan Sands2dc14532010-08-30 09:42:39 +000027#include "llvm/ADT/Triple.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000028#include "llvm/IR/DataLayout.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000029#include "llvm/MC/MCAsmBackend.h"
Daniel Dunbar7374f1b2010-07-17 02:26:21 +000030#include "llvm/MC/MCAsmInfo.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000031#include "llvm/MC/MCCodeEmitter.h"
32#include "llvm/MC/MCContext.h"
Evan Cheng74e13322011-07-11 04:24:19 +000033#include "llvm/MC/MCInstrInfo.h"
Evan Cheng36fc3aa2011-07-20 06:22:27 +000034#include "llvm/MC/MCObjectFileInfo.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000035#include "llvm/MC/MCParser/MCAsmParser.h"
Evan Cheng884744b2011-07-18 20:57:51 +000036#include "llvm/MC/MCRegisterInfo.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000037#include "llvm/MC/MCStreamer.h"
Evan Chengbb36ed92011-07-09 06:04:17 +000038#include "llvm/MC/MCSubtargetInfo.h"
Evan Cheng37712352011-07-26 00:24:45 +000039#include "llvm/MC/MCTargetAsmParser.h"
Daniel Dunbarc673af72010-05-20 18:15:20 +000040#include "llvm/Support/CommandLine.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000041#include "llvm/Support/ErrorHandling.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000042#include "llvm/Support/FormattedStream.h"
43#include "llvm/Support/Host.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000044#include "llvm/Support/ManagedStatic.h"
45#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000046#include "llvm/Support/Path.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000047#include "llvm/Support/PrettyStackTrace.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000048#include "llvm/Support/Signals.h"
Chandler Carruthf59edb92012-12-04 09:25:21 +000049#include "llvm/Support/SourceMgr.h"
Evan Chenga6b40452011-08-24 18:09:14 +000050#include "llvm/Support/TargetRegistry.h"
51#include "llvm/Support/TargetSelect.h"
52#include "llvm/Support/Timer.h"
53#include "llvm/Support/raw_ostream.h"
Michael J. Spencer3a321e22010-12-09 17:36:38 +000054#include "llvm/Support/system_error.h"
Daniel Dunbar41b5b172010-05-20 17:49:16 +000055using namespace clang;
56using namespace clang::driver;
57using namespace llvm;
58
59namespace {
60
61/// \brief Helper class for representing a single invocation of the assembler.
62struct AssemblerInvocation {
63 /// @name Target Options
64 /// @{
65
Jim Grosbachfc308292012-02-10 20:37:10 +000066 /// The name of the target triple to assemble for.
Daniel Dunbar41b5b172010-05-20 17:49:16 +000067 std::string Triple;
68
Jim Grosbachfc308292012-02-10 20:37:10 +000069 /// 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 Dunbar41b5b172010-05-20 17:49:16 +000077 /// @}
78 /// @name Language Options
79 /// @{
80
81 std::vector<std::string> IncludePaths;
82 unsigned NoInitialTextSection : 1;
Daniel Dunbar402adc32011-03-28 22:49:24 +000083 unsigned SaveTemporaryLabels : 1;
Kevin Enderby567003e2011-12-22 19:31:58 +000084 unsigned GenDwarfForAssembly : 1;
85 std::string DwarfDebugFlags;
Kevin Enderby02341792013-01-17 21:38:06 +000086 std::string DwarfDebugProducer;
Chandler Carruthd566df62012-12-17 21:40:04 +000087 std::string DebugCompilationDir;
Eric Christopher27e2b982012-12-18 00:31:10 +000088 std::string MainFileName;
Daniel Dunbar41b5b172010-05-20 17:49:16 +000089
90 /// @}
91 /// @name Frontend Options
92 /// @{
93
94 std::string InputFile;
Daniel Dunbarc673af72010-05-20 18:15:20 +000095 std::vector<std::string> LLVMArgs;
Daniel Dunbar41b5b172010-05-20 17:49:16 +000096 std::string OutputPath;
97 enum FileType {
98 FT_Asm, ///< Assembly (.s) output, transliterate mode.
99 FT_Null, ///< No output, for timing purposes.
100 FT_Obj ///< Object file output.
101 };
102 FileType OutputType;
Daniel Dunbarc673af72010-05-20 18:15:20 +0000103 unsigned ShowHelp : 1;
104 unsigned ShowVersion : 1;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000105
106 /// @}
107 /// @name Transliterate Options
108 /// @{
109
110 unsigned OutputAsmVariant;
111 unsigned ShowEncoding : 1;
112 unsigned ShowInst : 1;
113
114 /// @}
115 /// @name Assembler Options
116 /// @{
117
118 unsigned RelaxAll : 1;
Rafael Espindola3176cca2011-01-23 17:58:26 +0000119 unsigned NoExecStack : 1;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000120
121 /// @}
122
123public:
124 AssemblerInvocation() {
125 Triple = "";
126 NoInitialTextSection = 0;
127 InputFile = "-";
Daniel Dunbarc673af72010-05-20 18:15:20 +0000128 OutputPath = "-";
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000129 OutputType = FT_Asm;
130 OutputAsmVariant = 0;
131 ShowInst = 0;
132 ShowEncoding = 0;
133 RelaxAll = 0;
Rafael Espindola3176cca2011-01-23 17:58:26 +0000134 NoExecStack = 0;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000135 }
136
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000137 static bool CreateFromArgs(AssemblerInvocation &Res, const char **ArgBegin,
David Blaikied6471f72011-09-25 23:23:43 +0000138 const char **ArgEnd, DiagnosticsEngine &Diags);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000139};
140
141}
142
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000143bool AssemblerInvocation::CreateFromArgs(AssemblerInvocation &Opts,
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000144 const char **ArgBegin,
145 const char **ArgEnd,
David Blaikied6471f72011-09-25 23:23:43 +0000146 DiagnosticsEngine &Diags) {
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000147 using namespace clang::driver::cc1asoptions;
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000148 bool Success = true;
149
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000150 // Parse the arguments.
151 OwningPtr<OptTable> OptTbl(createCC1AsOptTable());
152 unsigned MissingArgIndex, MissingArgCount;
153 OwningPtr<InputArgList> Args(
154 OptTbl->ParseArgs(ArgBegin, ArgEnd,MissingArgIndex, MissingArgCount));
155
156 // Check for missing argument error.
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000157 if (MissingArgCount) {
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000158 Diags.Report(diag::err_drv_missing_argument)
159 << Args->getArgString(MissingArgIndex) << MissingArgCount;
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000160 Success = false;
161 }
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000162
163 // Issue errors on unknown arguments.
164 for (arg_iterator it = Args->filtered_begin(cc1asoptions::OPT_UNKNOWN),
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000165 ie = Args->filtered_end(); it != ie; ++it) {
Daniel Dunbar7e4953e2010-06-11 22:00:13 +0000166 Diags.Report(diag::err_drv_unknown_argument) << (*it) ->getAsString(*Args);
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000167 Success = false;
168 }
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000169
170 // Construct the invocation.
171
172 // Target Options
Jim Grosbachfc308292012-02-10 20:37:10 +0000173 Opts.Triple = llvm::Triple::normalize(Args->getLastArgValue(OPT_triple));
174 Opts.CPU = Args->getLastArgValue(OPT_target_cpu);
175 Opts.Features = Args->getAllArgValues(OPT_target_feature);
176
177 // Use the default target triple if unspecified.
178 if (Opts.Triple.empty())
179 Opts.Triple = llvm::sys::getDefaultTargetTriple();
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000180
181 // Language Options
182 Opts.IncludePaths = Args->getAllArgValues(OPT_I);
183 Opts.NoInitialTextSection = Args->hasArg(OPT_n);
Daniel Dunbar402adc32011-03-28 22:49:24 +0000184 Opts.SaveTemporaryLabels = Args->hasArg(OPT_L);
Kevin Enderby567003e2011-12-22 19:31:58 +0000185 Opts.GenDwarfForAssembly = Args->hasArg(OPT_g);
186 Opts.DwarfDebugFlags = Args->getLastArgValue(OPT_dwarf_debug_flags);
Kevin Enderby02341792013-01-17 21:38:06 +0000187 Opts.DwarfDebugProducer = Args->getLastArgValue(OPT_dwarf_debug_producer);
Chandler Carruthd566df62012-12-17 21:40:04 +0000188 Opts.DebugCompilationDir = Args->getLastArgValue(OPT_fdebug_compilation_dir);
Eric Christopher27e2b982012-12-18 00:31:10 +0000189 Opts.MainFileName = Args->getLastArgValue(OPT_main_file_name);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000190
191 // Frontend Options
192 if (Args->hasArg(OPT_INPUT)) {
193 bool First = true;
194 for (arg_iterator it = Args->filtered_begin(OPT_INPUT),
195 ie = Args->filtered_end(); it != ie; ++it, First=false) {
Daniel Dunbar7e4953e2010-06-11 22:00:13 +0000196 const Arg *A = it;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000197 if (First)
Richard Smith1d489cf2012-11-01 04:30:05 +0000198 Opts.InputFile = A->getValue();
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000199 else {
Daniel Dunbar7e4953e2010-06-11 22:00:13 +0000200 Diags.Report(diag::err_drv_unknown_argument) << A->getAsString(*Args);
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000201 Success = false;
202 }
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000203 }
204 }
Daniel Dunbarc673af72010-05-20 18:15:20 +0000205 Opts.LLVMArgs = Args->getAllArgValues(OPT_mllvm);
Joerg Sonnenbergerd7933502011-05-19 18:42:29 +0000206 if (Args->hasArg(OPT_fatal_warnings))
207 Opts.LLVMArgs.push_back("-fatal-assembler-warnings");
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000208 Opts.OutputPath = Args->getLastArgValue(OPT_o);
209 if (Arg *A = Args->getLastArg(OPT_filetype)) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000210 StringRef Name = A->getValue();
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000211 unsigned OutputType = StringSwitch<unsigned>(Name)
212 .Case("asm", FT_Asm)
213 .Case("null", FT_Null)
214 .Case("obj", FT_Obj)
215 .Default(~0U);
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000216 if (OutputType == ~0U) {
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000217 Diags.Report(diag::err_drv_invalid_value)
218 << A->getAsString(*Args) << Name;
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000219 Success = false;
220 } else
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000221 Opts.OutputType = FileType(OutputType);
222 }
Daniel Dunbarc673af72010-05-20 18:15:20 +0000223 Opts.ShowHelp = Args->hasArg(OPT_help);
224 Opts.ShowVersion = Args->hasArg(OPT_version);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000225
226 // Transliterate Options
227 Opts.OutputAsmVariant = Args->getLastArgIntValue(OPT_output_asm_variant,
228 0, Diags);
229 Opts.ShowEncoding = Args->hasArg(OPT_show_encoding);
230 Opts.ShowInst = Args->hasArg(OPT_show_inst);
231
232 // Assemble Options
233 Opts.RelaxAll = Args->hasArg(OPT_relax_all);
Rafael Espindola3176cca2011-01-23 17:58:26 +0000234 Opts.NoExecStack = Args->hasArg(OPT_no_exec_stack);
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000235
Dylan Noblesmith89ea4162011-12-26 19:29:47 +0000236 return Success;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000237}
238
239static formatted_raw_ostream *GetOutputStream(AssemblerInvocation &Opts,
David Blaikied6471f72011-09-25 23:23:43 +0000240 DiagnosticsEngine &Diags,
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000241 bool Binary) {
Daniel Dunbarc673af72010-05-20 18:15:20 +0000242 if (Opts.OutputPath.empty())
243 Opts.OutputPath = "-";
244
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000245 // Make sure that the Out file gets unlinked from the disk if we get a
246 // SIGINT.
247 if (Opts.OutputPath != "-")
248 sys::RemoveFileOnSignal(sys::Path(Opts.OutputPath));
249
250 std::string Error;
251 raw_fd_ostream *Out =
252 new raw_fd_ostream(Opts.OutputPath.c_str(), Error,
253 (Binary ? raw_fd_ostream::F_Binary : 0));
254 if (!Error.empty()) {
255 Diags.Report(diag::err_fe_unable_to_open_output)
256 << Opts.OutputPath << Error;
257 return 0;
258 }
259
260 return new formatted_raw_ostream(*Out, formatted_raw_ostream::DELETE_STREAM);
261}
262
David Blaikied6471f72011-09-25 23:23:43 +0000263static bool ExecuteAssembler(AssemblerInvocation &Opts,
264 DiagnosticsEngine &Diags) {
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000265 // Get the target specific parser.
266 std::string Error;
267 const Target *TheTarget(TargetRegistry::lookupTarget(Opts.Triple, Error));
268 if (!TheTarget) {
269 Diags.Report(diag::err_target_unknown_triple) << Opts.Triple;
270 return false;
271 }
272
Michael J. Spencer4eeebc42010-12-16 03:28:14 +0000273 OwningPtr<MemoryBuffer> BufferPtr;
274 if (error_code ec = MemoryBuffer::getFileOrSTDIN(Opts.InputFile, BufferPtr)) {
Michael J. Spencer3a321e22010-12-09 17:36:38 +0000275 Error = ec.message();
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000276 Diags.Report(diag::err_fe_error_reading) << Opts.InputFile;
277 return false;
278 }
Michael J. Spencer4eeebc42010-12-16 03:28:14 +0000279 MemoryBuffer *Buffer = BufferPtr.take();
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000280
281 SourceMgr SrcMgr;
282
283 // Tell SrcMgr about this buffer, which is what the parser will pick up.
284 SrcMgr.AddNewSourceBuffer(Buffer, SMLoc());
285
286 // Record the location of the include directories so that the lexer can find
287 // it later.
288 SrcMgr.setIncludeDirs(Opts.IncludePaths);
289
Evan Chenge27eb592011-07-14 23:50:56 +0000290 OwningPtr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(Opts.Triple));
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000291 assert(MAI && "Unable to create target asm info!");
292
Evan Cheng884744b2011-07-18 20:57:51 +0000293 OwningPtr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(Opts.Triple));
294 assert(MRI && "Unable to create target register info!");
295
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000296 bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj;
297 formatted_raw_ostream *Out = GetOutputStream(Opts, Diags, IsBinary);
298 if (!Out)
299 return false;
300
Evan Cheng36fc3aa2011-07-20 06:22:27 +0000301 // FIXME: This is not pretty. MCContext has a ptr to MCObjectFileInfo and
302 // MCObjectFileInfo needs a MCContext reference in order to initialize itself.
303 OwningPtr<MCObjectFileInfo> MOFI(new MCObjectFileInfo());
Jim Grosbach6a9a6d22012-02-02 17:54:07 +0000304 MCContext Ctx(*MAI, *MRI, MOFI.get(), &SrcMgr);
Evan Cheng36fc3aa2011-07-20 06:22:27 +0000305 // FIXME: Assembler behavior can change with -static.
Evan Cheng66488ed2011-07-20 19:53:19 +0000306 MOFI->InitMCObjectFileInfo(Opts.Triple,
307 Reloc::Default, CodeModel::Default, Ctx);
Daniel Dunbar402adc32011-03-28 22:49:24 +0000308 if (Opts.SaveTemporaryLabels)
309 Ctx.setAllowTemporaryLabels(false);
Kevin Enderby567003e2011-12-22 19:31:58 +0000310 if (Opts.GenDwarfForAssembly)
311 Ctx.setGenDwarfForAssembly(true);
312 if (!Opts.DwarfDebugFlags.empty())
313 Ctx.setDwarfDebugFlags(StringRef(Opts.DwarfDebugFlags));
Kevin Enderby02341792013-01-17 21:38:06 +0000314 if (!Opts.DwarfDebugProducer.empty())
315 Ctx.setDwarfDebugProducer(StringRef(Opts.DwarfDebugProducer));
Chandler Carruthd566df62012-12-17 21:40:04 +0000316 if (!Opts.DebugCompilationDir.empty())
317 Ctx.setCompilationDir(Opts.DebugCompilationDir);
Eric Christopher27e2b982012-12-18 00:31:10 +0000318 if (!Opts.MainFileName.empty())
319 Ctx.setMainFileName(StringRef(Opts.MainFileName));
Rafael Espindola7872d482010-12-10 07:40:14 +0000320
Jim Grosbachfc308292012-02-10 20:37:10 +0000321 // Build up the feature string from the target feature list.
322 std::string FS;
323 if (!Opts.Features.empty()) {
324 FS = Opts.Features[0];
325 for (unsigned i = 1, e = Opts.Features.size(); i != e; ++i)
326 FS += "," + Opts.Features[i];
327 }
328
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000329 OwningPtr<MCStreamer> Str;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000330
Evan Chengccb21e42011-07-26 01:49:26 +0000331 OwningPtr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
332 OwningPtr<MCSubtargetInfo>
Jim Grosbachfc308292012-02-10 20:37:10 +0000333 STI(TheTarget->createMCSubtargetInfo(Opts.Triple, Opts.CPU, FS));
Evan Cheng74e13322011-07-11 04:24:19 +0000334
Rafael Espindola3176cca2011-01-23 17:58:26 +0000335 // FIXME: There is a bit of code duplication with addPassesToEmitFile.
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000336 if (Opts.OutputType == AssemblerInvocation::FT_Asm) {
337 MCInstPrinter *IP =
Bill Wendling99d43b42012-04-02 06:17:37 +0000338 TheTarget->createMCInstPrinter(Opts.OutputAsmVariant, *MAI, *MCII, *MRI,
339 *STI);
Benjamin Kramer7ac3d5a2010-07-29 17:48:03 +0000340 MCCodeEmitter *CE = 0;
Evan Cheng21118dc2011-07-25 23:25:09 +0000341 MCAsmBackend *MAB = 0;
Daniel Dunbar66cdf262010-12-16 03:06:05 +0000342 if (Opts.ShowEncoding) {
Jim Grosbach92ecfe92012-05-15 17:36:07 +0000343 CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
Roman Divackyf9361b52012-09-18 16:09:16 +0000344 MAB = TheTarget->createMCAsmBackend(Opts.Triple, Opts.CPU);
Daniel Dunbar66cdf262010-12-16 03:06:05 +0000345 }
Rafael Espindola7872d482010-12-10 07:40:14 +0000346 Str.reset(TheTarget->createAsmStreamer(Ctx, *Out, /*asmverbose*/true,
Rafael Espindola1bf39022011-04-30 03:46:18 +0000347 /*useLoc*/ true,
Nick Lewyckyea523d72011-10-17 23:05:52 +0000348 /*useCFI*/ true,
349 /*useDwarfDirectory*/ true,
350 IP, CE, MAB,
Rafael Espindola7872d482010-12-10 07:40:14 +0000351 Opts.ShowInst));
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000352 } else if (Opts.OutputType == AssemblerInvocation::FT_Null) {
353 Str.reset(createNullStreamer(Ctx));
354 } else {
355 assert(Opts.OutputType == AssemblerInvocation::FT_Obj &&
356 "Invalid file type!");
Jim Grosbach92ecfe92012-05-15 17:36:07 +0000357 MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
Roman Divackyf9361b52012-09-18 16:09:16 +0000358 MCAsmBackend *MAB = TheTarget->createMCAsmBackend(Opts.Triple, Opts.CPU);
Evan Cheng7b6def72011-07-26 00:42:40 +0000359 Str.reset(TheTarget->createMCObjectStreamer(Opts.Triple, Ctx, *MAB, *Out,
360 CE, Opts.RelaxAll,
361 Opts.NoExecStack));
Rafael Espindola4f036fa2010-10-13 14:53:57 +0000362 Str.get()->InitSections();
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000363 }
364
Jim Grosbach09190be2011-08-16 18:33:55 +0000365 OwningPtr<MCAsmParser> Parser(createMCAsmParser(SrcMgr, Ctx,
Daniel Dunbar7374f1b2010-07-17 02:26:21 +0000366 *Str.get(), *MAI));
Evan Chengccb21e42011-07-26 01:49:26 +0000367 OwningPtr<MCTargetAsmParser> TAP(TheTarget->createMCAsmParser(*STI, *Parser));
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000368 if (!TAP) {
369 Diags.Report(diag::err_target_unknown_triple) << Opts.Triple;
370 return false;
371 }
372
Daniel Dunbar7374f1b2010-07-17 02:26:21 +0000373 Parser->setTargetParser(*TAP.get());
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000374
Daniel Dunbar7374f1b2010-07-17 02:26:21 +0000375 bool Success = !Parser->Run(Opts.NoInitialTextSection);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000376
377 // Close the output.
378 delete Out;
379
380 // Delete output on errors.
381 if (!Success && Opts.OutputPath != "-")
382 sys::Path(Opts.OutputPath).eraseFromDisk();
383
384 return Success;
385}
386
387static void LLVMErrorHandler(void *UserData, const std::string &Message) {
David Blaikied6471f72011-09-25 23:23:43 +0000388 DiagnosticsEngine &Diags = *static_cast<DiagnosticsEngine*>(UserData);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000389
390 Diags.Report(diag::err_fe_error_backend) << Message;
391
392 // We cannot recover from llvm errors.
393 exit(1);
394}
395
396int cc1as_main(const char **ArgBegin, const char **ArgEnd,
397 const char *Argv0, void *MainAddr) {
398 // Print a stack trace if we signal out.
399 sys::PrintStackTraceOnErrorSignal();
400 PrettyStackTraceProgram X(ArgEnd - ArgBegin, ArgBegin);
401 llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
402
403 // Initialize targets and assembly printers/parsers.
404 InitializeAllTargetInfos();
Evan Chengd99d3e12011-07-22 21:59:11 +0000405 InitializeAllTargetMCs();
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000406 InitializeAllAsmParsers();
407
408 // Construct our diagnostic client.
Douglas Gregor02c23eb2012-10-23 22:26:28 +0000409 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000410 TextDiagnosticPrinter *DiagClient
Douglas Gregor02c23eb2012-10-23 22:26:28 +0000411 = new TextDiagnosticPrinter(errs(), &*DiagOpts);
Douglas Gregorbdbb0042010-08-18 22:29:43 +0000412 DiagClient->setPrefix("clang -cc1as");
Dylan Noblesmithc93dc782012-02-20 14:00:23 +0000413 IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
Douglas Gregor02c23eb2012-10-23 22:26:28 +0000414 DiagnosticsEngine Diags(DiagID, &*DiagOpts, DiagClient);
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000415
416 // Set an error handler, so that any LLVM backend diagnostics go through our
417 // error handler.
Dan Gohman726578c2010-08-18 21:23:17 +0000418 ScopedFatalErrorHandler FatalErrorHandler
419 (LLVMErrorHandler, static_cast<void*>(&Diags));
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000420
421 // Parse the arguments.
422 AssemblerInvocation Asm;
Dylan Noblesmith8fdb6de2011-12-23 03:05:38 +0000423 if (!AssemblerInvocation::CreateFromArgs(Asm, ArgBegin, ArgEnd, Diags))
424 return 1;
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000425
Daniel Dunbarc673af72010-05-20 18:15:20 +0000426 // Honor -help.
427 if (Asm.ShowHelp) {
Dylan Noblesmith1e4c01b2012-02-13 12:32:21 +0000428 OwningPtr<driver::OptTable> Opts(driver::createCC1AsOptTable());
Daniel Dunbarc673af72010-05-20 18:15:20 +0000429 Opts->PrintHelp(llvm::outs(), "clang -cc1as", "Clang Integrated Assembler");
430 return 0;
431 }
432
433 // Honor -version.
434 //
435 // FIXME: Use a better -version message?
436 if (Asm.ShowVersion) {
437 llvm::cl::PrintVersionMessage();
438 return 0;
439 }
440
441 // Honor -mllvm.
442 //
443 // FIXME: Remove this, one day.
444 if (!Asm.LLVMArgs.empty()) {
445 unsigned NumArgs = Asm.LLVMArgs.size();
446 const char **Args = new const char*[NumArgs + 2];
447 Args[0] = "clang (LLVM option parsing)";
448 for (unsigned i = 0; i != NumArgs; ++i)
449 Args[i + 1] = Asm.LLVMArgs[i].c_str();
450 Args[NumArgs + 1] = 0;
David Blaikie6bd17d22012-02-07 19:36:38 +0000451 llvm::cl::ParseCommandLineOptions(NumArgs + 1, Args);
Daniel Dunbarc673af72010-05-20 18:15:20 +0000452 }
453
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000454 // Execute the invocation, unless there were parsing errors.
455 bool Success = false;
Argyrios Kyrtzidise8f0ba72010-11-19 00:19:18 +0000456 if (!Diags.hasErrorOccurred())
Daniel Dunbar41b5b172010-05-20 17:49:16 +0000457 Success = ExecuteAssembler(Asm, Diags);
458
459 // If any timers were active but haven't been destroyed yet, print their
460 // results now.
461 TimerGroup::printAll(errs());
462
463 return !Success;
464}