123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488 |
- //===-- cc1as_main.cpp - Clang Assembler ---------------------------------===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is distributed under the University of Illinois Open Source
- // License. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- //
- // This is the entry point to the clang -cc1as functionality, which implements
- // the direct interface to the LLVM MC based assembler.
- //
- //===----------------------------------------------------------------------===//
- #include "clang/Basic/Diagnostic.h"
- #include "clang/Basic/DiagnosticOptions.h"
- #include "clang/Driver/DriverDiagnostic.h"
- #include "clang/Driver/Options.h"
- #include "clang/Frontend/FrontendDiagnostic.h"
- #include "clang/Frontend/TextDiagnosticPrinter.h"
- #include "clang/Frontend/Utils.h"
- #include "llvm/ADT/StringSwitch.h"
- #include "llvm/ADT/Triple.h"
- #include "llvm/IR/DataLayout.h"
- #include "llvm/MC/MCAsmBackend.h"
- #include "llvm/MC/MCAsmInfo.h"
- #include "llvm/MC/MCCodeEmitter.h"
- #include "llvm/MC/MCContext.h"
- #include "llvm/MC/MCInstrInfo.h"
- #include "llvm/MC/MCObjectFileInfo.h"
- #include "llvm/MC/MCParser/MCAsmParser.h"
- #include "llvm/MC/MCRegisterInfo.h"
- #include "llvm/MC/MCStreamer.h"
- #include "llvm/MC/MCSubtargetInfo.h"
- #include "llvm/MC/MCTargetAsmParser.h"
- #include "llvm/MC/MCTargetOptions.h"
- #include "llvm/Option/Arg.h"
- #include "llvm/Option/ArgList.h"
- #include "llvm/Option/OptTable.h"
- #include "llvm/Support/CommandLine.h"
- #include "llvm/Support/ErrorHandling.h"
- #include "llvm/Support/FileSystem.h"
- #include "llvm/Support/FormattedStream.h"
- #include "llvm/Support/Host.h"
- #include "llvm/Support/ManagedStatic.h"
- #include "llvm/Support/MemoryBuffer.h"
- #include "llvm/Support/Path.h"
- #include "llvm/Support/PrettyStackTrace.h"
- #include "llvm/Support/Signals.h"
- #include "llvm/Support/SourceMgr.h"
- #include "llvm/Support/TargetRegistry.h"
- #include "llvm/Support/TargetSelect.h"
- #include "llvm/Support/Timer.h"
- #include "llvm/Support/raw_ostream.h"
- #include <memory>
- #include <system_error>
- using namespace clang;
- using namespace clang::driver;
- using namespace clang::driver::options;
- using namespace llvm;
- using namespace llvm::opt;
- namespace {
- /// \brief Helper class for representing a single invocation of the assembler.
- struct AssemblerInvocation {
- /// @name Target Options
- /// @{
- /// The name of the target triple to assemble for.
- std::string Triple;
- /// If given, the name of the target CPU to determine which instructions
- /// are legal.
- std::string CPU;
- /// The list of target specific features to enable or disable -- this should
- /// be a list of strings starting with '+' or '-'.
- std::vector<std::string> Features;
- /// @}
- /// @name Language Options
- /// @{
- std::vector<std::string> IncludePaths;
- unsigned NoInitialTextSection : 1;
- unsigned SaveTemporaryLabels : 1;
- unsigned GenDwarfForAssembly : 1;
- unsigned CompressDebugSections : 1;
- unsigned DwarfVersion;
- std::string DwarfDebugFlags;
- std::string DwarfDebugProducer;
- std::string DebugCompilationDir;
- std::string MainFileName;
- /// @}
- /// @name Frontend Options
- /// @{
- std::string InputFile;
- std::vector<std::string> LLVMArgs;
- std::string OutputPath;
- enum FileType {
- FT_Asm, ///< Assembly (.s) output, transliterate mode.
- FT_Null, ///< No output, for timing purposes.
- FT_Obj ///< Object file output.
- };
- FileType OutputType;
- unsigned ShowHelp : 1;
- unsigned ShowVersion : 1;
- /// @}
- /// @name Transliterate Options
- /// @{
- unsigned OutputAsmVariant;
- unsigned ShowEncoding : 1;
- unsigned ShowInst : 1;
- /// @}
- /// @name Assembler Options
- /// @{
- unsigned RelaxAll : 1;
- unsigned NoExecStack : 1;
- /// @}
- public:
- AssemblerInvocation() {
- Triple = "";
- NoInitialTextSection = 0;
- InputFile = "-";
- OutputPath = "-";
- OutputType = FT_Asm;
- OutputAsmVariant = 0;
- ShowInst = 0;
- ShowEncoding = 0;
- RelaxAll = 0;
- NoExecStack = 0;
- DwarfVersion = 3;
- }
- static bool CreateFromArgs(AssemblerInvocation &Res,
- ArrayRef<const char *> Argv,
- DiagnosticsEngine &Diags);
- };
- }
- bool AssemblerInvocation::CreateFromArgs(AssemblerInvocation &Opts,
- ArrayRef<const char *> Argv,
- DiagnosticsEngine &Diags) {
- bool Success = true;
- // Parse the arguments.
- std::unique_ptr<OptTable> OptTbl(createDriverOptTable());
- const unsigned IncludedFlagsBitmask = options::CC1AsOption;
- unsigned MissingArgIndex, MissingArgCount;
- std::unique_ptr<InputArgList> Args(
- OptTbl->ParseArgs(Argv.begin(), Argv.end(), MissingArgIndex, MissingArgCount,
- IncludedFlagsBitmask));
- // Check for missing argument error.
- if (MissingArgCount) {
- Diags.Report(diag::err_drv_missing_argument)
- << Args->getArgString(MissingArgIndex) << MissingArgCount;
- Success = false;
- }
- // Issue errors on unknown arguments.
- for (arg_iterator it = Args->filtered_begin(OPT_UNKNOWN),
- ie = Args->filtered_end();
- it != ie; ++it) {
- Diags.Report(diag::err_drv_unknown_argument) << (*it)->getAsString(*Args);
- Success = false;
- }
- // Construct the invocation.
- // Target Options
- Opts.Triple = llvm::Triple::normalize(Args->getLastArgValue(OPT_triple));
- Opts.CPU = Args->getLastArgValue(OPT_target_cpu);
- Opts.Features = Args->getAllArgValues(OPT_target_feature);
- // Use the default target triple if unspecified.
- if (Opts.Triple.empty())
- Opts.Triple = llvm::sys::getDefaultTargetTriple();
- // Language Options
- Opts.IncludePaths = Args->getAllArgValues(OPT_I);
- Opts.NoInitialTextSection = Args->hasArg(OPT_n);
- Opts.SaveTemporaryLabels = Args->hasArg(OPT_msave_temp_labels);
- Opts.GenDwarfForAssembly = Args->hasArg(OPT_g_Flag);
- Opts.CompressDebugSections = Args->hasArg(OPT_compress_debug_sections);
- if (Args->hasArg(OPT_gdwarf_2))
- Opts.DwarfVersion = 2;
- if (Args->hasArg(OPT_gdwarf_3))
- Opts.DwarfVersion = 3;
- if (Args->hasArg(OPT_gdwarf_4))
- Opts.DwarfVersion = 4;
- Opts.DwarfDebugFlags = Args->getLastArgValue(OPT_dwarf_debug_flags);
- Opts.DwarfDebugProducer = Args->getLastArgValue(OPT_dwarf_debug_producer);
- Opts.DebugCompilationDir = Args->getLastArgValue(OPT_fdebug_compilation_dir);
- Opts.MainFileName = Args->getLastArgValue(OPT_main_file_name);
- // Frontend Options
- if (Args->hasArg(OPT_INPUT)) {
- bool First = true;
- for (arg_iterator it = Args->filtered_begin(OPT_INPUT),
- ie = Args->filtered_end(); it != ie; ++it, First=false) {
- const Arg *A = it;
- if (First)
- Opts.InputFile = A->getValue();
- else {
- Diags.Report(diag::err_drv_unknown_argument) << A->getAsString(*Args);
- Success = false;
- }
- }
- }
- Opts.LLVMArgs = Args->getAllArgValues(OPT_mllvm);
- Opts.OutputPath = Args->getLastArgValue(OPT_o);
- if (Arg *A = Args->getLastArg(OPT_filetype)) {
- StringRef Name = A->getValue();
- unsigned OutputType = StringSwitch<unsigned>(Name)
- .Case("asm", FT_Asm)
- .Case("null", FT_Null)
- .Case("obj", FT_Obj)
- .Default(~0U);
- if (OutputType == ~0U) {
- Diags.Report(diag::err_drv_invalid_value)
- << A->getAsString(*Args) << Name;
- Success = false;
- } else
- Opts.OutputType = FileType(OutputType);
- }
- Opts.ShowHelp = Args->hasArg(OPT_help);
- Opts.ShowVersion = Args->hasArg(OPT_version);
- // Transliterate Options
- Opts.OutputAsmVariant =
- getLastArgIntValue(*Args.get(), OPT_output_asm_variant, 0, Diags);
- Opts.ShowEncoding = Args->hasArg(OPT_show_encoding);
- Opts.ShowInst = Args->hasArg(OPT_show_inst);
- // Assemble Options
- Opts.RelaxAll = Args->hasArg(OPT_mrelax_all);
- Opts.NoExecStack = Args->hasArg(OPT_mno_exec_stack);
- return Success;
- }
- static formatted_raw_ostream *GetOutputStream(AssemblerInvocation &Opts,
- DiagnosticsEngine &Diags,
- bool Binary) {
- if (Opts.OutputPath.empty())
- Opts.OutputPath = "-";
- // Make sure that the Out file gets unlinked from the disk if we get a
- // SIGINT.
- if (Opts.OutputPath != "-")
- sys::RemoveFileOnSignal(Opts.OutputPath);
- std::error_code EC;
- raw_fd_ostream *Out = new raw_fd_ostream(
- Opts.OutputPath, EC, (Binary ? sys::fs::F_None : sys::fs::F_Text));
- if (EC) {
- Diags.Report(diag::err_fe_unable_to_open_output) << Opts.OutputPath
- << EC.message();
- delete Out;
- return nullptr;
- }
- return new formatted_raw_ostream(*Out, formatted_raw_ostream::DELETE_STREAM);
- }
- static bool ExecuteAssembler(AssemblerInvocation &Opts,
- DiagnosticsEngine &Diags) {
- // Get the target specific parser.
- std::string Error;
- const Target *TheTarget = TargetRegistry::lookupTarget(Opts.Triple, Error);
- if (!TheTarget)
- return Diags.Report(diag::err_target_unknown_triple) << Opts.Triple;
- ErrorOr<std::unique_ptr<MemoryBuffer>> Buffer =
- MemoryBuffer::getFileOrSTDIN(Opts.InputFile);
- if (std::error_code EC = Buffer.getError()) {
- Error = EC.message();
- return Diags.Report(diag::err_fe_error_reading) << Opts.InputFile;
- }
- SourceMgr SrcMgr;
- // Tell SrcMgr about this buffer, which is what the parser will pick up.
- SrcMgr.AddNewSourceBuffer(std::move(*Buffer), SMLoc());
- // Record the location of the include directories so that the lexer can find
- // it later.
- SrcMgr.setIncludeDirs(Opts.IncludePaths);
- std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(Opts.Triple));
- assert(MRI && "Unable to create target register info!");
- std::unique_ptr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, Opts.Triple));
- assert(MAI && "Unable to create target asm info!");
- // Ensure MCAsmInfo initialization occurs before any use, otherwise sections
- // may be created with a combination of default and explicit settings.
- if (Opts.CompressDebugSections)
- MAI->setCompressDebugSections(true);
- bool IsBinary = Opts.OutputType == AssemblerInvocation::FT_Obj;
- std::unique_ptr<formatted_raw_ostream> Out(
- GetOutputStream(Opts, Diags, IsBinary));
- if (!Out)
- return true;
- // FIXME: This is not pretty. MCContext has a ptr to MCObjectFileInfo and
- // MCObjectFileInfo needs a MCContext reference in order to initialize itself.
- std::unique_ptr<MCObjectFileInfo> MOFI(new MCObjectFileInfo());
- MCContext Ctx(MAI.get(), MRI.get(), MOFI.get(), &SrcMgr);
- // FIXME: Assembler behavior can change with -static.
- MOFI->InitMCObjectFileInfo(Opts.Triple,
- Reloc::Default, CodeModel::Default, Ctx);
- if (Opts.SaveTemporaryLabels)
- Ctx.setAllowTemporaryLabels(false);
- if (Opts.GenDwarfForAssembly)
- Ctx.setGenDwarfForAssembly(true);
- if (!Opts.DwarfDebugFlags.empty())
- Ctx.setDwarfDebugFlags(StringRef(Opts.DwarfDebugFlags));
- if (!Opts.DwarfDebugProducer.empty())
- Ctx.setDwarfDebugProducer(StringRef(Opts.DwarfDebugProducer));
- if (!Opts.DebugCompilationDir.empty())
- Ctx.setCompilationDir(Opts.DebugCompilationDir);
- if (!Opts.MainFileName.empty())
- Ctx.setMainFileName(StringRef(Opts.MainFileName));
- Ctx.setDwarfVersion(Opts.DwarfVersion);
- // Build up the feature string from the target feature list.
- std::string FS;
- if (!Opts.Features.empty()) {
- FS = Opts.Features[0];
- for (unsigned i = 1, e = Opts.Features.size(); i != e; ++i)
- FS += "," + Opts.Features[i];
- }
- std::unique_ptr<MCStreamer> Str;
- std::unique_ptr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
- std::unique_ptr<MCSubtargetInfo> STI(
- TheTarget->createMCSubtargetInfo(Opts.Triple, Opts.CPU, FS));
- // FIXME: There is a bit of code duplication with addPassesToEmitFile.
- if (Opts.OutputType == AssemblerInvocation::FT_Asm) {
- MCInstPrinter *IP =
- TheTarget->createMCInstPrinter(Opts.OutputAsmVariant, *MAI, *MCII, *MRI,
- *STI);
- MCCodeEmitter *CE = nullptr;
- MCAsmBackend *MAB = nullptr;
- if (Opts.ShowEncoding) {
- CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
- MAB = TheTarget->createMCAsmBackend(*MRI, Opts.Triple, Opts.CPU);
- }
- Str.reset(TheTarget->createAsmStreamer(Ctx, *Out, /*asmverbose*/true,
- /*useDwarfDirectory*/ true,
- IP, CE, MAB,
- Opts.ShowInst));
- } else if (Opts.OutputType == AssemblerInvocation::FT_Null) {
- Str.reset(createNullStreamer(Ctx));
- } else {
- assert(Opts.OutputType == AssemblerInvocation::FT_Obj &&
- "Invalid file type!");
- MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
- MCAsmBackend *MAB = TheTarget->createMCAsmBackend(*MRI, Opts.Triple,
- Opts.CPU);
- Str.reset(TheTarget->createMCObjectStreamer(Opts.Triple, Ctx, *MAB, *Out,
- CE, *STI, Opts.RelaxAll,
- Opts.NoExecStack));
- Str.get()->InitSections();
- }
- bool Failed = false;
- std::unique_ptr<MCAsmParser> Parser(
- createMCAsmParser(SrcMgr, Ctx, *Str.get(), *MAI));
- // FIXME: init MCTargetOptions from sanitizer flags here.
- MCTargetOptions Options;
- std::unique_ptr<MCTargetAsmParser> TAP(
- TheTarget->createMCAsmParser(*STI, *Parser, *MCII, Options));
- if (!TAP)
- Failed = Diags.Report(diag::err_target_unknown_triple) << Opts.Triple;
- if (!Failed) {
- Parser->setTargetParser(*TAP.get());
- Failed = Parser->Run(Opts.NoInitialTextSection);
- }
- // Close the output stream early.
- Out.reset();
- // Delete output file if there were errors.
- if (Failed && Opts.OutputPath != "-")
- sys::fs::remove(Opts.OutputPath);
- return Failed;
- }
- static void LLVMErrorHandler(void *UserData, const std::string &Message,
- bool GenCrashDiag) {
- DiagnosticsEngine &Diags = *static_cast<DiagnosticsEngine*>(UserData);
- Diags.Report(diag::err_fe_error_backend) << Message;
- // We cannot recover from llvm errors.
- exit(1);
- }
- int cc1as_main(ArrayRef<const char *> Argv, const char *Argv0, void *MainAddr) {
- // Print a stack trace if we signal out.
- sys::PrintStackTraceOnErrorSignal();
- PrettyStackTraceProgram X(Argv.size(), Argv.data());
- llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
- // Initialize targets and assembly printers/parsers.
- InitializeAllTargetInfos();
- InitializeAllTargetMCs();
- InitializeAllAsmParsers();
- // Construct our diagnostic client.
- IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts = new DiagnosticOptions();
- TextDiagnosticPrinter *DiagClient
- = new TextDiagnosticPrinter(errs(), &*DiagOpts);
- DiagClient->setPrefix("clang -cc1as");
- IntrusiveRefCntPtr<DiagnosticIDs> DiagID(new DiagnosticIDs());
- DiagnosticsEngine Diags(DiagID, &*DiagOpts, DiagClient);
- // Set an error handler, so that any LLVM backend diagnostics go through our
- // error handler.
- ScopedFatalErrorHandler FatalErrorHandler
- (LLVMErrorHandler, static_cast<void*>(&Diags));
- // Parse the arguments.
- AssemblerInvocation Asm;
- if (!AssemblerInvocation::CreateFromArgs(Asm, Argv, Diags))
- return 1;
- if (Asm.ShowHelp) {
- std::unique_ptr<OptTable> Opts(driver::createDriverOptTable());
- Opts->PrintHelp(llvm::outs(), "clang -cc1as", "Clang Integrated Assembler",
- /*Include=*/driver::options::CC1AsOption, /*Exclude=*/0);
- return 0;
- }
- // Honor -version.
- //
- // FIXME: Use a better -version message?
- if (Asm.ShowVersion) {
- llvm::cl::PrintVersionMessage();
- return 0;
- }
- // Honor -mllvm.
- //
- // FIXME: Remove this, one day.
- if (!Asm.LLVMArgs.empty()) {
- unsigned NumArgs = Asm.LLVMArgs.size();
- const char **Args = new const char*[NumArgs + 2];
- Args[0] = "clang (LLVM option parsing)";
- for (unsigned i = 0; i != NumArgs; ++i)
- Args[i + 1] = Asm.LLVMArgs[i].c_str();
- Args[NumArgs + 1] = nullptr;
- llvm::cl::ParseCommandLineOptions(NumArgs + 1, Args);
- }
- // Execute the invocation, unless there were parsing errors.
- bool Failed = Diags.hasErrorOccurred() || ExecuteAssembler(Asm, Diags);
- // If any timers were active but haven't been destroyed yet, print their
- // results now.
- TimerGroup::printAll(errs());
- return !!Failed;
- }
|