36 cl::desc(
"Disable relaxation of arithmetic instruction for X86"));
64 X86ELFObjectWriter(
bool is64Bit, uint8_t OSABI, uint16_t EMachine,
65 bool HasRelocationAddend,
bool foobar)
75 HasNopl = CPU !=
"generic" && CPU !=
"i386" && CPU !=
"i486" &&
76 CPU !=
"i586" && CPU !=
"pentium" && CPU !=
"pentium-mmx" &&
77 CPU !=
"i686" && CPU !=
"k6" && CPU !=
"k6-2" && CPU !=
"k6-3" &&
78 CPU !=
"geode" && CPU !=
"winchip-c6" && CPU !=
"winchip2" &&
79 CPU !=
"c3" && CPU !=
"c3-2";
82 unsigned getNumFixupKinds()
const {
90 {
"reloc_signed_4byte", 0, 4 * 8, 0},
91 {
"reloc_global_offset_table", 0, 4 * 8, 0}
102 void applyFixup(
const MCFixup &Fixup,
char *Data,
unsigned DataSize,
103 uint64_t
Value)
const {
106 assert(Fixup.
getOffset() + Size <= DataSize &&
107 "Invalid fixup offset!");
113 assert(
isIntN(Size * 8 + 1, Value) &&
114 "Value does not fit in the Fixup field");
116 for (
unsigned i = 0; i != Size; ++i)
117 Data[Fixup.
getOffset() + i] = uint8_t(Value >> (i * 8));
120 bool mayNeedRelaxation(
const MCInst &Inst)
const;
122 bool fixupNeedsRelaxation(
const MCFixup &Fixup,
127 void relaxInstruction(
const MCInst &Inst,
MCInst &Res)
const;
138 case X86::JAE_1:
return X86::JAE_4;
139 case X86::JA_1:
return X86::JA_4;
140 case X86::JBE_1:
return X86::JBE_4;
141 case X86::JB_1:
return X86::JB_4;
142 case X86::JE_1:
return X86::JE_4;
143 case X86::JGE_1:
return X86::JGE_4;
144 case X86::JG_1:
return X86::JG_4;
145 case X86::JLE_1:
return X86::JLE_4;
146 case X86::JL_1:
return X86::JL_4;
147 case X86::JMP_1:
return X86::JMP_4;
148 case X86::JNE_1:
return X86::JNE_4;
149 case X86::JNO_1:
return X86::JNO_4;
150 case X86::JNP_1:
return X86::JNP_4;
151 case X86::JNS_1:
return X86::JNS_4;
152 case X86::JO_1:
return X86::JO_4;
153 case X86::JP_1:
return X86::JP_4;
154 case X86::JS_1:
return X86::JS_4;
164 case X86::IMUL16rri8:
return X86::IMUL16rri;
165 case X86::IMUL16rmi8:
return X86::IMUL16rmi;
166 case X86::IMUL32rri8:
return X86::IMUL32rri;
167 case X86::IMUL32rmi8:
return X86::IMUL32rmi;
168 case X86::IMUL64rri8:
return X86::IMUL64rri32;
169 case X86::IMUL64rmi8:
return X86::IMUL64rmi32;
172 case X86::AND16ri8:
return X86::AND16ri;
173 case X86::AND16mi8:
return X86::AND16mi;
174 case X86::AND32ri8:
return X86::AND32ri;
175 case X86::AND32mi8:
return X86::AND32mi;
176 case X86::AND64ri8:
return X86::AND64ri32;
177 case X86::AND64mi8:
return X86::AND64mi32;
180 case X86::OR16ri8:
return X86::OR16ri;
181 case X86::OR16mi8:
return X86::OR16mi;
182 case X86::OR32ri8:
return X86::OR32ri;
183 case X86::OR32mi8:
return X86::OR32mi;
184 case X86::OR64ri8:
return X86::OR64ri32;
185 case X86::OR64mi8:
return X86::OR64mi32;
188 case X86::XOR16ri8:
return X86::XOR16ri;
189 case X86::XOR16mi8:
return X86::XOR16mi;
190 case X86::XOR32ri8:
return X86::XOR32ri;
191 case X86::XOR32mi8:
return X86::XOR32mi;
192 case X86::XOR64ri8:
return X86::XOR64ri32;
193 case X86::XOR64mi8:
return X86::XOR64mi32;
196 case X86::ADD16ri8:
return X86::ADD16ri;
197 case X86::ADD16mi8:
return X86::ADD16mi;
198 case X86::ADD32ri8:
return X86::ADD32ri;
199 case X86::ADD32mi8:
return X86::ADD32mi;
200 case X86::ADD64ri8:
return X86::ADD64ri32;
201 case X86::ADD64mi8:
return X86::ADD64mi32;
204 case X86::SUB16ri8:
return X86::SUB16ri;
205 case X86::SUB16mi8:
return X86::SUB16mi;
206 case X86::SUB32ri8:
return X86::SUB32ri;
207 case X86::SUB32mi8:
return X86::SUB32mi;
208 case X86::SUB64ri8:
return X86::SUB64ri32;
209 case X86::SUB64mi8:
return X86::SUB64mi32;
212 case X86::CMP16ri8:
return X86::CMP16ri;
213 case X86::CMP16mi8:
return X86::CMP16mi;
214 case X86::CMP32ri8:
return X86::CMP32ri;
215 case X86::CMP32mi8:
return X86::CMP32mi;
216 case X86::CMP64ri8:
return X86::CMP64ri32;
217 case X86::CMP64mi8:
return X86::CMP64mi32;
220 case X86::PUSHi8:
return X86::PUSHi32;
221 case X86::PUSHi16:
return X86::PUSHi32;
222 case X86::PUSH64i8:
return X86::PUSH64i32;
223 case X86::PUSH64i16:
return X86::PUSH64i32;
234 bool X86AsmBackend::mayNeedRelaxation(
const MCInst &Inst)
const {
261 return hasExp && !hasRIP;
264 bool X86AsmBackend::fixupNeedsRelaxation(
const MCFixup &Fixup,
269 return int64_t(Value) != int64_t(int8_t(Value));
274 void X86AsmBackend::relaxInstruction(
const MCInst &Inst,
MCInst &Res)
const {
293 bool X86AsmBackend::writeNopData(uint64_t Count,
MCObjectWriter *OW)
const {
294 static const uint8_t Nops[10][10] = {
302 {0x0f, 0x1f, 0x40, 0x00},
304 {0x0f, 0x1f, 0x44, 0x00, 0x00},
306 {0x66, 0x0f, 0x1f, 0x44, 0x00, 0x00},
308 {0x0f, 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00},
310 {0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
312 {0x66, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
314 {0x66, 0x2e, 0x0f, 0x1f, 0x84, 0x00, 0x00, 0x00, 0x00, 0x00},
321 for (uint64_t i = 0; i < Count; ++i)
329 const uint8_t ThisNopLength = (uint8_t) std::min(Count, (uint64_t) 15);
330 const uint8_t Prefixes = ThisNopLength <= 10 ? 0 : ThisNopLength - 10;
331 for (uint8_t i = 0; i < Prefixes; i++)
333 const uint8_t Rest = ThisNopLength - Prefixes;
334 for (uint8_t i = 0; i < Rest; i++)
335 OW->
Write8(Nops[Rest - 1][i]);
336 Count -= ThisNopLength;
337 }
while (Count != 0);
346 class ELFX86AsmBackend :
public X86AsmBackend {
350 : X86AsmBackend(T, CPU), OSABI(_OSABI) {
351 HasReliableSymbolDifference =
true;
356 return ES.
getFlags() & ELF::SHF_MERGE;
360 class ELFX86_32AsmBackend :
public ELFX86AsmBackend {
363 : ELFX86AsmBackend(T, OSABI, CPU) {}
370 class ELFX86_64AsmBackend :
public ELFX86AsmBackend {
373 : ELFX86AsmBackend(T, OSABI, CPU) {}
380 class WindowsX86AsmBackend :
public X86AsmBackend {
385 : X86AsmBackend(T, CPU)
400 UNWIND_MODE_BP_FRAME = 0x01000000,
403 UNWIND_MODE_STACK_IMMD = 0x02000000,
406 UNWIND_MODE_STACK_IND = 0x03000000,
409 UNWIND_MODE_DWARF = 0x04000000,
412 UNWIND_BP_FRAME_REGISTERS = 0x00007FFF,
415 UNWIND_FRAMELESS_STACK_REG_PERMUTATION = 0x000003FF
420 class DarwinX86AsmBackend :
public X86AsmBackend {
424 enum { CU_NUM_SAVED_REGS = 6 };
426 mutable unsigned SavedRegs[CU_NUM_SAVED_REGS];
430 unsigned PushInstrSize;
431 unsigned MoveInstrSize;
432 unsigned StackDivide;
438 if (Instrs.
empty())
return 0;
441 unsigned SavedRegIdx = 0;
442 memset(SavedRegs, 0,
sizeof(SavedRegs));
447 uint32_t CompactUnwindEncoding = 0;
449 unsigned SubtractInstrIdx = Is64Bit ? 3 : 2;
450 unsigned InstrOffset = 0;
451 unsigned StackAdjust = 0;
452 unsigned StackSize = 0;
453 unsigned PrevStackSize = 0;
454 unsigned NumDefCFAOffsets = 0;
456 for (
unsigned i = 0, e = Instrs.
size(); i != e; ++i) {
473 (Is64Bit ? X86::RBP :
X86::EBP) &&
"Invalid frame pointer!");
476 memset(SavedRegs, 0,
sizeof(SavedRegs));
479 InstrOffset += MoveInstrSize;
497 PrevStackSize = StackSize;
515 if (SavedRegIdx == CU_NUM_SAVED_REGS)
518 return CU::UNWIND_MODE_DWARF;
521 SavedRegs[SavedRegIdx++] =
Reg;
522 StackAdjust += OffsetSize;
523 InstrOffset += PushInstrSize;
529 StackAdjust /= StackDivide;
532 if ((StackAdjust & 0xFF) != StackAdjust)
534 return CU::UNWIND_MODE_DWARF;
537 uint32_t RegEnc = encodeCompactUnwindRegistersWithFrame();
538 if (RegEnc == ~0U)
return CU::UNWIND_MODE_DWARF;
540 CompactUnwindEncoding |= CU::UNWIND_MODE_BP_FRAME;
541 CompactUnwindEncoding |= (StackAdjust & 0xFF) << 16;
542 CompactUnwindEncoding |= RegEnc & CU::UNWIND_BP_FRAME_REGISTERS;
549 if ((NumDefCFAOffsets == SavedRegIdx + 1 &&
550 StackSize - PrevStackSize == 1) ||
551 (Instrs.
size() == 1 && NumDefCFAOffsets == 1 && StackSize == 2))
552 return CU::UNWIND_MODE_DWARF;
554 SubtractInstrIdx += InstrOffset;
557 if ((StackSize & 0xFF) == StackSize) {
559 CompactUnwindEncoding |= CU::UNWIND_MODE_STACK_IMMD;
562 CompactUnwindEncoding |= (StackSize & 0xFF) << 16;
564 if ((StackAdjust & 0x7) != StackAdjust)
566 return CU::UNWIND_MODE_DWARF;
569 CompactUnwindEncoding |= CU::UNWIND_MODE_STACK_IND;
573 CompactUnwindEncoding |= (SubtractInstrIdx & 0xFF) << 16;
577 CompactUnwindEncoding |= (StackAdjust & 0x7) << 13;
581 std::reverse(&SavedRegs[0], &SavedRegs[SavedRegIdx]);
582 CompactUnwindEncoding |= (SavedRegIdx & 0x7) << 10;
586 uint32_t RegEnc = encodeCompactUnwindRegistersWithoutFrame(SavedRegIdx);
587 if (RegEnc == ~0U)
return CU::UNWIND_MODE_DWARF;
590 CompactUnwindEncoding |=
591 RegEnc & CU::UNWIND_FRAMELESS_STACK_REG_PERMUTATION;
594 return CompactUnwindEncoding;
600 int getCompactUnwindRegNum(
unsigned Reg)
const {
601 static const uint16_t CU32BitRegs[7] = {
604 static const uint16_t CU64BitRegs[] = {
605 X86::RBX, X86::R12, X86::R13, X86::R14, X86::R15, X86::RBP, 0
607 const uint16_t *CURegs = Is64Bit ? CU64BitRegs : CU32BitRegs;
608 for (
int Idx = 1; *CURegs; ++CURegs, ++Idx)
617 uint32_t encodeCompactUnwindRegistersWithFrame()
const {
622 for (
int i = 0, Idx = 0; i != CU_NUM_SAVED_REGS; ++i) {
623 unsigned Reg = SavedRegs[i];
626 int CURegNum = getCompactUnwindRegNum(Reg);
627 if (CURegNum == -1)
return ~0U;
631 RegEnc |= (CURegNum & 0x7) << (Idx++ * 3);
634 assert((RegEnc & 0x3FFFF) == RegEnc &&
635 "Invalid compact register encoding!");
642 uint32_t encodeCompactUnwindRegistersWithoutFrame(
unsigned RegCount)
const {
656 for (
unsigned i = 0; i != CU_NUM_SAVED_REGS; ++i) {
657 int CUReg = getCompactUnwindRegNum(SavedRegs[i]);
658 if (CUReg == -1)
return ~0U;
659 SavedRegs[i] = CUReg;
663 std::reverse(&SavedRegs[0], &SavedRegs[CU_NUM_SAVED_REGS]);
665 uint32_t RenumRegs[CU_NUM_SAVED_REGS];
666 for (
unsigned i = CU_NUM_SAVED_REGS - RegCount; i < CU_NUM_SAVED_REGS; ++i){
667 unsigned Countless = 0;
668 for (
unsigned j = CU_NUM_SAVED_REGS - RegCount; j < i; ++j)
669 if (SavedRegs[j] < SavedRegs[i])
672 RenumRegs[i] = SavedRegs[i] - Countless - 1;
676 uint32_t permutationEncoding = 0;
679 permutationEncoding |= 120 * RenumRegs[0] + 24 * RenumRegs[1]
680 + 6 * RenumRegs[2] + 2 * RenumRegs[3]
684 permutationEncoding |= 120 * RenumRegs[1] + 24 * RenumRegs[2]
685 + 6 * RenumRegs[3] + 2 * RenumRegs[4]
689 permutationEncoding |= 60 * RenumRegs[2] + 12 * RenumRegs[3]
690 + 3 * RenumRegs[4] + RenumRegs[5];
693 permutationEncoding |= 20 * RenumRegs[3] + 4 * RenumRegs[4]
697 permutationEncoding |= 5 * RenumRegs[4] + RenumRegs[5];
700 permutationEncoding |= RenumRegs[5];
704 assert((permutationEncoding & 0x3FF) == permutationEncoding &&
705 "Invalid compact register encoding!");
706 return permutationEncoding;
712 : X86AsmBackend(T, CPU), MRI(MRI), Is64Bit(Is64Bit) {
713 memset(SavedRegs, 0,
sizeof(SavedRegs));
714 OffsetSize = Is64Bit ? 8 : 4;
715 MoveInstrSize = Is64Bit ? 3 : 2;
716 StackDivide = Is64Bit ? 8 : 4;
721 class DarwinX86_32AsmBackend :
public DarwinX86AsmBackend {
726 : DarwinX86AsmBackend(T, MRI, CPU,
false), SupportsCU(SupportsCU) {}
737 return SupportsCU ? generateCompactUnwindEncodingImpl(Instrs) : 0;
741 class DarwinX86_64AsmBackend :
public DarwinX86AsmBackend {
748 : DarwinX86AsmBackend(T, MRI, CPU,
true), SupportsCU(SupportsCU),
750 HasReliableSymbolDifference =
true;
771 virtual bool isSectionAtomizable(
const MCSection &Section)
const {
794 return SupportsCU ? generateCompactUnwindEncodingImpl(Instrs) : 0;
807 return new DarwinX86_32AsmBackend(T, MRI, CPU,
812 return new WindowsX86AsmBackend(T,
false, CPU);
815 return new ELFX86_32AsmBackend(T, OSABI, CPU);
829 return new DarwinX86_64AsmBackend(T, MRI, CPU,
835 return new WindowsX86AsmBackend(T,
true, CPU);
838 return new ELFX86_64AsmBackend(T, OSABI, CPU);
OSType getOS() const
getOS - Get the parsed operating system type of this triple.
A eight-byte pc relative fixup.
unsigned getFlags() const
unsigned getRegister() const
LLVM_ATTRIBUTE_NORETURN void report_fatal_error(const char *reason, bool gen_crash_diag=true)
bool isOSWindows() const
Tests whether the OS is Windows.
MCObjectWriter * createX86WinCOFFObjectWriter(raw_ostream &OS, bool Is64Bit)
createX86WinCOFFObjectWriter - Construct an X86 Win COFF object writer.
A one-byte pc relative fixup.
MCObjectWriter * createX86MachObjectWriter(raw_ostream &OS, bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype)
createX86MachObjectWriter - Construct an X86 Mach-O object writer.
#define llvm_unreachable(msg)
A four-byte section relative fixup.
unsigned isMacOSXVersionLT(unsigned Major, unsigned Minor=0, unsigned Micro=0) const
A two-byte section relative fixup.
unsigned getReg() const
getReg - Returns the register number.
uint32_t getOffset() const
size_t size() const
size - Get the array size.
static cl::opt< bool > MCDisableArithRelaxation("mc-x86-disable-arith-relaxation", cl::desc("Disable relaxation of arithmetic instruction for X86"))
A switch()-like statement whose cases are string literals.
static unsigned getRelaxedOpcode(unsigned Op)
void Write8(uint8_t Value)
MCFixupKind
MCFixupKind - Extensible enumeration to represent the type of a fixup.
MCAsmBackend * createX86_32AsmBackend(const Target &T, const MCRegisterInfo &MRI, StringRef TT, StringRef CPU)
static unsigned getRelaxedOpcodeArith(unsigned Op)
bool empty() const
empty - Check if the array is empty.
static unsigned getFixupKindLog2Size(unsigned Kind)
int getLLVMRegNum(unsigned RegNum, bool isEH) const
Map a dwarf register back to a target register.
bool isIntN(unsigned N, int64_t x)
MCAsmBackend * createX86_64AsmBackend(const Target &T, const MCRegisterInfo &MRI, StringRef TT, StringRef CPU)
MCFixupKind getKind() const
CompactUnwindEncodings
Compact unwind encoding values.
bool isOSDarwin() const
isOSDarwin - Is this a "Darwin" OS (OS X or iOS).
OpType getOperation() const
void setOpcode(unsigned Op)
A two-byte pc relative fixup.
A four-byte pc relative fixup.
static unsigned getRelaxedOpcodeBranch(unsigned Op)
R Default(const T &Value) const
unsigned getOpcode() const
A one-byte section relative fixup.
void dump_pretty(raw_ostream &OS, const MCAsmInfo *MAI=0, const MCInstPrinter *Printer=0, StringRef Separator=" ") const
Dump the MCInst as prettily as possible using the additional MC structures, if given. Operators are separated by the Separator string.
A eight-byte section relative fixup.
MCObjectWriter * createX86ELFObjectWriter(raw_ostream &OS, bool IsELF64, uint8_t OSABI, uint16_t EMachine)
createX86ELFObjectWriter - Construct an X86 ELF object writer.
unsigned getNumOperands() const
StringRef getArchName() const
MCFixupKindInfo - Target independent information on a fixup kind.
EnvironmentType getEnvironment() const
getEnvironment - Get the parsed environment type of this triple.
LLVM Value Representation.
MCAsmBackend - Generic interface to target specific assembler backends.
const MCRegisterInfo & MRI
virtual const MCFixupKindInfo & getFixupKindInfo(MCFixupKind Kind) const
getFixupKindInfo - Get information on a fixup kind.
const MCOperand & getOperand(unsigned i) const