2011-07-23 00:45:41 +00:00
|
|
|
//===-- llvm/MC/TargetAsmBackend.h - Target Asm Backend ---------*- C++ -*-===//
|
2010-02-21 21:53:53 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-07-25 22:52:04 +00:00
|
|
|
#ifndef LLVM_MC_TARGETASMBACKEND_H
|
|
|
|
#define LLVM_MC_TARGETASMBACKEND_H
|
2010-02-21 21:53:53 +00:00
|
|
|
|
2010-12-08 01:16:55 +00:00
|
|
|
#include "llvm/MC/MCDirectives.h"
|
2010-12-16 03:20:06 +00:00
|
|
|
#include "llvm/MC/MCFixup.h"
|
|
|
|
#include "llvm/MC/MCFixupKindInfo.h"
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2010-03-19 09:28:12 +00:00
|
|
|
|
2010-02-21 21:53:53 +00:00
|
|
|
namespace llvm {
|
2011-03-09 18:44:41 +00:00
|
|
|
class MCELFObjectTargetWriter;
|
2010-05-26 15:18:56 +00:00
|
|
|
class MCFixup;
|
2010-03-23 01:39:09 +00:00
|
|
|
class MCInst;
|
2010-03-19 10:43:26 +00:00
|
|
|
class MCObjectWriter;
|
2010-03-15 21:56:50 +00:00
|
|
|
class MCSection;
|
2010-03-23 03:13:05 +00:00
|
|
|
template<typename T>
|
|
|
|
class SmallVectorImpl;
|
2010-03-19 10:43:26 +00:00
|
|
|
class raw_ostream;
|
2010-02-21 21:53:53 +00:00
|
|
|
|
|
|
|
/// TargetAsmBackend - Generic interface to target specific assembler backends.
|
|
|
|
class TargetAsmBackend {
|
|
|
|
TargetAsmBackend(const TargetAsmBackend &); // DO NOT IMPLEMENT
|
|
|
|
void operator=(const TargetAsmBackend &); // DO NOT IMPLEMENT
|
|
|
|
protected: // Can only create subclasses.
|
2010-11-26 04:24:21 +00:00
|
|
|
TargetAsmBackend();
|
2010-02-21 21:53:53 +00:00
|
|
|
|
2010-03-18 00:58:53 +00:00
|
|
|
unsigned HasReliableSymbolDifference : 1;
|
|
|
|
|
2010-02-21 21:53:53 +00:00
|
|
|
public:
|
|
|
|
virtual ~TargetAsmBackend();
|
|
|
|
|
2010-03-19 10:43:26 +00:00
|
|
|
/// createObjectWriter - Create a new MCObjectWriter instance for use by the
|
|
|
|
/// assembler backend to emit the final object file.
|
|
|
|
virtual MCObjectWriter *createObjectWriter(raw_ostream &OS) const = 0;
|
|
|
|
|
2011-03-09 18:44:41 +00:00
|
|
|
/// createELFObjectTargetWriter - Create a new ELFObjectTargetWriter to enable
|
|
|
|
/// non-standard ELFObjectWriters.
|
|
|
|
virtual MCELFObjectTargetWriter *createELFObjectTargetWriter() const {
|
|
|
|
assert(0 && "createELFObjectTargetWriter is not supported by asm backend");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-03-18 00:58:53 +00:00
|
|
|
/// hasReliableSymbolDifference - Check whether this target implements
|
|
|
|
/// accurate relocations for differences between symbols. If not, differences
|
|
|
|
/// between symbols will always be relocatable expressions and any references
|
|
|
|
/// to temporary symbols will be assumed to be in the same atom, unless they
|
|
|
|
/// reside in a different section.
|
|
|
|
///
|
|
|
|
/// This should always be true (since it results in fewer relocations with no
|
|
|
|
/// loss of functionality), but is currently supported as a way to maintain
|
|
|
|
/// exact object compatibility with Darwin 'as' (on non-x86_64). It should
|
2010-10-16 18:23:53 +00:00
|
|
|
/// eventually should be eliminated.
|
2010-03-18 00:58:53 +00:00
|
|
|
bool hasReliableSymbolDifference() const {
|
|
|
|
return HasReliableSymbolDifference;
|
|
|
|
}
|
2010-03-11 01:34:21 +00:00
|
|
|
|
2010-03-15 21:56:50 +00:00
|
|
|
/// doesSectionRequireSymbols - Check whether the given section requires that
|
|
|
|
/// all symbols (even temporaries) have symbol table entries.
|
|
|
|
virtual bool doesSectionRequireSymbols(const MCSection &Section) const {
|
|
|
|
return false;
|
|
|
|
}
|
2010-03-19 09:28:12 +00:00
|
|
|
|
2010-05-12 00:38:17 +00:00
|
|
|
/// isSectionAtomizable - Check whether the given section can be split into
|
|
|
|
/// atoms.
|
|
|
|
///
|
|
|
|
/// \see MCAssembler::isSymbolLinkerVisible().
|
|
|
|
virtual bool isSectionAtomizable(const MCSection &Section) const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-12-16 03:20:06 +00:00
|
|
|
/// @name Target Fixup Interfaces
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
/// getNumFixupKinds - Get the number of target specific fixup kinds.
|
|
|
|
virtual unsigned getNumFixupKinds() const = 0;
|
|
|
|
|
|
|
|
/// getFixupKindInfo - Get information on a fixup kind.
|
|
|
|
virtual const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const;
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
2010-03-19 09:28:12 +00:00
|
|
|
/// ApplyFixup - Apply the \arg Value for given \arg Fixup into the provided
|
|
|
|
/// data fragment, at the offset specified by the fixup and following the
|
|
|
|
/// fixup kind as appropriate.
|
2010-12-06 19:08:48 +00:00
|
|
|
virtual void ApplyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
|
2010-03-19 09:28:12 +00:00
|
|
|
uint64_t Value) const = 0;
|
2010-03-23 01:39:09 +00:00
|
|
|
|
2010-12-16 03:20:06 +00:00
|
|
|
/// @}
|
|
|
|
|
|
|
|
/// @name Target Relaxation Interfaces
|
|
|
|
/// @{
|
|
|
|
|
2010-03-23 03:13:05 +00:00
|
|
|
/// MayNeedRelaxation - Check whether the given instruction may need
|
|
|
|
/// relaxation.
|
|
|
|
///
|
2010-05-26 18:15:06 +00:00
|
|
|
/// \param Inst - The instruction to test.
|
2010-05-26 17:45:29 +00:00
|
|
|
virtual bool MayNeedRelaxation(const MCInst &Inst) const = 0;
|
2010-03-23 03:13:05 +00:00
|
|
|
|
2010-03-23 01:39:09 +00:00
|
|
|
/// RelaxInstruction - Relax the instruction in the given fragment to the next
|
|
|
|
/// wider instruction.
|
2010-05-26 18:15:06 +00:00
|
|
|
///
|
|
|
|
/// \param Inst - The instruction to relax, which may be the same as the
|
|
|
|
/// output.
|
|
|
|
/// \parm Res [output] - On return, the relaxed instruction.
|
|
|
|
virtual void RelaxInstruction(const MCInst &Inst, MCInst &Res) const = 0;
|
2010-03-23 02:36:58 +00:00
|
|
|
|
2010-12-16 03:20:06 +00:00
|
|
|
/// @}
|
|
|
|
|
2010-03-23 02:36:58 +00:00
|
|
|
/// WriteNopData - Write an (optimal) nop sequence of Count bytes to the given
|
|
|
|
/// output. If the target cannot generate such a sequence, it should return an
|
|
|
|
/// error.
|
|
|
|
///
|
|
|
|
/// \return - True on success.
|
|
|
|
virtual bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const = 0;
|
2010-12-08 01:16:55 +00:00
|
|
|
|
|
|
|
/// HandleAssemblerFlag - Handle any target-specific assembler flags.
|
|
|
|
/// By default, do nothing.
|
|
|
|
virtual void HandleAssemblerFlag(MCAssemblerFlag Flag) {}
|
2010-02-21 21:53:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|