2018-06-19 19:28:59 +08:00
|
|
|
//===-- Target.cpp ----------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2018-06-19 19:28:59 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "../Target.h"
|
|
|
|
|
2019-09-30 21:53:50 +08:00
|
|
|
#include "../Error.h"
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
#include "../ParallelSnippetGenerator.h"
|
2020-01-17 21:28:54 +08:00
|
|
|
#include "../SerialSnippetGenerator.h"
|
2019-04-08 18:11:00 +08:00
|
|
|
#include "../SnippetGenerator.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"
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
#include "llvm/ADT/Sequence.h"
|
2018-06-25 21:12:02 +08:00
|
|
|
#include "llvm/MC/MCInstBuilder.h"
|
2019-10-09 16:49:13 +08:00
|
|
|
#include "llvm/Support/FormatVariadic.h"
|
2018-06-20 19:54:35 +08:00
|
|
|
|
2018-10-23 01:10:47 +08:00
|
|
|
namespace llvm {
|
2018-06-19 19:28:59 +08:00
|
|
|
namespace exegesis {
|
|
|
|
|
2020-01-22 16:33:50 +08:00
|
|
|
// Returns a non-null reason if we cannot handle the memory references in this
|
2018-11-08 00:14:55 +08:00
|
|
|
// instruction.
|
2020-01-22 16:33:50 +08:00
|
|
|
static const char *isInvalidMemoryInstr(const Instruction &Instr) {
|
2019-12-18 19:08:38 +08:00
|
|
|
switch (Instr.Description.TSFlags & X86II::FormMask) {
|
2018-11-08 00:14:55 +08:00
|
|
|
default:
|
|
|
|
llvm_unreachable("Unknown FormMask value");
|
|
|
|
// These have no memory access.
|
|
|
|
case X86II::Pseudo:
|
|
|
|
case X86II::RawFrm:
|
[X86] Merge the different Jcc instructions for each condition code into single instructions that store the condition code as an operand.
Summary:
This avoids needing an isel pattern for each condition code. And it removes translation switches for converting between Jcc instructions and condition codes.
Now the printer, encoder and disassembler take care of converting the immediate. We use InstAliases to handle the assembly matching. But we print using the asm string in the instruction definition. The instruction itself is marked IsCodeGenOnly=1 to hide it from the assembly parser.
Reviewers: spatel, lebedev.ri, courbet, gchatelet, RKSimon
Reviewed By: RKSimon
Subscribers: MatzeB, qcolombet, eraman, hiraditya, arphaman, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60228
llvm-svn: 357802
2019-04-06 03:28:09 +08:00
|
|
|
case X86II::AddCCFrm:
|
2020-02-22 04:30:27 +08:00
|
|
|
case X86II::PrefixByte:
|
2018-11-08 00:14:55 +08:00
|
|
|
case X86II::MRMDestReg:
|
|
|
|
case X86II::MRMSrcReg:
|
|
|
|
case X86II::MRMSrcReg4VOp3:
|
|
|
|
case X86II::MRMSrcRegOp4:
|
[X86] Merge the different CMOV instructions for each condition code into single instructions that store the condition code as an immediate.
Summary:
Reorder the condition code enum to match their encodings. Move it to MC layer so it can be used by the scheduler models.
This avoids needing an isel pattern for each condition code. And it removes
translation switches for converting between CMOV instructions and condition
codes.
Now the printer, encoder and disassembler take care of converting the immediate.
We use InstAliases to handle the assembly matching. But we print using the
asm string in the instruction definition. The instruction itself is marked
IsCodeGenOnly=1 to hide it from the assembly parser.
This does complicate the scheduler models a little since we can't assign the
A and BE instructions to a separate class now.
I plan to make similar changes for SETcc and Jcc.
Reviewers: RKSimon, spatel, lebedev.ri, andreadb, courbet
Reviewed By: RKSimon
Subscribers: gchatelet, hiraditya, kristina, lebedev.ri, jdoerfert, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60041
llvm-svn: 357800
2019-04-06 03:27:41 +08:00
|
|
|
case X86II::MRMSrcRegCC:
|
2019-04-06 03:27:49 +08:00
|
|
|
case X86II::MRMXrCC:
|
2020-07-02 08:36:45 +08:00
|
|
|
case X86II::MRMr0:
|
2018-11-08 00:14:55 +08:00
|
|
|
case X86II::MRMXr:
|
|
|
|
case X86II::MRM0r:
|
|
|
|
case X86II::MRM1r:
|
|
|
|
case X86II::MRM2r:
|
|
|
|
case X86II::MRM3r:
|
|
|
|
case X86II::MRM4r:
|
|
|
|
case X86II::MRM5r:
|
|
|
|
case X86II::MRM6r:
|
|
|
|
case X86II::MRM7r:
|
2020-06-20 13:18:53 +08:00
|
|
|
case X86II::MRM0X:
|
|
|
|
case X86II::MRM1X:
|
|
|
|
case X86II::MRM2X:
|
|
|
|
case X86II::MRM3X:
|
|
|
|
case X86II::MRM4X:
|
|
|
|
case X86II::MRM5X:
|
|
|
|
case X86II::MRM6X:
|
|
|
|
case X86II::MRM7X:
|
2018-11-08 00:14:55 +08:00
|
|
|
case X86II::MRM_C0:
|
|
|
|
case X86II::MRM_C1:
|
|
|
|
case X86II::MRM_C2:
|
|
|
|
case X86II::MRM_C3:
|
|
|
|
case X86II::MRM_C4:
|
|
|
|
case X86II::MRM_C5:
|
|
|
|
case X86II::MRM_C6:
|
|
|
|
case X86II::MRM_C7:
|
|
|
|
case X86II::MRM_C8:
|
|
|
|
case X86II::MRM_C9:
|
|
|
|
case X86II::MRM_CA:
|
|
|
|
case X86II::MRM_CB:
|
|
|
|
case X86II::MRM_CC:
|
|
|
|
case X86II::MRM_CD:
|
|
|
|
case X86II::MRM_CE:
|
|
|
|
case X86II::MRM_CF:
|
|
|
|
case X86II::MRM_D0:
|
|
|
|
case X86II::MRM_D1:
|
|
|
|
case X86II::MRM_D2:
|
|
|
|
case X86II::MRM_D3:
|
|
|
|
case X86II::MRM_D4:
|
|
|
|
case X86II::MRM_D5:
|
|
|
|
case X86II::MRM_D6:
|
|
|
|
case X86II::MRM_D7:
|
|
|
|
case X86II::MRM_D8:
|
|
|
|
case X86II::MRM_D9:
|
|
|
|
case X86II::MRM_DA:
|
|
|
|
case X86II::MRM_DB:
|
|
|
|
case X86II::MRM_DC:
|
|
|
|
case X86II::MRM_DD:
|
|
|
|
case X86II::MRM_DE:
|
|
|
|
case X86II::MRM_DF:
|
|
|
|
case X86II::MRM_E0:
|
|
|
|
case X86II::MRM_E1:
|
|
|
|
case X86II::MRM_E2:
|
|
|
|
case X86II::MRM_E3:
|
|
|
|
case X86II::MRM_E4:
|
|
|
|
case X86II::MRM_E5:
|
|
|
|
case X86II::MRM_E6:
|
|
|
|
case X86II::MRM_E7:
|
|
|
|
case X86II::MRM_E8:
|
|
|
|
case X86II::MRM_E9:
|
|
|
|
case X86II::MRM_EA:
|
|
|
|
case X86II::MRM_EB:
|
|
|
|
case X86II::MRM_EC:
|
|
|
|
case X86II::MRM_ED:
|
|
|
|
case X86II::MRM_EE:
|
|
|
|
case X86II::MRM_EF:
|
|
|
|
case X86II::MRM_F0:
|
|
|
|
case X86II::MRM_F1:
|
|
|
|
case X86II::MRM_F2:
|
|
|
|
case X86II::MRM_F3:
|
|
|
|
case X86II::MRM_F4:
|
|
|
|
case X86II::MRM_F5:
|
|
|
|
case X86II::MRM_F6:
|
|
|
|
case X86II::MRM_F7:
|
|
|
|
case X86II::MRM_F8:
|
|
|
|
case X86II::MRM_F9:
|
|
|
|
case X86II::MRM_FA:
|
|
|
|
case X86II::MRM_FB:
|
|
|
|
case X86II::MRM_FC:
|
|
|
|
case X86II::MRM_FD:
|
|
|
|
case X86II::MRM_FE:
|
|
|
|
case X86II::MRM_FF:
|
|
|
|
case X86II::RawFrmImm8:
|
2020-01-22 16:33:50 +08:00
|
|
|
return nullptr;
|
2018-11-08 00:14:55 +08:00
|
|
|
case X86II::AddRegFrm:
|
2019-12-18 19:08:38 +08:00
|
|
|
return (Instr.Description.Opcode == X86::POP16r ||
|
|
|
|
Instr.Description.Opcode == X86::POP32r ||
|
|
|
|
Instr.Description.Opcode == X86::PUSH16r ||
|
|
|
|
Instr.Description.Opcode == X86::PUSH32r)
|
2020-01-22 16:33:50 +08:00
|
|
|
? "unsupported opcode: unsupported memory access"
|
|
|
|
: nullptr;
|
2018-11-08 00:14:55 +08:00
|
|
|
// These access memory and are handled.
|
|
|
|
case X86II::MRMDestMem:
|
|
|
|
case X86II::MRMSrcMem:
|
|
|
|
case X86II::MRMSrcMem4VOp3:
|
|
|
|
case X86II::MRMSrcMemOp4:
|
[X86] Merge the different CMOV instructions for each condition code into single instructions that store the condition code as an immediate.
Summary:
Reorder the condition code enum to match their encodings. Move it to MC layer so it can be used by the scheduler models.
This avoids needing an isel pattern for each condition code. And it removes
translation switches for converting between CMOV instructions and condition
codes.
Now the printer, encoder and disassembler take care of converting the immediate.
We use InstAliases to handle the assembly matching. But we print using the
asm string in the instruction definition. The instruction itself is marked
IsCodeGenOnly=1 to hide it from the assembly parser.
This does complicate the scheduler models a little since we can't assign the
A and BE instructions to a separate class now.
I plan to make similar changes for SETcc and Jcc.
Reviewers: RKSimon, spatel, lebedev.ri, andreadb, courbet
Reviewed By: RKSimon
Subscribers: gchatelet, hiraditya, kristina, lebedev.ri, jdoerfert, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60041
llvm-svn: 357800
2019-04-06 03:27:41 +08:00
|
|
|
case X86II::MRMSrcMemCC:
|
2019-04-06 03:27:49 +08:00
|
|
|
case X86II::MRMXmCC:
|
2018-11-08 00:14:55 +08:00
|
|
|
case X86II::MRMXm:
|
|
|
|
case X86II::MRM0m:
|
|
|
|
case X86II::MRM1m:
|
|
|
|
case X86II::MRM2m:
|
|
|
|
case X86II::MRM3m:
|
|
|
|
case X86II::MRM4m:
|
|
|
|
case X86II::MRM5m:
|
|
|
|
case X86II::MRM6m:
|
|
|
|
case X86II::MRM7m:
|
2020-01-22 16:33:50 +08:00
|
|
|
return nullptr;
|
2018-11-08 00:14:55 +08:00
|
|
|
// These access memory and are not handled yet.
|
|
|
|
case X86II::RawFrmImm16:
|
|
|
|
case X86II::RawFrmMemOffs:
|
|
|
|
case X86II::RawFrmSrc:
|
|
|
|
case X86II::RawFrmDst:
|
|
|
|
case X86II::RawFrmDstSrc:
|
2020-01-22 16:33:50 +08:00
|
|
|
return "unsupported opcode: non uniform memory access";
|
2018-10-22 22:46:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-22 16:33:50 +08:00
|
|
|
// If the opcode is invalid, returns a pointer to a character literal indicating
|
|
|
|
// the reason. nullptr indicates a valid opcode.
|
|
|
|
static const char *isInvalidOpcode(const Instruction &Instr) {
|
2018-10-12 23:12:22 +08:00
|
|
|
const auto OpcodeName = Instr.Name;
|
2019-12-18 19:08:38 +08:00
|
|
|
if ((Instr.Description.TSFlags & X86II::FormMask) == X86II::Pseudo)
|
2020-01-22 16:33:50 +08:00
|
|
|
return "unsupported opcode: pseudo instruction";
|
|
|
|
if (OpcodeName.startswith("POP") || OpcodeName.startswith("PUSH") ||
|
|
|
|
OpcodeName.startswith("ADJCALLSTACK") || OpcodeName.startswith("LEAVE"))
|
|
|
|
return "unsupported opcode: Push/Pop/AdjCallStack/Leave";
|
|
|
|
if (const auto reason = isInvalidMemoryInstr(Instr))
|
|
|
|
return reason;
|
2018-10-22 22:46:08 +08:00
|
|
|
// We do not handle instructions with OPERAND_PCREL.
|
|
|
|
for (const Operand &Op : Instr.Operands)
|
|
|
|
if (Op.isExplicit() &&
|
2019-10-09 19:58:42 +08:00
|
|
|
Op.getExplicitOperandInfo().OperandType == MCOI::OPERAND_PCREL)
|
2020-01-22 16:33:50 +08:00
|
|
|
return "unsupported opcode: PC relative operand";
|
2018-10-19 20:24:49 +08:00
|
|
|
// We do not handle second-form X87 instructions. We only handle first-form
|
|
|
|
// ones (_Fp), see comment in X86InstrFPStack.td.
|
|
|
|
for (const Operand &Op : Instr.Operands)
|
|
|
|
if (Op.isReg() && Op.isExplicit() &&
|
2019-10-09 19:58:42 +08:00
|
|
|
Op.getExplicitOperandInfo().RegClass == X86::RSTRegClassID)
|
2020-01-22 16:33:50 +08:00
|
|
|
return "unsupported second-form X87 instruction";
|
|
|
|
return nullptr;
|
2018-10-12 23:12:22 +08:00
|
|
|
}
|
|
|
|
|
2018-11-20 22:41:59 +08:00
|
|
|
static unsigned getX86FPFlags(const Instruction &Instr) {
|
2019-12-18 19:08:38 +08:00
|
|
|
return Instr.Description.TSFlags & X86II::FPTypeMask;
|
2018-10-12 23:12:22 +08:00
|
|
|
}
|
|
|
|
|
2019-10-09 16:49:13 +08:00
|
|
|
// Helper to fill a memory operand with a value.
|
|
|
|
static void setMemOp(InstructionTemplate &IT, int OpIdx,
|
|
|
|
const MCOperand &OpVal) {
|
2019-12-18 19:08:38 +08:00
|
|
|
const auto Op = IT.getInstr().Operands[OpIdx];
|
2019-10-09 16:49:13 +08:00
|
|
|
assert(Op.isExplicit() && "invalid memory pattern");
|
|
|
|
IT.getValueFor(Op) = OpVal;
|
2019-10-09 17:03:42 +08:00
|
|
|
}
|
2019-10-09 16:49:13 +08:00
|
|
|
|
|
|
|
// Common (latency, uops) code for LEA templates. `GetDestReg` takes the
|
|
|
|
// addressing base and index registers and returns the LEA destination register.
|
2019-10-09 19:58:42 +08:00
|
|
|
static Expected<std::vector<CodeTemplate>> generateLEATemplatesCommon(
|
2019-10-09 16:49:13 +08:00
|
|
|
const Instruction &Instr, const BitVector &ForbiddenRegisters,
|
|
|
|
const LLVMState &State, const SnippetGenerator::Options &Opts,
|
2020-01-21 18:58:51 +08:00
|
|
|
std::function<void(unsigned, unsigned, BitVector &CandidateDestRegs)>
|
|
|
|
RestrictDestRegs) {
|
2019-10-09 16:49:13 +08:00
|
|
|
assert(Instr.Operands.size() == 6 && "invalid LEA");
|
2019-12-18 19:08:38 +08:00
|
|
|
assert(X86II::getMemoryOperandNo(Instr.Description.TSFlags) == 1 &&
|
2019-10-09 16:49:13 +08:00
|
|
|
"invalid LEA");
|
|
|
|
|
|
|
|
constexpr const int kDestOp = 0;
|
|
|
|
constexpr const int kBaseOp = 1;
|
|
|
|
constexpr const int kIndexOp = 3;
|
|
|
|
auto PossibleDestRegs =
|
|
|
|
Instr.Operands[kDestOp].getRegisterAliasing().sourceBits();
|
|
|
|
remove(PossibleDestRegs, ForbiddenRegisters);
|
|
|
|
auto PossibleBaseRegs =
|
|
|
|
Instr.Operands[kBaseOp].getRegisterAliasing().sourceBits();
|
|
|
|
remove(PossibleBaseRegs, ForbiddenRegisters);
|
|
|
|
auto PossibleIndexRegs =
|
|
|
|
Instr.Operands[kIndexOp].getRegisterAliasing().sourceBits();
|
|
|
|
remove(PossibleIndexRegs, ForbiddenRegisters);
|
|
|
|
|
|
|
|
const auto &RegInfo = State.getRegInfo();
|
|
|
|
std::vector<CodeTemplate> Result;
|
|
|
|
for (const unsigned BaseReg : PossibleBaseRegs.set_bits()) {
|
|
|
|
for (const unsigned IndexReg : PossibleIndexRegs.set_bits()) {
|
|
|
|
for (int LogScale = 0; LogScale <= 3; ++LogScale) {
|
|
|
|
// FIXME: Add an option for controlling how we explore immediates.
|
|
|
|
for (const int Disp : {0, 42}) {
|
2019-12-18 19:08:38 +08:00
|
|
|
InstructionTemplate IT(&Instr);
|
2019-10-09 16:49:13 +08:00
|
|
|
const int64_t Scale = 1ull << LogScale;
|
|
|
|
setMemOp(IT, 1, MCOperand::createReg(BaseReg));
|
|
|
|
setMemOp(IT, 2, MCOperand::createImm(Scale));
|
|
|
|
setMemOp(IT, 3, MCOperand::createReg(IndexReg));
|
|
|
|
setMemOp(IT, 4, MCOperand::createImm(Disp));
|
|
|
|
// SegmentReg must be 0 for LEA.
|
|
|
|
setMemOp(IT, 5, MCOperand::createReg(0));
|
|
|
|
|
2020-01-21 18:58:51 +08:00
|
|
|
// Output reg candidates are selected by the caller.
|
|
|
|
auto PossibleDestRegsNow = PossibleDestRegs;
|
|
|
|
RestrictDestRegs(BaseReg, IndexReg, PossibleDestRegsNow);
|
|
|
|
assert(PossibleDestRegsNow.set_bits().begin() !=
|
|
|
|
PossibleDestRegsNow.set_bits().end() &&
|
|
|
|
"no remaining registers");
|
|
|
|
setMemOp(
|
|
|
|
IT, 0,
|
|
|
|
MCOperand::createReg(*PossibleDestRegsNow.set_bits().begin()));
|
2019-10-09 16:49:13 +08:00
|
|
|
|
|
|
|
CodeTemplate CT;
|
|
|
|
CT.Instructions.push_back(std::move(IT));
|
|
|
|
CT.Config = formatv("{3}(%{0}, %{1}, {2})", RegInfo.getName(BaseReg),
|
|
|
|
RegInfo.getName(IndexReg), Scale, Disp)
|
|
|
|
.str();
|
|
|
|
Result.push_back(std::move(CT));
|
|
|
|
if (Result.size() >= Opts.MaxConfigsPerOpcode)
|
2020-02-10 23:06:45 +08:00
|
|
|
return std::move(Result);
|
2019-10-09 16:49:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-10 23:06:45 +08:00
|
|
|
return std::move(Result);
|
2019-10-09 16:49:13 +08:00
|
|
|
}
|
|
|
|
|
2018-11-20 22:41:59 +08:00
|
|
|
namespace {
|
2020-01-17 21:28:54 +08:00
|
|
|
class X86SerialSnippetGenerator : public SerialSnippetGenerator {
|
2018-10-12 23:12:22 +08:00
|
|
|
public:
|
2020-01-17 21:28:54 +08:00
|
|
|
using SerialSnippetGenerator::SerialSnippetGenerator;
|
2018-06-26 16:49:30 +08:00
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
Expected<std::vector<CodeTemplate>>
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
generateCodeTemplates(InstructionTemplate Variant,
|
2019-09-27 16:04:10 +08:00
|
|
|
const BitVector &ForbiddenRegisters) const override;
|
2018-06-26 16:49:30 +08:00
|
|
|
};
|
2018-11-20 22:41:59 +08:00
|
|
|
} // namespace
|
2018-06-26 16:49:30 +08:00
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
Expected<std::vector<CodeTemplate>>
|
2020-01-17 21:28:54 +08:00
|
|
|
X86SerialSnippetGenerator::generateCodeTemplates(
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
InstructionTemplate Variant, const BitVector &ForbiddenRegisters) const {
|
|
|
|
const Instruction &Instr = Variant.getInstr();
|
|
|
|
|
2020-01-22 16:33:50 +08:00
|
|
|
if (const auto reason = isInvalidOpcode(Instr))
|
|
|
|
return make_error<Failure>(reason);
|
2018-11-20 22:41:59 +08:00
|
|
|
|
2019-10-09 16:49:13 +08:00
|
|
|
// LEA gets special attention.
|
2019-12-18 19:08:38 +08:00
|
|
|
const auto Opcode = Instr.Description.getOpcode();
|
2019-10-09 16:49:13 +08:00
|
|
|
if (Opcode == X86::LEA64r || Opcode == X86::LEA64_32r) {
|
2020-01-21 18:58:51 +08:00
|
|
|
return generateLEATemplatesCommon(
|
|
|
|
Instr, ForbiddenRegisters, State, Opts,
|
|
|
|
[this](unsigned BaseReg, unsigned IndexReg,
|
|
|
|
BitVector &CandidateDestRegs) {
|
|
|
|
// We just select a destination register that aliases the base
|
|
|
|
// register.
|
|
|
|
CandidateDestRegs &=
|
|
|
|
State.getRATC().getRegister(BaseReg).aliasedBits();
|
|
|
|
});
|
2019-10-09 16:49:13 +08:00
|
|
|
}
|
|
|
|
|
2020-01-22 16:33:50 +08:00
|
|
|
if (Instr.hasMemoryOperands())
|
|
|
|
return make_error<Failure>(
|
|
|
|
"unsupported memory operand in latency measurements");
|
|
|
|
|
2018-11-20 22:41:59 +08:00
|
|
|
switch (getX86FPFlags(Instr)) {
|
2019-10-09 19:58:42 +08:00
|
|
|
case X86II::NotFP:
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
return SerialSnippetGenerator::generateCodeTemplates(Variant,
|
|
|
|
ForbiddenRegisters);
|
2019-10-09 19:58:42 +08:00
|
|
|
case X86II::ZeroArgFP:
|
|
|
|
case X86II::OneArgFP:
|
|
|
|
case X86II::SpecialFP:
|
|
|
|
case X86II::CompareFP:
|
|
|
|
case X86II::CondMovFP:
|
|
|
|
return make_error<Failure>("Unsupported x87 Instruction");
|
|
|
|
case X86II::OneArgFPRW:
|
|
|
|
case X86II::TwoArgFP:
|
2018-11-20 22:41:59 +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.
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
return generateSelfAliasingCodeTemplates(Variant);
|
2018-11-20 22:41:59 +08:00
|
|
|
default:
|
|
|
|
llvm_unreachable("Unknown FP Type!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
2020-01-17 21:28:54 +08:00
|
|
|
class X86ParallelSnippetGenerator : public ParallelSnippetGenerator {
|
2018-10-12 23:12:22 +08:00
|
|
|
public:
|
2020-01-17 21:28:54 +08:00
|
|
|
using ParallelSnippetGenerator::ParallelSnippetGenerator;
|
2018-06-26 16:49:30 +08:00
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
Expected<std::vector<CodeTemplate>>
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
generateCodeTemplates(InstructionTemplate Variant,
|
2019-09-27 16:04:10 +08:00
|
|
|
const BitVector &ForbiddenRegisters) const override;
|
2018-06-26 16:49:30 +08:00
|
|
|
};
|
2019-10-09 16:49:13 +08:00
|
|
|
|
2018-11-20 22:41:59 +08:00
|
|
|
} // namespace
|
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
Expected<std::vector<CodeTemplate>>
|
2020-01-17 21:28:54 +08:00
|
|
|
X86ParallelSnippetGenerator::generateCodeTemplates(
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
InstructionTemplate Variant, const BitVector &ForbiddenRegisters) const {
|
|
|
|
const Instruction &Instr = Variant.getInstr();
|
|
|
|
|
2020-01-22 16:33:50 +08:00
|
|
|
if (const auto reason = isInvalidOpcode(Instr))
|
|
|
|
return make_error<Failure>(reason);
|
2018-11-20 22:41:59 +08:00
|
|
|
|
2019-10-09 16:49:13 +08:00
|
|
|
// LEA gets special attention.
|
2019-12-18 19:08:38 +08:00
|
|
|
const auto Opcode = Instr.Description.getOpcode();
|
2019-10-09 16:49:13 +08:00
|
|
|
if (Opcode == X86::LEA64r || Opcode == X86::LEA64_32r) {
|
|
|
|
return generateLEATemplatesCommon(
|
|
|
|
Instr, ForbiddenRegisters, State, Opts,
|
2020-01-21 18:58:51 +08:00
|
|
|
[this](unsigned BaseReg, unsigned IndexReg,
|
|
|
|
BitVector &CandidateDestRegs) {
|
|
|
|
// Any destination register that is not used for addressing is fine.
|
|
|
|
remove(CandidateDestRegs,
|
2019-10-09 16:49:13 +08:00
|
|
|
State.getRATC().getRegister(BaseReg).aliasedBits());
|
2020-01-21 18:58:51 +08:00
|
|
|
remove(CandidateDestRegs,
|
2019-10-09 16:49:13 +08:00
|
|
|
State.getRATC().getRegister(IndexReg).aliasedBits());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-11-20 22:41:59 +08:00
|
|
|
switch (getX86FPFlags(Instr)) {
|
2019-10-09 19:58:42 +08:00
|
|
|
case X86II::NotFP:
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
return ParallelSnippetGenerator::generateCodeTemplates(Variant,
|
|
|
|
ForbiddenRegisters);
|
2019-10-09 19:58:42 +08:00
|
|
|
case X86II::ZeroArgFP:
|
|
|
|
case X86II::OneArgFP:
|
|
|
|
case X86II::SpecialFP:
|
|
|
|
return make_error<Failure>("Unsupported x87 Instruction");
|
|
|
|
case X86II::OneArgFPRW:
|
|
|
|
case X86II::TwoArgFP:
|
2018-11-20 22:41:59 +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.
|
|
|
|
// We generate the same code for latency and uops.
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
return generateSelfAliasingCodeTemplates(Variant);
|
2019-10-09 19:58:42 +08:00
|
|
|
case X86II::CompareFP:
|
|
|
|
case X86II::CondMovFP:
|
2018-11-20 22:41:59 +08:00
|
|
|
// 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 generateUnconstrainedCodeTemplates(
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
Variant, "instruction does not grow/shrink the FP stack");
|
2018-11-20 22:41:59 +08:00
|
|
|
default:
|
|
|
|
llvm_unreachable("Unknown FP Type!");
|
|
|
|
}
|
|
|
|
}
|
2018-06-26 16:49:30 +08:00
|
|
|
|
2018-11-20 22:41:59 +08:00
|
|
|
static unsigned getLoadImmediateOpcode(unsigned RegBitWidth) {
|
2018-09-20 20:22:18 +08:00
|
|
|
switch (RegBitWidth) {
|
2018-09-18 19:26:27 +08:00
|
|
|
case 8:
|
2019-10-09 19:58:42 +08:00
|
|
|
return X86::MOV8ri;
|
2018-09-18 19:26:27 +08:00
|
|
|
case 16:
|
2019-10-09 19:58:42 +08:00
|
|
|
return X86::MOV16ri;
|
2018-09-18 19:26:27 +08:00
|
|
|
case 32:
|
2019-10-09 19:58:42 +08:00
|
|
|
return X86::MOV32ri;
|
2018-09-18 19:26:27 +08:00
|
|
|
case 64:
|
2019-10-09 19:58:42 +08:00
|
|
|
return X86::MOV64ri;
|
2018-09-18 19:26:27 +08:00
|
|
|
}
|
|
|
|
llvm_unreachable("Invalid Value Width");
|
|
|
|
}
|
|
|
|
|
2018-09-20 20:22:18 +08:00
|
|
|
// Generates instruction to load an immediate value into a register.
|
2019-10-09 19:58:42 +08:00
|
|
|
static MCInst loadImmediate(unsigned Reg, unsigned RegBitWidth,
|
|
|
|
const APInt &Value) {
|
2018-09-20 20:22:18 +08:00
|
|
|
if (Value.getBitWidth() > RegBitWidth)
|
|
|
|
llvm_unreachable("Value must fit in the Register");
|
2019-10-09 19:58:42 +08:00
|
|
|
return MCInstBuilder(getLoadImmediateOpcode(RegBitWidth))
|
2018-09-18 19:26:27 +08:00
|
|
|
.addReg(Reg)
|
|
|
|
.addImm(Value.getZExtValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allocates scratch memory on the stack.
|
2019-10-09 19:58:42 +08:00
|
|
|
static MCInst allocateStackSpace(unsigned Bytes) {
|
|
|
|
return MCInstBuilder(X86::SUB64ri8)
|
|
|
|
.addReg(X86::RSP)
|
|
|
|
.addReg(X86::RSP)
|
2018-09-18 19:26:27 +08:00
|
|
|
.addImm(Bytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fills scratch memory at offset `OffsetBytes` with value `Imm`.
|
2019-10-09 19:58:42 +08:00
|
|
|
static MCInst fillStackSpace(unsigned MovOpcode, unsigned OffsetBytes,
|
|
|
|
uint64_t Imm) {
|
|
|
|
return MCInstBuilder(MovOpcode)
|
2018-09-18 19:26:27 +08:00
|
|
|
// Address = ESP
|
2019-10-09 19:58:42 +08:00
|
|
|
.addReg(X86::RSP) // BaseReg
|
|
|
|
.addImm(1) // ScaleAmt
|
|
|
|
.addReg(0) // IndexReg
|
|
|
|
.addImm(OffsetBytes) // Disp
|
|
|
|
.addReg(0) // Segment
|
2018-09-18 19:26:27 +08:00
|
|
|
// Immediate.
|
|
|
|
.addImm(Imm);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Loads scratch memory into register `Reg` using opcode `RMOpcode`.
|
2019-10-09 19:58:42 +08:00
|
|
|
static MCInst loadToReg(unsigned Reg, unsigned RMOpcode) {
|
|
|
|
return MCInstBuilder(RMOpcode)
|
2018-09-18 19:26:27 +08:00
|
|
|
.addReg(Reg)
|
|
|
|
// Address = ESP
|
2019-10-09 19:58:42 +08:00
|
|
|
.addReg(X86::RSP) // BaseReg
|
|
|
|
.addImm(1) // ScaleAmt
|
|
|
|
.addReg(0) // IndexReg
|
|
|
|
.addImm(0) // Disp
|
|
|
|
.addReg(0); // Segment
|
2018-09-18 19:26:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Releases scratch memory.
|
2019-10-09 19:58:42 +08:00
|
|
|
static MCInst releaseStackSpace(unsigned Bytes) {
|
|
|
|
return MCInstBuilder(X86::ADD64ri8)
|
|
|
|
.addReg(X86::RSP)
|
|
|
|
.addReg(X86::RSP)
|
2018-09-18 19:26:27 +08:00
|
|
|
.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-11-20 22:41:59 +08:00
|
|
|
namespace {
|
2018-09-18 19:26:27 +08:00
|
|
|
struct ConstantInliner {
|
2019-10-09 19:58:42 +08:00
|
|
|
explicit ConstantInliner(const APInt &Constant) : Constant_(Constant) {}
|
2018-09-18 19:26:27 +08:00
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
std::vector<MCInst> loadAndFinalize(unsigned Reg, unsigned RegBitWidth,
|
|
|
|
unsigned Opcode);
|
2018-09-20 20:22:18 +08:00
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
std::vector<MCInst> loadX87STAndFinalize(unsigned Reg);
|
2018-10-19 17:56:54 +08:00
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
std::vector<MCInst> loadX87FPAndFinalize(unsigned Reg);
|
2018-09-18 19:26:35 +08:00
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
std::vector<MCInst> popFlagAndFinalize();
|
2018-09-18 19:26:27 +08:00
|
|
|
|
2019-12-02 19:39:16 +08:00
|
|
|
std::vector<MCInst> loadImplicitRegAndFinalize(unsigned Opcode,
|
|
|
|
unsigned Value);
|
2019-12-01 13:35:53 +08:00
|
|
|
|
2018-09-18 19:26:27 +08:00
|
|
|
private:
|
2019-10-09 19:58:42 +08:00
|
|
|
ConstantInliner &add(const MCInst &Inst) {
|
2018-09-20 20:22:18 +08:00
|
|
|
Instructions.push_back(Inst);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-11-20 22:41:59 +08:00
|
|
|
void initStack(unsigned Bytes);
|
|
|
|
|
|
|
|
static constexpr const unsigned kF80Bytes = 10; // 80 bits.
|
2018-09-25 15:31:44 +08:00
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
APInt Constant_;
|
|
|
|
std::vector<MCInst> Instructions;
|
2018-09-18 19:26:27 +08:00
|
|
|
};
|
2018-11-20 22:41:59 +08:00
|
|
|
} // namespace
|
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
std::vector<MCInst> ConstantInliner::loadAndFinalize(unsigned Reg,
|
|
|
|
unsigned RegBitWidth,
|
|
|
|
unsigned Opcode) {
|
2018-11-20 22:41:59 +08:00
|
|
|
assert((RegBitWidth & 7) == 0 && "RegBitWidth must be a multiple of 8 bits");
|
|
|
|
initStack(RegBitWidth / 8);
|
|
|
|
add(loadToReg(Reg, Opcode));
|
|
|
|
add(releaseStackSpace(RegBitWidth / 8));
|
|
|
|
return std::move(Instructions);
|
|
|
|
}
|
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
std::vector<MCInst> ConstantInliner::loadX87STAndFinalize(unsigned Reg) {
|
2018-11-20 22:41:59 +08:00
|
|
|
initStack(kF80Bytes);
|
2019-10-09 19:58:42 +08:00
|
|
|
add(MCInstBuilder(X86::LD_F80m)
|
2018-11-20 22:41:59 +08:00
|
|
|
// Address = ESP
|
2019-10-09 19:58:42 +08:00
|
|
|
.addReg(X86::RSP) // BaseReg
|
|
|
|
.addImm(1) // ScaleAmt
|
|
|
|
.addReg(0) // IndexReg
|
|
|
|
.addImm(0) // Disp
|
|
|
|
.addReg(0)); // Segment
|
|
|
|
if (Reg != X86::ST0)
|
|
|
|
add(MCInstBuilder(X86::ST_Frr).addReg(Reg));
|
2018-11-20 22:41:59 +08:00
|
|
|
add(releaseStackSpace(kF80Bytes));
|
|
|
|
return std::move(Instructions);
|
|
|
|
}
|
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
std::vector<MCInst> ConstantInliner::loadX87FPAndFinalize(unsigned Reg) {
|
2018-11-20 22:41:59 +08:00
|
|
|
initStack(kF80Bytes);
|
2019-10-09 19:58:42 +08:00
|
|
|
add(MCInstBuilder(X86::LD_Fp80m)
|
2018-11-20 22:41:59 +08:00
|
|
|
.addReg(Reg)
|
|
|
|
// Address = ESP
|
2019-10-09 19:58:42 +08:00
|
|
|
.addReg(X86::RSP) // BaseReg
|
|
|
|
.addImm(1) // ScaleAmt
|
|
|
|
.addReg(0) // IndexReg
|
|
|
|
.addImm(0) // Disp
|
|
|
|
.addReg(0)); // Segment
|
2018-11-20 22:41:59 +08:00
|
|
|
add(releaseStackSpace(kF80Bytes));
|
|
|
|
return std::move(Instructions);
|
|
|
|
}
|
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
std::vector<MCInst> ConstantInliner::popFlagAndFinalize() {
|
2018-11-20 22:41:59 +08:00
|
|
|
initStack(8);
|
2019-10-09 19:58:42 +08:00
|
|
|
add(MCInstBuilder(X86::POPF64));
|
2018-11-20 22:41:59 +08:00
|
|
|
return std::move(Instructions);
|
|
|
|
}
|
|
|
|
|
2019-12-02 19:39:16 +08:00
|
|
|
std::vector<MCInst>
|
|
|
|
ConstantInliner::loadImplicitRegAndFinalize(unsigned Opcode, unsigned Value) {
|
2019-12-01 13:35:53 +08:00
|
|
|
add(allocateStackSpace(4));
|
2019-12-02 19:39:16 +08:00
|
|
|
add(fillStackSpace(X86::MOV32mi, 0, Value)); // Mask all FP exceptions
|
|
|
|
add(MCInstBuilder(Opcode)
|
2019-12-01 13:35:53 +08:00
|
|
|
// Address = ESP
|
|
|
|
.addReg(X86::RSP) // BaseReg
|
|
|
|
.addImm(1) // ScaleAmt
|
|
|
|
.addReg(0) // IndexReg
|
|
|
|
.addImm(0) // Disp
|
|
|
|
.addReg(0)); // Segment
|
2019-12-02 21:58:41 +08:00
|
|
|
add(releaseStackSpace(4));
|
2019-12-01 13:35:53 +08:00
|
|
|
return std::move(Instructions);
|
|
|
|
}
|
|
|
|
|
2018-11-20 22:41:59 +08:00
|
|
|
void ConstantInliner::initStack(unsigned Bytes) {
|
|
|
|
assert(Constant_.getBitWidth() <= Bytes * 8 &&
|
|
|
|
"Value does not have the correct size");
|
2019-10-09 19:58:42 +08:00
|
|
|
const APInt WideConstant = Constant_.getBitWidth() < Bytes * 8
|
|
|
|
? Constant_.sext(Bytes * 8)
|
|
|
|
: Constant_;
|
2018-11-20 22:41:59 +08:00
|
|
|
add(allocateStackSpace(Bytes));
|
|
|
|
size_t ByteOffset = 0;
|
|
|
|
for (; Bytes - ByteOffset >= 4; ByteOffset += 4)
|
|
|
|
add(fillStackSpace(
|
2019-10-09 19:58:42 +08:00
|
|
|
X86::MOV32mi, ByteOffset,
|
2018-11-20 22:41:59 +08:00
|
|
|
WideConstant.extractBits(32, ByteOffset * 8).getZExtValue()));
|
|
|
|
if (Bytes - ByteOffset >= 2) {
|
|
|
|
add(fillStackSpace(
|
2019-10-09 19:58:42 +08:00
|
|
|
X86::MOV16mi, ByteOffset,
|
2018-11-20 22:41:59 +08:00
|
|
|
WideConstant.extractBits(16, ByteOffset * 8).getZExtValue()));
|
|
|
|
ByteOffset += 2;
|
|
|
|
}
|
|
|
|
if (Bytes - ByteOffset >= 1)
|
|
|
|
add(fillStackSpace(
|
2019-10-09 19:58:42 +08:00
|
|
|
X86::MOV8mi, ByteOffset,
|
2018-11-20 22:41:59 +08:00
|
|
|
WideConstant.extractBits(8, ByteOffset * 8).getZExtValue()));
|
|
|
|
}
|
2018-09-18 19:26:27 +08:00
|
|
|
|
2018-10-25 15:44:01 +08:00
|
|
|
#include "X86GenExegesis.inc"
|
|
|
|
|
2018-11-20 22:41:59 +08:00
|
|
|
namespace {
|
2018-06-19 19:28:59 +08:00
|
|
|
class ExegesisX86Target : public ExegesisTarget {
|
2018-10-25 15:44:01 +08:00
|
|
|
public:
|
|
|
|
ExegesisX86Target() : ExegesisTarget(X86CpuPfmCounters) {}
|
|
|
|
|
|
|
|
private:
|
2019-10-09 19:58:42 +08:00
|
|
|
void addTargetSpecificPasses(PassManagerBase &PM) const override;
|
2018-06-20 19:54:35 +08:00
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
unsigned getScratchMemoryRegister(const Triple &TT) const override;
|
2018-08-01 22:41:45 +08:00
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
unsigned getLoopCounterRegister(const Triple &) const override;
|
2019-09-27 20:56:24 +08:00
|
|
|
|
2018-08-01 22:41:45 +08:00
|
|
|
unsigned getMaxMemoryAccessSize() const override { return 64; }
|
|
|
|
|
2020-01-22 22:49:10 +08:00
|
|
|
Error randomizeTargetMCOperand(const Instruction &Instr, const Variable &Var,
|
|
|
|
MCOperand &AssignedValue,
|
|
|
|
const BitVector &ForbiddenRegs) const override;
|
2019-04-06 22:16:26 +08:00
|
|
|
|
2018-09-27 17:23:04 +08:00
|
|
|
void fillMemoryOperands(InstructionTemplate &IT, unsigned Reg,
|
2018-11-20 22:41:59 +08:00
|
|
|
unsigned Offset) const override;
|
2018-08-01 22:41:45 +08:00
|
|
|
|
2019-10-03 15:56:56 +08:00
|
|
|
void decrementLoopCounterAndJump(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock &TargetMBB,
|
2019-10-09 19:58:42 +08:00
|
|
|
const MCInstrInfo &MII) const override;
|
2019-09-27 20:56:24 +08:00
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
std::vector<MCInst> setRegTo(const MCSubtargetInfo &STI, unsigned Reg,
|
|
|
|
const APInt &Value) const override;
|
2018-06-25 21:12:02 +08:00
|
|
|
|
2019-03-26 23:44:57 +08:00
|
|
|
ArrayRef<unsigned> getUnavailableRegisters() const override {
|
|
|
|
return makeArrayRef(kUnavailableRegisters,
|
|
|
|
sizeof(kUnavailableRegisters) /
|
|
|
|
sizeof(kUnavailableRegisters[0]));
|
|
|
|
}
|
|
|
|
|
2020-01-22 16:33:50 +08:00
|
|
|
bool allowAsBackToBack(const Instruction &Instr) const override {
|
|
|
|
const unsigned Opcode = Instr.Description.Opcode;
|
|
|
|
return !isInvalidOpcode(Instr) && Opcode != X86::LEA64r &&
|
|
|
|
Opcode != X86::LEA64_32r && Opcode != X86::LEA16r;
|
|
|
|
}
|
|
|
|
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
std::vector<InstructionTemplate>
|
|
|
|
generateInstructionVariants(const Instruction &Instr,
|
|
|
|
unsigned MaxConfigsPerOpcode) const override;
|
|
|
|
|
2020-01-17 21:28:54 +08:00
|
|
|
std::unique_ptr<SnippetGenerator> createSerialSnippetGenerator(
|
2019-10-08 22:30:24 +08:00
|
|
|
const LLVMState &State,
|
|
|
|
const SnippetGenerator::Options &Opts) const override {
|
2020-01-17 21:28:54 +08:00
|
|
|
return std::make_unique<X86SerialSnippetGenerator>(State, Opts);
|
2018-06-26 16:49:30 +08:00
|
|
|
}
|
|
|
|
|
2020-01-17 21:28:54 +08:00
|
|
|
std::unique_ptr<SnippetGenerator> createParallelSnippetGenerator(
|
2019-10-08 22:30:24 +08:00
|
|
|
const LLVMState &State,
|
|
|
|
const SnippetGenerator::Options &Opts) const override {
|
2020-01-17 21:28:54 +08:00
|
|
|
return std::make_unique<X86ParallelSnippetGenerator>(State, Opts);
|
2018-06-26 16:49:30 +08:00
|
|
|
}
|
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
bool matchesArch(Triple::ArchType Arch) const override {
|
|
|
|
return Arch == Triple::x86_64 || Arch == Triple::x86;
|
2018-06-19 19:28:59 +08:00
|
|
|
}
|
2019-03-26 23:44:57 +08:00
|
|
|
|
|
|
|
static const unsigned kUnavailableRegisters[4];
|
2018-06-19 19:28:59 +08:00
|
|
|
};
|
2019-03-26 23:44:57 +08:00
|
|
|
|
|
|
|
// We disable a few registers that cannot be encoded on instructions with a REX
|
|
|
|
// prefix.
|
|
|
|
const unsigned ExegesisX86Target::kUnavailableRegisters[4] = {X86::AH, X86::BH,
|
|
|
|
X86::CH, X86::DH};
|
2019-09-27 20:56:24 +08:00
|
|
|
|
|
|
|
// We're using one of R8-R15 because these registers are never hardcoded in
|
|
|
|
// instructions (e.g. MOVS writes to EDI, ESI, EDX), so they have less
|
|
|
|
// conflicts.
|
|
|
|
constexpr const unsigned kLoopCounterReg = X86::R8;
|
|
|
|
|
2018-06-19 19:28:59 +08:00
|
|
|
} // namespace
|
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
void ExegesisX86Target::addTargetSpecificPasses(PassManagerBase &PM) const {
|
2018-11-20 22:41:59 +08:00
|
|
|
// Lowers FP pseudo-instructions, e.g. ABS_Fp32 -> ABS_F.
|
2019-10-09 19:58:42 +08:00
|
|
|
PM.add(createX86FloatingPointStackifierPass());
|
2018-11-20 22:41:59 +08:00
|
|
|
}
|
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
unsigned ExegesisX86Target::getScratchMemoryRegister(const Triple &TT) const {
|
2018-11-20 22:41:59 +08:00
|
|
|
if (!TT.isArch64Bit()) {
|
|
|
|
// FIXME: This would require popping from the stack, so we would have to
|
|
|
|
// add some additional setup code.
|
|
|
|
return 0;
|
|
|
|
}
|
2019-10-09 19:58:42 +08:00
|
|
|
return TT.isOSWindows() ? X86::RCX : X86::RDI;
|
2018-11-20 22:41:59 +08:00
|
|
|
}
|
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
unsigned ExegesisX86Target::getLoopCounterRegister(const Triple &TT) const {
|
2019-09-27 20:56:24 +08:00
|
|
|
if (!TT.isArch64Bit()) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return kLoopCounterReg;
|
|
|
|
}
|
|
|
|
|
2020-01-22 22:49:10 +08:00
|
|
|
Error ExegesisX86Target::randomizeTargetMCOperand(
|
2019-10-09 19:58:42 +08:00
|
|
|
const Instruction &Instr, const Variable &Var, MCOperand &AssignedValue,
|
|
|
|
const BitVector &ForbiddenRegs) const {
|
2019-04-06 22:16:26 +08:00
|
|
|
const Operand &Op = Instr.getPrimaryOperand(Var);
|
|
|
|
switch (Op.getExplicitOperandInfo().OperandType) {
|
2020-01-21 17:12:13 +08:00
|
|
|
case X86::OperandType::OPERAND_ROUNDING_CONTROL:
|
|
|
|
AssignedValue =
|
2020-01-24 19:51:39 +08:00
|
|
|
MCOperand::createImm(randomIndex(X86::STATIC_ROUNDING::TO_ZERO));
|
2020-01-22 22:49:10 +08:00
|
|
|
return Error::success();
|
2019-04-06 22:16:26 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2020-01-22 22:49:10 +08:00
|
|
|
return make_error<Failure>(
|
|
|
|
Twine("unimplemented operand type ")
|
|
|
|
.concat(Twine(Op.getExplicitOperandInfo().OperandType)));
|
2019-04-06 22:16:26 +08:00
|
|
|
}
|
|
|
|
|
2018-11-20 22:41:59 +08:00
|
|
|
void ExegesisX86Target::fillMemoryOperands(InstructionTemplate &IT,
|
|
|
|
unsigned Reg,
|
|
|
|
unsigned Offset) const {
|
2019-12-18 19:08:38 +08:00
|
|
|
assert(!isInvalidMemoryInstr(IT.getInstr()) &&
|
2018-11-20 22:41:59 +08:00
|
|
|
"fillMemoryOperands requires a valid memory instruction");
|
2019-12-18 19:08:38 +08:00
|
|
|
int MemOpIdx = X86II::getMemoryOperandNo(IT.getInstr().Description.TSFlags);
|
2018-11-20 22:41:59 +08:00
|
|
|
assert(MemOpIdx >= 0 && "invalid memory operand index");
|
|
|
|
// getMemoryOperandNo() ignores tied operands, so we have to add them back.
|
2020-01-24 18:42:27 +08:00
|
|
|
MemOpIdx += X86II::getOperandBias(IT.getInstr().Description);
|
2019-10-09 16:49:13 +08:00
|
|
|
setMemOp(IT, MemOpIdx + 0, MCOperand::createReg(Reg)); // BaseReg
|
|
|
|
setMemOp(IT, MemOpIdx + 1, MCOperand::createImm(1)); // ScaleAmt
|
|
|
|
setMemOp(IT, MemOpIdx + 2, MCOperand::createReg(0)); // IndexReg
|
|
|
|
setMemOp(IT, MemOpIdx + 3, MCOperand::createImm(Offset)); // Disp
|
|
|
|
setMemOp(IT, MemOpIdx + 4, MCOperand::createReg(0)); // Segment
|
2018-11-20 22:41:59 +08:00
|
|
|
}
|
|
|
|
|
2019-10-03 15:56:56 +08:00
|
|
|
void ExegesisX86Target::decrementLoopCounterAndJump(
|
|
|
|
MachineBasicBlock &MBB, MachineBasicBlock &TargetMBB,
|
2019-10-09 19:58:42 +08:00
|
|
|
const MCInstrInfo &MII) const {
|
2019-09-27 20:56:24 +08:00
|
|
|
BuildMI(&MBB, DebugLoc(), MII.get(X86::ADD64ri8))
|
|
|
|
.addDef(kLoopCounterReg)
|
|
|
|
.addUse(kLoopCounterReg)
|
|
|
|
.addImm(-1);
|
|
|
|
BuildMI(&MBB, DebugLoc(), MII.get(X86::JCC_1))
|
2019-10-03 15:56:56 +08:00
|
|
|
.addMBB(&TargetMBB)
|
2019-09-27 20:56:24 +08:00
|
|
|
.addImm(X86::COND_NE);
|
|
|
|
}
|
|
|
|
|
2019-10-09 19:58:42 +08:00
|
|
|
std::vector<MCInst> ExegesisX86Target::setRegTo(const MCSubtargetInfo &STI,
|
|
|
|
unsigned Reg,
|
|
|
|
const APInt &Value) const {
|
|
|
|
if (X86::GR8RegClass.contains(Reg))
|
2018-11-20 22:41:59 +08:00
|
|
|
return {loadImmediate(Reg, 8, Value)};
|
2019-10-09 19:58:42 +08:00
|
|
|
if (X86::GR16RegClass.contains(Reg))
|
2018-11-20 22:41:59 +08:00
|
|
|
return {loadImmediate(Reg, 16, Value)};
|
2019-10-09 19:58:42 +08:00
|
|
|
if (X86::GR32RegClass.contains(Reg))
|
2018-11-20 22:41:59 +08:00
|
|
|
return {loadImmediate(Reg, 32, Value)};
|
2019-10-09 19:58:42 +08:00
|
|
|
if (X86::GR64RegClass.contains(Reg))
|
2018-11-20 22:41:59 +08:00
|
|
|
return {loadImmediate(Reg, 64, Value)};
|
|
|
|
ConstantInliner CI(Value);
|
2019-10-09 19:58:42 +08:00
|
|
|
if (X86::VR64RegClass.contains(Reg))
|
|
|
|
return CI.loadAndFinalize(Reg, 64, X86::MMX_MOVQ64rm);
|
|
|
|
if (X86::VR128XRegClass.contains(Reg)) {
|
|
|
|
if (STI.getFeatureBits()[X86::FeatureAVX512])
|
|
|
|
return CI.loadAndFinalize(Reg, 128, X86::VMOVDQU32Z128rm);
|
|
|
|
if (STI.getFeatureBits()[X86::FeatureAVX])
|
|
|
|
return CI.loadAndFinalize(Reg, 128, X86::VMOVDQUrm);
|
|
|
|
return CI.loadAndFinalize(Reg, 128, X86::MOVDQUrm);
|
2018-11-20 22:41:59 +08:00
|
|
|
}
|
2019-10-09 19:58:42 +08:00
|
|
|
if (X86::VR256XRegClass.contains(Reg)) {
|
|
|
|
if (STI.getFeatureBits()[X86::FeatureAVX512])
|
|
|
|
return CI.loadAndFinalize(Reg, 256, X86::VMOVDQU32Z256rm);
|
|
|
|
if (STI.getFeatureBits()[X86::FeatureAVX])
|
|
|
|
return CI.loadAndFinalize(Reg, 256, X86::VMOVDQUYrm);
|
2018-11-20 22:41:59 +08:00
|
|
|
}
|
2019-10-09 19:58:42 +08:00
|
|
|
if (X86::VR512RegClass.contains(Reg))
|
|
|
|
if (STI.getFeatureBits()[X86::FeatureAVX512])
|
|
|
|
return CI.loadAndFinalize(Reg, 512, X86::VMOVDQU32Zrm);
|
|
|
|
if (X86::RSTRegClass.contains(Reg)) {
|
2018-11-20 22:41:59 +08:00
|
|
|
return CI.loadX87STAndFinalize(Reg);
|
|
|
|
}
|
2019-10-09 19:58:42 +08:00
|
|
|
if (X86::RFP32RegClass.contains(Reg) || X86::RFP64RegClass.contains(Reg) ||
|
|
|
|
X86::RFP80RegClass.contains(Reg)) {
|
2018-11-20 22:41:59 +08:00
|
|
|
return CI.loadX87FPAndFinalize(Reg);
|
|
|
|
}
|
2019-10-09 19:58:42 +08:00
|
|
|
if (Reg == X86::EFLAGS)
|
2018-11-20 22:41:59 +08:00
|
|
|
return CI.popFlagAndFinalize();
|
2019-12-01 13:35:53 +08:00
|
|
|
if (Reg == X86::MXCSR)
|
2019-12-02 19:39:16 +08:00
|
|
|
return CI.loadImplicitRegAndFinalize(
|
2020-01-22 16:33:50 +08:00
|
|
|
STI.getFeatureBits()[X86::FeatureAVX] ? X86::VLDMXCSR : X86::LDMXCSR,
|
|
|
|
0x1f80);
|
2019-12-02 19:39:16 +08:00
|
|
|
if (Reg == X86::FPCW)
|
|
|
|
return CI.loadImplicitRegAndFinalize(X86::FLDCW16m, 0x37f);
|
2018-11-20 22:41:59 +08:00
|
|
|
return {}; // Not yet implemented.
|
|
|
|
}
|
|
|
|
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
// Instruction can have some variable operands, and we may want to see how
|
|
|
|
// different operands affect performance. So for each operand position,
|
|
|
|
// precompute all the possible choices we might care about,
|
|
|
|
// and greedily generate all the possible combinations of choices.
|
|
|
|
std::vector<InstructionTemplate> ExegesisX86Target::generateInstructionVariants(
|
|
|
|
const Instruction &Instr, unsigned MaxConfigsPerOpcode) const {
|
|
|
|
bool Exploration = false;
|
|
|
|
SmallVector<SmallVector<MCOperand, 1>, 4> VariableChoices;
|
|
|
|
VariableChoices.resize(Instr.Variables.size());
|
|
|
|
for (auto I : llvm::zip(Instr.Variables, VariableChoices)) {
|
|
|
|
const Variable &Var = std::get<0>(I);
|
|
|
|
SmallVectorImpl<MCOperand> &Choices = std::get<1>(I);
|
|
|
|
|
|
|
|
switch (Instr.getPrimaryOperand(Var).getExplicitOperandInfo().OperandType) {
|
|
|
|
default:
|
|
|
|
// We don't wish to explicitly explore this variable.
|
|
|
|
Choices.emplace_back(); // But add invalid MCOperand to simplify logic.
|
|
|
|
continue;
|
|
|
|
case X86::OperandType::OPERAND_COND_CODE: {
|
|
|
|
Exploration = true;
|
|
|
|
auto CondCodes = seq((int)X86::CondCode::COND_O,
|
|
|
|
1 + (int)X86::CondCode::LAST_VALID_COND);
|
|
|
|
Choices.reserve(std::distance(CondCodes.begin(), CondCodes.end()));
|
|
|
|
for (int CondCode : CondCodes)
|
|
|
|
Choices.emplace_back(MCOperand::createImm(CondCode));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we don't wish to explore any variables, defer to the baseline method.
|
|
|
|
if (!Exploration)
|
|
|
|
return ExegesisTarget::generateInstructionVariants(Instr,
|
|
|
|
MaxConfigsPerOpcode);
|
|
|
|
|
|
|
|
std::vector<InstructionTemplate> Variants;
|
|
|
|
size_t NumVariants;
|
|
|
|
CombinationGenerator<MCOperand, decltype(VariableChoices)::value_type, 4> G(
|
2020-02-13 04:30:22 +08:00
|
|
|
VariableChoices);
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
|
|
|
|
// How many operand combinations can we produce, within the limit?
|
|
|
|
NumVariants = std::min(G.numCombinations(), (size_t)MaxConfigsPerOpcode);
|
|
|
|
// And actually produce all the wanted operand combinations.
|
|
|
|
Variants.reserve(NumVariants);
|
2020-02-13 04:30:22 +08:00
|
|
|
G.generate([&](ArrayRef<MCOperand> State) -> bool {
|
|
|
|
Variants.emplace_back(&Instr);
|
|
|
|
Variants.back().setVariableValues(State);
|
|
|
|
// Did we run out of space for variants?
|
|
|
|
return Variants.size() >= NumVariants;
|
|
|
|
});
|
[llvm-exegesis] Exploring X86::OperandType::OPERAND_COND_CODE
Summary:
Currently, we only have nice exploration for LEA instruction,
while for the rest, we rely on `randomizeUnsetVariables()`
to sometimes generate something interesting.
While that works, it isn't very reliable in coverage :)
Here, i'm making an assumption that while we may want to explore
multi-instruction configs, we are most interested in the
characteristics of the main instruction we were asked about.
Which we can do, by taking the existing `randomizeMCOperand()`,
and turning it on it's head - instead of relying on it to randomly fill
one of the interesting values, let's pregenerate all the possible interesting
values for the variable, and then generate as much `InstructionTemplate`
combinations of these possible values for variables as needed/possible.
Of course, that requires invasive changes to no longer pass just the
naked `Instruction`, but sometimes partially filled `InstructionTemplate`.
As it can be seen from the test, this allows us to explore
`X86::OperandType::OPERAND_COND_CODE` for instructions
that take such an operand.
I'm hoping this will greatly simplify exploration.
Reviewers: courbet, gchatelet
Reviewed By: gchatelet
Subscribers: orodley, mgorny, sdardis, tschuett, jrtc27, atanasyan, mstojanovic, andreadb, RKSimon, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D74156
2020-02-13 01:54:39 +08:00
|
|
|
|
|
|
|
assert(Variants.size() == NumVariants &&
|
|
|
|
Variants.size() <= MaxConfigsPerOpcode &&
|
|
|
|
"Should not produce too many variants");
|
|
|
|
return Variants;
|
|
|
|
}
|
|
|
|
|
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
|
2018-10-23 01:10:47 +08:00
|
|
|
} // namespace llvm
|