50 void applyFixup(
const MCFragment &,
const MCFixup &,
const MCValue &Target,
51 uint8_t *
Data, uint64_t
Value,
bool IsResolved)
override;
53 std::unique_ptr<MCObjectTargetWriter>
54 createObjectTargetWriter()
const override;
56 MCFixupKindInfo getFixupKindInfo(
MCFixupKind Kind)
const override;
58 bool writeNopData(raw_ostream &OS, uint64_t
Count,
59 const MCSubtargetInfo *STI)
const override;
67 for (uint64_t i = 0; i <
Count; i += 4)
68 OS.
write(
"\x15\0\0\0", 4);
73void LanaiAsmBackend::applyFixup(
const MCFragment &
F,
const MCFixup &
Fixup,
74 const MCValue &Target, uint8_t *
Data,
75 uint64_t
Value,
bool IsResolved) {
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);
95 CurVal |=
static_cast<uint64_t
>(
static_cast<uint8_t
>(
Data[Idx])) << (i * 8);
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 {
114MCFixupKindInfo LanaiAsmBackend::getFixupKindInfo(
MCFixupKind Kind)
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());
static uint64_t adjustFixupValue(const MCFixup &Fixup, const MCValue &Target, uint64_t Value, MCContext &Ctx, const Triple &TheTriple, bool IsResolved)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static unsigned adjustFixupValue(unsigned Kind, uint64_t Value)
PowerPC TLS Dynamic Call Fixup
Generic interface to target specific assembler backends.
virtual MCFixupKindInfo getFixupKindInfo(MCFixupKind Kind) const
Get information on a fixup kind.
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.
Error applyFixup(LinkGraph &G, Block &B, const Edge &E, const ArmConfig &ArmCfg)
Apply fixup expression for edge to block content.
This is an optimization pass for GlobalISel generic memory operations.
FunctionAddr VTableAddr Value
uint16_t MCFixupKind
Extensible enumeration to represent the type of a fixup.
MCAsmBackend * createLanaiAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options)
FunctionAddr VTableAddr Count
@ 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.
FunctionAddr VTableAddr uintptr_t uintptr_t Data
std::unique_ptr< MCObjectTargetWriter > createLanaiELFObjectWriter(uint8_t OSABI)