blob: 3df14f40e4a9b5f5da5dc2121ee6fcb3125f4e23 [file] [log] [blame]
Ayman Musa850fc972017-03-07 08:11:19 +00001//===- utils/TableGen/X86EVEX2VEXTablesEmitter.cpp - X86 backend-*- 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
Ayman Musa850fc972017-03-07 08:11:19 +00006//
7//===----------------------------------------------------------------------===//
8///
9/// This tablegen backend is responsible for emitting the X86 backend EVEX2VEX
10/// compression tables.
11///
12//===----------------------------------------------------------------------===//
13
Ayman Musa850fc972017-03-07 08:11:19 +000014#include "CodeGenTarget.h"
15#include "llvm/TableGen/Error.h"
16#include "llvm/TableGen/TableGenBackend.h"
17
18using namespace llvm;
19
20namespace {
21
22class X86EVEX2VEXTablesEmitter {
Craig Topperc2965212018-06-19 04:24:44 +000023 RecordKeeper &Records;
Ayman Musa850fc972017-03-07 08:11:19 +000024 CodeGenTarget Target;
25
26 // Hold all non-masked & non-broadcasted EVEX encoded instructions
27 std::vector<const CodeGenInstruction *> EVEXInsts;
28 // Hold all VEX encoded instructions. Divided into groups with same opcodes
29 // to make the search more efficient
30 std::map<uint64_t, std::vector<const CodeGenInstruction *>> VEXInsts;
31
32 typedef std::pair<const CodeGenInstruction *, const CodeGenInstruction *> Entry;
33
34 // Represent both compress tables
35 std::vector<Entry> EVEX2VEX128;
36 std::vector<Entry> EVEX2VEX256;
37
Ayman Musa850fc972017-03-07 08:11:19 +000038public:
Craig Topperc2965212018-06-19 04:24:44 +000039 X86EVEX2VEXTablesEmitter(RecordKeeper &R) : Records(R), Target(R) {}
Ayman Musa850fc972017-03-07 08:11:19 +000040
41 // run - Output X86 EVEX2VEX tables.
42 void run(raw_ostream &OS);
43
44private:
45 // Prints the given table as a C++ array of type
46 // X86EvexToVexCompressTableEntry
47 void printTable(const std::vector<Entry> &Table, raw_ostream &OS);
Ayman Musa850fc972017-03-07 08:11:19 +000048};
49
50void X86EVEX2VEXTablesEmitter::printTable(const std::vector<Entry> &Table,
51 raw_ostream &OS) {
Craig Topper17bd84c2018-06-18 18:47:07 +000052 StringRef Size = (Table == EVEX2VEX128) ? "128" : "256";
Ayman Musa850fc972017-03-07 08:11:19 +000053
54 OS << "// X86 EVEX encoded instructions that have a VEX " << Size
55 << " encoding\n"
56 << "// (table format: <EVEX opcode, VEX-" << Size << " opcode>).\n"
57 << "static const X86EvexToVexCompressTableEntry X86EvexToVex" << Size
58 << "CompressTable[] = {\n"
59 << " // EVEX scalar with corresponding VEX.\n";
60
61 // Print all entries added to the table
62 for (auto Pair : Table) {
Craig Topper9fc41352017-03-13 00:36:46 +000063 OS << " { X86::" << Pair.first->TheDef->getName()
Ayman Musa850fc972017-03-07 08:11:19 +000064 << ", X86::" << Pair.second->TheDef->getName() << " },\n";
65 }
66
Ayman Musa850fc972017-03-07 08:11:19 +000067 OS << "};\n\n";
68}
69
70// Return true if the 2 BitsInits are equal
Ayman Musa850fc972017-03-07 08:11:19 +000071// Calculates the integer value residing BitsInit object
72static inline uint64_t getValueFromBitsInit(const BitsInit *B) {
73 uint64_t Value = 0;
74 for (unsigned i = 0, e = B->getNumBits(); i != e; ++i) {
75 if (BitInit *Bit = dyn_cast<BitInit>(B->getBit(i)))
76 Value |= uint64_t(Bit->getValue()) << i;
77 else
78 PrintFatalError("Invalid VectSize bit");
79 }
80 return Value;
81}
82
83// Function object - Operator() returns true if the given VEX instruction
84// matches the EVEX instruction of this object.
85class IsMatch {
Craig Topper0a5e90c2018-06-19 04:24:42 +000086 const CodeGenInstruction *EVEXInst;
Ayman Musa850fc972017-03-07 08:11:19 +000087
88public:
Craig Topper0a5e90c2018-06-19 04:24:42 +000089 IsMatch(const CodeGenInstruction *EVEXInst) : EVEXInst(EVEXInst) {}
Ayman Musa850fc972017-03-07 08:11:19 +000090
Craig Topper0a5e90c2018-06-19 04:24:42 +000091 bool operator()(const CodeGenInstruction *VEXInst) {
92 Record *RecE = EVEXInst->TheDef;
93 Record *RecV = VEXInst->TheDef;
Craig Topper2f9c1732019-04-09 07:40:06 +000094 bool EVEX_W = RecE->getValueAsBit("HasVEX_W");
95 bool VEX_W = RecV->getValueAsBit("HasVEX_W");
96 bool VEX_WIG = RecV->getValueAsBit("IgnoresVEX_W");
97 bool EVEX_WIG = RecE->getValueAsBit("IgnoresVEX_W");
98 bool EVEX_W1_VEX_W0 = RecE->getValueAsBit("EVEX_W1_VEX_W0");
Ayman Musa850fc972017-03-07 08:11:19 +000099
Craig Topper0a5e90c2018-06-19 04:24:42 +0000100 if (RecV->getValueAsDef("OpEnc")->getName().str() != "EncVEX" ||
Ayman Musa850fc972017-03-07 08:11:19 +0000101 // VEX/EVEX fields
Craig Topper0a5e90c2018-06-19 04:24:42 +0000102 RecV->getValueAsDef("OpPrefix") != RecE->getValueAsDef("OpPrefix") ||
103 RecV->getValueAsDef("OpMap") != RecE->getValueAsDef("OpMap") ||
104 RecV->getValueAsBit("hasVEX_4V") != RecE->getValueAsBit("hasVEX_4V") ||
Craig Topper53ee7832019-04-09 07:40:14 +0000105 RecV->getValueAsBit("hasEVEX_L2") != RecE->getValueAsBit("hasEVEX_L2") ||
106 RecV->getValueAsBit("hasVEX_L") != RecE->getValueAsBit("hasVEX_L") ||
Craig Topper0a5e90c2018-06-19 04:24:42 +0000107 // Match is allowed if either is VEX_WIG, or they match, or EVEX
108 // is VEX_W1X and VEX is VEX_W0.
Craig Topperf19f9912019-04-09 07:40:10 +0000109 (!(VEX_WIG || (!EVEX_WIG && EVEX_W == VEX_W) ||
Craig Topper2f9c1732019-04-09 07:40:06 +0000110 (EVEX_W1_VEX_W0 && EVEX_W && !VEX_W))) ||
Ayman Musa850fc972017-03-07 08:11:19 +0000111 // Instruction's format
Craig Toppere043dad2019-04-09 07:40:19 +0000112 RecV->getValueAsDef("Form") != RecE->getValueAsDef("Form"))
Ayman Musa850fc972017-03-07 08:11:19 +0000113 return false;
114
115 // This is needed for instructions with intrinsic version (_Int).
116 // Where the only difference is the size of the operands.
117 // For example: VUCOMISDZrm and Int_VUCOMISDrm
118 // Also for instructions that their EVEX version was upgraded to work with
119 // k-registers. For example VPCMPEQBrm (xmm output register) and
120 // VPCMPEQBZ128rm (k register output register).
Craig Topper0a5e90c2018-06-19 04:24:42 +0000121 for (unsigned i = 0, e = EVEXInst->Operands.size(); i < e; i++) {
122 Record *OpRec1 = EVEXInst->Operands[i].Rec;
123 Record *OpRec2 = VEXInst->Operands[i].Rec;
Ayman Musa850fc972017-03-07 08:11:19 +0000124
125 if (OpRec1 == OpRec2)
126 continue;
127
128 if (isRegisterOperand(OpRec1) && isRegisterOperand(OpRec2)) {
129 if (getRegOperandSize(OpRec1) != getRegOperandSize(OpRec2))
130 return false;
131 } else if (isMemoryOperand(OpRec1) && isMemoryOperand(OpRec2)) {
Craig Topperbb4089d22017-03-13 05:34:03 +0000132 return false;
Ayman Musa850fc972017-03-07 08:11:19 +0000133 } else if (isImmediateOperand(OpRec1) && isImmediateOperand(OpRec2)) {
Craig Topper53ee7832019-04-09 07:40:14 +0000134 if (OpRec1->getValueAsDef("Type") != OpRec2->getValueAsDef("Type")) {
Ayman Musa850fc972017-03-07 08:11:19 +0000135 return false;
Craig Topper53ee7832019-04-09 07:40:14 +0000136 }
Ayman Musa850fc972017-03-07 08:11:19 +0000137 } else
138 return false;
139 }
140
141 return true;
142 }
143
144private:
145 static inline bool isRegisterOperand(const Record *Rec) {
146 return Rec->isSubClassOf("RegisterClass") ||
147 Rec->isSubClassOf("RegisterOperand");
148 }
149
150 static inline bool isMemoryOperand(const Record *Rec) {
151 return Rec->isSubClassOf("Operand") &&
152 Rec->getValueAsString("OperandType") == "OPERAND_MEMORY";
153 }
154
155 static inline bool isImmediateOperand(const Record *Rec) {
156 return Rec->isSubClassOf("Operand") &&
157 Rec->getValueAsString("OperandType") == "OPERAND_IMMEDIATE";
158 }
159
160 static inline unsigned int getRegOperandSize(const Record *RegRec) {
161 if (RegRec->isSubClassOf("RegisterClass"))
162 return RegRec->getValueAsInt("Alignment");
163 if (RegRec->isSubClassOf("RegisterOperand"))
164 return RegRec->getValueAsDef("RegClass")->getValueAsInt("Alignment");
165
166 llvm_unreachable("Register operand's size not known!");
167 }
168};
169
170void X86EVEX2VEXTablesEmitter::run(raw_ostream &OS) {
171 emitSourceFileHeader("X86 EVEX2VEX tables", OS);
172
173 ArrayRef<const CodeGenInstruction *> NumberedInstructions =
174 Target.getInstructionsByEnumValue();
175
176 for (const CodeGenInstruction *Inst : NumberedInstructions) {
177 // Filter non-X86 instructions.
178 if (!Inst->TheDef->isSubClassOf("X86Inst"))
179 continue;
180
181 // Add VEX encoded instructions to one of VEXInsts vectors according to
182 // it's opcode.
183 if (Inst->TheDef->getValueAsDef("OpEnc")->getName() == "EncVEX") {
184 uint64_t Opcode = getValueFromBitsInit(Inst->TheDef->
185 getValueAsBitsInit("Opcode"));
186 VEXInsts[Opcode].push_back(Inst);
187 }
188 // Add relevant EVEX encoded instructions to EVEXInsts
189 else if (Inst->TheDef->getValueAsDef("OpEnc")->getName() == "EncEVEX" &&
190 !Inst->TheDef->getValueAsBit("hasEVEX_K") &&
191 !Inst->TheDef->getValueAsBit("hasEVEX_B") &&
Craig Topper53ee7832019-04-09 07:40:14 +0000192 !Inst->TheDef->getValueAsBit("hasEVEX_L2") &&
Craig Topper17bd84c2018-06-18 18:47:07 +0000193 !Inst->TheDef->getValueAsBit("notEVEX2VEXConvertible"))
Ayman Musa850fc972017-03-07 08:11:19 +0000194 EVEXInsts.push_back(Inst);
195 }
196
197 for (const CodeGenInstruction *EVEXInst : EVEXInsts) {
198 uint64_t Opcode = getValueFromBitsInit(EVEXInst->TheDef->
199 getValueAsBitsInit("Opcode"));
200 // For each EVEX instruction look for a VEX match in the appropriate vector
201 // (instructions with the same opcode) using function object IsMatch.
Craig Topperc2965212018-06-19 04:24:44 +0000202 // Allow EVEX2VEXOverride to explicitly specify a match.
203 const CodeGenInstruction *VEXInst = nullptr;
204 if (!EVEXInst->TheDef->isValueUnset("EVEX2VEXOverride")) {
205 StringRef AltInstStr =
206 EVEXInst->TheDef->getValueAsString("EVEX2VEXOverride");
207 Record *AltInstRec = Records.getDef(AltInstStr);
208 assert(AltInstRec && "EVEX2VEXOverride instruction not found!");
209 VEXInst = &Target.getInstruction(AltInstRec);
210 } else {
211 auto Match = llvm::find_if(VEXInsts[Opcode], IsMatch(EVEXInst));
212 if (Match != VEXInsts[Opcode].end())
213 VEXInst = *Match;
214 }
Ayman Musa850fc972017-03-07 08:11:19 +0000215
Craig Topperc2965212018-06-19 04:24:44 +0000216 if (!VEXInst)
217 continue;
218
219 // In case a match is found add new entry to the appropriate table
Craig Topper53ee7832019-04-09 07:40:14 +0000220 if (EVEXInst->TheDef->getValueAsBit("hasVEX_L"))
Craig Topperc2965212018-06-19 04:24:44 +0000221 EVEX2VEX256.push_back(std::make_pair(EVEXInst, VEXInst)); // {0,1}
Craig Topper53ee7832019-04-09 07:40:14 +0000222 else
223 EVEX2VEX128.push_back(std::make_pair(EVEXInst, VEXInst)); // {0,0}
Ayman Musa850fc972017-03-07 08:11:19 +0000224 }
225
226 // Print both tables
227 printTable(EVEX2VEX128, OS);
228 printTable(EVEX2VEX256, OS);
229}
230}
231
232namespace llvm {
233void EmitX86EVEX2VEXTables(RecordKeeper &RK, raw_ostream &OS) {
234 X86EVEX2VEXTablesEmitter(RK).run(OS);
235}
236}