blob: 9e5a51c4da1c39986befadf105d4369e405cf1d4 [file] [log] [blame]
Quentin Colombet494eb602015-05-22 18:10:47 +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/CodeGen/Passes.h" // For IDs of passes that are preserved.
23#include "llvm/CodeGen/MachineFunctionPass.h"
24#include "llvm/CodeGen/MachineInstrBuilder.h"
25#include "llvm/IR/GlobalValue.h"
26using namespace llvm;
27
28#define DEBUG_TYPE "x86-pseudo"
29
30namespace {
31class X86ExpandPseudo : public MachineFunctionPass {
32public:
33 static char ID;
34 X86ExpandPseudo() : MachineFunctionPass(ID) {}
35
36 void getAnalysisUsage(AnalysisUsage &AU) const override {
37 AU.setPreservesCFG();
38 AU.addPreservedID(MachineLoopInfoID);
39 AU.addPreservedID(MachineDominatorsID);
40 MachineFunctionPass::getAnalysisUsage(AU);
41 }
42
43 const X86Subtarget *STI;
44 const X86InstrInfo *TII;
45 const X86RegisterInfo *TRI;
46 const X86FrameLowering *X86FL;
47
48 bool runOnMachineFunction(MachineFunction &Fn) override;
49
50 const char *getPassName() const override {
51 return "X86 pseudo instruction expansion pass";
52 }
53
54private:
55 bool ExpandMI(MachineBasicBlock &MBB, MachineBasicBlock::iterator MBBI);
56 bool ExpandMBB(MachineBasicBlock &MBB);
57};
58char X86ExpandPseudo::ID = 0;
59} // End anonymous namespace.
60
61/// If \p MBBI is a pseudo instruction, this method expands
62/// it to the corresponding (sequence of) actual instruction(s).
63/// \returns true if \p MBBI has been expanded.
64bool X86ExpandPseudo::ExpandMI(MachineBasicBlock &MBB,
65 MachineBasicBlock::iterator MBBI) {
66 MachineInstr &MI = *MBBI;
67 unsigned Opcode = MI.getOpcode();
68 DebugLoc DL = MBBI->getDebugLoc();
69 switch (Opcode) {
70 default:
71 return false;
72 case X86::TCRETURNdi:
73 case X86::TCRETURNri:
74 case X86::TCRETURNmi:
75 case X86::TCRETURNdi64:
76 case X86::TCRETURNri64:
77 case X86::TCRETURNmi64: {
78 bool isMem = Opcode == X86::TCRETURNmi || Opcode == X86::TCRETURNmi64;
79 MachineOperand &JumpTarget = MBBI->getOperand(0);
80 MachineOperand &StackAdjust = MBBI->getOperand(isMem ? 5 : 1);
81 assert(StackAdjust.isImm() && "Expecting immediate value.");
82
83 // Adjust stack pointer.
84 int StackAdj = StackAdjust.getImm();
85
86 if (StackAdj) {
Quentin Colombet494eb602015-05-22 18:10:47 +000087 // Check for possible merge with preceding ADD instruction.
Reid Kleckner98d78032015-06-18 20:22:12 +000088 StackAdj += X86FL->mergeSPUpdates(MBB, MBBI, true);
89 X86FL->emitSPUpdate(MBB, MBBI, StackAdj, /*InEpilogue=*/true);
Quentin Colombet494eb602015-05-22 18:10:47 +000090 }
91
92 // Jump to label or value in register.
93 bool IsWin64 = STI->isTargetWin64();
94 if (Opcode == X86::TCRETURNdi || Opcode == X86::TCRETURNdi64) {
95 unsigned Op = (Opcode == X86::TCRETURNdi)
96 ? X86::TAILJMPd
97 : (IsWin64 ? X86::TAILJMPd64_REX : X86::TAILJMPd64);
98 MachineInstrBuilder MIB = BuildMI(MBB, MBBI, DL, TII->get(Op));
99 if (JumpTarget.isGlobal())
100 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(),
101 JumpTarget.getTargetFlags());
102 else {
103 assert(JumpTarget.isSymbol());
104 MIB.addExternalSymbol(JumpTarget.getSymbolName(),
105 JumpTarget.getTargetFlags());
106 }
107 } else if (Opcode == X86::TCRETURNmi || Opcode == X86::TCRETURNmi64) {
108 unsigned Op = (Opcode == X86::TCRETURNmi)
109 ? X86::TAILJMPm
110 : (IsWin64 ? X86::TAILJMPm64_REX : X86::TAILJMPm64);
111 MachineInstrBuilder MIB = BuildMI(MBB, MBBI, DL, TII->get(Op));
112 for (unsigned i = 0; i != 5; ++i)
113 MIB.addOperand(MBBI->getOperand(i));
114 } else if (Opcode == X86::TCRETURNri64) {
115 BuildMI(MBB, MBBI, DL,
116 TII->get(IsWin64 ? X86::TAILJMPr64_REX : X86::TAILJMPr64))
117 .addReg(JumpTarget.getReg(), RegState::Kill);
118 } else {
119 BuildMI(MBB, MBBI, DL, TII->get(X86::TAILJMPr))
120 .addReg(JumpTarget.getReg(), RegState::Kill);
121 }
122
123 MachineInstr *NewMI = std::prev(MBBI);
124 NewMI->copyImplicitOps(*MBBI->getParent()->getParent(), MBBI);
125
126 // Delete the pseudo instruction TCRETURN.
127 MBB.erase(MBBI);
128
129 return true;
130 }
131 case X86::EH_RETURN:
132 case X86::EH_RETURN64: {
133 MachineOperand &DestAddr = MBBI->getOperand(0);
134 assert(DestAddr.isReg() && "Offset should be in register!");
135 const bool Uses64BitFramePtr =
136 STI->isTarget64BitLP64() || STI->isTargetNaCl64();
137 unsigned StackPtr = TRI->getStackRegister();
138 BuildMI(MBB, MBBI, DL,
139 TII->get(Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr), StackPtr)
140 .addReg(DestAddr.getReg());
141 // The EH_RETURN pseudo is really removed during the MC Lowering.
142 return true;
143 }
Reid Kleckner51460c12015-11-06 01:49:05 +0000144
145 case X86::EH_RESTORE: {
146 // Restore ESP and EBP, and optionally ESI if required.
147 X86FL->restoreWin32EHStackPointers(MBB, MBBI, DL, /*RestoreSP=*/true);
148 MBBI->eraseFromParent();
149 return true;
150 }
Quentin Colombet494eb602015-05-22 18:10:47 +0000151 }
152 llvm_unreachable("Previous switch has a fallthrough?");
153}
154
155/// Expand all pseudo instructions contained in \p MBB.
156/// \returns true if any expansion occurred for \p MBB.
157bool X86ExpandPseudo::ExpandMBB(MachineBasicBlock &MBB) {
158 bool Modified = false;
159
160 // MBBI may be invalidated by the expansion.
161 MachineBasicBlock::iterator MBBI = MBB.begin(), E = MBB.end();
162 while (MBBI != E) {
163 MachineBasicBlock::iterator NMBBI = std::next(MBBI);
164 Modified |= ExpandMI(MBB, MBBI);
165 MBBI = NMBBI;
166 }
167
168 return Modified;
169}
170
171bool X86ExpandPseudo::runOnMachineFunction(MachineFunction &MF) {
172 STI = &static_cast<const X86Subtarget &>(MF.getSubtarget());
173 TII = STI->getInstrInfo();
174 TRI = STI->getRegisterInfo();
175 X86FL = STI->getFrameLowering();
176
177 bool Modified = false;
178 for (MachineBasicBlock &MBB : MF)
179 Modified |= ExpandMBB(MBB);
180 return Modified;
181}
182
183/// Returns an instance of the pseudo instruction expansion pass.
184FunctionPass *llvm::createX86ExpandPseudoPass() {
185 return new X86ExpandPseudo();
186}