53 std::unique_ptr<MCObjectTargetWriter>
67 for (
uint64_t i = 0; i < Count; i += 4)
86 unsigned NumBytes = (getFixupKindInfo(Kind).TargetSize + 7) / 8;
87 unsigned FullSize = 4;
93 for (
unsigned i = 0; i != NumBytes; ++i) {
94 unsigned Idx = (FullSize - 1 - i);
99 (
static_cast<uint64_t>(-1) >> (64 - getFixupKindInfo(Kind).TargetSize));
103 for (
unsigned i = 0; i != NumBytes; ++i) {
104 unsigned Idx = (FullSize - 1 - i);
105 Data[
Idx] =
static_cast<uint8_t>((CurVal >> (i * 8)) & 0xff);
109std::unique_ptr<MCObjectTargetWriter>
110LanaiAsmBackend::createObjectTargetWriter()
const {
126 {
"FIXUP_LANAI_NONE", 0, 32, 0},
127 {
"FIXUP_LANAI_21", 16, 16 , 0},
128 {
"FIXUP_LANAI_21_F", 16, 16 , 0},
129 {
"FIXUP_LANAI_25", 7, 25, 0},
130 {
"FIXUP_LANAI_32", 0, 32, 0},
131 {
"FIXUP_LANAI_HI16", 16, 16, 0},
132 {
"FIXUP_LANAI_LO16", 16, 16, 0}};
149 if (!TT.isOSBinFormatELF())
152 return new LanaiAsmBackend(
T, TT.getOS());
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
static unsigned adjustFixupValue(unsigned Kind, uint64_t Value)
PowerPC TLS Dynamic Call Fixup
Generic interface to target specific assembler backends.
virtual bool writeNopData(raw_ostream &OS, uint64_t Count, const MCSubtargetInfo *STI) const =0
Write an (optimal) nop sequence of Count bytes to the given output.
virtual MCFixupKindInfo getFixupKindInfo(MCFixupKind Kind) const
Get information on a fixup kind.
virtual std::unique_ptr< MCObjectTargetWriter > createObjectTargetWriter() const =0
virtual void applyFixup(const MCFragment &, const MCFixup &, const MCValue &Target, uint8_t *Data, uint64_t Value, bool IsResolved)=0
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
Generic base class for all target subtargets.
const Triple & getTargetTriple() const
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
LLVM Value Representation.
This class implements an extremely fast bulk output stream that can only output to a stream.
raw_ostream & write(unsigned char C)
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
This is an optimization pass for GlobalISel generic memory operations.
@ FK_Data_8
A eight-byte fixup.
@ FK_Data_1
A one-byte fixup.
@ FK_Data_4
A four-byte fixup.
@ FK_Data_2
A two-byte fixup.
MCAsmBackend * createLanaiAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options)
std::unique_ptr< MCObjectTargetWriter > createLanaiELFObjectWriter(uint8_t OSABI)
Target independent information on a fixup kind.