blob: 267ab13163345012406e977b3d3e7263a665929a [file] [log] [blame]
Clement Courbetd939f6d2018-09-13 07:40:53 +00001//===-- SnippetGenerator.cpp ------------------------------------*- C++ -*-===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Clement Courbetd939f6d2018-09-13 07:40:53 +00006//
7//===----------------------------------------------------------------------===//
8
9#include <array>
10#include <string>
11
12#include "Assembler.h"
Clement Courbet03a3d292019-09-30 13:53:50 +000013#include "Error.h"
Clement Courbetd939f6d2018-09-13 07:40:53 +000014#include "MCInstrDescView.h"
15#include "SnippetGenerator.h"
Roman Lebedev404bdb12019-04-06 14:16:26 +000016#include "Target.h"
Clement Courbetd939f6d2018-09-13 07:40:53 +000017#include "llvm/ADT/StringExtras.h"
18#include "llvm/ADT/StringRef.h"
19#include "llvm/ADT/Twine.h"
20#include "llvm/Support/FileSystem.h"
21#include "llvm/Support/FormatVariadic.h"
22#include "llvm/Support/Program.h"
23
Fangrui Song32401af2018-10-22 17:10:47 +000024namespace llvm {
Clement Courbetd939f6d2018-09-13 07:40:53 +000025namespace exegesis {
26
Guillaume Chateletfcbb6f32018-10-17 11:37:28 +000027std::vector<CodeTemplate> getSingleton(CodeTemplate &&CT) {
Guillaume Chatelet296a8622018-10-15 09:09:19 +000028 std::vector<CodeTemplate> Result;
29 Result.push_back(std::move(CT));
30 return Result;
31}
32
Clement Courbetd939f6d2018-09-13 07:40:53 +000033SnippetGeneratorFailure::SnippetGeneratorFailure(const llvm::Twine &S)
34 : llvm::StringError(S, llvm::inconvertibleErrorCode()) {}
35
Guillaume Chateletee9c2a172018-10-10 14:22:48 +000036SnippetGenerator::SnippetGenerator(const LLVMState &State) : State(State) {}
Clement Courbetd939f6d2018-09-13 07:40:53 +000037
38SnippetGenerator::~SnippetGenerator() = default;
39
40llvm::Expected<std::vector<BenchmarkCode>>
Clement Courbet9431b722019-09-27 12:56:24 +000041SnippetGenerator::generateConfigurations(
42 const Instruction &Instr, const llvm::BitVector &ExtraForbiddenRegs) const {
Clement Courbet8ef97e12019-09-27 08:04:10 +000043 llvm::BitVector ForbiddenRegs = State.getRATC().reservedRegisters();
Clement Courbet9431b722019-09-27 12:56:24 +000044 ForbiddenRegs |= ExtraForbiddenRegs;
Clement Courbet8ef97e12019-09-27 08:04:10 +000045 // If the instruction has memory registers, prevent the generator from
46 // using the scratch register and its aliasing registers.
47 if (Instr.hasMemoryOperands()) {
48 const auto &ET = State.getExegesisTarget();
49 unsigned ScratchSpacePointerInReg =
50 ET.getScratchMemoryRegister(State.getTargetMachine().getTargetTriple());
51 if (ScratchSpacePointerInReg == 0)
Clement Courbet03a3d292019-09-30 13:53:50 +000052 return make_error<Failure>(
Clement Courbet8ef97e12019-09-27 08:04:10 +000053 "Infeasible : target does not support memory instructions");
54 const auto &ScratchRegAliases =
55 State.getRATC().getRegister(ScratchSpacePointerInReg).aliasedBits();
56 // If the instruction implicitly writes to ScratchSpacePointerInReg , abort.
57 // FIXME: We could make a copy of the scratch register.
58 for (const auto &Op : Instr.Operands) {
59 if (Op.isDef() && Op.isImplicitReg() &&
60 ScratchRegAliases.test(Op.getImplicitReg()))
Clement Courbet03a3d292019-09-30 13:53:50 +000061 return make_error<Failure>(
Clement Courbet8ef97e12019-09-27 08:04:10 +000062 "Infeasible : memory instruction uses scratch memory register");
63 }
64 ForbiddenRegs |= ScratchRegAliases;
65 }
66
67 if (auto E = generateCodeTemplates(Instr, ForbiddenRegs)) {
Clement Courbetd939f6d2018-09-13 07:40:53 +000068 std::vector<BenchmarkCode> Output;
Guillaume Chatelet296a8622018-10-15 09:09:19 +000069 for (CodeTemplate &CT : E.get()) {
Guillaume Chatelet296a8622018-10-15 09:09:19 +000070 // TODO: Generate as many BenchmarkCode as needed.
71 {
72 BenchmarkCode BC;
73 BC.Info = CT.Info;
74 for (InstructionTemplate &IT : CT.Instructions) {
Roman Lebedev404bdb12019-04-06 14:16:26 +000075 randomizeUnsetVariables(State.getExegesisTarget(), ForbiddenRegs, IT);
Guillaume Chatelet296a8622018-10-15 09:09:19 +000076 BC.Instructions.push_back(IT.build());
77 }
78 if (CT.ScratchSpacePointerInReg)
79 BC.LiveIns.push_back(CT.ScratchSpacePointerInReg);
80 BC.RegisterInitialValues =
Clement Courbet0d79aaf2018-11-08 12:09:45 +000081 computeRegisterInitialValues(CT.Instructions);
Guillaume Chatelet296a8622018-10-15 09:09:19 +000082 Output.push_back(std::move(BC));
Clement Courbetd939f6d2018-09-13 07:40:53 +000083 }
Clement Courbetd939f6d2018-09-13 07:40:53 +000084 }
85 return Output;
86 } else
87 return E.takeError();
88}
89
Guillaume Chateletc96a97b2018-09-20 12:22:18 +000090std::vector<RegisterValue> SnippetGenerator::computeRegisterInitialValues(
Guillaume Chatelet70ac0192018-09-27 09:23:04 +000091 const std::vector<InstructionTemplate> &Instructions) const {
Clement Courbetd939f6d2018-09-13 07:40:53 +000092 // Collect all register uses and create an assignment for each of them.
93 // Ignore memory operands which are handled separately.
94 // Loop invariant: DefinedRegs[i] is true iif it has been set at least once
95 // before the current instruction.
Guillaume Chateletee9c2a172018-10-10 14:22:48 +000096 llvm::BitVector DefinedRegs = State.getRATC().emptyRegisters();
Guillaume Chateletc96a97b2018-09-20 12:22:18 +000097 std::vector<RegisterValue> RIV;
Guillaume Chatelet70ac0192018-09-27 09:23:04 +000098 for (const InstructionTemplate &IT : Instructions) {
Clement Courbetd939f6d2018-09-13 07:40:53 +000099 // Returns the register that this Operand sets or uses, or 0 if this is not
100 // a register.
Guillaume Chatelet70ac0192018-09-27 09:23:04 +0000101 const auto GetOpReg = [&IT](const Operand &Op) -> unsigned {
Guillaume Chatelet09c28392018-10-09 08:59:10 +0000102 if (Op.isMemory())
Clement Courbetd939f6d2018-09-13 07:40:53 +0000103 return 0;
Guillaume Chatelet09c28392018-10-09 08:59:10 +0000104 if (Op.isImplicitReg())
105 return Op.getImplicitReg();
106 if (Op.isExplicit() && IT.getValueFor(Op).isReg())
Guillaume Chatelet70ac0192018-09-27 09:23:04 +0000107 return IT.getValueFor(Op).getReg();
Clement Courbetd939f6d2018-09-13 07:40:53 +0000108 return 0;
109 };
110 // Collect used registers that have never been def'ed.
Guillaume Chatelet70ac0192018-09-27 09:23:04 +0000111 for (const Operand &Op : IT.Instr.Operands) {
Guillaume Chatelet09c28392018-10-09 08:59:10 +0000112 if (Op.isUse()) {
Clement Courbetd939f6d2018-09-13 07:40:53 +0000113 const unsigned Reg = GetOpReg(Op);
114 if (Reg > 0 && !DefinedRegs.test(Reg)) {
Clement Courbet54c2fa12018-11-08 12:37:56 +0000115 RIV.push_back(RegisterValue::zero(Reg));
Clement Courbetd939f6d2018-09-13 07:40:53 +0000116 DefinedRegs.set(Reg);
117 }
118 }
119 }
120 // Mark defs as having been def'ed.
Guillaume Chatelet70ac0192018-09-27 09:23:04 +0000121 for (const Operand &Op : IT.Instr.Operands) {
Guillaume Chatelet09c28392018-10-09 08:59:10 +0000122 if (Op.isDef()) {
Clement Courbetd939f6d2018-09-13 07:40:53 +0000123 const unsigned Reg = GetOpReg(Op);
124 if (Reg > 0)
125 DefinedRegs.set(Reg);
126 }
127 }
128 }
Guillaume Chateletc96a97b2018-09-20 12:22:18 +0000129 return RIV;
Clement Courbetd939f6d2018-09-13 07:40:53 +0000130}
131
Guillaume Chatelet296a8622018-10-15 09:09:19 +0000132llvm::Expected<std::vector<CodeTemplate>>
133generateSelfAliasingCodeTemplates(const Instruction &Instr) {
Clement Courbetd939f6d2018-09-13 07:40:53 +0000134 const AliasingConfigurations SelfAliasing(Instr, Instr);
Guillaume Chatelet296a8622018-10-15 09:09:19 +0000135 if (SelfAliasing.empty())
Clement Courbetd939f6d2018-09-13 07:40:53 +0000136 return llvm::make_error<SnippetGeneratorFailure>("empty self aliasing");
Guillaume Chatelet296a8622018-10-15 09:09:19 +0000137 std::vector<CodeTemplate> Result;
138 Result.emplace_back();
139 CodeTemplate &CT = Result.back();
Guillaume Chatelet70ac0192018-09-27 09:23:04 +0000140 InstructionTemplate IT(Instr);
Clement Courbetd939f6d2018-09-13 07:40:53 +0000141 if (SelfAliasing.hasImplicitAliasing()) {
142 CT.Info = "implicit Self cycles, picking random values.";
143 } else {
144 CT.Info = "explicit self cycles, selecting one aliasing Conf.";
145 // This is a self aliasing instruction so defs and uses are from the same
Guillaume Chatelet70ac0192018-09-27 09:23:04 +0000146 // instance, hence twice IT in the following call.
147 setRandomAliasing(SelfAliasing, IT, IT);
Clement Courbetd939f6d2018-09-13 07:40:53 +0000148 }
Guillaume Chatelet70ac0192018-09-27 09:23:04 +0000149 CT.Instructions.push_back(std::move(IT));
Guillaume Chateleta3849492018-10-15 09:21:21 +0000150 return std::move(Result);
Clement Courbetd939f6d2018-09-13 07:40:53 +0000151}
152
Guillaume Chatelet296a8622018-10-15 09:09:19 +0000153llvm::Expected<std::vector<CodeTemplate>>
154generateUnconstrainedCodeTemplates(const Instruction &Instr,
155 llvm::StringRef Msg) {
156 std::vector<CodeTemplate> Result;
157 Result.emplace_back();
158 CodeTemplate &CT = Result.back();
Clement Courbetd939f6d2018-09-13 07:40:53 +0000159 CT.Info = llvm::formatv("{0}, repeating an unconstrained assignment", Msg);
160 CT.Instructions.emplace_back(Instr);
Guillaume Chateleta3849492018-10-15 09:21:21 +0000161 return std::move(Result);
Clement Courbetd939f6d2018-09-13 07:40:53 +0000162}
Guillaume Chatelet70ac0192018-09-27 09:23:04 +0000163
Guillaume Chatelet415b2fb2018-10-01 12:19:10 +0000164std::mt19937 &randomGenerator() {
165 static std::random_device RandomDevice;
166 static std::mt19937 RandomGenerator(RandomDevice());
167 return RandomGenerator;
168}
169
Roman Lebedeva8223582019-04-08 10:11:00 +0000170size_t randomIndex(size_t Max) {
171 std::uniform_int_distribution<> Distribution(0, Max);
Guillaume Chatelet415b2fb2018-10-01 12:19:10 +0000172 return Distribution(randomGenerator());
173}
174
175template <typename C>
176static auto randomElement(const C &Container) -> decltype(Container[0]) {
Roman Lebedeva8223582019-04-08 10:11:00 +0000177 assert(!Container.empty() &&
178 "Can't pick a random element from an empty container)");
179 return Container[randomIndex(Container.size() - 1)];
Guillaume Chatelet415b2fb2018-10-01 12:19:10 +0000180}
181
Guillaume Chatelet415b2fb2018-10-01 12:19:10 +0000182static void setRegisterOperandValue(const RegisterOperandAssignment &ROV,
183 InstructionTemplate &IB) {
184 assert(ROV.Op);
Guillaume Chatelet09c28392018-10-09 08:59:10 +0000185 if (ROV.Op->isExplicit()) {
Guillaume Chatelet415b2fb2018-10-01 12:19:10 +0000186 auto &AssignedValue = IB.getValueFor(*ROV.Op);
187 if (AssignedValue.isValid()) {
188 assert(AssignedValue.isReg() && AssignedValue.getReg() == ROV.Reg);
189 return;
190 }
191 AssignedValue = llvm::MCOperand::createReg(ROV.Reg);
192 } else {
Guillaume Chatelet09c28392018-10-09 08:59:10 +0000193 assert(ROV.Op->isImplicitReg());
194 assert(ROV.Reg == ROV.Op->getImplicitReg());
Guillaume Chatelet415b2fb2018-10-01 12:19:10 +0000195 }
196}
197
198size_t randomBit(const llvm::BitVector &Vector) {
199 assert(Vector.any());
200 auto Itr = Vector.set_bits_begin();
Roman Lebedeva8223582019-04-08 10:11:00 +0000201 for (size_t I = randomIndex(Vector.count() - 1); I != 0; --I)
Guillaume Chatelet415b2fb2018-10-01 12:19:10 +0000202 ++Itr;
203 return *Itr;
204}
205
206void setRandomAliasing(const AliasingConfigurations &AliasingConfigurations,
207 InstructionTemplate &DefIB, InstructionTemplate &UseIB) {
208 assert(!AliasingConfigurations.empty());
209 assert(!AliasingConfigurations.hasImplicitAliasing());
210 const auto &RandomConf = randomElement(AliasingConfigurations.Configurations);
211 setRegisterOperandValue(randomElement(RandomConf.Defs), DefIB);
212 setRegisterOperandValue(randomElement(RandomConf.Uses), UseIB);
213}
214
Roman Lebedev404bdb12019-04-06 14:16:26 +0000215void randomizeUnsetVariables(const ExegesisTarget &Target,
216 const llvm::BitVector &ForbiddenRegs,
Guillaume Chatelet415b2fb2018-10-01 12:19:10 +0000217 InstructionTemplate &IT) {
218 for (const Variable &Var : IT.Instr.Variables) {
219 llvm::MCOperand &AssignedValue = IT.getValueFor(Var);
220 if (!AssignedValue.isValid())
Roman Lebedev404bdb12019-04-06 14:16:26 +0000221 Target.randomizeMCOperand(IT.Instr, Var, AssignedValue, ForbiddenRegs);
Guillaume Chatelet415b2fb2018-10-01 12:19:10 +0000222 }
223}
224
Clement Courbetd939f6d2018-09-13 07:40:53 +0000225} // namespace exegesis
Fangrui Song32401af2018-10-22 17:10:47 +0000226} // namespace llvm