blob: 6472bbbc90169a00d74a794cf5483299a6643bfa [file] [log] [blame]
Gadi Haber19c4fc52016-12-28 10:12:48 +00001//===----------------------- X86EvexToVex.cpp ----------------------------===//
2// Compress EVEX instructions to VEX encoding when possible to reduce code size
3//
4// The LLVM Compiler Infrastructure
5//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===---------------------------------------------------------------------===//
10/// \file
11/// This file defines the pass that goes over all AVX-512 instructions which
12/// are encoded using the EVEX prefix and if possible replaces them by their
13/// corresponding VEX encoding which is usually shorter by 2 bytes.
14/// EVEX instructions may be encoded via the VEX prefix when the AVX-512
15/// instruction has a corresponding AVX/AVX2 opcode and when it does not
16/// use the xmm or the mask registers or xmm/ymm registers wuith indexes
17/// higher than 15.
18/// The pass applies code reduction on the generated code for AVX-512 instrs.
19///
20//===---------------------------------------------------------------------===//
21
22#include "InstPrinter/X86InstComments.h"
Eugene Zelenkofbd13c52017-02-02 22:55:55 +000023#include "MCTargetDesc/X86BaseInfo.h"
Gadi Haber19c4fc52016-12-28 10:12:48 +000024#include "X86.h"
Gadi Haber19c4fc52016-12-28 10:12:48 +000025#include "X86InstrInfo.h"
Gadi Haber19c4fc52016-12-28 10:12:48 +000026#include "X86Subtarget.h"
Eugene Zelenkofbd13c52017-02-02 22:55:55 +000027#include "llvm/ADT/DenseMap.h"
28#include "llvm/ADT/StringRef.h"
29#include "llvm/CodeGen/MachineFunction.h"
30#include "llvm/CodeGen/MachineFunctionPass.h"
31#include "llvm/CodeGen/MachineInstr.h"
32#include "llvm/CodeGen/MachineOperand.h"
33#include "llvm/MC/MCInstrDesc.h"
34#include "llvm/Pass.h"
35#include <cassert>
36#include <cstdint>
Gadi Haber19c4fc52016-12-28 10:12:48 +000037
38using namespace llvm;
39
Ayman Musa850fc972017-03-07 08:11:19 +000040// Including the generated EVEX2VEX tables.
41struct X86EvexToVexCompressTableEntry {
42 uint16_t EvexOpcode;
43 uint16_t VexOpcode;
44};
45#include "X86GenEVEX2VEXTables.inc"
46
Gadi Haber19c4fc52016-12-28 10:12:48 +000047#define EVEX2VEX_DESC "Compressing EVEX instrs to VEX encoding when possible"
48#define EVEX2VEX_NAME "x86-evex-to-vex-compress"
49
50#define DEBUG_TYPE EVEX2VEX_NAME
51
52namespace {
53
54class EvexToVexInstPass : public MachineFunctionPass {
55
56 /// X86EvexToVexCompressTable - Evex to Vex encoding opcode map.
57 typedef DenseMap<unsigned, uint16_t> EvexToVexTableType;
58 EvexToVexTableType EvexToVex128Table;
59 EvexToVexTableType EvexToVex256Table;
60
61 /// For EVEX instructions that can be encoded using VEX encoding, replace
62 /// them by the VEX encoding in order to reduce size.
63 bool CompressEvexToVexImpl(MachineInstr &MI) const;
64
65 /// For initializing the hash map tables of all AVX-512 EVEX
66 /// corresponding to AVX/AVX2 opcodes.
67 void AddTableEntry(EvexToVexTableType &EvexToVexTable, uint16_t EvexOp,
68 uint16_t VexOp);
69
70public:
71 static char ID;
72
Gadi Haber19c4fc52016-12-28 10:12:48 +000073 EvexToVexInstPass() : MachineFunctionPass(ID) {
74 initializeEvexToVexInstPassPass(*PassRegistry::getPassRegistry());
75
76 // Initialize the EVEX to VEX 128 table map.
77 for (X86EvexToVexCompressTableEntry Entry : X86EvexToVex128CompressTable) {
78 AddTableEntry(EvexToVex128Table, Entry.EvexOpcode, Entry.VexOpcode);
79 }
80
81 // Initialize the EVEX to VEX 256 table map.
82 for (X86EvexToVexCompressTableEntry Entry : X86EvexToVex256CompressTable) {
83 AddTableEntry(EvexToVex256Table, Entry.EvexOpcode, Entry.VexOpcode);
84 }
85 }
86
Eugene Zelenkofbd13c52017-02-02 22:55:55 +000087 StringRef getPassName() const override { return EVEX2VEX_DESC; }
88
Gadi Haber19c4fc52016-12-28 10:12:48 +000089 /// Loop over all of the basic blocks, replacing EVEX instructions
90 /// by equivalent VEX instructions when possible for reducing code size.
91 bool runOnMachineFunction(MachineFunction &MF) override;
92
93 // This pass runs after regalloc and doesn't support VReg operands.
94 MachineFunctionProperties getRequiredProperties() const override {
95 return MachineFunctionProperties().set(
96 MachineFunctionProperties::Property::NoVRegs);
97 }
98
99private:
100 /// Machine instruction info used throughout the class.
101 const X86InstrInfo *TII;
102};
103
104char EvexToVexInstPass::ID = 0;
Gadi Haber19c4fc52016-12-28 10:12:48 +0000105
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000106} // end anonymous namespace
Gadi Haber19c4fc52016-12-28 10:12:48 +0000107
108bool EvexToVexInstPass::runOnMachineFunction(MachineFunction &MF) {
109 TII = MF.getSubtarget<X86Subtarget>().getInstrInfo();
110
111 const X86Subtarget &ST = MF.getSubtarget<X86Subtarget>();
112 if (!ST.hasAVX512())
113 return false;
114
115 bool Changed = false;
116
117 /// Go over all basic blocks in function and replace
118 /// EVEX encoded instrs by VEX encoding when possible.
119 for (MachineBasicBlock &MBB : MF) {
120
121 // Traverse the basic block.
122 for (MachineInstr &MI : MBB)
123 Changed |= CompressEvexToVexImpl(MI);
124 }
125
126 return Changed;
127}
128
129void EvexToVexInstPass::AddTableEntry(EvexToVexTableType &EvexToVexTable,
130 uint16_t EvexOp, uint16_t VexOp) {
131 EvexToVexTable[EvexOp] = VexOp;
132}
133
134// For EVEX instructions that can be encoded using VEX encoding
135// replace them by the VEX encoding in order to reduce size.
136bool EvexToVexInstPass::CompressEvexToVexImpl(MachineInstr &MI) const {
Gadi Haber19c4fc52016-12-28 10:12:48 +0000137 // VEX format.
138 // # of bytes: 0,2,3 1 1 0,1 0,1,2,4 0,1
139 // [Prefixes] [VEX] OPCODE ModR/M [SIB] [DISP] [IMM]
140 //
141 // EVEX format.
142 // # of bytes: 4 1 1 1 4 / 1 1
143 // [Prefixes] EVEX Opcode ModR/M [SIB] [Disp32] / [Disp8*N] [Immediate]
144
145 const MCInstrDesc &Desc = MI.getDesc();
146
147 // Check for EVEX instructions only.
148 if ((Desc.TSFlags & X86II::EncodingMask) != X86II::EVEX)
149 return false;
150
151 // Check for EVEX instructions with mask or broadcast as in these cases
152 // the EVEX prefix is needed in order to carry this information
153 // thus preventing the transformation to VEX encoding.
154 if (Desc.TSFlags & (X86II::EVEX_K | X86II::EVEX_B))
155 return false;
156
157 // Check for non EVEX_V512 instrs only.
158 // EVEX_V512 instr: bit EVEX_L2 = 1; bit VEX_L = 0.
159 if ((Desc.TSFlags & X86II::EVEX_L2) && !(Desc.TSFlags & X86II::VEX_L))
160 return false;
161
162 // EVEX_V128 instr: bit EVEX_L2 = 0, bit VEX_L = 0.
163 bool IsEVEX_V128 =
164 (!(Desc.TSFlags & X86II::EVEX_L2) && !(Desc.TSFlags & X86II::VEX_L));
165
166 // EVEX_V256 instr: bit EVEX_L2 = 0, bit VEX_L = 1.
167 bool IsEVEX_V256 =
168 (!(Desc.TSFlags & X86II::EVEX_L2) && (Desc.TSFlags & X86II::VEX_L));
169
170 unsigned NewOpc = 0;
171
172 // Check for EVEX_V256 instructions.
173 if (IsEVEX_V256) {
174 // Search for opcode in the EvexToVex256 table.
175 auto It = EvexToVex256Table.find(MI.getOpcode());
176 if (It != EvexToVex256Table.end())
177 NewOpc = It->second;
178 }
179
180 // Check for EVEX_V128 or Scalar instructions.
181 else if (IsEVEX_V128) {
182 // Search for opcode in the EvexToVex128 table.
183 auto It = EvexToVex128Table.find(MI.getOpcode());
184 if (It != EvexToVex128Table.end())
185 NewOpc = It->second;
186 }
187
188 if (!NewOpc)
189 return false;
190
191 auto isHiRegIdx = [](unsigned Reg) {
192 // Check for XMM register with indexes between 16 - 31.
193 if (Reg >= X86::XMM16 && Reg <= X86::XMM31)
194 return true;
195
196 // Check for YMM register with indexes between 16 - 31.
197 if (Reg >= X86::YMM16 && Reg <= X86::YMM31)
198 return true;
199
200 return false;
201 };
202
203 // Check that operands are not ZMM regs or
204 // XMM/YMM regs with hi indexes between 16 - 31.
205 for (const MachineOperand &MO : MI.explicit_operands()) {
206 if (!MO.isReg())
207 continue;
208
209 unsigned Reg = MO.getReg();
210
211 assert (!(Reg >= X86::ZMM0 && Reg <= X86::ZMM31));
212
213 if (isHiRegIdx(Reg))
214 return false;
215 }
216
217 const MCInstrDesc &MCID = TII->get(NewOpc);
218 MI.setDesc(MCID);
219 MI.setAsmPrinterFlag(AC_EVEX_2_VEX);
220 return true;
221}
Eugene Zelenkofbd13c52017-02-02 22:55:55 +0000222
223INITIALIZE_PASS(EvexToVexInstPass, EVEX2VEX_NAME, EVEX2VEX_DESC, false, false)
224
225FunctionPass *llvm::createX86EvexToVexInsts() {
226 return new EvexToVexInstPass();
227}