blob: 6a2cf1d53149c106904237c648a3db3273e41769 [file] [log] [blame]
Eric Christopher213a5da2015-12-21 23:04:27 +00001//===------- X86ExpandPseudo.cpp - Expand pseudo instructions -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains a pass that expands pseudo instructions into target
11// instructions to allow proper scheduling, if-conversion, other late
12// optimizations, or simply the encoding of the instructions.
13//
14//===----------------------------------------------------------------------===//
15
16#include "X86.h"
17#include "X86FrameLowering.h"
18#include "X86InstrBuilder.h"
19#include "X86InstrInfo.h"
20#include "X86MachineFunctionInfo.h"
21#include "X86Subtarget.h"
22#include "llvm/Analysis/EHPersonalities.h"
23#include "llvm/CodeGen/MachineFunctionPass.h"
24#include "llvm/CodeGen/MachineInstrBuilder.h"
25#include "llvm/CodeGen/Passes.h" // For IDs of passes that are preserved.
26#include "llvm/IR/GlobalValue.h"
27using namespace llvm;
28
29#define DEBUG_TYPE "x86-pseudo"
30
31namespace {
32class X86ExpandPseudo : public MachineFunctionPass {
33public:
34 static char ID;
35 X86ExpandPseudo() : MachineFunctionPass(ID) {}
36
37 void getAnalysisUsage(AnalysisUsage &AU) const override {
38 AU.setPreservesCFG();
39 AU.addPreservedID(MachineLoopInfoID);
40 AU.addPreservedID(MachineDominatorsID);
41 MachineFunctionPass::getAnalysisUsage(AU);
42 }
43
44 const X86Subtarget *STI;
45 const X86InstrInfo *TII;
46 const X86RegisterInfo *TRI;
Quentin Colombetfb82c7b2016-07-11 21:03:03 +000047 const X86MachineFunctionInfo *X86FI;
Eric Christopher213a5da2015-12-21 23:04:27 +000048 const X86FrameLowering *X86FL;
49
50 bool runOnMachineFunction(MachineFunction &Fn) override;
51
Derek Schuff1dbf7a52016-04-04 17:09:25 +000052 MachineFunctionProperties getRequiredProperties() const override {
53 return MachineFunctionProperties().set(
Matthias Braun1eb47362016-08-25 01:27:13 +000054 MachineFunctionProperties::Property::NoVRegs);
Derek Schuff1dbf7a52016-04-04 17:09:25 +000055 }
56
Mehdi Amini117296c2016-10-01 02:56:57 +000057 StringRef getPassName() const override {
Eric Christopher213a5da2015-12-21 23:04:27 +000058 return "X86 pseudo instruction expansion pass";
59 }
60
61private:
62 bool ExpandMI(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI);
63 bool ExpandMBB(MachineBasicBlock &MBB);
64};
65char X86ExpandPseudo::ID = 0;
66} // End anonymous namespace.
67
68/// If \p MBBI is a pseudo instruction, this method expands
69/// it to the corresponding (sequence of) actual instruction(s).
70/// \returns true if \p MBBI has been expanded.
71bool X86ExpandPseudo::ExpandMI(MachineBasicBlock &MBB,
72 MachineBasicBlock::iterator MBBI) {
73 MachineInstr &MI = *MBBI;
74 unsigned Opcode = MI.getOpcode();
75 DebugLoc DL = MBBI->getDebugLoc();
76 switch (Opcode) {
77 default:
78 return false;
79 case X86::TCRETURNdi:
80 case X86::TCRETURNri:
81 case X86::TCRETURNmi:
82 case X86::TCRETURNdi64:
83 case X86::TCRETURNri64:
84 case X86::TCRETURNmi64: {
85 bool isMem = Opcode == X86::TCRETURNmi || Opcode == X86::TCRETURNmi64;
86 MachineOperand &JumpTarget = MBBI->getOperand(0);
87 MachineOperand &StackAdjust = MBBI->getOperand(isMem ? 5 : 1);
88 assert(StackAdjust.isImm() && "Expecting immediate value.");
89
90 // Adjust stack pointer.
91 int StackAdj = StackAdjust.getImm();
Quentin Colombetfb82c7b2016-07-11 21:03:03 +000092 int MaxTCDelta = X86FI->getTCReturnAddrDelta();
93 int Offset = 0;
94 assert(MaxTCDelta <= 0 && "MaxTCDelta should never be positive");
Eric Christopher213a5da2015-12-21 23:04:27 +000095
Quentin Colombetfb82c7b2016-07-11 21:03:03 +000096 // Incoporate the retaddr area.
Hans Wennborg75e25f62016-09-07 17:52:14 +000097 Offset = StackAdj - MaxTCDelta;
Quentin Colombetfb82c7b2016-07-11 21:03:03 +000098 assert(Offset >= 0 && "Offset should never be negative");
99
100 if (Offset) {
Eric Christopher213a5da2015-12-21 23:04:27 +0000101 // Check for possible merge with preceding ADD instruction.
Quentin Colombetfb82c7b2016-07-11 21:03:03 +0000102 Offset += X86FL->mergeSPUpdates(MBB, MBBI, true);
103 X86FL->emitSPUpdate(MBB, MBBI, Offset, /*InEpilogue=*/true);
Eric Christopher213a5da2015-12-21 23:04:27 +0000104 }
105
106 // Jump to label or value in register.
107 bool IsWin64 = STI->isTargetWin64();
Hans Wennborg819e3e02017-02-07 20:37:45 +0000108 if (Opcode == X86::TCRETURNdi || Opcode == X86::TCRETURNdi64) {
Hans Wennborg75e25f62016-09-07 17:52:14 +0000109 unsigned Op;
110 switch (Opcode) {
111 case X86::TCRETURNdi:
112 Op = X86::TAILJMPd;
113 break;
Hans Wennborg75e25f62016-09-07 17:52:14 +0000114 default:
Hans Wennborgc39ef772016-09-08 23:35:10 +0000115 // Note: Win64 uses REX prefixes indirect jumps out of functions, but
116 // not direct ones.
117 Op = X86::TAILJMPd64;
Hans Wennborg75e25f62016-09-07 17:52:14 +0000118 break;
119 }
Eric Christopher213a5da2015-12-21 23:04:27 +0000120 MachineInstrBuilder MIB = BuildMI(MBB, MBBI, DL, TII->get(Op));
Hans Wennborg75e25f62016-09-07 17:52:14 +0000121 if (JumpTarget.isGlobal()) {
Eric Christopher213a5da2015-12-21 23:04:27 +0000122 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(),
123 JumpTarget.getTargetFlags());
Hans Wennborg75e25f62016-09-07 17:52:14 +0000124 } else {
Eric Christopher213a5da2015-12-21 23:04:27 +0000125 assert(JumpTarget.isSymbol());
126 MIB.addExternalSymbol(JumpTarget.getSymbolName(),
127 JumpTarget.getTargetFlags());
128 }
129 } else if (Opcode == X86::TCRETURNmi || Opcode == X86::TCRETURNmi64) {
130 unsigned Op = (Opcode == X86::TCRETURNmi)
131 ? X86::TAILJMPm
132 : (IsWin64 ? X86::TAILJMPm64_REX : X86::TAILJMPm64);
133 MachineInstrBuilder MIB = BuildMI(MBB, MBBI, DL, TII->get(Op));
134 for (unsigned i = 0; i != 5; ++i)
Diana Picus116bbab2017-01-13 09:58:52 +0000135 MIB.add(MBBI->getOperand(i));
Eric Christopher213a5da2015-12-21 23:04:27 +0000136 } else if (Opcode == X86::TCRETURNri64) {
137 BuildMI(MBB, MBBI, DL,
138 TII->get(IsWin64 ? X86::TAILJMPr64_REX : X86::TAILJMPr64))
139 .addReg(JumpTarget.getReg(), RegState::Kill);
140 } else {
141 BuildMI(MBB, MBBI, DL, TII->get(X86::TAILJMPr))
142 .addReg(JumpTarget.getReg(), RegState::Kill);
143 }
144
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000145 MachineInstr &NewMI = *std::prev(MBBI);
146 NewMI.copyImplicitOps(*MBBI->getParent()->getParent(), *MBBI);
Eric Christopher213a5da2015-12-21 23:04:27 +0000147
148 // Delete the pseudo instruction TCRETURN.
149 MBB.erase(MBBI);
150
151 return true;
152 }
153 case X86::EH_RETURN:
154 case X86::EH_RETURN64: {
155 MachineOperand &DestAddr = MBBI->getOperand(0);
156 assert(DestAddr.isReg() && "Offset should be in register!");
157 const bool Uses64BitFramePtr =
158 STI->isTarget64BitLP64() || STI->isTargetNaCl64();
159 unsigned StackPtr = TRI->getStackRegister();
160 BuildMI(MBB, MBBI, DL,
161 TII->get(Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr), StackPtr)
162 .addReg(DestAddr.getReg());
163 // The EH_RETURN pseudo is really removed during the MC Lowering.
164 return true;
165 }
166 case X86::IRET: {
167 // Adjust stack to erase error code
168 int64_t StackAdj = MBBI->getOperand(0).getImm();
169 X86FL->emitSPUpdate(MBB, MBBI, StackAdj, true);
170 // Replace pseudo with machine iret
171 BuildMI(MBB, MBBI, DL,
172 TII->get(STI->is64Bit() ? X86::IRET64 : X86::IRET32));
173 MBB.erase(MBBI);
174 return true;
175 }
David Majnemerd2f767d2016-03-04 22:56:17 +0000176 case X86::RET: {
177 // Adjust stack to erase error code
178 int64_t StackAdj = MBBI->getOperand(0).getImm();
179 MachineInstrBuilder MIB;
180 if (StackAdj == 0) {
181 MIB = BuildMI(MBB, MBBI, DL,
182 TII->get(STI->is64Bit() ? X86::RETQ : X86::RETL));
183 } else if (isUInt<16>(StackAdj)) {
184 MIB = BuildMI(MBB, MBBI, DL,
185 TII->get(STI->is64Bit() ? X86::RETIQ : X86::RETIL))
186 .addImm(StackAdj);
187 } else {
David Majnemer71a1c2c2016-03-04 23:02:15 +0000188 assert(!STI->is64Bit() &&
189 "shouldn't need to do this for x86_64 targets!");
David Majnemerd2f767d2016-03-04 22:56:17 +0000190 // A ret can only handle immediates as big as 2**16-1. If we need to pop
191 // off bytes before the return address, we must do it manually.
David Majnemer71a1c2c2016-03-04 23:02:15 +0000192 BuildMI(MBB, MBBI, DL, TII->get(X86::POP32r)).addReg(X86::ECX, RegState::Define);
David Majnemerd2f767d2016-03-04 22:56:17 +0000193 X86FL->emitSPUpdate(MBB, MBBI, StackAdj, /*InEpilogue=*/true);
David Majnemer71a1c2c2016-03-04 23:02:15 +0000194 BuildMI(MBB, MBBI, DL, TII->get(X86::PUSH32r)).addReg(X86::ECX);
195 MIB = BuildMI(MBB, MBBI, DL, TII->get(X86::RETL));
David Majnemerd2f767d2016-03-04 22:56:17 +0000196 }
197 for (unsigned I = 1, E = MBBI->getNumOperands(); I != E; ++I)
Diana Picus116bbab2017-01-13 09:58:52 +0000198 MIB.add(MBBI->getOperand(I));
David Majnemerd2f767d2016-03-04 22:56:17 +0000199 MBB.erase(MBBI);
200 return true;
201 }
Eric Christopher213a5da2015-12-21 23:04:27 +0000202 case X86::EH_RESTORE: {
203 // Restore ESP and EBP, and optionally ESI if required.
204 bool IsSEH = isAsynchronousEHPersonality(classifyEHPersonality(
205 MBB.getParent()->getFunction()->getPersonalityFn()));
206 X86FL->restoreWin32EHStackPointers(MBB, MBBI, DL, /*RestoreSP=*/IsSEH);
207 MBBI->eraseFromParent();
208 return true;
209 }
Quentin Colombetcf9732b2016-03-12 02:25:27 +0000210 case X86::LCMPXCHG8B_SAVE_EBX:
211 case X86::LCMPXCHG16B_SAVE_RBX: {
212 // Perform the following transformation.
213 // SaveRbx = pseudocmpxchg Addr, <4 opds for the address>, InArg, SaveRbx
214 // =>
215 // [E|R]BX = InArg
216 // actualcmpxchg Addr
217 // [E|R]BX = SaveRbx
218 const MachineOperand &InArg = MBBI->getOperand(6);
219 unsigned SaveRbx = MBBI->getOperand(7).getReg();
220
221 unsigned ActualInArg =
222 Opcode == X86::LCMPXCHG8B_SAVE_EBX ? X86::EBX : X86::RBX;
223 // Copy the input argument of the pseudo into the argument of the
224 // actual instruction.
225 TII->copyPhysReg(MBB, MBBI, DL, ActualInArg, InArg.getReg(),
226 InArg.isKill());
227 // Create the actual instruction.
228 unsigned ActualOpc =
229 Opcode == X86::LCMPXCHG8B_SAVE_EBX ? X86::LCMPXCHG8B : X86::LCMPXCHG16B;
230 MachineInstr *NewInstr = BuildMI(MBB, MBBI, DL, TII->get(ActualOpc));
231 // Copy the operands related to the address.
232 for (unsigned Idx = 1; Idx < 6; ++Idx)
233 NewInstr->addOperand(MBBI->getOperand(Idx));
234 // Finally, restore the value of RBX.
235 TII->copyPhysReg(MBB, MBBI, DL, ActualInArg, SaveRbx,
236 /*SrcIsKill*/ true);
237
238 // Delete the pseudo.
239 MBBI->eraseFromParent();
240 return true;
241 }
Eric Christopher213a5da2015-12-21 23:04:27 +0000242 }
243 llvm_unreachable("Previous switch has a fallthrough?");
244}
245
246/// Expand all pseudo instructions contained in \p MBB.
247/// \returns true if any expansion occurred for \p MBB.
248bool X86ExpandPseudo::ExpandMBB(MachineBasicBlock &MBB) {
249 bool Modified = false;
250
251 // MBBI may be invalidated by the expansion.
252 MachineBasicBlock::iterator MBBI = MBB.begin(), E = MBB.end();
253 while (MBBI != E) {
254 MachineBasicBlock::iterator NMBBI = std::next(MBBI);
255 Modified |= ExpandMI(MBB, MBBI);
256 MBBI = NMBBI;
257 }
258
259 return Modified;
260}
261
262bool X86ExpandPseudo::runOnMachineFunction(MachineFunction &MF) {
263 STI = &static_cast<const X86Subtarget &>(MF.getSubtarget());
264 TII = STI->getInstrInfo();
265 TRI = STI->getRegisterInfo();
Quentin Colombetfb82c7b2016-07-11 21:03:03 +0000266 X86FI = MF.getInfo<X86MachineFunctionInfo>();
Eric Christopher213a5da2015-12-21 23:04:27 +0000267 X86FL = STI->getFrameLowering();
268
269 bool Modified = false;
270 for (MachineBasicBlock &MBB : MF)
271 Modified |= ExpandMBB(MBB);
272 return Modified;
273}
274
275/// Returns an instance of the pseudo instruction expansion pass.
276FunctionPass *llvm::createX86ExpandPseudoPass() {
277 return new X86ExpandPseudo();
278}