2009-06-18 23:05:21 +00:00
|
|
|
//===-- llvm-mc.cpp - Machine Code Hacking Driver -------------------------===//
|
2009-06-18 23:04:45 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2009-06-18 23:05:21 +00:00
|
|
|
// This utility is a simple driver that allows command line hacking on machine
|
|
|
|
// code.
|
2009-06-18 23:04:45 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "Disassembler.h"
|
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
2011-07-25 23:24:55 +00:00
|
|
|
#include "llvm/MC/MCAsmBackend.h"
|
2012-04-15 22:00:22 +00:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
2009-08-27 00:51:57 +00:00
|
|
|
#include "llvm/MC/MCCodeEmitter.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/MC/MCContext.h"
|
2009-09-14 03:02:37 +00:00
|
|
|
#include "llvm/MC/MCInstPrinter.h"
|
2011-07-11 03:57:24 +00:00
|
|
|
#include "llvm/MC/MCInstrInfo.h"
|
2011-07-20 05:58:47 +00:00
|
|
|
#include "llvm/MC/MCObjectFileInfo.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/MC/MCParser/AsmLexer.h"
|
|
|
|
#include "llvm/MC/MCParser/MCAsmLexer.h"
|
2011-07-20 05:58:47 +00:00
|
|
|
#include "llvm/MC/MCRegisterInfo.h"
|
2009-08-10 18:15:01 +00:00
|
|
|
#include "llvm/MC/MCSectionMachO.h"
|
2009-06-24 00:52:40 +00:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2011-07-09 05:47:46 +00:00
|
|
|
#include "llvm/MC/MCSubtargetInfo.h"
|
2011-07-26 00:24:13 +00:00
|
|
|
#include "llvm/MC/MCTargetAsmParser.h"
|
2011-06-29 01:14:12 +00:00
|
|
|
#include "llvm/MC/SubtargetFeature.h"
|
2009-06-18 23:04:45 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2010-08-20 01:07:01 +00:00
|
|
|
#include "llvm/Support/FileUtilities.h"
|
2009-08-14 03:48:55 +00:00
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Support/Host.h"
|
2009-06-18 23:04:45 +00:00
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include "llvm/Support/PrettyStackTrace.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/Signals.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2011-08-24 18:08:43 +00:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
|
|
#include "llvm/Support/TargetSelect.h"
|
2012-12-04 10:44:52 +00:00
|
|
|
#include "llvm/Support/ToolOutputFile.h"
|
2010-12-09 17:36:48 +00:00
|
|
|
#include "llvm/Support/system_error.h"
|
2009-06-18 23:04:45 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
static cl::opt<std::string>
|
|
|
|
InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
|
|
|
|
|
|
|
|
static cl::opt<std::string>
|
|
|
|
OutputFilename("o", cl::desc("Output filename"),
|
|
|
|
cl::value_desc("filename"));
|
|
|
|
|
2009-08-27 07:56:39 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
ShowEncoding("show-encoding", cl::desc("Show instruction encodings"));
|
|
|
|
|
2010-02-03 18:18:30 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
ShowInst("show-inst", cl::desc("Show internal instruction representation"));
|
|
|
|
|
2010-08-11 06:37:09 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
ShowInstOperands("show-inst-operands",
|
|
|
|
cl::desc("Show instructions operands as parsed"));
|
|
|
|
|
2009-09-20 07:17:49 +00:00
|
|
|
static cl::opt<unsigned>
|
|
|
|
OutputAsmVariant("output-asm-variant",
|
|
|
|
cl::desc("Syntax variant to use for output printing"));
|
|
|
|
|
2010-03-25 22:49:09 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
RelaxAll("mc-relax-all", cl::desc("Relax all fixups"));
|
|
|
|
|
2012-11-23 17:37:34 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
DisableCFI("disable-cfi", cl::desc("Do not use .cfi_* directives"));
|
|
|
|
|
2011-01-23 17:55:27 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
NoExecStack("mc-no-exec-stack", cl::desc("File doesn't need an exec stack"));
|
|
|
|
|
llvm-mc: Start MCAssembler and MCMachOStreamer.
- Together these form the (Mach-O) back end of the assembler.
- MCAssembler is the actual assembler backend, which is designed to have a
reasonable API. This will eventually grow to support multiple object file
implementations, but for now its Mach-O/i386 only.
- MCMachOStreamer adapts the MCStreamer "actions" API to the MCAssembler API,
e.g. converting the various directives into fragments, managing state like
the current section, and so on.
- llvm-mc will use the new backend via '-filetype=obj', which may eventually
be, but is not yet, since I hear that people like assemblers which actually
assemble.
- The only thing that works at the moment is changing sections. For the time
being I have a Python Mach-O dumping tool in test/scripts so this stuff can
be easily tested, eventually I expect to replace this with a real LLVM tool.
- More doxyments to come.
I assume that since this stuff doesn't touch any of the things which are part of
2.6 that it is ok to put this in not so long before the freeze, but if someone
objects let me know, I can pull it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79612 91177308-0d34-0410-b5e6-96231b3b80d8
2009-08-21 09:11:24 +00:00
|
|
|
enum OutputFileType {
|
2010-03-23 23:47:12 +00:00
|
|
|
OFT_Null,
|
llvm-mc: Start MCAssembler and MCMachOStreamer.
- Together these form the (Mach-O) back end of the assembler.
- MCAssembler is the actual assembler backend, which is designed to have a
reasonable API. This will eventually grow to support multiple object file
implementations, but for now its Mach-O/i386 only.
- MCMachOStreamer adapts the MCStreamer "actions" API to the MCAssembler API,
e.g. converting the various directives into fragments, managing state like
the current section, and so on.
- llvm-mc will use the new backend via '-filetype=obj', which may eventually
be, but is not yet, since I hear that people like assemblers which actually
assemble.
- The only thing that works at the moment is changing sections. For the time
being I have a Python Mach-O dumping tool in test/scripts so this stuff can
be easily tested, eventually I expect to replace this with a real LLVM tool.
- More doxyments to come.
I assume that since this stuff doesn't touch any of the things which are part of
2.6 that it is ok to put this in not so long before the freeze, but if someone
objects let me know, I can pull it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79612 91177308-0d34-0410-b5e6-96231b3b80d8
2009-08-21 09:11:24 +00:00
|
|
|
OFT_AssemblyFile,
|
|
|
|
OFT_ObjectFile
|
|
|
|
};
|
|
|
|
static cl::opt<OutputFileType>
|
|
|
|
FileType("filetype", cl::init(OFT_AssemblyFile),
|
|
|
|
cl::desc("Choose an output file type:"),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(OFT_AssemblyFile, "asm",
|
|
|
|
"Emit an assembly ('.s') file"),
|
2010-03-23 23:47:12 +00:00
|
|
|
clEnumValN(OFT_Null, "null",
|
|
|
|
"Don't emit anything (for timing purposes)"),
|
llvm-mc: Start MCAssembler and MCMachOStreamer.
- Together these form the (Mach-O) back end of the assembler.
- MCAssembler is the actual assembler backend, which is designed to have a
reasonable API. This will eventually grow to support multiple object file
implementations, but for now its Mach-O/i386 only.
- MCMachOStreamer adapts the MCStreamer "actions" API to the MCAssembler API,
e.g. converting the various directives into fragments, managing state like
the current section, and so on.
- llvm-mc will use the new backend via '-filetype=obj', which may eventually
be, but is not yet, since I hear that people like assemblers which actually
assemble.
- The only thing that works at the moment is changing sections. For the time
being I have a Python Mach-O dumping tool in test/scripts so this stuff can
be easily tested, eventually I expect to replace this with a real LLVM tool.
- More doxyments to come.
I assume that since this stuff doesn't touch any of the things which are part of
2.6 that it is ok to put this in not so long before the freeze, but if someone
objects let me know, I can pull it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79612 91177308-0d34-0410-b5e6-96231b3b80d8
2009-08-21 09:11:24 +00:00
|
|
|
clEnumValN(OFT_ObjectFile, "obj",
|
|
|
|
"Emit a native object ('.o') file"),
|
|
|
|
clEnumValEnd));
|
|
|
|
|
2009-06-21 05:22:37 +00:00
|
|
|
static cl::list<std::string>
|
|
|
|
IncludeDirs("I", cl::desc("Directory of include files"),
|
|
|
|
cl::value_desc("directory"), cl::Prefix);
|
2009-06-18 23:04:45 +00:00
|
|
|
|
2010-03-13 02:20:38 +00:00
|
|
|
static cl::opt<std::string>
|
|
|
|
ArchName("arch", cl::desc("Target arch to assemble for, "
|
2011-06-17 20:35:21 +00:00
|
|
|
"see -version for available targets"));
|
2010-03-13 02:20:38 +00:00
|
|
|
|
2009-07-17 22:38:58 +00:00
|
|
|
static cl::opt<std::string>
|
2009-11-01 22:07:54 +00:00
|
|
|
TripleName("triple", cl::desc("Target triple to assemble for, "
|
2010-03-13 02:20:38 +00:00
|
|
|
"see -version for available targets"));
|
2009-07-17 22:38:58 +00:00
|
|
|
|
2010-10-30 15:57:50 +00:00
|
|
|
static cl::opt<std::string>
|
|
|
|
MCPU("mcpu",
|
|
|
|
cl::desc("Target a specific cpu type (-mcpu=help for details)"),
|
|
|
|
cl::value_desc("cpu-name"),
|
|
|
|
cl::init(""));
|
|
|
|
|
2011-09-07 17:24:38 +00:00
|
|
|
static cl::list<std::string>
|
|
|
|
MAttrs("mattr",
|
|
|
|
cl::CommaSeparated,
|
|
|
|
cl::desc("Target specific attributes (-mattr=help for details)"),
|
|
|
|
cl::value_desc("a1,+a2,-a3,..."));
|
|
|
|
|
2011-07-19 06:37:02 +00:00
|
|
|
static cl::opt<Reloc::Model>
|
|
|
|
RelocModel("relocation-model",
|
|
|
|
cl::desc("Choose relocation model"),
|
|
|
|
cl::init(Reloc::Default),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(Reloc::Default, "default",
|
|
|
|
"Target default relocation model"),
|
|
|
|
clEnumValN(Reloc::Static, "static",
|
|
|
|
"Non-relocatable code"),
|
|
|
|
clEnumValN(Reloc::PIC_, "pic",
|
|
|
|
"Fully relocatable, position independent code"),
|
|
|
|
clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic",
|
|
|
|
"Relocatable external references, non-relocatable code"),
|
|
|
|
clEnumValEnd));
|
|
|
|
|
2011-07-20 07:51:56 +00:00
|
|
|
static cl::opt<llvm::CodeModel::Model>
|
|
|
|
CMModel("code-model",
|
|
|
|
cl::desc("Choose code model"),
|
|
|
|
cl::init(CodeModel::Default),
|
|
|
|
cl::values(clEnumValN(CodeModel::Default, "default",
|
|
|
|
"Target default code model"),
|
|
|
|
clEnumValN(CodeModel::Small, "small",
|
|
|
|
"Small code model"),
|
|
|
|
clEnumValN(CodeModel::Kernel, "kernel",
|
|
|
|
"Kernel code model"),
|
|
|
|
clEnumValN(CodeModel::Medium, "medium",
|
|
|
|
"Medium code model"),
|
|
|
|
clEnumValN(CodeModel::Large, "large",
|
|
|
|
"Large code model"),
|
|
|
|
clEnumValEnd));
|
|
|
|
|
2010-03-13 02:20:57 +00:00
|
|
|
static cl::opt<bool>
|
2011-06-17 20:35:21 +00:00
|
|
|
NoInitialTextSection("n", cl::desc("Don't assume assembly file starts "
|
|
|
|
"in the text section"));
|
2010-03-13 02:20:57 +00:00
|
|
|
|
2011-03-28 22:49:15 +00:00
|
|
|
static cl::opt<bool>
|
2011-06-17 20:35:21 +00:00
|
|
|
SaveTempLabels("L", cl::desc("Don't discard temporary labels"));
|
2011-03-28 22:49:15 +00:00
|
|
|
|
2011-11-01 22:27:22 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
GenDwarfForAssembly("g", cl::desc("Generate dwarf debugging info for assembly "
|
|
|
|
"source files"));
|
|
|
|
|
2009-06-21 05:22:37 +00:00
|
|
|
enum ActionType {
|
2009-06-21 20:16:42 +00:00
|
|
|
AC_AsLex,
|
2009-12-17 01:49:59 +00:00
|
|
|
AC_Assemble,
|
2010-04-12 19:43:00 +00:00
|
|
|
AC_Disassemble,
|
2012-10-22 22:31:46 +00:00
|
|
|
AC_EDisassemble,
|
|
|
|
AC_MDisassemble
|
2009-06-21 05:22:37 +00:00
|
|
|
};
|
2009-06-18 23:04:45 +00:00
|
|
|
|
2009-06-21 05:22:37 +00:00
|
|
|
static cl::opt<ActionType>
|
|
|
|
Action(cl::desc("Action to perform:"),
|
2009-06-21 20:16:42 +00:00
|
|
|
cl::init(AC_Assemble),
|
|
|
|
cl::values(clEnumValN(AC_AsLex, "as-lex",
|
|
|
|
"Lex tokens from a .s file"),
|
|
|
|
clEnumValN(AC_Assemble, "assemble",
|
2009-06-21 05:22:37 +00:00
|
|
|
"Assemble a .s file (default)"),
|
2009-12-17 01:49:59 +00:00
|
|
|
clEnumValN(AC_Disassemble, "disassemble",
|
|
|
|
"Disassemble strings of hex bytes"),
|
2010-04-12 19:43:00 +00:00
|
|
|
clEnumValN(AC_EDisassemble, "edis",
|
|
|
|
"Enhanced disassembly of strings of hex bytes"),
|
2012-10-22 22:31:46 +00:00
|
|
|
clEnumValN(AC_MDisassemble, "mdis",
|
|
|
|
"Marked up disassembly of strings of hex bytes"),
|
2009-06-21 05:22:37 +00:00
|
|
|
clEnumValEnd));
|
2009-06-18 23:04:45 +00:00
|
|
|
|
2009-09-04 21:45:34 +00:00
|
|
|
static const Target *GetTarget(const char *ProgName) {
|
2010-03-13 02:20:38 +00:00
|
|
|
// Figure out the target triple.
|
|
|
|
if (TripleName.empty())
|
2011-11-01 21:32:20 +00:00
|
|
|
TripleName = sys::getDefaultTargetTriple();
|
2011-07-26 19:02:16 +00:00
|
|
|
Triple TheTriple(Triple::normalize(TripleName));
|
|
|
|
|
2012-05-08 23:38:45 +00:00
|
|
|
// Get the target specific parser.
|
|
|
|
std::string Error;
|
|
|
|
const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple,
|
|
|
|
Error);
|
|
|
|
if (!TheTarget) {
|
|
|
|
errs() << ProgName << ": " << Error;
|
|
|
|
return 0;
|
2010-03-13 02:20:38 +00:00
|
|
|
}
|
|
|
|
|
2012-05-08 23:38:45 +00:00
|
|
|
// Update the triple name and return the found target.
|
2011-07-26 19:02:16 +00:00
|
|
|
TripleName = TheTriple.getTriple();
|
|
|
|
return TheTarget;
|
2009-09-04 21:45:34 +00:00
|
|
|
}
|
|
|
|
|
2010-09-01 14:20:41 +00:00
|
|
|
static tool_output_file *GetOutputStream() {
|
2010-08-20 01:07:01 +00:00
|
|
|
if (OutputFilename == "")
|
|
|
|
OutputFilename = "-";
|
|
|
|
|
|
|
|
std::string Err;
|
|
|
|
tool_output_file *Out = new tool_output_file(OutputFilename.c_str(), Err,
|
|
|
|
raw_fd_ostream::F_Binary);
|
|
|
|
if (!Err.empty()) {
|
|
|
|
errs() << Err << '\n';
|
|
|
|
delete Out;
|
|
|
|
return 0;
|
|
|
|
}
|
2010-09-01 14:20:41 +00:00
|
|
|
|
|
|
|
return Out;
|
2010-08-20 01:07:01 +00:00
|
|
|
}
|
|
|
|
|
2011-12-09 18:09:40 +00:00
|
|
|
static std::string DwarfDebugFlags;
|
|
|
|
static void setDwarfDebugFlags(int argc, char **argv) {
|
|
|
|
if (!getenv("RC_DEBUG_OPTIONS"))
|
|
|
|
return;
|
|
|
|
for (int i = 0; i < argc; i++) {
|
|
|
|
DwarfDebugFlags += argv[i];
|
|
|
|
if (i + 1 < argc)
|
|
|
|
DwarfDebugFlags += " ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-16 11:32:10 +00:00
|
|
|
static int AsLexInput(SourceMgr &SrcMgr, MCAsmInfo &MAI, tool_output_file *Out) {
|
2009-09-04 21:45:34 +00:00
|
|
|
|
2012-04-16 11:32:10 +00:00
|
|
|
AsmLexer Lexer(MAI);
|
2010-07-18 18:31:28 +00:00
|
|
|
Lexer.setBuffer(SrcMgr.getMemoryBuffer(0));
|
|
|
|
|
2009-06-21 20:16:42 +00:00
|
|
|
bool Error = false;
|
2009-07-28 16:56:42 +00:00
|
|
|
while (Lexer.Lex().isNot(AsmToken::Eof)) {
|
2010-10-25 20:18:46 +00:00
|
|
|
AsmToken Tok = Lexer.getTok();
|
|
|
|
|
|
|
|
switch (Tok.getKind()) {
|
2009-06-21 20:16:42 +00:00
|
|
|
default:
|
2011-10-16 05:43:57 +00:00
|
|
|
SrcMgr.PrintMessage(Lexer.getLoc(), SourceMgr::DK_Warning,
|
|
|
|
"unknown token");
|
2009-06-21 20:16:42 +00:00
|
|
|
Error = true;
|
|
|
|
break;
|
2009-07-28 16:08:33 +00:00
|
|
|
case AsmToken::Error:
|
2009-06-21 20:16:42 +00:00
|
|
|
Error = true; // error already printed.
|
2009-06-21 19:21:25 +00:00
|
|
|
break;
|
2009-07-28 16:08:33 +00:00
|
|
|
case AsmToken::Identifier:
|
2010-10-25 20:18:46 +00:00
|
|
|
Out->os() << "identifier: " << Lexer.getTok().getString();
|
2009-06-21 07:19:10 +00:00
|
|
|
break;
|
2009-07-28 16:08:33 +00:00
|
|
|
case AsmToken::Integer:
|
2010-10-25 20:18:46 +00:00
|
|
|
Out->os() << "int: " << Lexer.getTok().getString();
|
2009-06-21 07:19:10 +00:00
|
|
|
break;
|
2010-09-24 01:59:31 +00:00
|
|
|
case AsmToken::Real:
|
2010-10-25 20:18:46 +00:00
|
|
|
Out->os() << "real: " << Lexer.getTok().getString();
|
2010-09-24 01:59:31 +00:00
|
|
|
break;
|
2010-09-16 00:42:35 +00:00
|
|
|
case AsmToken::Register:
|
2010-10-25 20:18:46 +00:00
|
|
|
Out->os() << "register: " << Lexer.getTok().getRegVal();
|
2010-09-16 00:42:35 +00:00
|
|
|
break;
|
|
|
|
case AsmToken::String:
|
2010-10-25 20:18:46 +00:00
|
|
|
Out->os() << "string: " << Lexer.getTok().getString();
|
2010-09-16 00:42:35 +00:00
|
|
|
break;
|
2009-07-01 06:56:54 +00:00
|
|
|
|
2010-10-25 20:18:46 +00:00
|
|
|
case AsmToken::Amp: Out->os() << "Amp"; break;
|
|
|
|
case AsmToken::AmpAmp: Out->os() << "AmpAmp"; break;
|
|
|
|
case AsmToken::At: Out->os() << "At"; break;
|
|
|
|
case AsmToken::Caret: Out->os() << "Caret"; break;
|
|
|
|
case AsmToken::Colon: Out->os() << "Colon"; break;
|
|
|
|
case AsmToken::Comma: Out->os() << "Comma"; break;
|
|
|
|
case AsmToken::Dollar: Out->os() << "Dollar"; break;
|
|
|
|
case AsmToken::Dot: Out->os() << "Dot"; break;
|
|
|
|
case AsmToken::EndOfStatement: Out->os() << "EndOfStatement"; break;
|
|
|
|
case AsmToken::Eof: Out->os() << "Eof"; break;
|
|
|
|
case AsmToken::Equal: Out->os() << "Equal"; break;
|
|
|
|
case AsmToken::EqualEqual: Out->os() << "EqualEqual"; break;
|
|
|
|
case AsmToken::Exclaim: Out->os() << "Exclaim"; break;
|
|
|
|
case AsmToken::ExclaimEqual: Out->os() << "ExclaimEqual"; break;
|
|
|
|
case AsmToken::Greater: Out->os() << "Greater"; break;
|
|
|
|
case AsmToken::GreaterEqual: Out->os() << "GreaterEqual"; break;
|
|
|
|
case AsmToken::GreaterGreater: Out->os() << "GreaterGreater"; break;
|
|
|
|
case AsmToken::Hash: Out->os() << "Hash"; break;
|
|
|
|
case AsmToken::LBrac: Out->os() << "LBrac"; break;
|
|
|
|
case AsmToken::LCurly: Out->os() << "LCurly"; break;
|
|
|
|
case AsmToken::LParen: Out->os() << "LParen"; break;
|
|
|
|
case AsmToken::Less: Out->os() << "Less"; break;
|
|
|
|
case AsmToken::LessEqual: Out->os() << "LessEqual"; break;
|
|
|
|
case AsmToken::LessGreater: Out->os() << "LessGreater"; break;
|
|
|
|
case AsmToken::LessLess: Out->os() << "LessLess"; break;
|
|
|
|
case AsmToken::Minus: Out->os() << "Minus"; break;
|
|
|
|
case AsmToken::Percent: Out->os() << "Percent"; break;
|
|
|
|
case AsmToken::Pipe: Out->os() << "Pipe"; break;
|
|
|
|
case AsmToken::PipePipe: Out->os() << "PipePipe"; break;
|
|
|
|
case AsmToken::Plus: Out->os() << "Plus"; break;
|
|
|
|
case AsmToken::RBrac: Out->os() << "RBrac"; break;
|
|
|
|
case AsmToken::RCurly: Out->os() << "RCurly"; break;
|
|
|
|
case AsmToken::RParen: Out->os() << "RParen"; break;
|
|
|
|
case AsmToken::Slash: Out->os() << "Slash"; break;
|
|
|
|
case AsmToken::Star: Out->os() << "Star"; break;
|
|
|
|
case AsmToken::Tilde: Out->os() << "Tilde"; break;
|
2009-06-21 07:19:10 +00:00
|
|
|
}
|
2010-10-25 20:18:46 +00:00
|
|
|
|
|
|
|
// Print the token string.
|
|
|
|
Out->os() << " (\"";
|
|
|
|
Out->os().write_escaped(Tok.getString());
|
|
|
|
Out->os() << "\")\n";
|
2009-06-21 07:19:10 +00:00
|
|
|
}
|
2009-08-11 04:34:48 +00:00
|
|
|
|
2010-08-20 01:07:01 +00:00
|
|
|
return Error;
|
2009-08-11 04:34:48 +00:00
|
|
|
}
|
|
|
|
|
2012-04-16 11:32:10 +00:00
|
|
|
static int AssembleInput(const char *ProgName, const Target *TheTarget,
|
|
|
|
SourceMgr &SrcMgr, MCContext &Ctx, MCStreamer &Str,
|
|
|
|
MCAsmInfo &MAI, MCSubtargetInfo &STI) {
|
|
|
|
OwningPtr<MCAsmParser> Parser(createMCAsmParser(SrcMgr, Ctx,
|
|
|
|
Str, MAI));
|
|
|
|
OwningPtr<MCTargetAsmParser> TAP(TheTarget->createMCAsmParser(STI, *Parser));
|
|
|
|
if (!TAP) {
|
|
|
|
errs() << ProgName
|
|
|
|
<< ": error: this target does not support assembly parsing.\n";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Parser->setShowParsedOperands(ShowInstOperands);
|
|
|
|
Parser->setTargetParser(*TAP.get());
|
|
|
|
|
|
|
|
int Res = Parser->Run(NoInitialTextSection);
|
|
|
|
|
|
|
|
return Res;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
// Print a stack trace if we signal out.
|
|
|
|
sys::PrintStackTraceOnErrorSignal();
|
|
|
|
PrettyStackTraceProgram X(argc, argv);
|
|
|
|
llvm_shutdown_obj Y; // Call llvm_shutdown() on exit.
|
|
|
|
|
|
|
|
// Initialize targets and assembly printers/parsers.
|
|
|
|
llvm::InitializeAllTargetInfos();
|
|
|
|
llvm::InitializeAllTargetMCs();
|
|
|
|
llvm::InitializeAllAsmParsers();
|
|
|
|
llvm::InitializeAllDisassemblers();
|
|
|
|
|
|
|
|
// Register the target printer for --version.
|
|
|
|
cl::AddExtraVersionPrinter(TargetRegistry::printRegisteredTargetsForVersion);
|
|
|
|
|
|
|
|
cl::ParseCommandLineOptions(argc, argv, "llvm machine code playground\n");
|
|
|
|
TripleName = Triple::normalize(TripleName);
|
|
|
|
setDwarfDebugFlags(argc, argv);
|
|
|
|
|
|
|
|
const char *ProgName = argv[0];
|
2009-08-14 03:48:55 +00:00
|
|
|
const Target *TheTarget = GetTarget(ProgName);
|
|
|
|
if (!TheTarget)
|
|
|
|
return 1;
|
|
|
|
|
2010-12-16 03:29:14 +00:00
|
|
|
OwningPtr<MemoryBuffer> BufferPtr;
|
|
|
|
if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename, BufferPtr)) {
|
2010-12-09 17:36:48 +00:00
|
|
|
errs() << ProgName << ": " << ec.message() << '\n';
|
2009-06-21 20:16:42 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2010-12-16 03:29:14 +00:00
|
|
|
MemoryBuffer *Buffer = BufferPtr.take();
|
2011-05-09 20:05:25 +00:00
|
|
|
|
2009-06-21 20:16:42 +00:00
|
|
|
SourceMgr SrcMgr;
|
2011-05-09 20:05:25 +00:00
|
|
|
|
2009-08-19 16:25:53 +00:00
|
|
|
// Tell SrcMgr about this buffer, which is what the parser will pick up.
|
2009-06-21 20:16:42 +00:00
|
|
|
SrcMgr.AddNewSourceBuffer(Buffer, SMLoc());
|
2011-05-09 20:05:25 +00:00
|
|
|
|
2009-06-21 20:16:42 +00:00
|
|
|
// Record the location of the include directories so that the lexer can find
|
|
|
|
// it later.
|
|
|
|
SrcMgr.setIncludeDirs(IncludeDirs);
|
2011-05-09 20:05:25 +00:00
|
|
|
|
|
|
|
|
2011-07-14 23:50:31 +00:00
|
|
|
llvm::OwningPtr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(TripleName));
|
2010-03-11 22:53:35 +00:00
|
|
|
assert(MAI && "Unable to create target asm info!");
|
2011-05-09 20:05:25 +00:00
|
|
|
|
2011-07-18 20:57:22 +00:00
|
|
|
llvm::OwningPtr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
|
|
|
|
assert(MRI && "Unable to create target register info!");
|
|
|
|
|
2011-07-20 05:58:47 +00:00
|
|
|
// FIXME: This is not pretty. MCContext has a ptr to MCObjectFileInfo and
|
|
|
|
// MCObjectFileInfo needs a MCContext reference in order to initialize itself.
|
|
|
|
OwningPtr<MCObjectFileInfo> MOFI(new MCObjectFileInfo());
|
2012-01-26 23:20:07 +00:00
|
|
|
MCContext Ctx(*MAI, *MRI, MOFI.get(), &SrcMgr);
|
2011-07-20 19:50:42 +00:00
|
|
|
MOFI->InitMCObjectFileInfo(TripleName, RelocModel, CMModel, Ctx);
|
2011-07-20 05:58:47 +00:00
|
|
|
|
2011-03-28 22:49:15 +00:00
|
|
|
if (SaveTempLabels)
|
|
|
|
Ctx.setAllowTemporaryLabels(false);
|
2010-12-10 07:39:47 +00:00
|
|
|
|
2011-11-01 22:27:22 +00:00
|
|
|
Ctx.setGenDwarfForAssembly(GenDwarfForAssembly);
|
2011-12-09 18:09:40 +00:00
|
|
|
if (!DwarfDebugFlags.empty())
|
|
|
|
Ctx.setDwarfDebugFlags(StringRef(DwarfDebugFlags));
|
2011-11-01 22:27:22 +00:00
|
|
|
|
2011-09-07 17:24:38 +00:00
|
|
|
// Package up features to be passed to target/subtarget
|
|
|
|
std::string FeaturesStr;
|
|
|
|
if (MAttrs.size()) {
|
|
|
|
SubtargetFeatures Features;
|
|
|
|
for (unsigned i = 0; i != MAttrs.size(); ++i)
|
|
|
|
Features.AddFeature(MAttrs[i]);
|
|
|
|
FeaturesStr = Features.getString();
|
|
|
|
}
|
|
|
|
|
2010-09-01 14:20:41 +00:00
|
|
|
OwningPtr<tool_output_file> Out(GetOutputStream());
|
2010-08-20 01:07:01 +00:00
|
|
|
if (!Out)
|
|
|
|
return 1;
|
|
|
|
|
2010-09-01 14:20:41 +00:00
|
|
|
formatted_raw_ostream FOS(Out->os());
|
llvm-mc: Start MCAssembler and MCMachOStreamer.
- Together these form the (Mach-O) back end of the assembler.
- MCAssembler is the actual assembler backend, which is designed to have a
reasonable API. This will eventually grow to support multiple object file
implementations, but for now its Mach-O/i386 only.
- MCMachOStreamer adapts the MCStreamer "actions" API to the MCAssembler API,
e.g. converting the various directives into fragments, managing state like
the current section, and so on.
- llvm-mc will use the new backend via '-filetype=obj', which may eventually
be, but is not yet, since I hear that people like assemblers which actually
assemble.
- The only thing that works at the moment is changing sections. For the time
being I have a Python Mach-O dumping tool in test/scripts so this stuff can
be easily tested, eventually I expect to replace this with a real LLVM tool.
- More doxyments to come.
I assume that since this stuff doesn't touch any of the things which are part of
2.6 that it is ok to put this in not so long before the freeze, but if someone
objects let me know, I can pull it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79612 91177308-0d34-0410-b5e6-96231b3b80d8
2009-08-21 09:11:24 +00:00
|
|
|
OwningPtr<MCStreamer> Str;
|
2009-08-17 04:23:44 +00:00
|
|
|
|
2011-07-11 03:57:24 +00:00
|
|
|
OwningPtr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
|
2011-07-09 05:47:46 +00:00
|
|
|
OwningPtr<MCSubtargetInfo>
|
|
|
|
STI(TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr));
|
|
|
|
|
2012-10-22 22:31:46 +00:00
|
|
|
MCInstPrinter *IP;
|
2009-09-04 21:45:34 +00:00
|
|
|
if (FileType == OFT_AssemblyFile) {
|
2012-10-22 22:31:46 +00:00
|
|
|
IP =
|
2012-04-02 06:09:36 +00:00
|
|
|
TheTarget->createMCInstPrinter(OutputAsmVariant, *MAI, *MCII, *MRI, *STI);
|
2010-07-29 17:48:06 +00:00
|
|
|
MCCodeEmitter *CE = 0;
|
2011-07-25 23:24:55 +00:00
|
|
|
MCAsmBackend *MAB = 0;
|
2010-12-16 03:05:59 +00:00
|
|
|
if (ShowEncoding) {
|
2012-05-15 17:35:52 +00:00
|
|
|
CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
|
2012-09-18 16:08:49 +00:00
|
|
|
MAB = TheTarget->createMCAsmBackend(TripleName, MCPU);
|
2010-12-16 03:05:59 +00:00
|
|
|
}
|
2012-11-23 17:37:34 +00:00
|
|
|
bool UseCFI = !DisableCFI;
|
2010-12-10 07:39:47 +00:00
|
|
|
Str.reset(TheTarget->createAsmStreamer(Ctx, FOS, /*asmverbose*/true,
|
2011-04-30 03:44:37 +00:00
|
|
|
/*useLoc*/ true,
|
2012-11-23 17:37:34 +00:00
|
|
|
UseCFI,
|
2011-10-17 23:05:28 +00:00
|
|
|
/*useDwarfDirectory*/ true,
|
|
|
|
IP, CE, MAB, ShowInst));
|
2011-12-05 23:20:14 +00:00
|
|
|
|
2010-03-23 23:47:12 +00:00
|
|
|
} else if (FileType == OFT_Null) {
|
|
|
|
Str.reset(createNullStreamer(Ctx));
|
llvm-mc: Start MCAssembler and MCMachOStreamer.
- Together these form the (Mach-O) back end of the assembler.
- MCAssembler is the actual assembler backend, which is designed to have a
reasonable API. This will eventually grow to support multiple object file
implementations, but for now its Mach-O/i386 only.
- MCMachOStreamer adapts the MCStreamer "actions" API to the MCAssembler API,
e.g. converting the various directives into fragments, managing state like
the current section, and so on.
- llvm-mc will use the new backend via '-filetype=obj', which may eventually
be, but is not yet, since I hear that people like assemblers which actually
assemble.
- The only thing that works at the moment is changing sections. For the time
being I have a Python Mach-O dumping tool in test/scripts so this stuff can
be easily tested, eventually I expect to replace this with a real LLVM tool.
- More doxyments to come.
I assume that since this stuff doesn't touch any of the things which are part of
2.6 that it is ok to put this in not so long before the freeze, but if someone
objects let me know, I can pull it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79612 91177308-0d34-0410-b5e6-96231b3b80d8
2009-08-21 09:11:24 +00:00
|
|
|
} else {
|
|
|
|
assert(FileType == OFT_ObjectFile && "Invalid file type!");
|
2012-05-15 17:35:52 +00:00
|
|
|
MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
|
2012-09-18 16:08:49 +00:00
|
|
|
MCAsmBackend *MAB = TheTarget->createMCAsmBackend(TripleName, MCPU);
|
2011-07-26 00:42:34 +00:00
|
|
|
Str.reset(TheTarget->createMCObjectStreamer(TripleName, Ctx, *MAB,
|
|
|
|
FOS, CE, RelaxAll,
|
|
|
|
NoExecStack));
|
llvm-mc: Start MCAssembler and MCMachOStreamer.
- Together these form the (Mach-O) back end of the assembler.
- MCAssembler is the actual assembler backend, which is designed to have a
reasonable API. This will eventually grow to support multiple object file
implementations, but for now its Mach-O/i386 only.
- MCMachOStreamer adapts the MCStreamer "actions" API to the MCAssembler API,
e.g. converting the various directives into fragments, managing state like
the current section, and so on.
- llvm-mc will use the new backend via '-filetype=obj', which may eventually
be, but is not yet, since I hear that people like assemblers which actually
assemble.
- The only thing that works at the moment is changing sections. For the time
being I have a Python Mach-O dumping tool in test/scripts so this stuff can
be easily tested, eventually I expect to replace this with a real LLVM tool.
- More doxyments to come.
I assume that since this stuff doesn't touch any of the things which are part of
2.6 that it is ok to put this in not so long before the freeze, but if someone
objects let me know, I can pull it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79612 91177308-0d34-0410-b5e6-96231b3b80d8
2009-08-21 09:11:24 +00:00
|
|
|
}
|
2009-06-24 23:30:00 +00:00
|
|
|
|
2012-04-16 11:32:10 +00:00
|
|
|
int Res = 1;
|
2009-06-21 05:22:37 +00:00
|
|
|
switch (Action) {
|
2009-06-21 20:16:42 +00:00
|
|
|
case AC_AsLex:
|
2012-04-16 11:32:10 +00:00
|
|
|
Res = AsLexInput(SrcMgr, *MAI, Out.get());
|
|
|
|
break;
|
2009-06-21 05:22:37 +00:00
|
|
|
case AC_Assemble:
|
2012-04-16 11:32:10 +00:00
|
|
|
Res = AssembleInput(ProgName, TheTarget, SrcMgr, Ctx, *Str, *MAI, *STI);
|
|
|
|
break;
|
2012-10-22 22:31:46 +00:00
|
|
|
case AC_MDisassemble:
|
|
|
|
IP->setUseMarkup(1);
|
|
|
|
// Fall through to do disassembly.
|
2009-12-17 01:49:59 +00:00
|
|
|
case AC_Disassemble:
|
2012-04-16 11:32:10 +00:00
|
|
|
Res = Disassembler::disassemble(*TheTarget, TripleName, *STI, *Str,
|
|
|
|
*Buffer, SrcMgr, Out->os());
|
|
|
|
break;
|
2010-04-12 19:43:00 +00:00
|
|
|
case AC_EDisassemble:
|
2012-04-16 11:32:10 +00:00
|
|
|
Res = Disassembler::disassembleEnhanced(TripleName, *Buffer, SrcMgr, Out->os());
|
|
|
|
break;
|
2009-06-21 05:22:37 +00:00
|
|
|
}
|
2012-04-16 11:32:10 +00:00
|
|
|
|
|
|
|
// Keep output if no errors.
|
|
|
|
if (Res == 0) Out->keep();
|
|
|
|
return Res;
|
2009-06-18 23:04:45 +00:00
|
|
|
}
|