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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
//===- MCAssembler.h - Object File Generation -------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_MC_MCASSEMBLER_H
|
|
|
|
#define LLVM_MC_MCASSEMBLER_H
|
|
|
|
|
2010-03-10 21:58:29 +01:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2009-08-21 20:29:01 +02:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
#include "llvm/ADT/ilist.h"
|
|
|
|
#include "llvm/ADT/ilist_node.h"
|
2009-08-21 20:29:01 +02:00
|
|
|
#include "llvm/Support/Casting.h"
|
2010-02-13 10:28:54 +01:00
|
|
|
#include "llvm/MC/MCFixup.h"
|
2010-03-23 00:16:48 +01:00
|
|
|
#include "llvm/MC/MCInst.h"
|
2009-10-26 02:35:46 +01:00
|
|
|
#include "llvm/System/DataTypes.h"
|
2009-08-24 13:56:58 +02:00
|
|
|
#include <vector> // FIXME: Shouldn't be needed.
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
class raw_ostream;
|
2010-03-12 22:00:49 +01:00
|
|
|
class MCAsmLayout;
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
class MCAssembler;
|
2010-08-16 20:34:31 +02:00
|
|
|
class MCBinaryExpr;
|
2009-08-31 10:07:55 +02:00
|
|
|
class MCContext;
|
2010-03-19 11:43:18 +01:00
|
|
|
class MCCodeEmitter;
|
2009-10-16 03:58:03 +02:00
|
|
|
class MCExpr;
|
2010-02-11 22:29:29 +01:00
|
|
|
class MCFragment;
|
2010-03-19 10:28:59 +01:00
|
|
|
class MCObjectWriter;
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
class MCSection;
|
|
|
|
class MCSectionData;
|
2009-10-16 03:58:03 +02:00
|
|
|
class MCSymbol;
|
2010-05-11 00:45:09 +02:00
|
|
|
class MCSymbolData;
|
2010-03-12 22:00:49 +01:00
|
|
|
class MCValue;
|
2010-03-11 02:34:27 +01:00
|
|
|
class TargetAsmBackend;
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
|
|
|
|
class MCFragment : public ilist_node<MCFragment> {
|
2010-03-25 02:03:24 +01:00
|
|
|
friend class MCAsmLayout;
|
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
MCFragment(const MCFragment&); // DO NOT IMPLEMENT
|
|
|
|
void operator=(const MCFragment&); // DO NOT IMPLEMENT
|
|
|
|
|
|
|
|
public:
|
2009-08-21 20:29:01 +02:00
|
|
|
enum FragmentType {
|
|
|
|
FT_Align,
|
2010-03-23 00:16:48 +01:00
|
|
|
FT_Data,
|
2009-08-21 20:29:01 +02:00
|
|
|
FT_Fill,
|
2010-03-23 00:16:48 +01:00
|
|
|
FT_Inst,
|
2010-09-30 19:16:09 +02:00
|
|
|
FT_Org,
|
2010-11-02 18:22:24 +01:00
|
|
|
FT_Dwarf,
|
|
|
|
FT_LEB
|
2009-08-21 20:29:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
FragmentType Kind;
|
|
|
|
|
2009-08-26 04:48:04 +02:00
|
|
|
/// Parent - The data for the section this fragment is in.
|
|
|
|
MCSectionData *Parent;
|
|
|
|
|
2010-05-11 00:45:09 +02:00
|
|
|
/// Atom - The atom this fragment is in, as represented by it's defining
|
|
|
|
/// symbol. Atom's are only used by backends which set
|
|
|
|
/// \see MCAsmBackend::hasReliableSymbolDifference().
|
|
|
|
MCSymbolData *Atom;
|
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
/// @name Assembler Backend Data
|
|
|
|
/// @{
|
|
|
|
//
|
|
|
|
// FIXME: This could all be kept private to the assembler implementation.
|
|
|
|
|
2009-08-22 10:27:54 +02:00
|
|
|
/// Offset - The offset of this fragment in its section. This is ~0 until
|
2009-08-21 20:29:01 +02:00
|
|
|
/// initialized.
|
2009-08-22 10:27:54 +02:00
|
|
|
uint64_t Offset;
|
|
|
|
|
2010-03-25 03:00:02 +01:00
|
|
|
/// EffectiveSize - The compute size of this section. This is ~0 until
|
|
|
|
/// initialized.
|
|
|
|
uint64_t EffectiveSize;
|
2009-08-21 20:29:01 +02:00
|
|
|
|
2010-05-14 02:37:14 +02:00
|
|
|
/// LayoutOrder - The global layout order of this fragment. This is the index
|
|
|
|
/// across all fragments in the file, not just within the section.
|
|
|
|
unsigned LayoutOrder;
|
2010-03-25 08:10:11 +01:00
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
/// @}
|
|
|
|
|
|
|
|
protected:
|
2009-08-26 04:48:04 +02:00
|
|
|
MCFragment(FragmentType _Kind, MCSectionData *_Parent = 0);
|
2009-08-21 20:29:01 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
// Only for sentinel.
|
|
|
|
MCFragment();
|
2010-07-28 22:28:45 +02:00
|
|
|
virtual ~MCFragment();
|
2009-08-21 20:29:01 +02:00
|
|
|
|
|
|
|
FragmentType getKind() const { return Kind; }
|
|
|
|
|
2009-08-26 04:48:04 +02:00
|
|
|
MCSectionData *getParent() const { return Parent; }
|
|
|
|
void setParent(MCSectionData *Value) { Parent = Value; }
|
|
|
|
|
2010-05-11 00:45:09 +02:00
|
|
|
MCSymbolData *getAtom() const { return Atom; }
|
|
|
|
void setAtom(MCSymbolData *Value) { Atom = Value; }
|
|
|
|
|
2010-05-14 02:37:14 +02:00
|
|
|
unsigned getLayoutOrder() const { return LayoutOrder; }
|
|
|
|
void setLayoutOrder(unsigned Value) { LayoutOrder = Value; }
|
2010-03-25 08:10:11 +01:00
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
static bool classof(const MCFragment *O) { return true; }
|
2010-02-13 10:28:03 +01:00
|
|
|
|
2010-05-26 08:50:57 +02:00
|
|
|
void dump();
|
2009-08-21 20:29:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class MCDataFragment : public MCFragment {
|
|
|
|
SmallString<32> Contents;
|
|
|
|
|
2010-02-13 10:28:43 +01:00
|
|
|
/// Fixups - The list of fixups in this fragment.
|
2010-05-26 17:18:56 +02:00
|
|
|
std::vector<MCFixup> Fixups;
|
2010-02-13 10:28:43 +01:00
|
|
|
|
|
|
|
public:
|
2010-05-26 17:18:56 +02:00
|
|
|
typedef std::vector<MCFixup>::const_iterator const_fixup_iterator;
|
|
|
|
typedef std::vector<MCFixup>::iterator fixup_iterator;
|
2010-02-13 10:28:43 +01:00
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
public:
|
|
|
|
MCDataFragment(MCSectionData *SD = 0) : MCFragment(FT_Data, SD) {}
|
|
|
|
|
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
SmallString<32> &getContents() { return Contents; }
|
|
|
|
const SmallString<32> &getContents() const { return Contents; }
|
|
|
|
|
|
|
|
/// @}
|
2010-02-13 10:28:43 +01:00
|
|
|
/// @name Fixup Access
|
|
|
|
/// @{
|
|
|
|
|
2010-05-26 17:18:56 +02:00
|
|
|
void addFixup(MCFixup Fixup) {
|
2010-03-12 22:00:38 +01:00
|
|
|
// Enforce invariant that fixups are in offset order.
|
2010-05-26 17:18:31 +02:00
|
|
|
assert((Fixups.empty() || Fixup.getOffset() > Fixups.back().getOffset()) &&
|
2010-03-12 22:00:38 +01:00
|
|
|
"Fixups must be added in order!");
|
|
|
|
Fixups.push_back(Fixup);
|
|
|
|
}
|
|
|
|
|
2010-05-26 17:18:56 +02:00
|
|
|
std::vector<MCFixup> &getFixups() { return Fixups; }
|
|
|
|
const std::vector<MCFixup> &getFixups() const { return Fixups; }
|
2010-02-13 10:28:43 +01:00
|
|
|
|
|
|
|
fixup_iterator fixup_begin() { return Fixups.begin(); }
|
|
|
|
const_fixup_iterator fixup_begin() const { return Fixups.begin(); }
|
|
|
|
|
|
|
|
fixup_iterator fixup_end() {return Fixups.end();}
|
|
|
|
const_fixup_iterator fixup_end() const {return Fixups.end();}
|
|
|
|
|
|
|
|
size_t fixup_size() const { return Fixups.size(); }
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
2010-02-13 10:28:03 +01:00
|
|
|
static bool classof(const MCFragment *F) {
|
|
|
|
return F->getKind() == MCFragment::FT_Data;
|
2009-08-21 20:29:01 +02:00
|
|
|
}
|
|
|
|
static bool classof(const MCDataFragment *) { return true; }
|
|
|
|
};
|
|
|
|
|
2010-03-23 02:39:05 +01:00
|
|
|
// FIXME: This current incarnation of MCInstFragment doesn't make much sense, as
|
|
|
|
// it is almost entirely a duplicate of MCDataFragment. If we decide to stick
|
|
|
|
// with this approach (as opposed to making MCInstFragment a very light weight
|
|
|
|
// object with just the MCInst and a code size, then we should just change
|
|
|
|
// MCDataFragment to have an optional MCInst at its end.
|
2010-03-23 00:16:48 +01:00
|
|
|
class MCInstFragment : public MCFragment {
|
|
|
|
/// Inst - The instruction this is a fragment for.
|
|
|
|
MCInst Inst;
|
|
|
|
|
2010-08-17 23:05:54 +02:00
|
|
|
/// Code - Binary data for the currently encoded instruction.
|
2010-03-23 02:39:05 +01:00
|
|
|
SmallString<8> Code;
|
|
|
|
|
|
|
|
/// Fixups - The list of fixups in this fragment.
|
2010-05-26 17:18:56 +02:00
|
|
|
SmallVector<MCFixup, 1> Fixups;
|
2010-03-23 00:16:48 +01:00
|
|
|
|
|
|
|
public:
|
2010-05-26 17:18:56 +02:00
|
|
|
typedef SmallVectorImpl<MCFixup>::const_iterator const_fixup_iterator;
|
|
|
|
typedef SmallVectorImpl<MCFixup>::iterator fixup_iterator;
|
2010-03-23 02:39:05 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
MCInstFragment(MCInst _Inst, MCSectionData *SD = 0)
|
|
|
|
: MCFragment(FT_Inst, SD), Inst(_Inst) {
|
|
|
|
}
|
2010-03-23 00:16:48 +01:00
|
|
|
|
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
|
|
|
|
2010-03-23 02:39:05 +01:00
|
|
|
SmallVectorImpl<char> &getCode() { return Code; }
|
|
|
|
const SmallVectorImpl<char> &getCode() const { return Code; }
|
2010-03-23 00:16:48 +01:00
|
|
|
|
2010-03-23 02:39:05 +01:00
|
|
|
unsigned getInstSize() const { return Code.size(); }
|
|
|
|
|
|
|
|
MCInst &getInst() { return Inst; }
|
2010-03-23 00:16:48 +01:00
|
|
|
const MCInst &getInst() const { return Inst; }
|
|
|
|
|
2010-03-23 02:39:05 +01:00
|
|
|
void setInst(MCInst Value) { Inst = Value; }
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
/// @name Fixup Access
|
|
|
|
/// @{
|
|
|
|
|
2010-05-26 17:18:56 +02:00
|
|
|
SmallVectorImpl<MCFixup> &getFixups() { return Fixups; }
|
|
|
|
const SmallVectorImpl<MCFixup> &getFixups() const { return Fixups; }
|
2010-03-23 02:39:05 +01:00
|
|
|
|
|
|
|
fixup_iterator fixup_begin() { return Fixups.begin(); }
|
|
|
|
const_fixup_iterator fixup_begin() const { return Fixups.begin(); }
|
|
|
|
|
|
|
|
fixup_iterator fixup_end() {return Fixups.end();}
|
|
|
|
const_fixup_iterator fixup_end() const {return Fixups.end();}
|
|
|
|
|
|
|
|
size_t fixup_size() const { return Fixups.size(); }
|
2010-03-23 00:16:48 +01:00
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
|
|
|
static bool classof(const MCFragment *F) {
|
|
|
|
return F->getKind() == MCFragment::FT_Inst;
|
|
|
|
}
|
|
|
|
static bool classof(const MCInstFragment *) { return true; }
|
|
|
|
};
|
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
class MCAlignFragment : public MCFragment {
|
|
|
|
/// Alignment - The alignment to ensure, in bytes.
|
|
|
|
unsigned Alignment;
|
|
|
|
|
|
|
|
/// Value - Value to use for filling padding bytes.
|
|
|
|
int64_t Value;
|
|
|
|
|
|
|
|
/// ValueSize - The size of the integer (in bytes) of \arg Value.
|
|
|
|
unsigned ValueSize;
|
|
|
|
|
|
|
|
/// MaxBytesToEmit - The maximum number of bytes to emit; if the alignment
|
|
|
|
/// cannot be satisfied in this width then this fragment is ignored.
|
|
|
|
unsigned MaxBytesToEmit;
|
|
|
|
|
2010-05-13 00:56:23 +02:00
|
|
|
/// EmitNops - Flag to indicate that (optimal) NOPs should be emitted instead
|
|
|
|
/// of using the provided value. The exact interpretation of this flag is
|
|
|
|
/// target dependent.
|
|
|
|
bool EmitNops : 1;
|
2010-02-23 19:26:34 +01:00
|
|
|
|
2010-05-13 03:10:26 +02:00
|
|
|
/// OnlyAlignAddress - Flag to indicate that this align is only used to adjust
|
|
|
|
/// the address space size of a section and that it should not be included as
|
|
|
|
/// part of the section size. This flag can only be used on the last fragment
|
|
|
|
/// in a section.
|
|
|
|
bool OnlyAlignAddress : 1;
|
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
public:
|
|
|
|
MCAlignFragment(unsigned _Alignment, int64_t _Value, unsigned _ValueSize,
|
2010-05-13 00:56:23 +02:00
|
|
|
unsigned _MaxBytesToEmit, MCSectionData *SD = 0)
|
2009-08-21 20:29:01 +02:00
|
|
|
: MCFragment(FT_Align, SD), Alignment(_Alignment),
|
|
|
|
Value(_Value),ValueSize(_ValueSize),
|
2010-05-13 03:10:26 +02:00
|
|
|
MaxBytesToEmit(_MaxBytesToEmit), EmitNops(false),
|
|
|
|
OnlyAlignAddress(false) {}
|
2009-08-21 20:29:01 +02:00
|
|
|
|
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
unsigned getAlignment() const { return Alignment; }
|
2010-02-13 10:28:03 +01:00
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
int64_t getValue() const { return Value; }
|
|
|
|
|
|
|
|
unsigned getValueSize() const { return ValueSize; }
|
|
|
|
|
|
|
|
unsigned getMaxBytesToEmit() const { return MaxBytesToEmit; }
|
|
|
|
|
2010-05-13 00:56:23 +02:00
|
|
|
bool hasEmitNops() const { return EmitNops; }
|
|
|
|
void setEmitNops(bool Value) { EmitNops = Value; }
|
2010-02-23 19:26:34 +01:00
|
|
|
|
2010-05-13 03:10:26 +02:00
|
|
|
bool hasOnlyAlignAddress() const { return OnlyAlignAddress; }
|
|
|
|
void setOnlyAlignAddress(bool Value) { OnlyAlignAddress = Value; }
|
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
/// @}
|
|
|
|
|
2010-02-13 10:28:03 +01:00
|
|
|
static bool classof(const MCFragment *F) {
|
|
|
|
return F->getKind() == MCFragment::FT_Align;
|
2009-08-21 20:29:01 +02:00
|
|
|
}
|
|
|
|
static bool classof(const MCAlignFragment *) { return true; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MCFillFragment : public MCFragment {
|
|
|
|
/// Value - Value to use for filling bytes.
|
2010-02-13 10:28:32 +01:00
|
|
|
int64_t Value;
|
2009-08-21 20:29:01 +02:00
|
|
|
|
2010-05-13 00:51:32 +02:00
|
|
|
/// ValueSize - The size (in bytes) of \arg Value to use when filling, or 0 if
|
|
|
|
/// this is a virtual fill fragment.
|
2009-08-21 20:29:01 +02:00
|
|
|
unsigned ValueSize;
|
|
|
|
|
2010-05-13 00:51:32 +02:00
|
|
|
/// Size - The number of bytes to insert.
|
|
|
|
uint64_t Size;
|
2009-08-21 20:29:01 +02:00
|
|
|
|
|
|
|
public:
|
2010-05-13 00:51:32 +02:00
|
|
|
MCFillFragment(int64_t _Value, unsigned _ValueSize, uint64_t _Size,
|
2010-02-13 10:28:03 +01:00
|
|
|
MCSectionData *SD = 0)
|
2009-08-21 20:29:01 +02:00
|
|
|
: MCFragment(FT_Fill, SD),
|
2010-05-13 00:51:32 +02:00
|
|
|
Value(_Value), ValueSize(_ValueSize), Size(_Size) {
|
|
|
|
assert((!ValueSize || (Size % ValueSize) == 0) &&
|
|
|
|
"Fill size must be a multiple of the value size!");
|
|
|
|
}
|
2009-08-21 20:29:01 +02:00
|
|
|
|
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
|
|
|
|
2010-02-13 10:28:32 +01:00
|
|
|
int64_t getValue() const { return Value; }
|
2010-02-13 10:28:03 +01:00
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
unsigned getValueSize() const { return ValueSize; }
|
|
|
|
|
2010-05-13 00:51:32 +02:00
|
|
|
uint64_t getSize() const { return Size; }
|
2009-08-21 20:29:01 +02:00
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
2010-02-13 10:28:03 +01:00
|
|
|
static bool classof(const MCFragment *F) {
|
|
|
|
return F->getKind() == MCFragment::FT_Fill;
|
2009-08-21 20:29:01 +02:00
|
|
|
}
|
|
|
|
static bool classof(const MCFillFragment *) { return true; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MCOrgFragment : public MCFragment {
|
|
|
|
/// Offset - The offset this fragment should start at.
|
2009-10-16 03:58:03 +02:00
|
|
|
const MCExpr *Offset;
|
2009-08-21 20:29:01 +02:00
|
|
|
|
2010-02-13 10:28:03 +01:00
|
|
|
/// Value - Value to use for filling bytes.
|
2009-08-22 01:07:38 +02:00
|
|
|
int8_t Value;
|
2009-08-21 20:29:01 +02:00
|
|
|
|
2010-11-02 22:38:23 +01:00
|
|
|
/// Size - The current estimate of the size.
|
|
|
|
unsigned Size;
|
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
public:
|
2009-10-16 03:58:03 +02:00
|
|
|
MCOrgFragment(const MCExpr &_Offset, int8_t _Value, MCSectionData *SD = 0)
|
2009-08-21 20:29:01 +02:00
|
|
|
: MCFragment(FT_Org, SD),
|
2010-11-02 22:38:23 +01:00
|
|
|
Offset(&_Offset), Value(_Value), Size(0) {}
|
2009-08-28 07:49:21 +02:00
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
|
|
|
|
2009-10-16 03:58:03 +02:00
|
|
|
const MCExpr &getOffset() const { return *Offset; }
|
2010-02-13 10:28:03 +01:00
|
|
|
|
2009-08-22 01:07:38 +02:00
|
|
|
uint8_t getValue() const { return Value; }
|
2009-08-21 20:29:01 +02:00
|
|
|
|
2010-11-02 22:38:23 +01:00
|
|
|
unsigned getSize() const { return Size; }
|
|
|
|
|
|
|
|
void setSize(unsigned Size_) { Size = Size_; }
|
2009-08-21 20:29:01 +02:00
|
|
|
/// @}
|
|
|
|
|
2010-02-13 10:28:03 +01:00
|
|
|
static bool classof(const MCFragment *F) {
|
|
|
|
return F->getKind() == MCFragment::FT_Org;
|
2009-08-21 20:29:01 +02:00
|
|
|
}
|
|
|
|
static bool classof(const MCOrgFragment *) { return true; }
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
};
|
|
|
|
|
2010-11-02 18:22:24 +01:00
|
|
|
class MCLEBFragment : public MCFragment {
|
|
|
|
/// Value - The value this fragment should contain.
|
|
|
|
const MCExpr *Value;
|
|
|
|
|
|
|
|
/// IsSigned - True if this is a sleb128, false if uleb128.
|
|
|
|
bool IsSigned;
|
|
|
|
|
|
|
|
/// Size - The current size estimate.
|
|
|
|
uint64_t Size;
|
|
|
|
|
|
|
|
public:
|
|
|
|
MCLEBFragment(const MCExpr &Value_, bool IsSigned_, MCSectionData *SD)
|
|
|
|
: MCFragment(FT_LEB, SD),
|
|
|
|
Value(&Value_), IsSigned(IsSigned_), Size(1) {}
|
|
|
|
|
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
const MCExpr &getValue() const { return *Value; }
|
|
|
|
|
|
|
|
bool isSigned() const { return IsSigned; }
|
|
|
|
|
|
|
|
uint64_t getSize() const { return Size; }
|
|
|
|
|
|
|
|
void setSize(uint64_t Size_) { Size = Size_; }
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
|
|
|
static bool classof(const MCFragment *F) {
|
|
|
|
return F->getKind() == MCFragment::FT_LEB;
|
|
|
|
}
|
|
|
|
static bool classof(const MCLEBFragment *) { return true; }
|
|
|
|
};
|
|
|
|
|
2010-09-30 19:16:09 +02:00
|
|
|
class MCDwarfLineAddrFragment : public MCFragment {
|
|
|
|
/// LineDelta - the value of the difference between the two line numbers
|
|
|
|
/// between two .loc dwarf directives.
|
|
|
|
int64_t LineDelta;
|
|
|
|
|
|
|
|
/// AddrDelta - The expression for the difference of the two symbols that
|
|
|
|
/// make up the address delta between two .loc dwarf directives.
|
|
|
|
const MCExpr *AddrDelta;
|
|
|
|
|
2010-11-07 03:07:12 +01:00
|
|
|
/// Size - The current size estimate.
|
|
|
|
uint64_t Size;
|
|
|
|
|
2010-09-30 19:16:09 +02:00
|
|
|
public:
|
|
|
|
MCDwarfLineAddrFragment(int64_t _LineDelta, const MCExpr &_AddrDelta,
|
|
|
|
MCSectionData *SD = 0)
|
|
|
|
: MCFragment(FT_Dwarf, SD),
|
2010-11-07 03:07:12 +01:00
|
|
|
LineDelta(_LineDelta), AddrDelta(&_AddrDelta), Size(1) {}
|
2010-09-30 19:16:09 +02:00
|
|
|
|
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
int64_t getLineDelta() const { return LineDelta; }
|
|
|
|
|
|
|
|
const MCExpr &getAddrDelta() const { return *AddrDelta; }
|
|
|
|
|
2010-11-07 03:07:12 +01:00
|
|
|
uint64_t getSize() const { return Size; }
|
|
|
|
|
|
|
|
void setSize(uint64_t Size_) { Size = Size_; }
|
|
|
|
|
2010-09-30 19:16:09 +02:00
|
|
|
/// @}
|
|
|
|
|
|
|
|
static bool classof(const MCFragment *F) {
|
|
|
|
return F->getKind() == MCFragment::FT_Dwarf;
|
|
|
|
}
|
|
|
|
static bool classof(const MCDwarfLineAddrFragment *) { return true; }
|
|
|
|
};
|
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
// FIXME: Should this be a separate class, or just merged into MCSection? Since
|
|
|
|
// we anticipate the fast path being through an MCAssembler, the only reason to
|
|
|
|
// keep it out is for API abstraction.
|
|
|
|
class MCSectionData : public ilist_node<MCSectionData> {
|
2010-03-25 02:03:24 +01:00
|
|
|
friend class MCAsmLayout;
|
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
MCSectionData(const MCSectionData&); // DO NOT IMPLEMENT
|
|
|
|
void operator=(const MCSectionData&); // DO NOT IMPLEMENT
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef iplist<MCFragment> FragmentListType;
|
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
typedef FragmentListType::const_iterator const_iterator;
|
|
|
|
typedef FragmentListType::iterator iterator;
|
|
|
|
|
2010-02-11 22:29:46 +01:00
|
|
|
typedef FragmentListType::const_reverse_iterator const_reverse_iterator;
|
|
|
|
typedef FragmentListType::reverse_iterator reverse_iterator;
|
2009-08-26 15:58:10 +02:00
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
private:
|
2010-07-13 07:52:36 +02:00
|
|
|
FragmentListType Fragments;
|
2009-08-27 02:38:04 +02:00
|
|
|
const MCSection *Section;
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
|
2010-03-25 08:10:11 +01:00
|
|
|
/// Ordinal - The section index in the assemblers section list.
|
|
|
|
unsigned Ordinal;
|
|
|
|
|
2010-05-13 17:17:26 +02:00
|
|
|
/// LayoutOrder - The index of this section in the layout order.
|
|
|
|
unsigned LayoutOrder;
|
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
/// Alignment - The maximum alignment seen in this section.
|
|
|
|
unsigned Alignment;
|
|
|
|
|
|
|
|
/// @name Assembler Backend Data
|
|
|
|
/// @{
|
|
|
|
//
|
|
|
|
// FIXME: This could all be kept private to the assembler implementation.
|
|
|
|
|
2009-08-26 04:48:04 +02:00
|
|
|
/// Address - The computed address of this section. This is ~0 until
|
|
|
|
/// initialized.
|
|
|
|
uint64_t Address;
|
|
|
|
|
2010-02-02 22:44:01 +01:00
|
|
|
/// HasInstructions - Whether this section has had instructions emitted into
|
|
|
|
/// it.
|
|
|
|
unsigned HasInstructions : 1;
|
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
/// @}
|
|
|
|
|
2010-02-13 10:28:03 +01:00
|
|
|
public:
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
// Only for use as sentinel.
|
|
|
|
MCSectionData();
|
|
|
|
MCSectionData(const MCSection &Section, MCAssembler *A = 0);
|
|
|
|
|
2009-08-27 02:38:04 +02:00
|
|
|
const MCSection &getSection() const { return *Section; }
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
|
|
|
|
unsigned getAlignment() const { return Alignment; }
|
|
|
|
void setAlignment(unsigned Value) { Alignment = Value; }
|
|
|
|
|
2010-03-25 03:00:07 +01:00
|
|
|
bool hasInstructions() const { return HasInstructions; }
|
|
|
|
void setHasInstructions(bool Value) { HasInstructions = Value; }
|
|
|
|
|
2010-03-25 08:10:11 +01:00
|
|
|
unsigned getOrdinal() const { return Ordinal; }
|
|
|
|
void setOrdinal(unsigned Value) { Ordinal = Value; }
|
|
|
|
|
2010-05-13 17:17:26 +02:00
|
|
|
unsigned getLayoutOrder() const { return LayoutOrder; }
|
|
|
|
void setLayoutOrder(unsigned Value) { LayoutOrder = Value; }
|
|
|
|
|
2009-08-26 15:57:54 +02:00
|
|
|
/// @name Fragment Access
|
2009-08-21 20:29:01 +02:00
|
|
|
/// @{
|
|
|
|
|
|
|
|
const FragmentListType &getFragmentList() const { return Fragments; }
|
|
|
|
FragmentListType &getFragmentList() { return Fragments; }
|
|
|
|
|
|
|
|
iterator begin() { return Fragments.begin(); }
|
|
|
|
const_iterator begin() const { return Fragments.begin(); }
|
|
|
|
|
|
|
|
iterator end() { return Fragments.end(); }
|
|
|
|
const_iterator end() const { return Fragments.end(); }
|
|
|
|
|
2010-02-11 22:29:46 +01:00
|
|
|
reverse_iterator rbegin() { return Fragments.rbegin(); }
|
|
|
|
const_reverse_iterator rbegin() const { return Fragments.rbegin(); }
|
2009-08-26 15:58:10 +02:00
|
|
|
|
2010-02-11 22:29:46 +01:00
|
|
|
reverse_iterator rend() { return Fragments.rend(); }
|
|
|
|
const_reverse_iterator rend() const { return Fragments.rend(); }
|
2009-08-26 15:58:10 +02:00
|
|
|
|
2010-02-11 22:29:46 +01:00
|
|
|
size_t size() const { return Fragments.size(); }
|
2009-08-26 15:58:10 +02:00
|
|
|
|
2010-02-11 22:29:46 +01:00
|
|
|
bool empty() const { return Fragments.empty(); }
|
2009-08-26 15:58:10 +02:00
|
|
|
|
2010-02-13 10:28:03 +01:00
|
|
|
void dump();
|
2010-03-25 08:10:11 +01:00
|
|
|
|
|
|
|
/// @}
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
};
|
|
|
|
|
2009-08-22 12:13:24 +02:00
|
|
|
// FIXME: Same concerns as with SectionData.
|
|
|
|
class MCSymbolData : public ilist_node<MCSymbolData> {
|
|
|
|
public:
|
2009-09-01 06:09:03 +02:00
|
|
|
const MCSymbol *Symbol;
|
2009-08-22 12:13:24 +02:00
|
|
|
|
|
|
|
/// Fragment - The fragment this symbol's value is relative to, if any.
|
|
|
|
MCFragment *Fragment;
|
|
|
|
|
|
|
|
/// Offset - The offset to apply to the fragment address to form this symbol's
|
|
|
|
/// value.
|
|
|
|
uint64_t Offset;
|
2010-02-13 10:28:03 +01:00
|
|
|
|
2009-08-22 13:41:10 +02:00
|
|
|
/// IsExternal - True if this symbol is visible outside this translation
|
|
|
|
/// unit.
|
|
|
|
unsigned IsExternal : 1;
|
2009-08-22 12:13:24 +02:00
|
|
|
|
2009-08-24 10:40:12 +02:00
|
|
|
/// IsPrivateExtern - True if this symbol is private extern.
|
|
|
|
unsigned IsPrivateExtern : 1;
|
|
|
|
|
2009-08-28 09:08:35 +02:00
|
|
|
/// CommonSize - The size of the symbol, if it is 'common', or 0.
|
|
|
|
//
|
|
|
|
// FIXME: Pack this in with other fields? We could put it in offset, since a
|
|
|
|
// common symbol can never get a definition.
|
|
|
|
uint64_t CommonSize;
|
|
|
|
|
2010-08-16 20:34:31 +02:00
|
|
|
/// SymbolSize - An expression describing how to calculate the size of
|
|
|
|
/// a symbol. If a symbol has no size this field will be NULL.
|
|
|
|
const MCExpr *SymbolSize;
|
|
|
|
|
2009-08-28 09:08:35 +02:00
|
|
|
/// CommonAlign - The alignment of the symbol, if it is 'common'.
|
|
|
|
//
|
|
|
|
// FIXME: Pack this in with other fields?
|
|
|
|
unsigned CommonAlign;
|
|
|
|
|
2009-08-24 10:40:12 +02:00
|
|
|
/// Flags - The Flags field is used by object file implementations to store
|
|
|
|
/// additional per symbol information which is not easily classified.
|
|
|
|
uint32_t Flags;
|
|
|
|
|
2009-08-26 15:57:54 +02:00
|
|
|
/// Index - Index field, for use by the object file implementation.
|
|
|
|
uint64_t Index;
|
|
|
|
|
2009-08-22 12:13:24 +02:00
|
|
|
public:
|
|
|
|
// Only for use as sentinel.
|
|
|
|
MCSymbolData();
|
2009-08-31 10:08:06 +02:00
|
|
|
MCSymbolData(const MCSymbol &_Symbol, MCFragment *_Fragment, uint64_t _Offset,
|
2009-08-22 12:13:24 +02:00
|
|
|
MCAssembler *A = 0);
|
|
|
|
|
|
|
|
/// @name Accessors
|
|
|
|
/// @{
|
|
|
|
|
2009-09-01 06:09:03 +02:00
|
|
|
const MCSymbol &getSymbol() const { return *Symbol; }
|
2009-08-22 12:13:24 +02:00
|
|
|
|
|
|
|
MCFragment *getFragment() const { return Fragment; }
|
|
|
|
void setFragment(MCFragment *Value) { Fragment = Value; }
|
|
|
|
|
|
|
|
uint64_t getOffset() const { return Offset; }
|
|
|
|
void setOffset(uint64_t Value) { Offset = Value; }
|
|
|
|
|
2009-08-24 10:40:12 +02:00
|
|
|
/// @}
|
|
|
|
/// @name Symbol Attributes
|
|
|
|
/// @{
|
2010-02-13 10:28:03 +01:00
|
|
|
|
2009-08-24 10:40:12 +02:00
|
|
|
bool isExternal() const { return IsExternal; }
|
|
|
|
void setExternal(bool Value) { IsExternal = Value; }
|
2010-02-13 10:28:03 +01:00
|
|
|
|
2009-08-24 10:40:12 +02:00
|
|
|
bool isPrivateExtern() const { return IsPrivateExtern; }
|
|
|
|
void setPrivateExtern(bool Value) { IsPrivateExtern = Value; }
|
2009-08-28 09:08:35 +02:00
|
|
|
|
|
|
|
/// isCommon - Is this a 'common' symbol.
|
|
|
|
bool isCommon() const { return CommonSize != 0; }
|
|
|
|
|
|
|
|
/// setCommon - Mark this symbol as being 'common'.
|
|
|
|
///
|
|
|
|
/// \param Size - The size of the symbol.
|
|
|
|
/// \param Align - The alignment of the symbol.
|
|
|
|
void setCommon(uint64_t Size, unsigned Align) {
|
|
|
|
CommonSize = Size;
|
|
|
|
CommonAlign = Align;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getCommonSize - Return the size of a 'common' symbol.
|
|
|
|
uint64_t getCommonSize() const {
|
|
|
|
assert(isCommon() && "Not a 'common' symbol!");
|
|
|
|
return CommonSize;
|
|
|
|
}
|
|
|
|
|
2010-08-16 20:34:31 +02:00
|
|
|
void setSize(const MCExpr *SS) {
|
|
|
|
SymbolSize = SS;
|
|
|
|
}
|
|
|
|
|
|
|
|
const MCExpr *getSize() const {
|
|
|
|
return SymbolSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-28 09:08:35 +02:00
|
|
|
/// getCommonAlignment - Return the alignment of a 'common' symbol.
|
|
|
|
unsigned getCommonAlignment() const {
|
|
|
|
assert(isCommon() && "Not a 'common' symbol!");
|
|
|
|
return CommonAlign;
|
|
|
|
}
|
|
|
|
|
2009-08-24 10:40:12 +02:00
|
|
|
/// getFlags - Get the (implementation defined) symbol flags.
|
|
|
|
uint32_t getFlags() const { return Flags; }
|
2009-08-22 13:41:10 +02:00
|
|
|
|
2009-08-24 10:40:12 +02:00
|
|
|
/// setFlags - Set the (implementation defined) symbol flags.
|
|
|
|
void setFlags(uint32_t Value) { Flags = Value; }
|
2010-02-13 10:28:03 +01:00
|
|
|
|
2010-05-12 02:52:54 +02:00
|
|
|
/// modifyFlags - Modify the flags via a mask
|
|
|
|
void modifyFlags(uint32_t Value, uint32_t Mask) {
|
|
|
|
Flags = (Flags & ~Mask) | Value;
|
|
|
|
}
|
|
|
|
|
2009-08-26 15:57:54 +02:00
|
|
|
/// getIndex - Get the (implementation defined) index.
|
|
|
|
uint64_t getIndex() const { return Index; }
|
|
|
|
|
|
|
|
/// setIndex - Set the (implementation defined) index.
|
|
|
|
void setIndex(uint64_t Value) { Index = Value; }
|
2010-02-13 10:28:03 +01:00
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
|
|
|
void dump();
|
2009-08-22 12:13:24 +02:00
|
|
|
};
|
|
|
|
|
2009-08-24 13:56:58 +02:00
|
|
|
// FIXME: This really doesn't belong here. See comments below.
|
|
|
|
struct IndirectSymbolData {
|
|
|
|
MCSymbol *Symbol;
|
|
|
|
MCSectionData *SectionData;
|
|
|
|
};
|
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
class MCAssembler {
|
2010-03-25 20:35:56 +01:00
|
|
|
friend class MCAsmLayout;
|
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
public:
|
|
|
|
typedef iplist<MCSectionData> SectionDataListType;
|
2009-08-22 12:13:24 +02:00
|
|
|
typedef iplist<MCSymbolData> SymbolDataListType;
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
|
|
|
|
typedef SectionDataListType::const_iterator const_iterator;
|
|
|
|
typedef SectionDataListType::iterator iterator;
|
|
|
|
|
2009-08-22 12:13:24 +02:00
|
|
|
typedef SymbolDataListType::const_iterator const_symbol_iterator;
|
|
|
|
typedef SymbolDataListType::iterator symbol_iterator;
|
|
|
|
|
2010-03-19 08:09:33 +01:00
|
|
|
typedef std::vector<IndirectSymbolData>::const_iterator
|
|
|
|
const_indirect_symbol_iterator;
|
2009-08-24 13:56:58 +02:00
|
|
|
typedef std::vector<IndirectSymbolData>::iterator indirect_symbol_iterator;
|
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
private:
|
|
|
|
MCAssembler(const MCAssembler&); // DO NOT IMPLEMENT
|
|
|
|
void operator=(const MCAssembler&); // DO NOT IMPLEMENT
|
|
|
|
|
2009-08-31 10:07:55 +02:00
|
|
|
MCContext &Context;
|
|
|
|
|
2010-03-11 02:34:27 +01:00
|
|
|
TargetAsmBackend &Backend;
|
|
|
|
|
2010-03-19 11:43:18 +01:00
|
|
|
MCCodeEmitter &Emitter;
|
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
raw_ostream &OS;
|
2010-02-13 10:28:03 +01:00
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
iplist<MCSectionData> Sections;
|
|
|
|
|
2009-08-22 12:13:24 +02:00
|
|
|
iplist<MCSymbolData> Symbols;
|
|
|
|
|
2010-03-10 21:58:29 +01:00
|
|
|
/// The map of sections to their associated assembler backend data.
|
|
|
|
//
|
|
|
|
// FIXME: Avoid this indirection?
|
|
|
|
DenseMap<const MCSection*, MCSectionData*> SectionMap;
|
|
|
|
|
|
|
|
/// The map of symbols to their associated assembler backend data.
|
|
|
|
//
|
|
|
|
// FIXME: Avoid this indirection?
|
|
|
|
DenseMap<const MCSymbol*, MCSymbolData*> SymbolMap;
|
|
|
|
|
2009-08-24 13:56:58 +02:00
|
|
|
std::vector<IndirectSymbolData> IndirectSymbols;
|
|
|
|
|
2010-03-25 23:49:09 +01:00
|
|
|
unsigned RelaxAll : 1;
|
2009-08-26 23:22:22 +02:00
|
|
|
unsigned SubsectionsViaSymbols : 1;
|
2010-09-23 00:27:05 +02:00
|
|
|
unsigned PadSectionToAlignment : 1;
|
2009-08-26 23:22:22 +02:00
|
|
|
|
2009-08-21 20:29:01 +02:00
|
|
|
private:
|
2010-03-19 10:28:59 +01:00
|
|
|
/// Evaluate a fixup to a relocatable expression and the value which should be
|
|
|
|
/// placed into the fixup.
|
|
|
|
///
|
|
|
|
/// \param Layout The layout to use for evaluation.
|
|
|
|
/// \param Fixup The fixup to evaluate.
|
|
|
|
/// \param DF The fragment the fixup is inside.
|
|
|
|
/// \param Target [out] On return, the relocatable expression the fixup
|
|
|
|
/// evaluates to.
|
|
|
|
/// \param Value [out] On return, the value of the fixup as currently layed
|
|
|
|
/// out.
|
|
|
|
/// \return Whether the fixup value was fully resolved. This is true if the
|
|
|
|
/// \arg Value result is fixed, otherwise the value may change due to
|
|
|
|
/// relocation.
|
2010-09-30 04:22:20 +02:00
|
|
|
bool EvaluateFixup(const MCObjectWriter &Writer, const MCAsmLayout &Layout,
|
2010-05-26 17:18:56 +02:00
|
|
|
const MCFixup &Fixup, const MCFragment *DF,
|
2010-03-19 10:28:59 +01:00
|
|
|
MCValue &Target, uint64_t &Value) const;
|
|
|
|
|
2010-03-12 23:07:14 +01:00
|
|
|
/// Check whether a fixup can be satisfied, or whether it needs to be relaxed
|
|
|
|
/// (increased in size, in order to hold its value correctly).
|
2010-09-30 04:22:20 +02:00
|
|
|
bool FixupNeedsRelaxation(const MCObjectWriter &Writer,
|
|
|
|
const MCFixup &Fixup, const MCFragment *DF,
|
2010-03-22 21:35:35 +01:00
|
|
|
const MCAsmLayout &Layout) const;
|
2010-03-12 23:07:14 +01:00
|
|
|
|
2010-03-23 04:13:05 +01:00
|
|
|
/// Check whether the given fragment needs relaxation.
|
2010-09-30 04:22:20 +02:00
|
|
|
bool FragmentNeedsRelaxation(const MCObjectWriter &Writer,
|
|
|
|
const MCInstFragment *IF,
|
2010-03-23 04:13:05 +01:00
|
|
|
const MCAsmLayout &Layout) const;
|
|
|
|
|
2010-05-13 20:35:06 +02:00
|
|
|
/// Compute the effective fragment size assuming it is layed out at the given
|
|
|
|
/// \arg SectionAddress and \arg FragmentOffset.
|
|
|
|
uint64_t ComputeFragmentSize(MCAsmLayout &Layout, const MCFragment &F,
|
|
|
|
uint64_t SectionAddress,
|
|
|
|
uint64_t FragmentOffset) const;
|
|
|
|
|
2010-03-12 23:07:14 +01:00
|
|
|
/// LayoutOnce - Perform one layout iteration and return true if any offsets
|
|
|
|
/// were adjusted.
|
2010-09-30 04:22:20 +02:00
|
|
|
bool LayoutOnce(const MCObjectWriter &Writer, MCAsmLayout &Layout);
|
2010-03-12 23:07:14 +01:00
|
|
|
|
2010-11-02 18:22:24 +01:00
|
|
|
bool RelaxInstruction(const MCObjectWriter &Writer, MCAsmLayout &Layout,
|
|
|
|
MCInstFragment &IF);
|
|
|
|
|
2010-11-02 22:38:23 +01:00
|
|
|
bool RelaxOrg(const MCObjectWriter &Writer, MCAsmLayout &Layout,
|
|
|
|
MCOrgFragment &OF);
|
|
|
|
|
2010-11-02 18:22:24 +01:00
|
|
|
bool RelaxLEB(const MCObjectWriter &Writer, MCAsmLayout &Layout,
|
|
|
|
MCLEBFragment &IF);
|
|
|
|
|
2010-11-07 03:07:12 +01:00
|
|
|
bool RelaxDwarfLineAddr(const MCObjectWriter &Writer, MCAsmLayout &Layout,
|
|
|
|
MCDwarfLineAddrFragment &DF);
|
|
|
|
|
2010-03-23 00:16:48 +01:00
|
|
|
/// FinishLayout - Finalize a layout, including fragment lowering.
|
|
|
|
void FinishLayout(MCAsmLayout &Layout);
|
|
|
|
|
2010-03-12 22:00:49 +01:00
|
|
|
public:
|
2010-03-19 04:18:15 +01:00
|
|
|
/// Find the symbol which defines the atom containing the given symbol, or
|
|
|
|
/// null if there is no such symbol.
|
2010-09-27 20:13:03 +02:00
|
|
|
const MCSymbolData *getAtom(const MCSymbolData *Symbol) const;
|
2010-03-19 04:18:15 +01:00
|
|
|
|
2010-03-19 04:18:09 +01:00
|
|
|
/// Check whether a particular symbol is visible to the linker and is required
|
|
|
|
/// in the symbol table, or whether it can be discarded by the assembler. This
|
|
|
|
/// also effects whether the assembler treats the label as potentially
|
|
|
|
/// defining a separate atom.
|
2010-06-16 22:04:29 +02:00
|
|
|
bool isSymbolLinkerVisible(const MCSymbol &SD) const;
|
2010-03-19 04:18:09 +01:00
|
|
|
|
2010-03-19 10:28:59 +01:00
|
|
|
/// Emit the section contents using the given object writer.
|
|
|
|
//
|
|
|
|
// FIXME: Should MCAssembler always have a reference to the object writer?
|
2010-03-25 03:00:02 +01:00
|
|
|
void WriteSectionData(const MCSectionData *Section, const MCAsmLayout &Layout,
|
|
|
|
MCObjectWriter *OW) const;
|
2010-03-12 22:00:49 +01:00
|
|
|
|
2010-09-30 04:22:20 +02:00
|
|
|
void AddSectionToTheEnd(const MCObjectWriter &Writer, MCSectionData &SD,
|
|
|
|
MCAsmLayout &Layout);
|
2010-08-16 20:35:06 +02:00
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
public:
|
|
|
|
/// Construct a new assembler instance.
|
|
|
|
///
|
|
|
|
/// \arg OS - The stream to output to.
|
|
|
|
//
|
|
|
|
// FIXME: How are we going to parameterize this? Two obvious options are stay
|
|
|
|
// concrete and require clients to pass in a target like object. The other
|
|
|
|
// option is to make this abstract, and have targets provide concrete
|
|
|
|
// implementations as we do with AsmParser.
|
2010-03-19 11:43:18 +01:00
|
|
|
MCAssembler(MCContext &_Context, TargetAsmBackend &_Backend,
|
2010-09-23 00:27:05 +02:00
|
|
|
MCCodeEmitter &_Emitter, bool _PadSectionToAlignment,
|
|
|
|
raw_ostream &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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
~MCAssembler();
|
|
|
|
|
2009-08-31 10:07:55 +02:00
|
|
|
MCContext &getContext() const { return Context; }
|
|
|
|
|
2010-03-11 03:28:59 +01:00
|
|
|
TargetAsmBackend &getBackend() const { return Backend; }
|
|
|
|
|
2010-03-19 11:43:18 +01:00
|
|
|
MCCodeEmitter &getEmitter() const { return Emitter; }
|
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
/// Finish - Do final processing and write the object to the output stream.
|
2010-07-22 07:58:53 +02:00
|
|
|
/// \arg Writer is used for custom object writer (as the MCJIT does),
|
|
|
|
/// if not specified it is automatically created from backend.
|
|
|
|
void Finish(MCObjectWriter *Writer = 0);
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
|
2009-08-26 23:22:22 +02:00
|
|
|
// FIXME: This does not belong here.
|
|
|
|
bool getSubsectionsViaSymbols() const {
|
|
|
|
return SubsectionsViaSymbols;
|
|
|
|
}
|
|
|
|
void setSubsectionsViaSymbols(bool Value) {
|
|
|
|
SubsectionsViaSymbols = Value;
|
|
|
|
}
|
|
|
|
|
2010-03-25 23:49:09 +01:00
|
|
|
bool getRelaxAll() const { return RelaxAll; }
|
|
|
|
void setRelaxAll(bool Value) { RelaxAll = Value; }
|
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
/// @name Section List Access
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
const SectionDataListType &getSectionList() const { return Sections; }
|
2010-02-13 10:28:03 +01:00
|
|
|
SectionDataListType &getSectionList() { return Sections; }
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
|
|
|
|
iterator begin() { return Sections.begin(); }
|
|
|
|
const_iterator begin() const { return Sections.begin(); }
|
|
|
|
|
|
|
|
iterator end() { return Sections.end(); }
|
|
|
|
const_iterator end() const { return Sections.end(); }
|
|
|
|
|
|
|
|
size_t size() const { return Sections.size(); }
|
|
|
|
|
2009-08-22 12:13:24 +02:00
|
|
|
/// @}
|
|
|
|
/// @name Symbol List Access
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
const SymbolDataListType &getSymbolList() const { return Symbols; }
|
|
|
|
SymbolDataListType &getSymbolList() { return Symbols; }
|
|
|
|
|
|
|
|
symbol_iterator symbol_begin() { return Symbols.begin(); }
|
|
|
|
const_symbol_iterator symbol_begin() const { return Symbols.begin(); }
|
|
|
|
|
|
|
|
symbol_iterator symbol_end() { return Symbols.end(); }
|
|
|
|
const_symbol_iterator symbol_end() const { return Symbols.end(); }
|
|
|
|
|
|
|
|
size_t symbol_size() const { return Symbols.size(); }
|
|
|
|
|
2009-08-24 13:56:58 +02:00
|
|
|
/// @}
|
|
|
|
/// @name Indirect Symbol List Access
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
// FIXME: This is a total hack, this should not be here. Once things are
|
|
|
|
// factored so that the streamer has direct access to the .o writer, it can
|
|
|
|
// disappear.
|
|
|
|
std::vector<IndirectSymbolData> &getIndirectSymbols() {
|
|
|
|
return IndirectSymbols;
|
|
|
|
}
|
|
|
|
|
|
|
|
indirect_symbol_iterator indirect_symbol_begin() {
|
|
|
|
return IndirectSymbols.begin();
|
|
|
|
}
|
2010-03-19 08:09:33 +01:00
|
|
|
const_indirect_symbol_iterator indirect_symbol_begin() const {
|
|
|
|
return IndirectSymbols.begin();
|
|
|
|
}
|
2009-08-24 13:56:58 +02:00
|
|
|
|
|
|
|
indirect_symbol_iterator indirect_symbol_end() {
|
|
|
|
return IndirectSymbols.end();
|
|
|
|
}
|
2010-03-19 08:09:33 +01:00
|
|
|
const_indirect_symbol_iterator indirect_symbol_end() const {
|
|
|
|
return IndirectSymbols.end();
|
|
|
|
}
|
2009-08-24 13:56:58 +02:00
|
|
|
|
|
|
|
size_t indirect_symbol_size() const { return IndirectSymbols.size(); }
|
|
|
|
|
2010-03-10 21:58:29 +01:00
|
|
|
/// @}
|
|
|
|
/// @name Backend Data Access
|
|
|
|
/// @{
|
|
|
|
|
2010-03-12 22:00:45 +01:00
|
|
|
MCSectionData &getSectionData(const MCSection &Section) const {
|
|
|
|
MCSectionData *Entry = SectionMap.lookup(&Section);
|
2010-03-10 21:58:29 +01:00
|
|
|
assert(Entry && "Missing section data!");
|
|
|
|
return *Entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
MCSectionData &getOrCreateSectionData(const MCSection &Section,
|
|
|
|
bool *Created = 0) {
|
|
|
|
MCSectionData *&Entry = SectionMap[&Section];
|
|
|
|
|
|
|
|
if (Created) *Created = !Entry;
|
|
|
|
if (!Entry)
|
|
|
|
Entry = new MCSectionData(Section, this);
|
|
|
|
|
|
|
|
return *Entry;
|
|
|
|
}
|
|
|
|
|
2010-03-12 22:00:45 +01:00
|
|
|
MCSymbolData &getSymbolData(const MCSymbol &Symbol) const {
|
|
|
|
MCSymbolData *Entry = SymbolMap.lookup(&Symbol);
|
2010-03-10 21:58:29 +01:00
|
|
|
assert(Entry && "Missing symbol data!");
|
|
|
|
return *Entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
MCSymbolData &getOrCreateSymbolData(const MCSymbol &Symbol,
|
|
|
|
bool *Created = 0) {
|
|
|
|
MCSymbolData *&Entry = SymbolMap[&Symbol];
|
|
|
|
|
|
|
|
if (Created) *Created = !Entry;
|
|
|
|
if (!Entry)
|
|
|
|
Entry = new MCSymbolData(Symbol, 0, 0, this);
|
|
|
|
|
|
|
|
return *Entry;
|
|
|
|
}
|
|
|
|
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
/// @}
|
2010-02-13 10:28:03 +01:00
|
|
|
|
|
|
|
void dump();
|
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.
llvm-svn: 79612
2009-08-21 11:11:24 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|