2003-06-02 03:28:00 +00:00
|
|
|
//===-- X86/X86CodeEmitter.cpp - Convert X86 code to machine code ---------===//
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-12-02 21:24:12 +00:00
|
|
|
//
|
|
|
|
// This file contains the pass that transforms the X86 machine instructions into
|
2004-11-20 23:55:15 +00:00
|
|
|
// relocatable machine code.
|
2002-12-02 21:24:12 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-12-19 22:59:26 +00:00
|
|
|
#define DEBUG_TYPE "x86-emitter"
|
2006-09-08 06:48:29 +00:00
|
|
|
#include "X86InstrInfo.h"
|
2008-01-05 02:26:58 +00:00
|
|
|
#include "X86JITInfo.h"
|
2006-09-08 06:48:29 +00:00
|
|
|
#include "X86Subtarget.h"
|
2002-12-02 21:24:12 +00:00
|
|
|
#include "X86TargetMachine.h"
|
2004-11-20 23:55:15 +00:00
|
|
|
#include "X86Relocations.h"
|
2002-12-03 06:34:06 +00:00
|
|
|
#include "X86.h"
|
2002-12-02 21:24:12 +00:00
|
|
|
#include "llvm/PassManager.h"
|
|
|
|
#include "llvm/CodeGen/MachineCodeEmitter.h"
|
2009-05-30 20:51:52 +00:00
|
|
|
#include "llvm/CodeGen/JITCodeEmitter.h"
|
2009-07-06 05:09:34 +00:00
|
|
|
#include "llvm/CodeGen/ObjectCodeEmitter.h"
|
2002-12-28 20:24:48 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
2002-12-02 21:44:34 +00:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2008-02-13 18:39:37 +00:00
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
2003-12-20 10:20:19 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2003-10-20 03:42:58 +00:00
|
|
|
#include "llvm/Function.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2009-08-27 08:12:55 +00:00
|
|
|
#include "llvm/MC/MCCodeEmitter.h"
|
2009-08-31 08:08:38 +00:00
|
|
|
#include "llvm/MC/MCExpr.h"
|
2009-08-27 08:12:55 +00:00
|
|
|
#include "llvm/MC/MCInst.h"
|
2006-08-27 12:54:02 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2008-03-14 07:13:42 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-08 18:01:40 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2009-07-25 00:23:56 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2006-02-18 00:57:10 +00:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2003-12-12 07:11:18 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2006-12-19 22:59:26 +00:00
|
|
|
STATISTIC(NumEmitted, "Number of machine instructions emitted");
|
2003-06-01 23:23:50 +00:00
|
|
|
|
2002-12-02 21:24:12 +00:00
|
|
|
namespace {
|
2009-08-16 02:45:18 +00:00
|
|
|
template<class CodeEmitter>
|
2006-06-28 23:27:49 +00:00
|
|
|
class VISIBILITY_HIDDEN Emitter : public MachineFunctionPass {
|
2002-12-28 20:24:48 +00:00
|
|
|
const X86InstrInfo *II;
|
2006-09-08 06:48:29 +00:00
|
|
|
const TargetData *TD;
|
2008-05-14 01:58:56 +00:00
|
|
|
X86TargetMachine &TM;
|
2009-06-01 19:57:37 +00:00
|
|
|
CodeEmitter &MCE;
|
2008-01-05 02:26:58 +00:00
|
|
|
intptr_t PICBaseOffset;
|
2006-09-08 06:48:29 +00:00
|
|
|
bool Is64BitMode;
|
2007-12-22 09:40:20 +00:00
|
|
|
bool IsPIC;
|
2002-12-03 06:34:06 +00:00
|
|
|
public:
|
2007-05-03 01:11:54 +00:00
|
|
|
static char ID;
|
2009-06-01 19:57:37 +00:00
|
|
|
explicit Emitter(X86TargetMachine &tm, CodeEmitter &mce)
|
2008-09-04 17:05:41 +00:00
|
|
|
: MachineFunctionPass(&ID), II(0), TD(0), TM(tm),
|
2008-01-05 02:26:58 +00:00
|
|
|
MCE(mce), PICBaseOffset(0), Is64BitMode(false),
|
2008-01-04 10:46:51 +00:00
|
|
|
IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
|
2009-06-01 19:57:37 +00:00
|
|
|
Emitter(X86TargetMachine &tm, CodeEmitter &mce,
|
2006-09-08 06:48:29 +00:00
|
|
|
const X86InstrInfo &ii, const TargetData &td, bool is64)
|
2008-09-04 17:05:41 +00:00
|
|
|
: MachineFunctionPass(&ID), II(&ii), TD(&td), TM(tm),
|
2008-01-05 02:26:58 +00:00
|
|
|
MCE(mce), PICBaseOffset(0), Is64BitMode(is64),
|
2008-01-04 10:46:51 +00:00
|
|
|
IsPIC(TM.getRelocationModel() == Reloc::PIC_) {}
|
2002-12-02 21:24:12 +00:00
|
|
|
|
2002-12-28 20:24:48 +00:00
|
|
|
bool runOnMachineFunction(MachineFunction &MF);
|
2002-12-02 21:44:34 +00:00
|
|
|
|
2002-12-15 21:13:40 +00:00
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "X86 Machine Code Emitter";
|
|
|
|
}
|
|
|
|
|
2008-01-05 00:41:47 +00:00
|
|
|
void emitInstruction(const MachineInstr &MI,
|
2008-01-07 07:27:27 +00:00
|
|
|
const TargetInstrDesc *Desc);
|
2008-02-13 18:39:37 +00:00
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const {
|
2009-07-31 23:44:16 +00:00
|
|
|
AU.setPreservesAll();
|
2008-02-13 18:39:37 +00:00
|
|
|
AU.addRequired<MachineModuleInfo>();
|
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
2004-03-09 03:34:53 +00:00
|
|
|
|
2002-12-03 06:34:06 +00:00
|
|
|
private:
|
2006-04-22 18:53:45 +00:00
|
|
|
void emitPCRelativeBlockAddress(MachineBasicBlock *MBB);
|
2007-12-22 09:40:20 +00:00
|
|
|
void emitGlobalAddress(GlobalValue *GV, unsigned Reloc,
|
2008-10-24 01:57:54 +00:00
|
|
|
intptr_t Disp = 0, intptr_t PCAdj = 0,
|
2008-11-10 01:08:07 +00:00
|
|
|
bool NeedStub = false, bool Indirect = false);
|
2008-01-03 02:56:28 +00:00
|
|
|
void emitExternalSymbolAddress(const char *ES, unsigned Reloc);
|
2008-10-24 01:57:54 +00:00
|
|
|
void emitConstPoolAddress(unsigned CPI, unsigned Reloc, intptr_t Disp = 0,
|
2008-01-03 02:56:28 +00:00
|
|
|
intptr_t PCAdj = 0);
|
2007-12-22 09:40:20 +00:00
|
|
|
void emitJumpTableAddress(unsigned JTI, unsigned Reloc,
|
2008-01-03 02:56:28 +00:00
|
|
|
intptr_t PCAdj = 0);
|
2003-06-01 23:23:50 +00:00
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
void emitDisplacementField(const MachineOperand *RelocOp, int DispVal,
|
2009-08-05 00:11:21 +00:00
|
|
|
intptr_t Adj = 0, bool IsPCRel = true);
|
2006-05-04 00:42:08 +00:00
|
|
|
|
2002-12-03 06:34:06 +00:00
|
|
|
void emitRegModRMByte(unsigned ModRMReg, unsigned RegOpcodeField);
|
2008-10-17 17:14:20 +00:00
|
|
|
void emitRegModRMByte(unsigned RegOpcodeField);
|
2002-12-03 06:34:06 +00:00
|
|
|
void emitSIBByte(unsigned SS, unsigned Index, unsigned Base);
|
2006-09-08 06:48:29 +00:00
|
|
|
void emitConstant(uint64_t Val, unsigned Size);
|
2002-12-03 06:34:06 +00:00
|
|
|
|
|
|
|
void emitMemModRMByte(const MachineInstr &MI,
|
2006-09-08 06:48:29 +00:00
|
|
|
unsigned Op, unsigned RegOpcodeField,
|
2007-12-22 09:40:20 +00:00
|
|
|
intptr_t PCAdj = 0);
|
2002-12-03 06:34:06 +00:00
|
|
|
|
2008-02-08 03:29:40 +00:00
|
|
|
unsigned getX86RegNum(unsigned RegNo) const;
|
2002-12-02 21:24:12 +00:00
|
|
|
};
|
2009-05-30 20:51:52 +00:00
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
char Emitter<CodeEmitter>::ID = 0;
|
2009-08-16 02:45:18 +00:00
|
|
|
} // end anonymous namespace.
|
2002-12-02 21:24:12 +00:00
|
|
|
|
2005-07-11 05:17:48 +00:00
|
|
|
/// createX86CodeEmitterPass - Return a pass that emits the collected X86 code
|
2009-05-30 20:51:52 +00:00
|
|
|
/// to the specified templated MachineCodeEmitter object.
|
|
|
|
|
2009-07-06 05:09:34 +00:00
|
|
|
FunctionPass *llvm::createX86CodeEmitterPass(X86TargetMachine &TM,
|
|
|
|
MachineCodeEmitter &MCE) {
|
2009-05-30 20:51:52 +00:00
|
|
|
return new Emitter<MachineCodeEmitter>(TM, MCE);
|
|
|
|
}
|
2009-07-06 05:09:34 +00:00
|
|
|
FunctionPass *llvm::createX86JITCodeEmitterPass(X86TargetMachine &TM,
|
|
|
|
JITCodeEmitter &JCE) {
|
2009-05-30 20:51:52 +00:00
|
|
|
return new Emitter<JITCodeEmitter>(TM, JCE);
|
2002-12-02 21:24:12 +00:00
|
|
|
}
|
2009-07-06 05:09:34 +00:00
|
|
|
FunctionPass *llvm::createX86ObjectCodeEmitterPass(X86TargetMachine &TM,
|
|
|
|
ObjectCodeEmitter &OCE) {
|
|
|
|
return new Emitter<ObjectCodeEmitter>(TM, OCE);
|
|
|
|
}
|
2009-05-30 20:51:52 +00:00
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
bool Emitter<CodeEmitter>::runOnMachineFunction(MachineFunction &MF) {
|
2008-08-11 23:46:25 +00:00
|
|
|
|
2008-02-13 18:39:37 +00:00
|
|
|
MCE.setModuleInfo(&getAnalysis<MachineModuleInfo>());
|
|
|
|
|
2008-05-14 01:58:56 +00:00
|
|
|
II = TM.getInstrInfo();
|
|
|
|
TD = TM.getTargetData();
|
2008-01-04 10:46:51 +00:00
|
|
|
Is64BitMode = TM.getSubtarget<X86Subtarget>().is64Bit();
|
2008-05-20 01:56:59 +00:00
|
|
|
IsPIC = TM.getRelocationModel() == Reloc::PIC_;
|
2008-02-13 18:39:37 +00:00
|
|
|
|
2006-05-02 18:27:26 +00:00
|
|
|
do {
|
2009-07-25 00:23:56 +00:00
|
|
|
DEBUG(errs() << "JITTing function '"
|
|
|
|
<< MF.getFunction()->getName() << "'\n");
|
2006-05-02 18:27:26 +00:00
|
|
|
MCE.startFunction(MF);
|
2006-05-03 17:21:32 +00:00
|
|
|
for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
|
|
|
|
MBB != E; ++MBB) {
|
|
|
|
MCE.StartMachineBasicBlock(MBB);
|
|
|
|
for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
|
2008-01-05 00:41:47 +00:00
|
|
|
I != E; ++I) {
|
2008-01-07 07:27:27 +00:00
|
|
|
const TargetInstrDesc &Desc = I->getDesc();
|
|
|
|
emitInstruction(*I, &Desc);
|
2008-01-05 00:41:47 +00:00
|
|
|
// MOVPC32r is basically a call plus a pop instruction.
|
2008-01-07 07:27:27 +00:00
|
|
|
if (Desc.getOpcode() == X86::MOVPC32r)
|
2008-01-05 00:41:47 +00:00
|
|
|
emitInstruction(*I, &II->get(X86::POP32r));
|
|
|
|
NumEmitted++; // Keep track of the # of mi's emitted
|
|
|
|
}
|
2006-05-03 17:21:32 +00:00
|
|
|
}
|
2006-05-02 18:27:26 +00:00
|
|
|
} while (MCE.finishFunction(MF));
|
2003-06-01 23:23:50 +00:00
|
|
|
|
2002-12-02 21:44:34 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-05-03 17:10:41 +00:00
|
|
|
/// emitPCRelativeBlockAddress - This method keeps track of the information
|
|
|
|
/// necessary to resolve the address of this block later and emits a dummy
|
|
|
|
/// value.
|
2003-06-01 23:23:50 +00:00
|
|
|
///
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
void Emitter<CodeEmitter>::emitPCRelativeBlockAddress(MachineBasicBlock *MBB) {
|
2006-05-03 17:10:41 +00:00
|
|
|
// Remember where this reference was and where it is to so we can
|
|
|
|
// deal with it later.
|
2006-07-27 18:21:10 +00:00
|
|
|
MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
|
|
|
|
X86::reloc_pcrel_word, MBB));
|
2006-05-03 17:10:41 +00:00
|
|
|
MCE.emitWordLE(0);
|
2003-06-01 23:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// emitGlobalAddress - Emit the specified address to the code stream assuming
|
2006-09-08 06:48:29 +00:00
|
|
|
/// this is part of a "take the address of a global" instruction.
|
2003-06-01 23:23:50 +00:00
|
|
|
///
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
void Emitter<CodeEmitter>::emitGlobalAddress(GlobalValue *GV, unsigned Reloc,
|
2008-10-24 01:57:54 +00:00
|
|
|
intptr_t Disp /* = 0 */,
|
|
|
|
intptr_t PCAdj /* = 0 */,
|
2008-01-04 10:46:51 +00:00
|
|
|
bool NeedStub /* = false */,
|
2008-11-10 01:08:07 +00:00
|
|
|
bool Indirect /* = false */) {
|
2009-08-05 00:11:21 +00:00
|
|
|
intptr_t RelocCST = Disp;
|
2008-01-03 02:56:28 +00:00
|
|
|
if (Reloc == X86::reloc_picrel_word)
|
2008-01-05 02:26:58 +00:00
|
|
|
RelocCST = PICBaseOffset;
|
2008-01-04 10:46:51 +00:00
|
|
|
else if (Reloc == X86::reloc_pcrel_word)
|
|
|
|
RelocCST = PCAdj;
|
2008-11-10 01:08:07 +00:00
|
|
|
MachineRelocation MR = Indirect
|
|
|
|
? MachineRelocation::getIndirectSymbol(MCE.getCurrentPCOffset(), Reloc,
|
|
|
|
GV, RelocCST, NeedStub)
|
2008-01-04 10:46:51 +00:00
|
|
|
: MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
|
|
|
|
GV, RelocCST, NeedStub);
|
|
|
|
MCE.addRelocation(MR);
|
2008-10-24 01:57:54 +00:00
|
|
|
// The relocated value will be added to the displacement
|
2006-12-05 04:01:03 +00:00
|
|
|
if (Reloc == X86::reloc_absolute_dword)
|
2008-10-24 01:57:54 +00:00
|
|
|
MCE.emitDWordLE(Disp);
|
|
|
|
else
|
|
|
|
MCE.emitWordLE((int32_t)Disp);
|
2003-06-01 23:23:50 +00:00
|
|
|
}
|
|
|
|
|
2004-11-20 23:55:15 +00:00
|
|
|
/// emitExternalSymbolAddress - Arrange for the address of an external symbol to
|
|
|
|
/// be emitted to the current location in the function, and allow it to be PC
|
|
|
|
/// relative.
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
void Emitter<CodeEmitter>::emitExternalSymbolAddress(const char *ES,
|
|
|
|
unsigned Reloc) {
|
2008-01-05 02:26:58 +00:00
|
|
|
intptr_t RelocCST = (Reloc == X86::reloc_picrel_word) ? PICBaseOffset : 0;
|
2006-05-03 20:30:20 +00:00
|
|
|
MCE.addRelocation(MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
|
2008-01-04 10:46:51 +00:00
|
|
|
Reloc, ES, RelocCST));
|
2006-12-05 04:01:03 +00:00
|
|
|
if (Reloc == X86::reloc_absolute_dword)
|
2008-10-24 01:57:54 +00:00
|
|
|
MCE.emitDWordLE(0);
|
|
|
|
else
|
2006-12-05 04:01:03 +00:00
|
|
|
MCE.emitWordLE(0);
|
2004-11-20 23:55:15 +00:00
|
|
|
}
|
2003-06-01 23:23:50 +00:00
|
|
|
|
2006-12-05 04:01:03 +00:00
|
|
|
/// emitConstPoolAddress - Arrange for the address of an constant pool
|
2006-09-08 06:48:29 +00:00
|
|
|
/// to be emitted to the current location in the function, and allow it to be PC
|
|
|
|
/// relative.
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
void Emitter<CodeEmitter>::emitConstPoolAddress(unsigned CPI, unsigned Reloc,
|
2008-10-24 01:57:54 +00:00
|
|
|
intptr_t Disp /* = 0 */,
|
2008-01-03 02:56:28 +00:00
|
|
|
intptr_t PCAdj /* = 0 */) {
|
2008-01-04 10:46:51 +00:00
|
|
|
intptr_t RelocCST = 0;
|
2008-01-03 02:56:28 +00:00
|
|
|
if (Reloc == X86::reloc_picrel_word)
|
2008-01-05 02:26:58 +00:00
|
|
|
RelocCST = PICBaseOffset;
|
2008-01-04 10:46:51 +00:00
|
|
|
else if (Reloc == X86::reloc_pcrel_word)
|
|
|
|
RelocCST = PCAdj;
|
2006-09-08 06:48:29 +00:00
|
|
|
MCE.addRelocation(MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
|
2008-01-04 10:46:51 +00:00
|
|
|
Reloc, CPI, RelocCST));
|
2008-10-24 01:57:54 +00:00
|
|
|
// The relocated value will be added to the displacement
|
2006-12-05 07:29:55 +00:00
|
|
|
if (Reloc == X86::reloc_absolute_dword)
|
2008-10-24 01:57:54 +00:00
|
|
|
MCE.emitDWordLE(Disp);
|
|
|
|
else
|
|
|
|
MCE.emitWordLE((int32_t)Disp);
|
2006-09-08 06:48:29 +00:00
|
|
|
}
|
|
|
|
|
2006-12-05 04:01:03 +00:00
|
|
|
/// emitJumpTableAddress - Arrange for the address of a jump table to
|
2006-09-08 06:48:29 +00:00
|
|
|
/// be emitted to the current location in the function, and allow it to be PC
|
|
|
|
/// relative.
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
void Emitter<CodeEmitter>::emitJumpTableAddress(unsigned JTI, unsigned Reloc,
|
2008-01-03 02:56:28 +00:00
|
|
|
intptr_t PCAdj /* = 0 */) {
|
2008-01-04 10:46:51 +00:00
|
|
|
intptr_t RelocCST = 0;
|
2008-01-03 02:56:28 +00:00
|
|
|
if (Reloc == X86::reloc_picrel_word)
|
2008-01-05 02:26:58 +00:00
|
|
|
RelocCST = PICBaseOffset;
|
2008-01-04 10:46:51 +00:00
|
|
|
else if (Reloc == X86::reloc_pcrel_word)
|
|
|
|
RelocCST = PCAdj;
|
2006-09-08 06:48:29 +00:00
|
|
|
MCE.addRelocation(MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
|
2008-01-04 10:46:51 +00:00
|
|
|
Reloc, JTI, RelocCST));
|
2008-10-24 01:57:54 +00:00
|
|
|
// The relocated value will be added to the displacement
|
2006-12-05 07:29:55 +00:00
|
|
|
if (Reloc == X86::reloc_absolute_dword)
|
2008-10-24 01:57:54 +00:00
|
|
|
MCE.emitDWordLE(0);
|
|
|
|
else
|
2006-12-05 07:29:55 +00:00
|
|
|
MCE.emitWordLE(0);
|
2006-09-08 06:48:29 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
unsigned Emitter<CodeEmitter>::getX86RegNum(unsigned RegNo) const {
|
2008-05-14 01:58:56 +00:00
|
|
|
return II->getRegisterInfo().getX86RegNum(RegNo);
|
2002-12-03 06:34:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static unsigned char ModRMByte(unsigned Mod, unsigned RegOpcode,
|
|
|
|
unsigned RM) {
|
|
|
|
assert(Mod < 4 && RegOpcode < 8 && RM < 8 && "ModRM Fields out of range!");
|
|
|
|
return RM | (RegOpcode << 3) | (Mod << 6);
|
|
|
|
}
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
void Emitter<CodeEmitter>::emitRegModRMByte(unsigned ModRMReg,
|
|
|
|
unsigned RegOpcodeFld){
|
2002-12-03 06:34:06 +00:00
|
|
|
MCE.emitByte(ModRMByte(3, RegOpcodeFld, getX86RegNum(ModRMReg)));
|
|
|
|
}
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
void Emitter<CodeEmitter>::emitRegModRMByte(unsigned RegOpcodeFld) {
|
2008-10-17 17:14:20 +00:00
|
|
|
MCE.emitByte(ModRMByte(3, RegOpcodeFld, 0));
|
|
|
|
}
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
void Emitter<CodeEmitter>::emitSIBByte(unsigned SS,
|
|
|
|
unsigned Index,
|
|
|
|
unsigned Base) {
|
2002-12-03 06:34:06 +00:00
|
|
|
// SIB byte is in the same format as the ModRMByte...
|
|
|
|
MCE.emitByte(ModRMByte(SS, Index, Base));
|
|
|
|
}
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
void Emitter<CodeEmitter>::emitConstant(uint64_t Val, unsigned Size) {
|
2002-12-03 06:34:06 +00:00
|
|
|
// Output the constant in little endian byte order...
|
|
|
|
for (unsigned i = 0; i != Size; ++i) {
|
|
|
|
MCE.emitByte(Val & 255);
|
|
|
|
Val >>= 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-04 00:42:08 +00:00
|
|
|
/// isDisp8 - Return true if this signed displacement fits in a 8-bit
|
|
|
|
/// sign-extended field.
|
2002-12-03 06:34:06 +00:00
|
|
|
static bool isDisp8(int Value) {
|
|
|
|
return Value == (signed char)Value;
|
|
|
|
}
|
|
|
|
|
2009-07-10 05:27:43 +00:00
|
|
|
static bool gvNeedsNonLazyPtr(const MachineOperand &GVOp,
|
|
|
|
const TargetMachine &TM) {
|
|
|
|
// For Darwin-64, simulate the linktime GOT by using the same non-lazy-pointer
|
2008-08-12 18:23:48 +00:00
|
|
|
// mechanism as 32-bit mode.
|
2009-07-10 05:27:43 +00:00
|
|
|
if (TM.getSubtarget<X86Subtarget>().is64Bit() &&
|
|
|
|
!TM.getSubtarget<X86Subtarget>().isTargetDarwin())
|
|
|
|
return false;
|
|
|
|
|
2009-07-10 06:07:08 +00:00
|
|
|
// Return true if this is a reference to a stub containing the address of the
|
|
|
|
// global, not the global itself.
|
2009-07-10 06:29:59 +00:00
|
|
|
return isGlobalStubReference(GVOp.getTargetFlags());
|
2008-01-04 10:46:51 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
void Emitter<CodeEmitter>::emitDisplacementField(const MachineOperand *RelocOp,
|
2009-08-05 00:11:21 +00:00
|
|
|
int DispVal,
|
|
|
|
intptr_t Adj /* = 0 */,
|
|
|
|
bool IsPCRel /* = true */) {
|
2006-05-04 00:42:08 +00:00
|
|
|
// If this is a simple integer displacement that doesn't require a relocation,
|
|
|
|
// emit it now.
|
|
|
|
if (!RelocOp) {
|
|
|
|
emitConstant(DispVal, 4);
|
|
|
|
return;
|
|
|
|
}
|
2009-08-05 00:11:21 +00:00
|
|
|
|
2006-05-04 00:42:08 +00:00
|
|
|
// Otherwise, this is something that requires a relocation. Emit it as such
|
|
|
|
// now.
|
2009-09-01 22:07:06 +00:00
|
|
|
unsigned RelocType = Is64BitMode ?
|
|
|
|
(IsPCRel ? X86::reloc_pcrel_word : X86::reloc_absolute_word_sext)
|
|
|
|
: (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
|
2008-10-03 15:45:36 +00:00
|
|
|
if (RelocOp->isGlobal()) {
|
2006-09-08 06:48:29 +00:00
|
|
|
// In 64-bit static small code model, we could potentially emit absolute.
|
2009-08-05 00:11:21 +00:00
|
|
|
// But it's probably not beneficial. If the MCE supports using RIP directly
|
|
|
|
// do it, otherwise fallback to absolute (this is determined by IsPCRel).
|
2008-02-26 10:57:23 +00:00
|
|
|
// 89 05 00 00 00 00 mov %eax,0(%rip) # PC-relative
|
|
|
|
// 89 04 25 00 00 00 00 mov %eax,0x0 # Absolute
|
2008-01-04 10:46:51 +00:00
|
|
|
bool NeedStub = isa<Function>(RelocOp->getGlobal());
|
2009-07-10 05:27:43 +00:00
|
|
|
bool Indirect = gvNeedsNonLazyPtr(*RelocOp, TM);
|
2009-09-01 22:07:06 +00:00
|
|
|
emitGlobalAddress(RelocOp->getGlobal(), RelocType, RelocOp->getOffset(),
|
2009-08-05 00:11:21 +00:00
|
|
|
Adj, NeedStub, Indirect);
|
2009-09-01 22:06:53 +00:00
|
|
|
} else if (RelocOp->isSymbol()) {
|
2009-09-01 22:07:06 +00:00
|
|
|
emitExternalSymbolAddress(RelocOp->getSymbolName(), RelocType);
|
2008-10-03 15:45:36 +00:00
|
|
|
} else if (RelocOp->isCPI()) {
|
2009-09-01 22:07:06 +00:00
|
|
|
emitConstPoolAddress(RelocOp->getIndex(), RelocType,
|
2009-08-05 00:11:21 +00:00
|
|
|
RelocOp->getOffset(), Adj);
|
2006-05-04 00:42:08 +00:00
|
|
|
} else {
|
2009-09-01 22:07:06 +00:00
|
|
|
assert(RelocOp->isJTI() && "Unexpected machine operand!");
|
|
|
|
emitJumpTableAddress(RelocOp->getIndex(), RelocType, Adj);
|
2006-05-04 00:42:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
|
|
|
void Emitter<CodeEmitter>::emitMemModRMByte(const MachineInstr &MI,
|
2009-08-16 02:45:18 +00:00
|
|
|
unsigned Op,unsigned RegOpcodeField,
|
|
|
|
intptr_t PCAdj) {
|
2004-10-15 04:53:13 +00:00
|
|
|
const MachineOperand &Op3 = MI.getOperand(Op+3);
|
|
|
|
int DispVal = 0;
|
2006-05-04 00:42:08 +00:00
|
|
|
const MachineOperand *DispForReloc = 0;
|
|
|
|
|
|
|
|
// Figure out what sort of displacement we have to handle here.
|
2008-10-03 15:45:36 +00:00
|
|
|
if (Op3.isGlobal()) {
|
2006-05-04 00:42:08 +00:00
|
|
|
DispForReloc = &Op3;
|
2009-09-01 22:06:53 +00:00
|
|
|
} else if (Op3.isSymbol()) {
|
|
|
|
DispForReloc = &Op3;
|
2008-10-03 15:45:36 +00:00
|
|
|
} else if (Op3.isCPI()) {
|
2009-08-05 00:11:21 +00:00
|
|
|
if (!MCE.earlyResolveAddresses() || Is64BitMode || IsPIC) {
|
2006-09-08 06:48:29 +00:00
|
|
|
DispForReloc = &Op3;
|
|
|
|
} else {
|
2007-12-30 23:10:15 +00:00
|
|
|
DispVal += MCE.getConstantPoolEntryAddress(Op3.getIndex());
|
2006-09-08 06:48:29 +00:00
|
|
|
DispVal += Op3.getOffset();
|
|
|
|
}
|
2008-10-03 15:45:36 +00:00
|
|
|
} else if (Op3.isJTI()) {
|
2009-08-05 00:11:21 +00:00
|
|
|
if (!MCE.earlyResolveAddresses() || Is64BitMode || IsPIC) {
|
2006-09-08 06:48:29 +00:00
|
|
|
DispForReloc = &Op3;
|
|
|
|
} else {
|
2007-12-30 23:10:15 +00:00
|
|
|
DispVal += MCE.getJumpTableEntryAddress(Op3.getIndex());
|
2006-09-08 06:48:29 +00:00
|
|
|
}
|
2004-10-15 04:53:13 +00:00
|
|
|
} else {
|
2006-09-05 02:52:35 +00:00
|
|
|
DispVal = Op3.getImm();
|
2004-10-15 04:53:13 +00:00
|
|
|
}
|
|
|
|
|
2004-10-17 07:49:45 +00:00
|
|
|
const MachineOperand &Base = MI.getOperand(Op);
|
|
|
|
const MachineOperand &Scale = MI.getOperand(Op+1);
|
|
|
|
const MachineOperand &IndexReg = MI.getOperand(Op+2);
|
|
|
|
|
2006-02-26 09:12:34 +00:00
|
|
|
unsigned BaseReg = Base.getReg();
|
2003-01-13 00:33:59 +00:00
|
|
|
|
2009-08-05 00:11:21 +00:00
|
|
|
// Indicate that the displacement will use an pcrel or absolute reference
|
|
|
|
// by default. MCEs able to resolve addresses on-the-fly use pcrel by default
|
|
|
|
// while others, unless explicit asked to use RIP, use absolute references.
|
|
|
|
bool IsPCRel = MCE.earlyResolveAddresses() ? true : false;
|
|
|
|
|
2002-12-03 06:34:06 +00:00
|
|
|
// Is a SIB byte needed?
|
2009-08-05 00:11:21 +00:00
|
|
|
// If no BaseReg, issue a RIP relative instruction only if the MCE can
|
|
|
|
// resolve addresses on-the-fly, otherwise use SIB (Intel Manual 2A, table
|
|
|
|
// 2-7) and absolute references.
|
2009-05-12 00:07:35 +00:00
|
|
|
if ((!Is64BitMode || DispForReloc || BaseReg != 0) &&
|
2009-08-05 00:11:21 +00:00
|
|
|
IndexReg.getReg() == 0 &&
|
|
|
|
((BaseReg == 0 && MCE.earlyResolveAddresses()) || BaseReg == X86::RIP ||
|
|
|
|
(BaseReg != 0 && getX86RegNum(BaseReg) != N86::ESP))) {
|
|
|
|
if (BaseReg == 0 || BaseReg == X86::RIP) { // Just a displacement?
|
2002-12-03 06:34:06 +00:00
|
|
|
// Emit special case [disp32] encoding
|
|
|
|
MCE.emitByte(ModRMByte(0, RegOpcodeField, 5));
|
2009-08-05 00:11:21 +00:00
|
|
|
emitDisplacementField(DispForReloc, DispVal, PCAdj, true);
|
2002-12-03 06:34:06 +00:00
|
|
|
} else {
|
2004-10-17 07:49:45 +00:00
|
|
|
unsigned BaseRegNo = getX86RegNum(BaseReg);
|
2006-05-04 00:42:08 +00:00
|
|
|
if (!DispForReloc && DispVal == 0 && BaseRegNo != N86::EBP) {
|
2002-12-03 06:34:06 +00:00
|
|
|
// Emit simple indirect register encoding... [EAX] f.e.
|
|
|
|
MCE.emitByte(ModRMByte(0, RegOpcodeField, BaseRegNo));
|
2006-05-04 00:42:08 +00:00
|
|
|
} else if (!DispForReloc && isDisp8(DispVal)) {
|
2002-12-03 06:34:06 +00:00
|
|
|
// Emit the disp8 encoding... [REG+disp8]
|
|
|
|
MCE.emitByte(ModRMByte(1, RegOpcodeField, BaseRegNo));
|
2004-10-15 04:53:13 +00:00
|
|
|
emitConstant(DispVal, 1);
|
2002-12-03 06:34:06 +00:00
|
|
|
} else {
|
|
|
|
// Emit the most general non-SIB encoding: [REG+disp32]
|
2002-12-13 05:05:05 +00:00
|
|
|
MCE.emitByte(ModRMByte(2, RegOpcodeField, BaseRegNo));
|
2009-08-05 00:11:21 +00:00
|
|
|
emitDisplacementField(DispForReloc, DispVal, PCAdj, IsPCRel);
|
2002-12-03 06:34:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else { // We need a SIB byte, so start by outputting the ModR/M byte first
|
2006-09-08 06:48:29 +00:00
|
|
|
assert(IndexReg.getReg() != X86::ESP &&
|
|
|
|
IndexReg.getReg() != X86::RSP && "Cannot use ESP as index reg!");
|
2002-12-03 06:34:06 +00:00
|
|
|
|
|
|
|
bool ForceDisp32 = false;
|
2002-12-13 07:56:18 +00:00
|
|
|
bool ForceDisp8 = false;
|
2004-10-17 07:49:45 +00:00
|
|
|
if (BaseReg == 0) {
|
2002-12-03 06:34:06 +00:00
|
|
|
// If there is no base register, we emit the special case SIB byte with
|
|
|
|
// MOD=0, BASE=5, to JUST get the index, scale, and displacement.
|
|
|
|
MCE.emitByte(ModRMByte(0, RegOpcodeField, 4));
|
|
|
|
ForceDisp32 = true;
|
2006-05-04 00:42:08 +00:00
|
|
|
} else if (DispForReloc) {
|
|
|
|
// Emit the normal disp32 encoding.
|
2004-10-15 04:53:13 +00:00
|
|
|
MCE.emitByte(ModRMByte(2, RegOpcodeField, 4));
|
|
|
|
ForceDisp32 = true;
|
2006-09-08 06:48:29 +00:00
|
|
|
} else if (DispVal == 0 && getX86RegNum(BaseReg) != N86::EBP) {
|
2002-12-03 06:34:06 +00:00
|
|
|
// Emit no displacement ModR/M byte
|
|
|
|
MCE.emitByte(ModRMByte(0, RegOpcodeField, 4));
|
2004-10-15 04:53:13 +00:00
|
|
|
} else if (isDisp8(DispVal)) {
|
2002-12-03 06:34:06 +00:00
|
|
|
// Emit the disp8 encoding...
|
|
|
|
MCE.emitByte(ModRMByte(1, RegOpcodeField, 4));
|
2002-12-13 07:56:18 +00:00
|
|
|
ForceDisp8 = true; // Make sure to force 8 bit disp if Base=EBP
|
2002-12-03 06:34:06 +00:00
|
|
|
} else {
|
|
|
|
// Emit the normal disp32 encoding...
|
|
|
|
MCE.emitByte(ModRMByte(2, RegOpcodeField, 4));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate what the SS field value should be...
|
|
|
|
static const unsigned SSTable[] = { ~0, 0, 1, ~0, 2, ~0, ~0, ~0, 3 };
|
2006-09-05 02:52:35 +00:00
|
|
|
unsigned SS = SSTable[Scale.getImm()];
|
2002-12-03 06:34:06 +00:00
|
|
|
|
2004-10-17 07:49:45 +00:00
|
|
|
if (BaseReg == 0) {
|
2009-08-05 00:11:21 +00:00
|
|
|
// Handle the SIB byte for the case where there is no base, see Intel
|
|
|
|
// Manual 2A, table 2-7. The displacement has already been output.
|
2008-10-31 19:13:42 +00:00
|
|
|
unsigned IndexRegNo;
|
|
|
|
if (IndexReg.getReg())
|
|
|
|
IndexRegNo = getX86RegNum(IndexReg.getReg());
|
2009-08-05 00:11:21 +00:00
|
|
|
else // Examples: [ESP+1*<noreg>+4] or [scaled idx]+disp32 (MOD=0,BASE=5)
|
|
|
|
IndexRegNo = 4;
|
2008-10-31 19:13:42 +00:00
|
|
|
emitSIBByte(SS, IndexRegNo, 5);
|
2008-11-10 22:09:58 +00:00
|
|
|
} else {
|
2004-10-17 07:49:45 +00:00
|
|
|
unsigned BaseRegNo = getX86RegNum(BaseReg);
|
2002-12-28 20:24:48 +00:00
|
|
|
unsigned IndexRegNo;
|
|
|
|
if (IndexReg.getReg())
|
2004-10-15 04:53:13 +00:00
|
|
|
IndexRegNo = getX86RegNum(IndexReg.getReg());
|
2002-12-28 20:24:48 +00:00
|
|
|
else
|
2004-10-15 04:53:13 +00:00
|
|
|
IndexRegNo = 4; // For example [ESP+1*<noreg>+4]
|
2002-12-03 06:34:06 +00:00
|
|
|
emitSIBByte(SS, IndexRegNo, BaseRegNo);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do we need to output a displacement?
|
2006-05-04 00:42:08 +00:00
|
|
|
if (ForceDisp8) {
|
|
|
|
emitConstant(DispVal, 1);
|
|
|
|
} else if (DispVal != 0 || ForceDisp32) {
|
2009-08-05 00:11:21 +00:00
|
|
|
emitDisplacementField(DispForReloc, DispVal, PCAdj, IsPCRel);
|
2002-12-03 06:34:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template<class CodeEmitter>
|
2009-08-16 02:45:18 +00:00
|
|
|
void Emitter<CodeEmitter>::emitInstruction(const MachineInstr &MI,
|
|
|
|
const TargetInstrDesc *Desc) {
|
2009-08-03 00:11:34 +00:00
|
|
|
DEBUG(errs() << MI);
|
2008-03-14 07:13:42 +00:00
|
|
|
|
2009-07-16 21:07:26 +00:00
|
|
|
MCE.processDebugLoc(MI.getDebugLoc());
|
|
|
|
|
2006-12-05 04:01:03 +00:00
|
|
|
unsigned Opcode = Desc->Opcode;
|
2002-12-02 21:44:34 +00:00
|
|
|
|
2008-03-01 13:37:02 +00:00
|
|
|
// Emit the lock opcode prefix as needed.
|
2009-08-16 02:45:18 +00:00
|
|
|
if (Desc->TSFlags & X86II::LOCK)
|
|
|
|
MCE.emitByte(0xF0);
|
2008-03-01 13:37:02 +00:00
|
|
|
|
2008-10-11 19:34:24 +00:00
|
|
|
// Emit segment override opcode prefix as needed.
|
2008-10-11 19:09:15 +00:00
|
|
|
switch (Desc->TSFlags & X86II::SegOvrMask) {
|
|
|
|
case X86II::FS:
|
|
|
|
MCE.emitByte(0x64);
|
|
|
|
break;
|
|
|
|
case X86II::GS:
|
|
|
|
MCE.emitByte(0x65);
|
|
|
|
break;
|
2009-07-14 16:55:14 +00:00
|
|
|
default: llvm_unreachable("Invalid segment!");
|
2008-10-12 10:30:11 +00:00
|
|
|
case 0: break; // No segment override!
|
2008-10-11 19:09:15 +00:00
|
|
|
}
|
|
|
|
|
2004-02-12 17:53:22 +00:00
|
|
|
// Emit the repeat opcode prefix as needed.
|
2009-08-16 02:45:18 +00:00
|
|
|
if ((Desc->TSFlags & X86II::Op0Mask) == X86II::REP)
|
|
|
|
MCE.emitByte(0xF3);
|
2004-02-12 17:53:22 +00:00
|
|
|
|
2005-07-06 18:59:04 +00:00
|
|
|
// Emit the operand size opcode prefix as needed.
|
2009-08-16 02:45:18 +00:00
|
|
|
if (Desc->TSFlags & X86II::OpSize)
|
|
|
|
MCE.emitByte(0x66);
|
2005-07-06 18:59:04 +00:00
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
// Emit the address size opcode prefix as needed.
|
2009-08-16 02:45:18 +00:00
|
|
|
if (Desc->TSFlags & X86II::AdSize)
|
|
|
|
MCE.emitByte(0x67);
|
2006-09-08 06:48:29 +00:00
|
|
|
|
|
|
|
bool Need0FPrefix = false;
|
2006-12-05 04:01:03 +00:00
|
|
|
switch (Desc->TSFlags & X86II::Op0Mask) {
|
2008-04-03 08:53:17 +00:00
|
|
|
case X86II::TB: // Two-byte opcode prefix
|
|
|
|
case X86II::T8: // 0F 38
|
|
|
|
case X86II::TA: // 0F 3A
|
|
|
|
Need0FPrefix = true;
|
2007-04-10 22:10:25 +00:00
|
|
|
break;
|
2009-08-08 21:55:08 +00:00
|
|
|
case X86II::TF: // F2 0F 38
|
|
|
|
MCE.emitByte(0xF2);
|
|
|
|
Need0FPrefix = true;
|
|
|
|
break;
|
2006-02-14 21:52:51 +00:00
|
|
|
case X86II::REP: break; // already handled.
|
|
|
|
case X86II::XS: // F3 0F
|
|
|
|
MCE.emitByte(0xF3);
|
2006-09-08 06:48:29 +00:00
|
|
|
Need0FPrefix = true;
|
2006-02-14 21:52:51 +00:00
|
|
|
break;
|
|
|
|
case X86II::XD: // F2 0F
|
|
|
|
MCE.emitByte(0xF2);
|
2006-09-08 06:48:29 +00:00
|
|
|
Need0FPrefix = true;
|
2006-02-14 21:52:51 +00:00
|
|
|
break;
|
2002-12-25 05:09:21 +00:00
|
|
|
case X86II::D8: case X86II::D9: case X86II::DA: case X86II::DB:
|
|
|
|
case X86II::DC: case X86II::DD: case X86II::DE: case X86II::DF:
|
2003-01-13 00:33:59 +00:00
|
|
|
MCE.emitByte(0xD8+
|
2006-12-05 04:01:03 +00:00
|
|
|
(((Desc->TSFlags & X86II::Op0Mask)-X86II::D8)
|
2004-10-15 04:53:13 +00:00
|
|
|
>> X86II::Op0Shift));
|
2002-12-25 05:09:21 +00:00
|
|
|
break; // Two-byte opcode prefix
|
2009-07-14 16:55:14 +00:00
|
|
|
default: llvm_unreachable("Invalid prefix!");
|
2003-01-13 00:33:59 +00:00
|
|
|
case 0: break; // No prefix!
|
2002-12-25 05:09:21 +00:00
|
|
|
}
|
2002-12-02 21:44:34 +00:00
|
|
|
|
2009-08-16 02:45:18 +00:00
|
|
|
// Handle REX prefix.
|
2006-09-08 06:48:29 +00:00
|
|
|
if (Is64BitMode) {
|
2009-08-16 02:45:18 +00:00
|
|
|
if (unsigned REX = X86InstrInfo::determineREX(MI))
|
2006-09-08 06:48:29 +00:00
|
|
|
MCE.emitByte(0x40 | REX);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 0x0F escape code must be emitted just before the opcode.
|
|
|
|
if (Need0FPrefix)
|
|
|
|
MCE.emitByte(0x0F);
|
|
|
|
|
2008-04-03 08:53:17 +00:00
|
|
|
switch (Desc->TSFlags & X86II::Op0Mask) {
|
2009-08-16 02:45:18 +00:00
|
|
|
case X86II::TF: // F2 0F 38
|
|
|
|
case X86II::T8: // 0F 38
|
2008-04-03 08:53:17 +00:00
|
|
|
MCE.emitByte(0x38);
|
|
|
|
break;
|
|
|
|
case X86II::TA: // 0F 3A
|
|
|
|
MCE.emitByte(0x3A);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-09-05 02:52:35 +00:00
|
|
|
// If this is a two-address instruction, skip one of the register operands.
|
2008-01-07 03:13:06 +00:00
|
|
|
unsigned NumOps = Desc->getNumOperands();
|
2006-09-05 02:52:35 +00:00
|
|
|
unsigned CurOp = 0;
|
2006-12-05 04:01:03 +00:00
|
|
|
if (NumOps > 1 && Desc->getOperandConstraint(1, TOI::TIED_TO) != -1)
|
2008-04-18 20:55:36 +00:00
|
|
|
++CurOp;
|
|
|
|
else if (NumOps > 2 && Desc->getOperandConstraint(NumOps-1, TOI::TIED_TO)== 0)
|
|
|
|
// Skip the last source operand that is tied_to the dest reg. e.g. LXADD32
|
|
|
|
--NumOps;
|
2006-12-05 07:29:55 +00:00
|
|
|
|
2006-12-05 04:01:03 +00:00
|
|
|
unsigned char BaseOpcode = II->getBaseOpcodeFor(Desc);
|
|
|
|
switch (Desc->TSFlags & X86II::FormMask) {
|
2009-08-16 02:36:40 +00:00
|
|
|
default:
|
|
|
|
llvm_unreachable("Unknown FormMask value in X86 MachineCodeEmitter!");
|
2002-12-25 05:09:21 +00:00
|
|
|
case X86II::Pseudo:
|
2008-01-05 00:41:47 +00:00
|
|
|
// Remember the current PC offset, this is the PIC relocation
|
|
|
|
// base address.
|
2006-01-28 18:19:37 +00:00
|
|
|
switch (Opcode) {
|
|
|
|
default:
|
2009-08-16 02:36:40 +00:00
|
|
|
llvm_unreachable("psuedo instructions should be removed before code"
|
|
|
|
" emission");
|
2008-03-05 02:34:36 +00:00
|
|
|
break;
|
2009-08-16 02:45:18 +00:00
|
|
|
case TargetInstrInfo::INLINEASM:
|
2008-11-19 23:21:11 +00:00
|
|
|
// We allow inline assembler nodes with empty bodies - they can
|
|
|
|
// implicitly define registers, which is ok for JIT.
|
2009-08-16 02:45:18 +00:00
|
|
|
assert(MI.getOperand(0).getSymbolName()[0] == 0 &&
|
|
|
|
"JIT does not support inline asm!");
|
2008-03-05 02:34:36 +00:00
|
|
|
break;
|
2008-07-01 00:05:16 +00:00
|
|
|
case TargetInstrInfo::DBG_LABEL:
|
|
|
|
case TargetInstrInfo::EH_LABEL:
|
2009-09-08 07:36:18 +00:00
|
|
|
case TargetInstrInfo::GC_LABEL:
|
2008-02-13 18:39:37 +00:00
|
|
|
MCE.emitLabel(MI.getOperand(0).getImm());
|
|
|
|
break;
|
2008-03-17 06:56:52 +00:00
|
|
|
case TargetInstrInfo::IMPLICIT_DEF:
|
2008-03-05 02:34:36 +00:00
|
|
|
case X86::DWARF_LOC:
|
2006-01-28 18:19:37 +00:00
|
|
|
case X86::FP_REG_KILL:
|
|
|
|
break;
|
2008-01-05 02:26:58 +00:00
|
|
|
case X86::MOVPC32r: {
|
2008-01-05 00:41:47 +00:00
|
|
|
// This emits the "call" portion of this pseudo instruction.
|
|
|
|
MCE.emitByte(BaseOpcode);
|
2008-04-16 20:10:13 +00:00
|
|
|
emitConstant(0, X86InstrInfo::sizeOfImm(Desc));
|
2008-01-05 02:26:58 +00:00
|
|
|
// Remember PIC base.
|
2008-12-10 02:32:19 +00:00
|
|
|
PICBaseOffset = (intptr_t) MCE.getCurrentPCOffset();
|
2008-05-14 01:58:56 +00:00
|
|
|
X86JITInfo *JTI = TM.getJITInfo();
|
2008-01-05 02:26:58 +00:00
|
|
|
JTI->setPICBase(MCE.getCurrentPCValue());
|
2008-01-05 00:41:47 +00:00
|
|
|
break;
|
|
|
|
}
|
2008-01-05 02:26:58 +00:00
|
|
|
}
|
2006-11-10 01:28:43 +00:00
|
|
|
CurOp = NumOps;
|
2002-12-25 05:09:21 +00:00
|
|
|
break;
|
2009-08-16 02:45:18 +00:00
|
|
|
case X86II::RawFrm: {
|
2002-12-03 06:34:06 +00:00
|
|
|
MCE.emitByte(BaseOpcode);
|
2008-01-05 00:41:47 +00:00
|
|
|
|
2009-08-16 02:45:18 +00:00
|
|
|
if (CurOp == NumOps)
|
|
|
|
break;
|
|
|
|
|
|
|
|
const MachineOperand &MO = MI.getOperand(CurOp++);
|
|
|
|
|
|
|
|
DEBUG(errs() << "RawFrm CurOp " << CurOp << "\n");
|
|
|
|
DEBUG(errs() << "isMBB " << MO.isMBB() << "\n");
|
|
|
|
DEBUG(errs() << "isGlobal " << MO.isGlobal() << "\n");
|
|
|
|
DEBUG(errs() << "isSymbol " << MO.isSymbol() << "\n");
|
|
|
|
DEBUG(errs() << "isImm " << MO.isImm() << "\n");
|
|
|
|
|
|
|
|
if (MO.isMBB()) {
|
|
|
|
emitPCRelativeBlockAddress(MO.getMBB());
|
|
|
|
break;
|
2002-12-02 21:56:18 +00:00
|
|
|
}
|
2009-08-16 02:45:18 +00:00
|
|
|
|
|
|
|
if (MO.isGlobal()) {
|
|
|
|
// Assume undefined functions may be outside the Small codespace.
|
|
|
|
bool NeedStub =
|
|
|
|
(Is64BitMode &&
|
|
|
|
(TM.getCodeModel() == CodeModel::Large ||
|
|
|
|
TM.getSubtarget<X86Subtarget>().isTargetDarwin())) ||
|
|
|
|
Opcode == X86::TAILJMPd;
|
|
|
|
emitGlobalAddress(MO.getGlobal(), X86::reloc_pcrel_word,
|
|
|
|
MO.getOffset(), 0, NeedStub);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MO.isSymbol()) {
|
|
|
|
emitExternalSymbolAddress(MO.getSymbolName(), X86::reloc_pcrel_word);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(MO.isImm() && "Unknown RawFrm operand!");
|
|
|
|
if (Opcode == X86::CALLpcrel32 || Opcode == X86::CALL64pcrel32) {
|
|
|
|
// Fix up immediate operand for pc relative calls.
|
|
|
|
intptr_t Imm = (intptr_t)MO.getImm();
|
|
|
|
Imm = Imm - MCE.getCurrentPCValue() - 4;
|
|
|
|
emitConstant(Imm, X86InstrInfo::sizeOfImm(Desc));
|
|
|
|
} else
|
|
|
|
emitConstant(MO.getImm(), X86InstrInfo::sizeOfImm(Desc));
|
2002-12-03 06:34:06 +00:00
|
|
|
break;
|
2009-08-16 02:45:18 +00:00
|
|
|
}
|
|
|
|
|
2009-08-16 02:36:40 +00:00
|
|
|
case X86II::AddRegFrm: {
|
2006-09-05 02:52:35 +00:00
|
|
|
MCE.emitByte(BaseOpcode + getX86RegNum(MI.getOperand(CurOp++).getReg()));
|
|
|
|
|
2009-08-16 02:36:40 +00:00
|
|
|
if (CurOp == NumOps)
|
|
|
|
break;
|
|
|
|
|
|
|
|
const MachineOperand &MO1 = MI.getOperand(CurOp++);
|
|
|
|
unsigned Size = X86InstrInfo::sizeOfImm(Desc);
|
|
|
|
if (MO1.isImm()) {
|
|
|
|
emitConstant(MO1.getImm(), Size);
|
|
|
|
break;
|
2002-12-03 06:34:06 +00:00
|
|
|
}
|
2009-08-16 02:36:40 +00:00
|
|
|
|
|
|
|
unsigned rt = Is64BitMode ? X86::reloc_pcrel_word
|
|
|
|
: (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
|
|
|
|
if (Opcode == X86::MOV64ri64i32)
|
|
|
|
rt = X86::reloc_absolute_word; // FIXME: add X86II flag?
|
|
|
|
// This should not occur on Darwin for relocatable objects.
|
|
|
|
if (Opcode == X86::MOV64ri)
|
|
|
|
rt = X86::reloc_absolute_dword; // FIXME: add X86II flag?
|
|
|
|
if (MO1.isGlobal()) {
|
|
|
|
bool NeedStub = isa<Function>(MO1.getGlobal());
|
|
|
|
bool Indirect = gvNeedsNonLazyPtr(MO1, TM);
|
|
|
|
emitGlobalAddress(MO1.getGlobal(), rt, MO1.getOffset(), 0,
|
|
|
|
NeedStub, Indirect);
|
|
|
|
} else if (MO1.isSymbol())
|
|
|
|
emitExternalSymbolAddress(MO1.getSymbolName(), rt);
|
|
|
|
else if (MO1.isCPI())
|
|
|
|
emitConstPoolAddress(MO1.getIndex(), rt);
|
|
|
|
else if (MO1.isJTI())
|
|
|
|
emitJumpTableAddress(MO1.getIndex(), rt);
|
2002-12-03 06:34:06 +00:00
|
|
|
break;
|
2009-08-16 02:36:40 +00:00
|
|
|
}
|
2003-01-13 00:33:59 +00:00
|
|
|
|
|
|
|
case X86II::MRMDestReg: {
|
2002-12-03 06:34:06 +00:00
|
|
|
MCE.emitByte(BaseOpcode);
|
2006-09-05 02:52:35 +00:00
|
|
|
emitRegModRMByte(MI.getOperand(CurOp).getReg(),
|
|
|
|
getX86RegNum(MI.getOperand(CurOp+1).getReg()));
|
|
|
|
CurOp += 2;
|
2006-11-10 01:28:43 +00:00
|
|
|
if (CurOp != NumOps)
|
2009-08-16 02:36:40 +00:00
|
|
|
emitConstant(MI.getOperand(CurOp++).getImm(),
|
|
|
|
X86InstrInfo::sizeOfImm(Desc));
|
2003-05-06 21:31:47 +00:00
|
|
|
break;
|
2003-01-13 00:33:59 +00:00
|
|
|
}
|
2006-09-08 06:48:29 +00:00
|
|
|
case X86II::MRMDestMem: {
|
2002-12-03 06:34:06 +00:00
|
|
|
MCE.emitByte(BaseOpcode);
|
2009-03-28 17:03:24 +00:00
|
|
|
emitMemModRMByte(MI, CurOp,
|
|
|
|
getX86RegNum(MI.getOperand(CurOp + X86AddrNumOperands)
|
|
|
|
.getReg()));
|
|
|
|
CurOp += X86AddrNumOperands + 1;
|
2006-11-10 01:28:43 +00:00
|
|
|
if (CurOp != NumOps)
|
2009-08-16 02:36:40 +00:00
|
|
|
emitConstant(MI.getOperand(CurOp++).getImm(),
|
|
|
|
X86InstrInfo::sizeOfImm(Desc));
|
2002-12-03 06:34:06 +00:00
|
|
|
break;
|
2006-09-08 06:48:29 +00:00
|
|
|
}
|
2003-01-13 00:33:59 +00:00
|
|
|
|
2002-12-03 06:34:06 +00:00
|
|
|
case X86II::MRMSrcReg:
|
|
|
|
MCE.emitByte(BaseOpcode);
|
2006-09-05 02:52:35 +00:00
|
|
|
emitRegModRMByte(MI.getOperand(CurOp+1).getReg(),
|
|
|
|
getX86RegNum(MI.getOperand(CurOp).getReg()));
|
|
|
|
CurOp += 2;
|
2006-11-10 01:28:43 +00:00
|
|
|
if (CurOp != NumOps)
|
2009-06-01 19:57:37 +00:00
|
|
|
emitConstant(MI.getOperand(CurOp++).getImm(),
|
|
|
|
X86InstrInfo::sizeOfImm(Desc));
|
2002-12-03 06:34:06 +00:00
|
|
|
break;
|
2003-01-13 00:33:59 +00:00
|
|
|
|
2006-09-08 06:48:29 +00:00
|
|
|
case X86II::MRMSrcMem: {
|
2009-04-08 21:14:34 +00:00
|
|
|
// FIXME: Maybe lea should have its own form?
|
|
|
|
int AddrOperands;
|
|
|
|
if (Opcode == X86::LEA64r || Opcode == X86::LEA64_32r ||
|
|
|
|
Opcode == X86::LEA16r || Opcode == X86::LEA32r)
|
|
|
|
AddrOperands = X86AddrNumOperands - 1; // No segment register
|
|
|
|
else
|
|
|
|
AddrOperands = X86AddrNumOperands;
|
|
|
|
|
|
|
|
intptr_t PCAdj = (CurOp + AddrOperands + 1 != NumOps) ?
|
2009-03-28 17:03:24 +00:00
|
|
|
X86InstrInfo::sizeOfImm(Desc) : 0;
|
2006-09-08 06:48:29 +00:00
|
|
|
|
2002-12-03 06:34:06 +00:00
|
|
|
MCE.emitByte(BaseOpcode);
|
2006-09-08 06:48:29 +00:00
|
|
|
emitMemModRMByte(MI, CurOp+1, getX86RegNum(MI.getOperand(CurOp).getReg()),
|
|
|
|
PCAdj);
|
2009-04-08 21:14:34 +00:00
|
|
|
CurOp += AddrOperands + 1;
|
2006-11-10 01:28:43 +00:00
|
|
|
if (CurOp != NumOps)
|
2009-06-01 19:57:37 +00:00
|
|
|
emitConstant(MI.getOperand(CurOp++).getImm(),
|
|
|
|
X86InstrInfo::sizeOfImm(Desc));
|
2002-12-03 06:34:06 +00:00
|
|
|
break;
|
2006-09-08 06:48:29 +00:00
|
|
|
}
|
2002-12-02 21:56:18 +00:00
|
|
|
|
2004-02-27 18:55:12 +00:00
|
|
|
case X86II::MRM0r: case X86II::MRM1r:
|
|
|
|
case X86II::MRM2r: case X86II::MRM3r:
|
|
|
|
case X86II::MRM4r: case X86II::MRM5r:
|
2008-10-17 17:14:20 +00:00
|
|
|
case X86II::MRM6r: case X86II::MRM7r: {
|
2002-12-03 06:34:06 +00:00
|
|
|
MCE.emitByte(BaseOpcode);
|
2008-10-17 17:14:20 +00:00
|
|
|
|
2009-05-28 23:40:46 +00:00
|
|
|
// Special handling of lfence, mfence, monitor, and mwait.
|
2008-10-17 17:14:20 +00:00
|
|
|
if (Desc->getOpcode() == X86::LFENCE ||
|
2009-05-28 23:40:46 +00:00
|
|
|
Desc->getOpcode() == X86::MFENCE ||
|
|
|
|
Desc->getOpcode() == X86::MONITOR ||
|
|
|
|
Desc->getOpcode() == X86::MWAIT) {
|
2008-10-17 17:14:20 +00:00
|
|
|
emitRegModRMByte((Desc->TSFlags & X86II::FormMask)-X86II::MRM0r);
|
2009-05-28 23:40:46 +00:00
|
|
|
|
|
|
|
switch (Desc->getOpcode()) {
|
|
|
|
default: break;
|
|
|
|
case X86::MONITOR:
|
|
|
|
MCE.emitByte(0xC8);
|
|
|
|
break;
|
|
|
|
case X86::MWAIT:
|
|
|
|
MCE.emitByte(0xC9);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2008-10-17 17:14:20 +00:00
|
|
|
emitRegModRMByte(MI.getOperand(CurOp++).getReg(),
|
|
|
|
(Desc->TSFlags & X86II::FormMask)-X86II::MRM0r);
|
2009-05-28 23:40:46 +00:00
|
|
|
}
|
2002-12-03 06:34:06 +00:00
|
|
|
|
2009-08-16 02:36:40 +00:00
|
|
|
if (CurOp == NumOps)
|
|
|
|
break;
|
|
|
|
|
|
|
|
const MachineOperand &MO1 = MI.getOperand(CurOp++);
|
|
|
|
unsigned Size = X86InstrInfo::sizeOfImm(Desc);
|
|
|
|
if (MO1.isImm()) {
|
|
|
|
emitConstant(MO1.getImm(), Size);
|
|
|
|
break;
|
2006-12-05 04:01:03 +00:00
|
|
|
}
|
2009-08-16 02:36:40 +00:00
|
|
|
|
|
|
|
unsigned rt = Is64BitMode ? X86::reloc_pcrel_word
|
|
|
|
: (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
|
|
|
|
if (Opcode == X86::MOV64ri32)
|
|
|
|
rt = X86::reloc_absolute_word_sext; // FIXME: add X86II flag?
|
|
|
|
if (MO1.isGlobal()) {
|
|
|
|
bool NeedStub = isa<Function>(MO1.getGlobal());
|
|
|
|
bool Indirect = gvNeedsNonLazyPtr(MO1, TM);
|
|
|
|
emitGlobalAddress(MO1.getGlobal(), rt, MO1.getOffset(), 0,
|
|
|
|
NeedStub, Indirect);
|
|
|
|
} else if (MO1.isSymbol())
|
|
|
|
emitExternalSymbolAddress(MO1.getSymbolName(), rt);
|
|
|
|
else if (MO1.isCPI())
|
|
|
|
emitConstPoolAddress(MO1.getIndex(), rt);
|
|
|
|
else if (MO1.isJTI())
|
|
|
|
emitJumpTableAddress(MO1.getIndex(), rt);
|
2002-12-02 21:56:18 +00:00
|
|
|
break;
|
2008-10-17 17:14:20 +00:00
|
|
|
}
|
2003-01-13 00:33:59 +00:00
|
|
|
|
2004-02-27 18:55:12 +00:00
|
|
|
case X86II::MRM0m: case X86II::MRM1m:
|
|
|
|
case X86II::MRM2m: case X86II::MRM3m:
|
|
|
|
case X86II::MRM4m: case X86II::MRM5m:
|
2006-09-08 06:48:29 +00:00
|
|
|
case X86II::MRM6m: case X86II::MRM7m: {
|
2009-03-28 17:03:24 +00:00
|
|
|
intptr_t PCAdj = (CurOp + X86AddrNumOperands != NumOps) ?
|
2009-05-06 19:04:30 +00:00
|
|
|
(MI.getOperand(CurOp+X86AddrNumOperands).isImm() ?
|
|
|
|
X86InstrInfo::sizeOfImm(Desc) : 4) : 0;
|
2006-09-08 06:48:29 +00:00
|
|
|
|
2003-01-13 00:33:59 +00:00
|
|
|
MCE.emitByte(BaseOpcode);
|
2006-12-05 04:01:03 +00:00
|
|
|
emitMemModRMByte(MI, CurOp, (Desc->TSFlags & X86II::FormMask)-X86II::MRM0m,
|
2006-09-08 06:48:29 +00:00
|
|
|
PCAdj);
|
2009-03-28 17:03:24 +00:00
|
|
|
CurOp += X86AddrNumOperands;
|
2006-09-05 02:52:35 +00:00
|
|
|
|
2009-08-16 02:36:40 +00:00
|
|
|
if (CurOp == NumOps)
|
|
|
|
break;
|
|
|
|
|
|
|
|
const MachineOperand &MO = MI.getOperand(CurOp++);
|
|
|
|
unsigned Size = X86InstrInfo::sizeOfImm(Desc);
|
|
|
|
if (MO.isImm()) {
|
|
|
|
emitConstant(MO.getImm(), Size);
|
|
|
|
break;
|
2003-01-13 00:33:59 +00:00
|
|
|
}
|
2009-08-16 02:36:40 +00:00
|
|
|
|
|
|
|
unsigned rt = Is64BitMode ? X86::reloc_pcrel_word
|
|
|
|
: (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
|
|
|
|
if (Opcode == X86::MOV64mi32)
|
|
|
|
rt = X86::reloc_absolute_word_sext; // FIXME: add X86II flag?
|
|
|
|
if (MO.isGlobal()) {
|
|
|
|
bool NeedStub = isa<Function>(MO.getGlobal());
|
|
|
|
bool Indirect = gvNeedsNonLazyPtr(MO, TM);
|
|
|
|
emitGlobalAddress(MO.getGlobal(), rt, MO.getOffset(), 0,
|
|
|
|
NeedStub, Indirect);
|
|
|
|
} else if (MO.isSymbol())
|
|
|
|
emitExternalSymbolAddress(MO.getSymbolName(), rt);
|
|
|
|
else if (MO.isCPI())
|
|
|
|
emitConstPoolAddress(MO.getIndex(), rt);
|
|
|
|
else if (MO.isJTI())
|
|
|
|
emitJumpTableAddress(MO.getIndex(), rt);
|
2003-01-13 00:33:59 +00:00
|
|
|
break;
|
2006-09-08 06:48:29 +00:00
|
|
|
}
|
2006-02-01 06:13:50 +00:00
|
|
|
|
|
|
|
case X86II::MRMInitReg:
|
|
|
|
MCE.emitByte(BaseOpcode);
|
2006-09-05 02:52:35 +00:00
|
|
|
// Duplicate register, used by things like MOV8r0 (aka xor reg,reg).
|
|
|
|
emitRegModRMByte(MI.getOperand(CurOp).getReg(),
|
|
|
|
getX86RegNum(MI.getOperand(CurOp).getReg()));
|
|
|
|
++CurOp;
|
2006-02-01 06:13:50 +00:00
|
|
|
break;
|
2002-12-02 21:44:34 +00:00
|
|
|
}
|
2006-09-06 20:24:14 +00:00
|
|
|
|
2008-03-05 02:08:03 +00:00
|
|
|
if (!Desc->isVariadic() && CurOp != NumOps) {
|
2009-07-08 20:53:28 +00:00
|
|
|
#ifndef NDEBUG
|
2009-08-16 02:45:18 +00:00
|
|
|
errs() << "Cannot encode all operands of: " << MI << "\n";
|
2009-07-08 20:53:28 +00:00
|
|
|
#endif
|
2009-07-14 16:55:14 +00:00
|
|
|
llvm_unreachable(0);
|
2008-03-05 02:08:03 +00:00
|
|
|
}
|
2002-12-02 21:44:34 +00:00
|
|
|
}
|
2009-08-27 08:12:55 +00:00
|
|
|
|
|
|
|
// Adapt the Emitter / CodeEmitter interfaces to MCCodeEmitter.
|
|
|
|
//
|
|
|
|
// FIXME: This is a total hack designed to allow work on llvm-mc to proceed
|
|
|
|
// without being blocked on various cleanups needed to support a clean interface
|
|
|
|
// to instruction encoding.
|
|
|
|
//
|
|
|
|
// Look away!
|
|
|
|
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
class MCSingleInstructionCodeEmitter : public MachineCodeEmitter {
|
|
|
|
uint8_t Data[256];
|
|
|
|
|
|
|
|
public:
|
|
|
|
MCSingleInstructionCodeEmitter() { reset(); }
|
|
|
|
|
|
|
|
void reset() {
|
|
|
|
BufferBegin = Data;
|
|
|
|
BufferEnd = array_endof(Data);
|
|
|
|
CurBufferPtr = Data;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef str() {
|
|
|
|
return StringRef(reinterpret_cast<char*>(BufferBegin),
|
|
|
|
CurBufferPtr - BufferBegin);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void startFunction(MachineFunction &F) {}
|
|
|
|
virtual bool finishFunction(MachineFunction &F) { return false; }
|
|
|
|
virtual void emitLabel(uint64_t LabelID) {}
|
|
|
|
virtual void StartMachineBasicBlock(MachineBasicBlock *MBB) {}
|
|
|
|
virtual bool earlyResolveAddresses() const { return false; }
|
|
|
|
virtual void addRelocation(const MachineRelocation &MR) { }
|
|
|
|
virtual uintptr_t getConstantPoolEntryAddress(unsigned Index) const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
virtual uintptr_t getJumpTableEntryAddress(unsigned Index) const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
virtual uintptr_t getMachineBasicBlockAddress(MachineBasicBlock *MBB) const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
virtual uintptr_t getLabelAddress(uint64_t LabelID) const {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
virtual void setModuleInfo(MachineModuleInfo* Info) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
class X86MCCodeEmitter : public MCCodeEmitter {
|
|
|
|
X86MCCodeEmitter(const X86MCCodeEmitter &); // DO NOT IMPLEMENT
|
|
|
|
void operator=(const X86MCCodeEmitter &); // DO NOT IMPLEMENT
|
|
|
|
|
|
|
|
private:
|
|
|
|
X86TargetMachine &TM;
|
|
|
|
llvm::Function *DummyF;
|
|
|
|
TargetData *DummyTD;
|
|
|
|
mutable llvm::MachineFunction *DummyMF;
|
|
|
|
llvm::MachineBasicBlock *DummyMBB;
|
|
|
|
|
|
|
|
MCSingleInstructionCodeEmitter *InstrEmitter;
|
|
|
|
Emitter<MachineCodeEmitter> *Emit;
|
|
|
|
|
|
|
|
public:
|
|
|
|
X86MCCodeEmitter(X86TargetMachine &_TM) : TM(_TM) {
|
|
|
|
// Verily, thou shouldst avert thine eyes.
|
|
|
|
const llvm::FunctionType *FTy =
|
|
|
|
FunctionType::get(llvm::Type::getVoidTy(getGlobalContext()), false);
|
|
|
|
DummyF = Function::Create(FTy, GlobalValue::InternalLinkage);
|
|
|
|
DummyTD = new TargetData("");
|
|
|
|
DummyMF = new MachineFunction(DummyF, TM);
|
|
|
|
DummyMBB = DummyMF->CreateMachineBasicBlock();
|
|
|
|
|
|
|
|
InstrEmitter = new MCSingleInstructionCodeEmitter();
|
|
|
|
Emit = new Emitter<MachineCodeEmitter>(TM, *InstrEmitter,
|
|
|
|
*TM.getInstrInfo(),
|
|
|
|
*DummyTD, false);
|
|
|
|
}
|
|
|
|
~X86MCCodeEmitter() {
|
|
|
|
delete Emit;
|
|
|
|
delete InstrEmitter;
|
|
|
|
delete DummyMF;
|
|
|
|
delete DummyF;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AddRegToInstr(const MCInst &MI, MachineInstr *Instr,
|
|
|
|
unsigned Start) const {
|
|
|
|
if (Start + 1 > MI.getNumOperands())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const MCOperand &Op = MI.getOperand(Start);
|
|
|
|
if (!Op.isReg()) return false;
|
|
|
|
|
|
|
|
Instr->addOperand(MachineOperand::CreateReg(Op.getReg(), false));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AddImmToInstr(const MCInst &MI, MachineInstr *Instr,
|
|
|
|
unsigned Start) const {
|
|
|
|
if (Start + 1 > MI.getNumOperands())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const MCOperand &Op = MI.getOperand(Start);
|
|
|
|
if (Op.isImm()) {
|
|
|
|
Instr->addOperand(MachineOperand::CreateImm(Op.getImm()));
|
|
|
|
return true;
|
|
|
|
}
|
2009-08-31 08:08:38 +00:00
|
|
|
if (!Op.isExpr())
|
2009-08-27 08:12:55 +00:00
|
|
|
return false;
|
|
|
|
|
2009-08-31 08:08:38 +00:00
|
|
|
const MCExpr *Expr = Op.getExpr();
|
|
|
|
if (const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(Expr)) {
|
|
|
|
Instr->addOperand(MachineOperand::CreateImm(CE->getValue()));
|
2009-08-30 06:17:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-08-27 08:12:55 +00:00
|
|
|
// FIXME: Relocation / fixup.
|
|
|
|
Instr->addOperand(MachineOperand::CreateImm(0));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AddLMemToInstr(const MCInst &MI, MachineInstr *Instr,
|
|
|
|
unsigned Start) const {
|
|
|
|
return (AddRegToInstr(MI, Instr, Start + 0) &&
|
|
|
|
AddImmToInstr(MI, Instr, Start + 1) &&
|
|
|
|
AddRegToInstr(MI, Instr, Start + 2) &&
|
|
|
|
AddImmToInstr(MI, Instr, Start + 3));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AddMemToInstr(const MCInst &MI, MachineInstr *Instr,
|
|
|
|
unsigned Start) const {
|
|
|
|
return (AddRegToInstr(MI, Instr, Start + 0) &&
|
|
|
|
AddImmToInstr(MI, Instr, Start + 1) &&
|
|
|
|
AddRegToInstr(MI, Instr, Start + 2) &&
|
|
|
|
AddImmToInstr(MI, Instr, Start + 3) &&
|
|
|
|
AddRegToInstr(MI, Instr, Start + 4));
|
|
|
|
}
|
|
|
|
|
|
|
|
void EncodeInstruction(const MCInst &MI, raw_ostream &OS) const {
|
|
|
|
// Don't look yet!
|
|
|
|
|
|
|
|
// Convert the MCInst to a MachineInstr so we can (ab)use the regular
|
|
|
|
// emitter.
|
|
|
|
const X86InstrInfo &II = *TM.getInstrInfo();
|
|
|
|
const TargetInstrDesc &Desc = II.get(MI.getOpcode());
|
|
|
|
MachineInstr *Instr = DummyMF->CreateMachineInstr(Desc, DebugLoc());
|
|
|
|
DummyMBB->push_back(Instr);
|
|
|
|
|
|
|
|
unsigned Opcode = MI.getOpcode();
|
|
|
|
unsigned NumOps = MI.getNumOperands();
|
|
|
|
unsigned CurOp = 0;
|
|
|
|
if (NumOps > 1 && Desc.getOperandConstraint(1, TOI::TIED_TO) != -1) {
|
|
|
|
Instr->addOperand(MachineOperand::CreateReg(0, false));
|
|
|
|
++CurOp;
|
|
|
|
} else if (NumOps > 2 &&
|
|
|
|
Desc.getOperandConstraint(NumOps-1, TOI::TIED_TO)== 0)
|
|
|
|
// Skip the last source operand that is tied_to the dest reg. e.g. LXADD32
|
|
|
|
--NumOps;
|
|
|
|
|
|
|
|
bool OK = true;
|
|
|
|
switch (Desc.TSFlags & X86II::FormMask) {
|
|
|
|
case X86II::MRMDestReg:
|
|
|
|
case X86II::MRMSrcReg:
|
|
|
|
// Matching doesn't fill this in completely, we have to choose operand 0
|
|
|
|
// for a tied register.
|
|
|
|
OK &= AddRegToInstr(MI, Instr, 0); CurOp++;
|
|
|
|
OK &= AddRegToInstr(MI, Instr, CurOp++);
|
|
|
|
if (CurOp < NumOps)
|
|
|
|
OK &= AddImmToInstr(MI, Instr, CurOp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case X86II::RawFrm:
|
|
|
|
if (CurOp < NumOps) {
|
|
|
|
// Hack to make branches work.
|
|
|
|
if (!(Desc.TSFlags & X86II::ImmMask) &&
|
2009-08-31 08:08:38 +00:00
|
|
|
MI.getOperand(0).isExpr() &&
|
|
|
|
isa<MCSymbolRefExpr>(MI.getOperand(0).getExpr()))
|
2009-08-27 08:12:55 +00:00
|
|
|
Instr->addOperand(MachineOperand::CreateMBB(DummyMBB));
|
|
|
|
else
|
|
|
|
OK &= AddImmToInstr(MI, Instr, CurOp);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case X86II::AddRegFrm:
|
|
|
|
OK &= AddRegToInstr(MI, Instr, CurOp++);
|
|
|
|
if (CurOp < NumOps)
|
|
|
|
OK &= AddImmToInstr(MI, Instr, CurOp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case X86II::MRM0r: case X86II::MRM1r:
|
|
|
|
case X86II::MRM2r: case X86II::MRM3r:
|
|
|
|
case X86II::MRM4r: case X86II::MRM5r:
|
|
|
|
case X86II::MRM6r: case X86II::MRM7r:
|
|
|
|
// Matching doesn't fill this in completely, we have to choose operand 0
|
|
|
|
// for a tied register.
|
|
|
|
OK &= AddRegToInstr(MI, Instr, 0); CurOp++;
|
|
|
|
if (CurOp < NumOps)
|
|
|
|
OK &= AddImmToInstr(MI, Instr, CurOp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case X86II::MRM0m: case X86II::MRM1m:
|
|
|
|
case X86II::MRM2m: case X86II::MRM3m:
|
|
|
|
case X86II::MRM4m: case X86II::MRM5m:
|
|
|
|
case X86II::MRM6m: case X86II::MRM7m:
|
|
|
|
OK &= AddMemToInstr(MI, Instr, CurOp); CurOp += 5;
|
|
|
|
if (CurOp < NumOps)
|
|
|
|
OK &= AddImmToInstr(MI, Instr, CurOp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case X86II::MRMSrcMem:
|
|
|
|
OK &= AddRegToInstr(MI, Instr, CurOp++);
|
|
|
|
if (Opcode == X86::LEA64r || Opcode == X86::LEA64_32r ||
|
|
|
|
Opcode == X86::LEA16r || Opcode == X86::LEA32r)
|
|
|
|
OK &= AddLMemToInstr(MI, Instr, CurOp);
|
|
|
|
else
|
|
|
|
OK &= AddMemToInstr(MI, Instr, CurOp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case X86II::MRMDestMem:
|
|
|
|
OK &= AddMemToInstr(MI, Instr, CurOp); CurOp += 5;
|
|
|
|
OK &= AddRegToInstr(MI, Instr, CurOp);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
case X86II::MRMInitReg:
|
|
|
|
case X86II::Pseudo:
|
|
|
|
OK = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!OK) {
|
|
|
|
errs() << "couldn't convert inst '";
|
2009-09-03 05:39:09 +00:00
|
|
|
MI.dump();
|
2009-08-27 08:12:55 +00:00
|
|
|
errs() << "' to machine instr:\n";
|
|
|
|
Instr->dump();
|
|
|
|
}
|
|
|
|
|
|
|
|
InstrEmitter->reset();
|
|
|
|
if (OK)
|
|
|
|
Emit->emitInstruction(*Instr, &Desc);
|
|
|
|
OS << InstrEmitter->str();
|
|
|
|
|
|
|
|
Instr->eraseFromParent();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ok, now you can look.
|
|
|
|
MCCodeEmitter *llvm::createX86MCCodeEmitter(const Target &,
|
|
|
|
TargetMachine &TM) {
|
|
|
|
return new X86MCCodeEmitter(static_cast<X86TargetMachine&>(TM));
|
|
|
|
}
|