2018-06-19 19:28:59 +08:00
|
|
|
//===-- Target.cpp ----------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "../Target.h"
|
|
|
|
|
2018-06-26 16:49:30 +08:00
|
|
|
#include "../Latency.h"
|
|
|
|
#include "../Uops.h"
|
2018-06-28 15:41:16 +08:00
|
|
|
#include "MCTargetDesc/X86BaseInfo.h"
|
2018-06-25 21:12:02 +08:00
|
|
|
#include "MCTargetDesc/X86MCTargetDesc.h"
|
2018-06-20 19:54:35 +08:00
|
|
|
#include "X86.h"
|
2018-06-25 21:12:02 +08:00
|
|
|
#include "X86RegisterInfo.h"
|
2018-07-03 14:17:05 +08:00
|
|
|
#include "X86Subtarget.h"
|
2018-06-25 21:12:02 +08:00
|
|
|
#include "llvm/MC/MCInstBuilder.h"
|
2018-06-20 19:54:35 +08:00
|
|
|
|
2018-06-19 19:28:59 +08:00
|
|
|
namespace exegesis {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2018-10-12 23:12:22 +08:00
|
|
|
static llvm::Error IsInvalidOpcode(const Instruction &Instr) {
|
|
|
|
const auto OpcodeName = Instr.Name;
|
|
|
|
if (OpcodeName.startswith("POPF") || OpcodeName.startswith("PUSHF") ||
|
|
|
|
OpcodeName.startswith("ADJCALLSTACK"))
|
|
|
|
return llvm::make_error<BenchmarkFailure>(
|
|
|
|
"Unsupported opcode: Push/Pop/AdjCallStack");
|
|
|
|
return llvm::Error::success();
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned GetX86FPFlags(const Instruction &Instr) {
|
|
|
|
return Instr.Description->TSFlags & llvm::X86II::FPTypeMask;
|
|
|
|
}
|
|
|
|
|
|
|
|
class X86LatencySnippetGenerator : public LatencySnippetGenerator {
|
|
|
|
public:
|
|
|
|
using LatencySnippetGenerator::LatencySnippetGenerator;
|
2018-06-26 16:49:30 +08:00
|
|
|
|
2018-08-03 17:29:38 +08:00
|
|
|
llvm::Expected<CodeTemplate>
|
2018-10-10 22:57:32 +08:00
|
|
|
generateCodeTemplate(const Instruction &Instr) const override {
|
2018-10-12 23:12:22 +08:00
|
|
|
if (auto E = IsInvalidOpcode(Instr))
|
|
|
|
return std::move(E);
|
2018-06-28 15:41:16 +08:00
|
|
|
|
2018-10-12 23:12:22 +08:00
|
|
|
switch (GetX86FPFlags(Instr)) {
|
2018-06-28 15:41:16 +08:00
|
|
|
case llvm::X86II::NotFP:
|
2018-10-12 23:12:22 +08:00
|
|
|
return LatencySnippetGenerator::generateCodeTemplate(Instr);
|
2018-06-28 15:41:16 +08:00
|
|
|
case llvm::X86II::ZeroArgFP:
|
|
|
|
case llvm::X86II::OneArgFP:
|
2018-10-12 23:12:22 +08:00
|
|
|
case llvm::X86II::SpecialFP:
|
|
|
|
case llvm::X86II::CompareFP:
|
|
|
|
case llvm::X86II::CondMovFP:
|
|
|
|
return llvm::make_error<BenchmarkFailure>("Unsupported x87 Instruction");
|
2018-06-28 15:41:16 +08:00
|
|
|
case llvm::X86II::OneArgFPRW:
|
2018-10-12 23:12:22 +08:00
|
|
|
case llvm::X86II::TwoArgFP:
|
2018-06-28 15:41:16 +08:00
|
|
|
// These are instructions like
|
|
|
|
// - `ST(0) = fsqrt(ST(0))` (OneArgFPRW)
|
|
|
|
// - `ST(0) = ST(0) + ST(i)` (TwoArgFP)
|
|
|
|
// They are intrinsically serial and do not modify the state of the stack.
|
2018-10-12 23:12:22 +08:00
|
|
|
return generateSelfAliasingCodeTemplate(Instr);
|
2018-06-28 15:41:16 +08:00
|
|
|
default:
|
|
|
|
llvm_unreachable("Unknown FP Type!");
|
|
|
|
}
|
2018-06-26 16:49:30 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-10-12 23:12:22 +08:00
|
|
|
class X86UopsSnippetGenerator : public UopsSnippetGenerator {
|
|
|
|
public:
|
|
|
|
using UopsSnippetGenerator::UopsSnippetGenerator;
|
2018-06-26 16:49:30 +08:00
|
|
|
|
2018-10-12 23:12:22 +08:00
|
|
|
llvm::Expected<CodeTemplate>
|
|
|
|
generateCodeTemplate(const Instruction &Instr) const override {
|
|
|
|
if (auto E = IsInvalidOpcode(Instr))
|
|
|
|
return std::move(E);
|
|
|
|
|
|
|
|
switch (GetX86FPFlags(Instr)) {
|
|
|
|
case llvm::X86II::NotFP:
|
|
|
|
return UopsSnippetGenerator::generateCodeTemplate(Instr);
|
|
|
|
case llvm::X86II::ZeroArgFP:
|
|
|
|
case llvm::X86II::OneArgFP:
|
|
|
|
case llvm::X86II::SpecialFP:
|
|
|
|
return llvm::make_error<BenchmarkFailure>("Unsupported x87 Instruction");
|
|
|
|
case llvm::X86II::OneArgFPRW:
|
|
|
|
case llvm::X86II::TwoArgFP:
|
|
|
|
// These are instructions like
|
|
|
|
// - `ST(0) = fsqrt(ST(0))` (OneArgFPRW)
|
|
|
|
// - `ST(0) = ST(0) + ST(i)` (TwoArgFP)
|
|
|
|
// They are intrinsically serial and do not modify the state of the stack.
|
|
|
|
// We generate the same code for latency and uops.
|
|
|
|
return generateSelfAliasingCodeTemplate(Instr);
|
|
|
|
case llvm::X86II::CompareFP:
|
|
|
|
case llvm::X86II::CondMovFP:
|
|
|
|
// We can compute uops for any FP instruction that does not grow or shrink
|
|
|
|
// the stack (either do not touch the stack or push as much as they pop).
|
|
|
|
return generateUnconstrainedCodeTemplate(
|
|
|
|
Instr, "instruction does not grow/shrink the FP stack");
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Unknown FP Type!");
|
|
|
|
}
|
2018-06-26 16:49:30 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-09-20 20:22:18 +08:00
|
|
|
static unsigned GetLoadImmediateOpcode(unsigned RegBitWidth) {
|
|
|
|
switch (RegBitWidth) {
|
2018-09-18 19:26:27 +08:00
|
|
|
case 8:
|
|
|
|
return llvm::X86::MOV8ri;
|
|
|
|
case 16:
|
|
|
|
return llvm::X86::MOV16ri;
|
|
|
|
case 32:
|
|
|
|
return llvm::X86::MOV32ri;
|
|
|
|
case 64:
|
|
|
|
return llvm::X86::MOV64ri;
|
|
|
|
}
|
|
|
|
llvm_unreachable("Invalid Value Width");
|
|
|
|
}
|
|
|
|
|
2018-09-20 20:22:18 +08:00
|
|
|
// Generates instruction to load an immediate value into a register.
|
|
|
|
static llvm::MCInst loadImmediate(unsigned Reg, unsigned RegBitWidth,
|
|
|
|
const llvm::APInt &Value) {
|
|
|
|
if (Value.getBitWidth() > RegBitWidth)
|
|
|
|
llvm_unreachable("Value must fit in the Register");
|
|
|
|
return llvm::MCInstBuilder(GetLoadImmediateOpcode(RegBitWidth))
|
2018-09-18 19:26:27 +08:00
|
|
|
.addReg(Reg)
|
|
|
|
.addImm(Value.getZExtValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allocates scratch memory on the stack.
|
|
|
|
static llvm::MCInst allocateStackSpace(unsigned Bytes) {
|
|
|
|
return llvm::MCInstBuilder(llvm::X86::SUB64ri8)
|
|
|
|
.addReg(llvm::X86::RSP)
|
|
|
|
.addReg(llvm::X86::RSP)
|
|
|
|
.addImm(Bytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fills scratch memory at offset `OffsetBytes` with value `Imm`.
|
|
|
|
static llvm::MCInst fillStackSpace(unsigned MovOpcode, unsigned OffsetBytes,
|
|
|
|
uint64_t Imm) {
|
|
|
|
return llvm::MCInstBuilder(MovOpcode)
|
|
|
|
// Address = ESP
|
|
|
|
.addReg(llvm::X86::RSP) // BaseReg
|
|
|
|
.addImm(1) // ScaleAmt
|
|
|
|
.addReg(0) // IndexReg
|
|
|
|
.addImm(OffsetBytes) // Disp
|
|
|
|
.addReg(0) // Segment
|
|
|
|
// Immediate.
|
|
|
|
.addImm(Imm);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loads scratch memory into register `Reg` using opcode `RMOpcode`.
|
|
|
|
static llvm::MCInst loadToReg(unsigned Reg, unsigned RMOpcode) {
|
|
|
|
return llvm::MCInstBuilder(RMOpcode)
|
|
|
|
.addReg(Reg)
|
|
|
|
// Address = ESP
|
|
|
|
.addReg(llvm::X86::RSP) // BaseReg
|
|
|
|
.addImm(1) // ScaleAmt
|
|
|
|
.addReg(0) // IndexReg
|
|
|
|
.addImm(0) // Disp
|
|
|
|
.addReg(0); // Segment
|
|
|
|
}
|
|
|
|
|
|
|
|
// Releases scratch memory.
|
|
|
|
static llvm::MCInst releaseStackSpace(unsigned Bytes) {
|
|
|
|
return llvm::MCInstBuilder(llvm::X86::ADD64ri8)
|
|
|
|
.addReg(llvm::X86::RSP)
|
|
|
|
.addReg(llvm::X86::RSP)
|
|
|
|
.addImm(Bytes);
|
|
|
|
}
|
|
|
|
|
2018-09-20 20:22:18 +08:00
|
|
|
// Reserves some space on the stack, fills it with the content of the provided
|
|
|
|
// constant and provide methods to load the stack value into a register.
|
2018-09-18 19:26:27 +08:00
|
|
|
struct ConstantInliner {
|
2018-09-25 15:31:44 +08:00
|
|
|
explicit ConstantInliner(const llvm::APInt &Constant) : Constant_(Constant) {}
|
2018-09-18 19:26:27 +08:00
|
|
|
|
2018-09-20 20:22:18 +08:00
|
|
|
std::vector<llvm::MCInst> loadAndFinalize(unsigned Reg, unsigned RegBitWidth,
|
|
|
|
unsigned Opcode) {
|
2018-09-25 15:31:44 +08:00
|
|
|
assert((RegBitWidth & 7) == 0 &&
|
|
|
|
"RegBitWidth must be a multiple of 8 bits");
|
|
|
|
initStack(RegBitWidth / 8);
|
2018-09-20 20:22:18 +08:00
|
|
|
add(loadToReg(Reg, Opcode));
|
2018-09-25 15:31:44 +08:00
|
|
|
add(releaseStackSpace(RegBitWidth / 8));
|
2018-09-20 20:22:18 +08:00
|
|
|
return std::move(Instructions);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<llvm::MCInst>
|
|
|
|
loadX87AndFinalize(unsigned Reg, unsigned RegBitWidth, unsigned Opcode) {
|
2018-09-25 15:31:44 +08:00
|
|
|
assert((RegBitWidth & 7) == 0 &&
|
|
|
|
"RegBitWidth must be a multiple of 8 bits");
|
|
|
|
initStack(RegBitWidth / 8);
|
2018-09-20 20:22:18 +08:00
|
|
|
add(llvm::MCInstBuilder(Opcode)
|
|
|
|
.addReg(llvm::X86::RSP) // BaseReg
|
|
|
|
.addImm(1) // ScaleAmt
|
|
|
|
.addReg(0) // IndexReg
|
|
|
|
.addImm(0) // Disp
|
|
|
|
.addReg(0)); // Segment
|
|
|
|
if (Reg != llvm::X86::ST0)
|
|
|
|
add(llvm::MCInstBuilder(llvm::X86::ST_Frr).addReg(Reg));
|
2018-09-25 15:31:44 +08:00
|
|
|
add(releaseStackSpace(RegBitWidth / 8));
|
2018-09-20 20:22:18 +08:00
|
|
|
return std::move(Instructions);
|
2018-09-18 19:26:35 +08:00
|
|
|
}
|
|
|
|
|
2018-09-20 20:22:18 +08:00
|
|
|
std::vector<llvm::MCInst> popFlagAndFinalize() {
|
2018-09-25 15:31:44 +08:00
|
|
|
initStack(8);
|
2018-09-20 20:22:18 +08:00
|
|
|
add(llvm::MCInstBuilder(llvm::X86::POPF64));
|
2018-09-18 19:26:27 +08:00
|
|
|
return std::move(Instructions);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-09-20 20:22:18 +08:00
|
|
|
ConstantInliner &add(const llvm::MCInst &Inst) {
|
|
|
|
Instructions.push_back(Inst);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-09-25 15:31:44 +08:00
|
|
|
void initStack(unsigned Bytes) {
|
|
|
|
assert(Constant_.getBitWidth() <= Bytes * 8 &&
|
|
|
|
"Value does not have the correct size");
|
|
|
|
const llvm::APInt WideConstant = Constant_.getBitWidth() < Bytes * 8
|
|
|
|
? Constant_.sext(Bytes * 8)
|
|
|
|
: Constant_;
|
|
|
|
add(allocateStackSpace(Bytes));
|
|
|
|
size_t ByteOffset = 0;
|
|
|
|
for (; Bytes - ByteOffset >= 4; ByteOffset += 4)
|
|
|
|
add(fillStackSpace(
|
|
|
|
llvm::X86::MOV32mi, ByteOffset,
|
|
|
|
WideConstant.extractBits(32, ByteOffset * 8).getZExtValue()));
|
|
|
|
if (Bytes - ByteOffset >= 2) {
|
|
|
|
add(fillStackSpace(
|
|
|
|
llvm::X86::MOV16mi, ByteOffset,
|
|
|
|
WideConstant.extractBits(16, ByteOffset * 8).getZExtValue()));
|
|
|
|
ByteOffset += 2;
|
|
|
|
}
|
|
|
|
if (Bytes - ByteOffset >= 1)
|
|
|
|
add(fillStackSpace(
|
|
|
|
llvm::X86::MOV8mi, ByteOffset,
|
|
|
|
WideConstant.extractBits(8, ByteOffset * 8).getZExtValue()));
|
|
|
|
}
|
|
|
|
|
|
|
|
llvm::APInt Constant_;
|
2018-09-18 19:26:27 +08:00
|
|
|
std::vector<llvm::MCInst> Instructions;
|
|
|
|
};
|
|
|
|
|
2018-06-19 19:28:59 +08:00
|
|
|
class ExegesisX86Target : public ExegesisTarget {
|
2018-06-20 19:54:35 +08:00
|
|
|
void addTargetSpecificPasses(llvm::PassManagerBase &PM) const override {
|
|
|
|
// Lowers FP pseudo-instructions, e.g. ABS_Fp32 -> ABS_F.
|
2018-06-28 15:41:16 +08:00
|
|
|
PM.add(llvm::createX86FloatingPointStackifierPass());
|
2018-06-20 19:54:35 +08:00
|
|
|
}
|
|
|
|
|
2018-08-01 22:41:45 +08:00
|
|
|
unsigned getScratchMemoryRegister(const llvm::Triple &TT) const override {
|
|
|
|
if (!TT.isArch64Bit()) {
|
|
|
|
// FIXME: This would require popping from the stack, so we would have to
|
|
|
|
// add some additional setup code.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return TT.isOSWindows() ? llvm::X86::RCX : llvm::X86::RDI;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned getMaxMemoryAccessSize() const override { return 64; }
|
|
|
|
|
2018-09-27 17:23:04 +08:00
|
|
|
void fillMemoryOperands(InstructionTemplate &IT, unsigned Reg,
|
2018-08-01 22:41:45 +08:00
|
|
|
unsigned Offset) const override {
|
|
|
|
// FIXME: For instructions that read AND write to memory, we use the same
|
|
|
|
// value for input and output.
|
2018-09-27 17:23:04 +08:00
|
|
|
for (size_t I = 0, E = IT.Instr.Operands.size(); I < E; ++I) {
|
|
|
|
const Operand *Op = &IT.Instr.Operands[I];
|
2018-10-09 16:59:10 +08:00
|
|
|
if (Op->isExplicit() && Op->isMemory()) {
|
2018-08-01 22:41:45 +08:00
|
|
|
// Case 1: 5-op memory.
|
|
|
|
assert((I + 5 <= E) && "x86 memory references are always 5 ops");
|
2018-09-27 17:23:04 +08:00
|
|
|
IT.getValueFor(*Op) = llvm::MCOperand::createReg(Reg); // BaseReg
|
|
|
|
Op = &IT.Instr.Operands[++I];
|
2018-10-09 16:59:10 +08:00
|
|
|
assert(Op->isMemory());
|
|
|
|
assert(Op->isExplicit());
|
2018-09-27 17:23:04 +08:00
|
|
|
IT.getValueFor(*Op) = llvm::MCOperand::createImm(1); // ScaleAmt
|
|
|
|
Op = &IT.Instr.Operands[++I];
|
2018-10-09 16:59:10 +08:00
|
|
|
assert(Op->isMemory());
|
|
|
|
assert(Op->isExplicit());
|
2018-09-27 17:23:04 +08:00
|
|
|
IT.getValueFor(*Op) = llvm::MCOperand::createReg(0); // IndexReg
|
|
|
|
Op = &IT.Instr.Operands[++I];
|
2018-10-09 16:59:10 +08:00
|
|
|
assert(Op->isMemory());
|
|
|
|
assert(Op->isExplicit());
|
2018-09-27 17:23:04 +08:00
|
|
|
IT.getValueFor(*Op) = llvm::MCOperand::createImm(Offset); // Disp
|
|
|
|
Op = &IT.Instr.Operands[++I];
|
2018-10-09 16:59:10 +08:00
|
|
|
assert(Op->isMemory());
|
|
|
|
assert(Op->isExplicit());
|
2018-09-27 17:23:04 +08:00
|
|
|
IT.getValueFor(*Op) = llvm::MCOperand::createReg(0); // Segment
|
2018-08-01 22:41:45 +08:00
|
|
|
// Case2: segment:index addressing. We assume that ES is 0.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-20 20:22:18 +08:00
|
|
|
std::vector<llvm::MCInst> setRegTo(const llvm::MCSubtargetInfo &STI,
|
|
|
|
unsigned Reg,
|
|
|
|
const llvm::APInt &Value) const override {
|
2018-07-02 14:39:55 +08:00
|
|
|
if (llvm::X86::GR8RegClass.contains(Reg))
|
2018-09-20 20:22:18 +08:00
|
|
|
return {loadImmediate(Reg, 8, Value)};
|
2018-07-02 14:39:55 +08:00
|
|
|
if (llvm::X86::GR16RegClass.contains(Reg))
|
2018-09-20 20:22:18 +08:00
|
|
|
return {loadImmediate(Reg, 16, Value)};
|
2018-07-02 14:39:55 +08:00
|
|
|
if (llvm::X86::GR32RegClass.contains(Reg))
|
2018-09-20 20:22:18 +08:00
|
|
|
return {loadImmediate(Reg, 32, Value)};
|
2018-07-02 14:39:55 +08:00
|
|
|
if (llvm::X86::GR64RegClass.contains(Reg))
|
2018-09-20 20:22:18 +08:00
|
|
|
return {loadImmediate(Reg, 64, Value)};
|
|
|
|
ConstantInliner CI(Value);
|
2018-07-03 14:17:05 +08:00
|
|
|
if (llvm::X86::VR64RegClass.contains(Reg))
|
2018-09-20 20:22:18 +08:00
|
|
|
return CI.loadAndFinalize(Reg, 64, llvm::X86::MMX_MOVQ64rm);
|
2018-07-03 14:17:05 +08:00
|
|
|
if (llvm::X86::VR128XRegClass.contains(Reg)) {
|
|
|
|
if (STI.getFeatureBits()[llvm::X86::FeatureAVX512])
|
2018-09-20 20:22:18 +08:00
|
|
|
return CI.loadAndFinalize(Reg, 128, llvm::X86::VMOVDQU32Z128rm);
|
2018-07-03 14:17:05 +08:00
|
|
|
if (STI.getFeatureBits()[llvm::X86::FeatureAVX])
|
2018-09-20 20:22:18 +08:00
|
|
|
return CI.loadAndFinalize(Reg, 128, llvm::X86::VMOVDQUrm);
|
|
|
|
return CI.loadAndFinalize(Reg, 128, llvm::X86::MOVDQUrm);
|
2018-07-03 14:17:05 +08:00
|
|
|
}
|
|
|
|
if (llvm::X86::VR256XRegClass.contains(Reg)) {
|
|
|
|
if (STI.getFeatureBits()[llvm::X86::FeatureAVX512])
|
2018-09-20 20:22:18 +08:00
|
|
|
return CI.loadAndFinalize(Reg, 256, llvm::X86::VMOVDQU32Z256rm);
|
|
|
|
if (STI.getFeatureBits()[llvm::X86::FeatureAVX])
|
|
|
|
return CI.loadAndFinalize(Reg, 256, llvm::X86::VMOVDQUYrm);
|
2018-07-03 14:17:05 +08:00
|
|
|
}
|
2018-07-02 14:39:55 +08:00
|
|
|
if (llvm::X86::VR512RegClass.contains(Reg))
|
2018-09-20 20:22:18 +08:00
|
|
|
if (STI.getFeatureBits()[llvm::X86::FeatureAVX512])
|
|
|
|
return CI.loadAndFinalize(Reg, 512, llvm::X86::VMOVDQU32Zrm);
|
|
|
|
if (llvm::X86::RSTRegClass.contains(Reg)) {
|
|
|
|
if (Value.getBitWidth() == 32)
|
|
|
|
return CI.loadX87AndFinalize(Reg, 32, llvm::X86::LD_F32m);
|
|
|
|
if (Value.getBitWidth() == 64)
|
|
|
|
return CI.loadX87AndFinalize(Reg, 64, llvm::X86::LD_F64m);
|
|
|
|
if (Value.getBitWidth() == 80)
|
|
|
|
return CI.loadX87AndFinalize(Reg, 80, llvm::X86::LD_F80m);
|
2018-07-05 21:54:51 +08:00
|
|
|
}
|
2018-09-20 20:22:18 +08:00
|
|
|
if (Reg == llvm::X86::EFLAGS)
|
|
|
|
return CI.popFlagAndFinalize();
|
|
|
|
return {}; // Not yet implemented.
|
2018-06-25 21:12:02 +08:00
|
|
|
}
|
|
|
|
|
2018-09-13 15:40:53 +08:00
|
|
|
std::unique_ptr<SnippetGenerator>
|
|
|
|
createLatencySnippetGenerator(const LLVMState &State) const override {
|
2018-10-12 23:12:22 +08:00
|
|
|
return llvm::make_unique<X86LatencySnippetGenerator>(State);
|
2018-06-26 16:49:30 +08:00
|
|
|
}
|
|
|
|
|
2018-09-13 15:40:53 +08:00
|
|
|
std::unique_ptr<SnippetGenerator>
|
|
|
|
createUopsSnippetGenerator(const LLVMState &State) const override {
|
2018-10-12 23:12:22 +08:00
|
|
|
return llvm::make_unique<X86UopsSnippetGenerator>(State);
|
2018-06-26 16:49:30 +08:00
|
|
|
}
|
|
|
|
|
2018-06-19 19:28:59 +08:00
|
|
|
bool matchesArch(llvm::Triple::ArchType Arch) const override {
|
|
|
|
return Arch == llvm::Triple::x86_64 || Arch == llvm::Triple::x86;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2018-06-25 19:22:23 +08:00
|
|
|
static ExegesisTarget *getTheExegesisX86Target() {
|
2018-06-19 19:28:59 +08:00
|
|
|
static ExegesisX86Target Target;
|
|
|
|
return &Target;
|
|
|
|
}
|
|
|
|
|
|
|
|
void InitializeX86ExegesisTarget() {
|
|
|
|
ExegesisTarget::registerTarget(getTheExegesisX86Target());
|
|
|
|
}
|
|
|
|
|
2018-06-25 19:22:23 +08:00
|
|
|
} // namespace exegesis
|