2011-07-06 22:01:53 +00:00
|
|
|
//===-- X86MCTargetDesc.h - X86 Target Descriptions -------------*- C++ -*-===//
|
2011-06-24 01:44:41 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file provides X86 specific target descriptions.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_X86_MCTARGETDESC_X86MCTARGETDESC_H
|
|
|
|
#define LLVM_LIB_TARGET_X86_MCTARGETDESC_X86MCTARGETDESC_H
|
2011-06-24 23:59:54 +00:00
|
|
|
|
2011-07-25 20:13:36 +00:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2011-07-07 21:06:52 +00:00
|
|
|
#include <string>
|
|
|
|
|
2011-06-24 20:42:09 +00:00
|
|
|
namespace llvm {
|
2011-07-25 23:24:55 +00:00
|
|
|
class MCAsmBackend;
|
2011-07-25 18:43:53 +00:00
|
|
|
class MCCodeEmitter;
|
|
|
|
class MCContext;
|
|
|
|
class MCInstrInfo;
|
2011-07-25 19:33:48 +00:00
|
|
|
class MCObjectWriter;
|
2011-07-18 20:57:22 +00:00
|
|
|
class MCRegisterInfo;
|
2011-07-08 01:53:10 +00:00
|
|
|
class MCSubtargetInfo;
|
Add MCSymbolizer for symbolic/annotated disassembly.
This is a basic first step towards symbolization of disassembled
instructions. This used to be done using externally provided (C API)
callbacks. This patch introduces:
- the MCSymbolizer class, that mimics the same functions that were used
in the X86 and ARM disassemblers to symbolize immediate operands and
to annotate loads based off PC (for things like c string literals).
- the MCExternalSymbolizer class, which implements the old C API.
- the MCRelocationInfo class, which provides a way for targets to
translate relocations (either object::RelocationRef, or disassembler
C API VariantKinds) to MCExprs.
- the MCObjectSymbolizer class, which does symbolization using what it
finds in an object::ObjectFile. This makes simple symbolization (with
no fancy relocation stuff) work for all object formats!
- x86-64 Mach-O and ELF MCRelocationInfos.
- A basic ARM Mach-O MCRelocationInfo, that provides just enough to
support the C API VariantKinds.
Most of what works in otool (the only user of the old symbolization API
that I know of) for x86-64 symbolic disassembly (-tvV) works, namely:
- symbol references: call _foo; jmp 15 <_foo+50>
- relocations: call _foo-_bar; call _foo-4
- __cf?string: leaq 193(%rip), %rax ## literal pool for "hello"
Stub support is the main missing part (because libObject doesn't know,
among other things, about mach-o indirect symbols).
As for the MCSymbolizer API, instead of relying on the disassemblers
to call the tryAdding* methods, maybe this could be done automagically
using InstrInfo? For instance, even though PC-relative LEAs are used
to get the address of string literals in a typical Mach-O file, a MOV
would be used in an ELF file. And right now, the explicit symbolization
only recognizes PC-relative LEAs. InstrInfo should have already have
most of what is needed to know what to symbolize, so this can
definitely be improved.
I'd also like to remove object::RelocationRef::getValueString (it seems
only used by relocation printing in objdump), as simply printing the
created MCExpr is definitely enough (and cleaner than string concats).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182625 91177308-0d34-0410-b5e6-96231b3b80d8
2013-05-24 00:39:57 +00:00
|
|
|
class MCRelocationInfo;
|
2014-04-27 03:48:12 +00:00
|
|
|
class MCStreamer;
|
2011-06-24 20:42:09 +00:00
|
|
|
class Target;
|
2014-06-10 22:34:28 +00:00
|
|
|
class Triple;
|
2011-07-07 21:06:52 +00:00
|
|
|
class StringRef;
|
2011-07-25 19:33:48 +00:00
|
|
|
class raw_ostream;
|
2015-04-14 22:14:34 +00:00
|
|
|
class raw_pwrite_stream;
|
2011-06-24 20:42:09 +00:00
|
|
|
|
|
|
|
extern Target TheX86_32Target, TheX86_64Target;
|
2011-07-07 21:06:52 +00:00
|
|
|
|
2015-04-09 17:10:57 +00:00
|
|
|
/// Flavour of dwarf regnumbers
|
2011-07-18 20:57:22 +00:00
|
|
|
///
|
|
|
|
namespace DWARFFlavour {
|
|
|
|
enum {
|
|
|
|
X86_64 = 0, X86_32_DarwinEH = 1, X86_32_Generic = 2
|
|
|
|
};
|
2014-12-04 05:20:33 +00:00
|
|
|
}
|
|
|
|
|
2015-04-09 17:10:57 +00:00
|
|
|
/// Native X86 register numbers
|
2011-07-18 20:57:22 +00:00
|
|
|
///
|
|
|
|
namespace N86 {
|
|
|
|
enum {
|
|
|
|
EAX = 0, ECX = 1, EDX = 2, EBX = 3, ESP = 4, EBP = 5, ESI = 6, EDI = 7
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-07-07 21:06:52 +00:00
|
|
|
namespace X86_MC {
|
|
|
|
std::string ParseX86Triple(StringRef TT);
|
|
|
|
|
2014-06-10 22:34:28 +00:00
|
|
|
unsigned getDwarfRegFlavour(Triple TT, bool isEH);
|
2011-07-18 20:57:22 +00:00
|
|
|
|
|
|
|
void InitLLVM2SEHRegisterMapping(MCRegisterInfo *MRI);
|
|
|
|
|
2015-04-09 17:10:57 +00:00
|
|
|
/// Create a X86 MCSubtargetInfo instance. This is exposed so Asm parser, etc.
|
|
|
|
/// do not need to go through TargetRegistry.
|
2011-07-08 01:53:10 +00:00
|
|
|
MCSubtargetInfo *createX86MCSubtargetInfo(StringRef TT, StringRef CPU,
|
|
|
|
StringRef FS);
|
2011-07-07 21:06:52 +00:00
|
|
|
}
|
2011-07-08 01:53:10 +00:00
|
|
|
|
2011-07-25 18:43:53 +00:00
|
|
|
MCCodeEmitter *createX86MCCodeEmitter(const MCInstrInfo &MCII,
|
2012-05-15 17:35:52 +00:00
|
|
|
const MCRegisterInfo &MRI,
|
2011-07-25 18:43:53 +00:00
|
|
|
MCContext &Ctx);
|
|
|
|
|
2013-09-09 02:37:14 +00:00
|
|
|
MCAsmBackend *createX86_32AsmBackend(const Target &T, const MCRegisterInfo &MRI,
|
|
|
|
StringRef TT, StringRef CPU);
|
|
|
|
MCAsmBackend *createX86_64AsmBackend(const Target &T, const MCRegisterInfo &MRI,
|
|
|
|
StringRef TT, StringRef CPU);
|
2011-07-25 19:33:48 +00:00
|
|
|
|
2015-03-19 01:50:16 +00:00
|
|
|
/// Construct an X86 Windows COFF machine code streamer which will generate
|
|
|
|
/// PE/COFF format object files.
|
2014-04-27 03:48:12 +00:00
|
|
|
///
|
|
|
|
/// Takes ownership of \p AB and \p CE.
|
|
|
|
MCStreamer *createX86WinCOFFStreamer(MCContext &C, MCAsmBackend &AB,
|
2015-04-14 22:14:34 +00:00
|
|
|
raw_pwrite_stream &OS, MCCodeEmitter *CE,
|
2014-04-27 03:48:12 +00:00
|
|
|
bool RelaxAll);
|
|
|
|
|
2015-04-09 17:10:57 +00:00
|
|
|
/// Construct an X86 Mach-O object writer.
|
2015-04-14 22:14:34 +00:00
|
|
|
MCObjectWriter *createX86MachObjectWriter(raw_pwrite_stream &OS, bool Is64Bit,
|
2011-07-25 19:33:48 +00:00
|
|
|
uint32_t CPUType,
|
|
|
|
uint32_t CPUSubtype);
|
2011-07-25 18:43:53 +00:00
|
|
|
|
2015-04-09 17:10:57 +00:00
|
|
|
/// Construct an X86 ELF object writer.
|
2015-04-14 22:14:34 +00:00
|
|
|
MCObjectWriter *createX86ELFObjectWriter(raw_pwrite_stream &OS, bool IsELF64,
|
2015-04-09 18:32:58 +00:00
|
|
|
uint8_t OSABI, uint16_t EMachine);
|
2015-04-09 17:10:57 +00:00
|
|
|
/// Construct an X86 Win COFF object writer.
|
2015-04-14 22:14:34 +00:00
|
|
|
MCObjectWriter *createX86WinCOFFObjectWriter(raw_pwrite_stream &OS,
|
|
|
|
bool Is64Bit);
|
Add MCSymbolizer for symbolic/annotated disassembly.
This is a basic first step towards symbolization of disassembled
instructions. This used to be done using externally provided (C API)
callbacks. This patch introduces:
- the MCSymbolizer class, that mimics the same functions that were used
in the X86 and ARM disassemblers to symbolize immediate operands and
to annotate loads based off PC (for things like c string literals).
- the MCExternalSymbolizer class, which implements the old C API.
- the MCRelocationInfo class, which provides a way for targets to
translate relocations (either object::RelocationRef, or disassembler
C API VariantKinds) to MCExprs.
- the MCObjectSymbolizer class, which does symbolization using what it
finds in an object::ObjectFile. This makes simple symbolization (with
no fancy relocation stuff) work for all object formats!
- x86-64 Mach-O and ELF MCRelocationInfos.
- A basic ARM Mach-O MCRelocationInfo, that provides just enough to
support the C API VariantKinds.
Most of what works in otool (the only user of the old symbolization API
that I know of) for x86-64 symbolic disassembly (-tvV) works, namely:
- symbol references: call _foo; jmp 15 <_foo+50>
- relocations: call _foo-_bar; call _foo-4
- __cf?string: leaq 193(%rip), %rax ## literal pool for "hello"
Stub support is the main missing part (because libObject doesn't know,
among other things, about mach-o indirect symbols).
As for the MCSymbolizer API, instead of relying on the disassemblers
to call the tryAdding* methods, maybe this could be done automagically
using InstrInfo? For instance, even though PC-relative LEAs are used
to get the address of string literals in a typical Mach-O file, a MOV
would be used in an ELF file. And right now, the explicit symbolization
only recognizes PC-relative LEAs. InstrInfo should have already have
most of what is needed to know what to symbolize, so this can
definitely be improved.
I'd also like to remove object::RelocationRef::getValueString (it seems
only used by relocation printing in objdump), as simply printing the
created MCExpr is definitely enough (and cleaner than string concats).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182625 91177308-0d34-0410-b5e6-96231b3b80d8
2013-05-24 00:39:57 +00:00
|
|
|
|
2015-04-09 17:10:57 +00:00
|
|
|
/// Construct X86-64 Mach-O relocation info.
|
Add MCSymbolizer for symbolic/annotated disassembly.
This is a basic first step towards symbolization of disassembled
instructions. This used to be done using externally provided (C API)
callbacks. This patch introduces:
- the MCSymbolizer class, that mimics the same functions that were used
in the X86 and ARM disassemblers to symbolize immediate operands and
to annotate loads based off PC (for things like c string literals).
- the MCExternalSymbolizer class, which implements the old C API.
- the MCRelocationInfo class, which provides a way for targets to
translate relocations (either object::RelocationRef, or disassembler
C API VariantKinds) to MCExprs.
- the MCObjectSymbolizer class, which does symbolization using what it
finds in an object::ObjectFile. This makes simple symbolization (with
no fancy relocation stuff) work for all object formats!
- x86-64 Mach-O and ELF MCRelocationInfos.
- A basic ARM Mach-O MCRelocationInfo, that provides just enough to
support the C API VariantKinds.
Most of what works in otool (the only user of the old symbolization API
that I know of) for x86-64 symbolic disassembly (-tvV) works, namely:
- symbol references: call _foo; jmp 15 <_foo+50>
- relocations: call _foo-_bar; call _foo-4
- __cf?string: leaq 193(%rip), %rax ## literal pool for "hello"
Stub support is the main missing part (because libObject doesn't know,
among other things, about mach-o indirect symbols).
As for the MCSymbolizer API, instead of relying on the disassemblers
to call the tryAdding* methods, maybe this could be done automagically
using InstrInfo? For instance, even though PC-relative LEAs are used
to get the address of string literals in a typical Mach-O file, a MOV
would be used in an ELF file. And right now, the explicit symbolization
only recognizes PC-relative LEAs. InstrInfo should have already have
most of what is needed to know what to symbolize, so this can
definitely be improved.
I'd also like to remove object::RelocationRef::getValueString (it seems
only used by relocation printing in objdump), as simply printing the
created MCExpr is definitely enough (and cleaner than string concats).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182625 91177308-0d34-0410-b5e6-96231b3b80d8
2013-05-24 00:39:57 +00:00
|
|
|
MCRelocationInfo *createX86_64MachORelocationInfo(MCContext &Ctx);
|
|
|
|
|
2015-04-09 17:10:57 +00:00
|
|
|
/// Construct X86-64 ELF relocation info.
|
Add MCSymbolizer for symbolic/annotated disassembly.
This is a basic first step towards symbolization of disassembled
instructions. This used to be done using externally provided (C API)
callbacks. This patch introduces:
- the MCSymbolizer class, that mimics the same functions that were used
in the X86 and ARM disassemblers to symbolize immediate operands and
to annotate loads based off PC (for things like c string literals).
- the MCExternalSymbolizer class, which implements the old C API.
- the MCRelocationInfo class, which provides a way for targets to
translate relocations (either object::RelocationRef, or disassembler
C API VariantKinds) to MCExprs.
- the MCObjectSymbolizer class, which does symbolization using what it
finds in an object::ObjectFile. This makes simple symbolization (with
no fancy relocation stuff) work for all object formats!
- x86-64 Mach-O and ELF MCRelocationInfos.
- A basic ARM Mach-O MCRelocationInfo, that provides just enough to
support the C API VariantKinds.
Most of what works in otool (the only user of the old symbolization API
that I know of) for x86-64 symbolic disassembly (-tvV) works, namely:
- symbol references: call _foo; jmp 15 <_foo+50>
- relocations: call _foo-_bar; call _foo-4
- __cf?string: leaq 193(%rip), %rax ## literal pool for "hello"
Stub support is the main missing part (because libObject doesn't know,
among other things, about mach-o indirect symbols).
As for the MCSymbolizer API, instead of relying on the disassemblers
to call the tryAdding* methods, maybe this could be done automagically
using InstrInfo? For instance, even though PC-relative LEAs are used
to get the address of string literals in a typical Mach-O file, a MOV
would be used in an ELF file. And right now, the explicit symbolization
only recognizes PC-relative LEAs. InstrInfo should have already have
most of what is needed to know what to symbolize, so this can
definitely be improved.
I'd also like to remove object::RelocationRef::getValueString (it seems
only used by relocation printing in objdump), as simply printing the
created MCExpr is definitely enough (and cleaner than string concats).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182625 91177308-0d34-0410-b5e6-96231b3b80d8
2013-05-24 00:39:57 +00:00
|
|
|
MCRelocationInfo *createX86_64ELFRelocationInfo(MCContext &Ctx);
|
2011-06-24 20:42:09 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2011-07-08 01:53:10 +00:00
|
|
|
|
2011-06-24 01:44:41 +00:00
|
|
|
// Defines symbolic names for X86 registers. This defines a mapping from
|
|
|
|
// register name to register number.
|
|
|
|
//
|
2011-06-27 18:32:37 +00:00
|
|
|
#define GET_REGINFO_ENUM
|
|
|
|
#include "X86GenRegisterInfo.inc"
|
2011-06-24 23:59:54 +00:00
|
|
|
|
2011-06-28 20:07:07 +00:00
|
|
|
// Defines symbolic names for the X86 instructions.
|
|
|
|
//
|
|
|
|
#define GET_INSTRINFO_ENUM
|
|
|
|
#include "X86GenInstrInfo.inc"
|
|
|
|
|
2011-07-14 20:59:42 +00:00
|
|
|
#define GET_SUBTARGETINFO_ENUM
|
|
|
|
#include "X86GenSubtargetInfo.inc"
|
|
|
|
|
2011-06-24 23:59:54 +00:00
|
|
|
#endif
|