LLVM 24.0.0git
X86ExpandPseudo.cpp
Go to the documentation of this file.
1//===------- X86ExpandPseudo.cpp - Expand pseudo instructions -------------===//
2//
3// 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
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains a pass that expands pseudo instructions into target
10// instructions to allow proper scheduling, if-conversion, other late
11// optimizations, or simply the encoding of the instructions.
12//
13//===----------------------------------------------------------------------===//
14
15#include "X86.h"
16#include "X86FrameLowering.h"
17#include "X86InstrInfo.h"
19#include "X86Subtarget.h"
26#include "llvm/CodeGen/Passes.h" // For IDs of passes that are preserved.
27#include "llvm/IR/Analysis.h"
29#include "llvm/IR/GlobalValue.h"
31using namespace llvm;
32
33#define DEBUG_TYPE "x86-expand-pseudo"
34#define X86_EXPAND_PSEUDO_NAME "X86 pseudo instruction expansion pass"
35
36namespace {
37class X86ExpandPseudoImpl {
38public:
39 const X86Subtarget *STI = nullptr;
40 const X86InstrInfo *TII = nullptr;
41 const X86RegisterInfo *TRI = nullptr;
42 const X86MachineFunctionInfo *X86FI = nullptr;
43 const X86FrameLowering *X86FL = nullptr;
44
45 bool runOnMachineFunction(MachineFunction &MF);
46
47private:
48 void expandICallBranchFunnel(MachineBasicBlock *MBB,
50 void expandCALL_RVMARKER(MachineBasicBlock &MBB,
53 bool expandMBB(MachineBasicBlock &MBB);
54
55 /// This function expands pseudos which affects control flow.
56 /// It is done in separate pass to simplify blocks navigation in main
57 /// pass(calling expandMBB).
58 bool expandPseudosWhichAffectControlFlow(MachineFunction &MF);
59
60 /// Expand X86::VASTART_SAVE_XMM_REGS into set of xmm copying instructions,
61 /// placed into separate block guarded by check for al register(for SystemV
62 /// abi).
63 void expandVastartSaveXmmRegs(
64 MachineBasicBlock *EntryBlk,
65 MachineBasicBlock::iterator VAStartPseudoInstr) const;
66};
67
68class X86ExpandPseudoLegacy : public MachineFunctionPass {
69public:
70 static char ID;
71 X86ExpandPseudoLegacy() : MachineFunctionPass(ID) {}
72
73 void getAnalysisUsage(AnalysisUsage &AU) const override {
74 AU.setPreservesCFG();
76 }
77
78 const X86Subtarget *STI = nullptr;
79 const X86InstrInfo *TII = nullptr;
80 const X86RegisterInfo *TRI = nullptr;
81 const X86MachineFunctionInfo *X86FI = nullptr;
82 const X86FrameLowering *X86FL = nullptr;
83
84 bool runOnMachineFunction(MachineFunction &MF) override;
85
86 MachineFunctionProperties getRequiredProperties() const override {
87 return MachineFunctionProperties().setNoVRegs();
88 }
89
90 StringRef getPassName() const override {
91 return "X86 pseudo instruction expansion pass";
92 }
93};
94char X86ExpandPseudoLegacy::ID = 0;
95} // End anonymous namespace.
96
98 false, false)
99
100void X86ExpandPseudoImpl::expandICallBranchFunnel(
102 MachineBasicBlock *JTMBB = MBB;
103 MachineInstr *JTInst = &*MBBI;
104 MachineFunction *MF = MBB->getParent();
105 const BasicBlock *BB = MBB->getBasicBlock();
106 auto InsPt = MachineFunction::iterator(MBB);
107 ++InsPt;
108
109 std::vector<std::pair<MachineBasicBlock *, unsigned>> TargetMBBs;
110 const DebugLoc &DL = JTInst->getDebugLoc();
111 MachineOperand Selector = JTInst->getOperand(0);
112 const GlobalValue *CombinedGlobal = JTInst->getOperand(1).getGlobal();
113
114 auto CmpTarget = [&](unsigned Target) {
115 if (Selector.isReg())
116 MBB->addLiveIn(Selector.getReg());
117 BuildMI(*MBB, MBBI, DL, TII->get(X86::LEA64r), X86::R11)
118 .addReg(X86::RIP)
119 .addImm(1)
120 .addReg(0)
121 .addGlobalAddress(CombinedGlobal,
122 JTInst->getOperand(2 + 2 * Target).getImm())
123 .addReg(0);
124 BuildMI(*MBB, MBBI, DL, TII->get(X86::CMP64rr))
125 .add(Selector)
126 .addReg(X86::R11);
127 };
128
129 auto CreateMBB = [&]() {
130 auto *NewMBB = MF->CreateMachineBasicBlock(BB);
131 MBB->addSuccessor(NewMBB);
132 if (!MBB->isLiveIn(X86::EFLAGS))
133 MBB->addLiveIn(X86::EFLAGS);
134 return NewMBB;
135 };
136
137 auto EmitCondJump = [&](unsigned CC, MachineBasicBlock *ThenMBB) {
138 BuildMI(*MBB, MBBI, DL, TII->get(X86::JCC_1)).addMBB(ThenMBB).addImm(CC);
139
140 auto *ElseMBB = CreateMBB();
141 MF->insert(InsPt, ElseMBB);
142 MBB = ElseMBB;
143 MBBI = MBB->end();
144 };
145
146 auto EmitCondJumpTarget = [&](unsigned CC, unsigned Target) {
147 auto *ThenMBB = CreateMBB();
148 TargetMBBs.push_back({ThenMBB, Target});
149 EmitCondJump(CC, ThenMBB);
150 };
151
152 auto EmitTailCall = [&](unsigned Target) {
153 BuildMI(*MBB, MBBI, DL, TII->get(X86::TAILJMPd64))
154 .add(JTInst->getOperand(3 + 2 * Target));
155 };
156
157 std::function<void(unsigned, unsigned)> EmitBranchFunnel =
158 [&](unsigned FirstTarget, unsigned NumTargets) {
159 if (NumTargets == 1) {
160 EmitTailCall(FirstTarget);
161 return;
162 }
163
164 if (NumTargets == 2) {
165 CmpTarget(FirstTarget + 1);
166 EmitCondJumpTarget(X86::COND_B, FirstTarget);
167 EmitTailCall(FirstTarget + 1);
168 return;
169 }
170
171 if (NumTargets < 6) {
172 CmpTarget(FirstTarget + 1);
173 EmitCondJumpTarget(X86::COND_B, FirstTarget);
174 EmitCondJumpTarget(X86::COND_E, FirstTarget + 1);
175 EmitBranchFunnel(FirstTarget + 2, NumTargets - 2);
176 return;
177 }
178
179 auto *ThenMBB = CreateMBB();
180 CmpTarget(FirstTarget + (NumTargets / 2));
181 EmitCondJump(X86::COND_B, ThenMBB);
182 EmitCondJumpTarget(X86::COND_E, FirstTarget + (NumTargets / 2));
183 EmitBranchFunnel(FirstTarget + (NumTargets / 2) + 1,
184 NumTargets - (NumTargets / 2) - 1);
185
186 MF->insert(InsPt, ThenMBB);
187 MBB = ThenMBB;
188 MBBI = MBB->end();
189 EmitBranchFunnel(FirstTarget, NumTargets / 2);
190 };
191
192 EmitBranchFunnel(0, (JTInst->getNumOperands() - 2) / 2);
193 for (auto P : TargetMBBs) {
194 MF->insert(InsPt, P.first);
195 BuildMI(P.first, DL, TII->get(X86::TAILJMPd64))
196 .add(JTInst->getOperand(3 + 2 * P.second));
197 }
198 JTMBB->erase(JTInst);
199}
200
201void X86ExpandPseudoImpl::expandCALL_RVMARKER(
203 // Expand CALL_RVMARKER pseudo to call instruction, followed by the special
204 //"movq %rax, %rdi" marker.
205 MachineInstr &MI = *MBBI;
206
207 MachineInstr *OriginalCall;
208 assert((MI.getOperand(1).isGlobal() || MI.getOperand(1).isReg()) &&
209 "invalid operand for regular call");
210 unsigned Opc = -1;
211 if (MI.getOpcode() == X86::CALL64m_RVMARKER)
212 Opc = X86::CALL64m;
213 else if (MI.getOpcode() == X86::CALL64r_RVMARKER)
214 Opc = X86::CALL64r;
215 else if (MI.getOpcode() == X86::CALL64pcrel32_RVMARKER)
216 Opc = X86::CALL64pcrel32;
217 else
218 llvm_unreachable("unexpected opcode");
219
220 OriginalCall = BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(Opc)).getInstr();
221 bool RAXImplicitDead = false;
222 for (MachineOperand &Op : llvm::drop_begin(MI.operands())) {
223 // RAX may be 'implicit dead', if there are no other users of the return
224 // value. We introduce a new use, so change it to 'implicit def'.
225 if (Op.isReg() && Op.isImplicit() && Op.isDead() &&
226 TRI->regsOverlap(Op.getReg(), X86::RAX)) {
227 Op.setIsDead(false);
228 Op.setIsDef(true);
229 RAXImplicitDead = true;
230 }
231 OriginalCall->addOperand(Op);
232 }
233
234 // Emit marker "movq %rax, %rdi". %rdi is not callee-saved, so it cannot be
235 // live across the earlier call. The call to the ObjC runtime function returns
236 // the first argument, so the value of %rax is unchanged after the ObjC
237 // runtime call. On Windows targets, the runtime call follows the regular
238 // x64 calling convention and expects the first argument in %rcx.
239 auto TargetReg = STI->getTargetTriple().isOSWindows() ? X86::RCX : X86::RDI;
240 auto *Marker = BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(X86::MOV64rr))
241 .addReg(TargetReg, RegState::Define)
242 .addReg(X86::RAX)
243 .getInstr();
244 if (MI.shouldUpdateAdditionalCallInfo())
246
247 // Emit call to ObjC runtime.
248 const uint32_t *RegMask =
249 TRI->getCallPreservedMask(*MBB.getParent(), CallingConv::C);
250 MachineInstr *RtCall =
251 BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(X86::CALL64pcrel32))
252 .addGlobalAddress(MI.getOperand(0).getGlobal(), 0, 0)
253 .addRegMask(RegMask)
254 .addReg(X86::RAX,
255 RegState::Implicit |
256 (RAXImplicitDead ? (RegState::Dead | RegState::Define)
257 : RegState::Define))
258 .getInstr();
260
261 auto &TM = MBB.getParent()->getTarget();
262 // On Darwin platforms, wrap the expanded sequence in a bundle to prevent
263 // later optimizations from breaking up the sequence.
264 if (TM.getTargetTriple().isOSDarwin())
265 finalizeBundle(MBB, OriginalCall->getIterator(),
266 std::next(RtCall->getIterator()));
267}
268
269/// If \p MBBI is a pseudo instruction, this method expands
270/// it to the corresponding (sequence of) actual instruction(s).
271/// \returns true if \p MBBI has been expanded.
272bool X86ExpandPseudoImpl::expandMI(MachineBasicBlock &MBB,
274 MachineInstr &MI = *MBBI;
275 unsigned Opcode = MI.getOpcode();
276 const DebugLoc &DL = MBBI->getDebugLoc();
277#define GET_EGPR_IF_ENABLED(OPC) (STI->hasEGPR() ? OPC##_EVEX : OPC)
278 switch (Opcode) {
279 default:
280 return false;
281 case X86::TCRETURNdi:
282 case X86::TCRETURNdicc:
283 case X86::TCRETURNri:
284 case X86::TCRETURN_WIN64ri:
285 case X86::TCRETURN_HIPE32ri:
286 case X86::TCRETURNmi:
287 case X86::TCRETURNdi64:
288 case X86::TCRETURNdi64cc:
289 case X86::TCRETURNri64:
290 case X86::TCRETURNri64_ImpCall:
291 case X86::TCRETURNmi64:
292 case X86::TCRETURN_WINmi64: {
293 bool isMem = Opcode == X86::TCRETURNmi || Opcode == X86::TCRETURNmi64 ||
294 Opcode == X86::TCRETURN_WINmi64;
295 MachineOperand &JumpTarget = MBBI->getOperand(0);
296 MachineOperand &StackAdjust = MBBI->getOperand(isMem ? X86::AddrNumOperands
297 : 1);
298 assert(StackAdjust.isImm() && "Expecting immediate value.");
299
300 // Adjust stack pointer.
301 int StackAdj = StackAdjust.getImm();
302 int MaxTCDelta = X86FI->getTCReturnAddrDelta();
303 int64_t Offset = 0;
304 assert(MaxTCDelta <= 0 && "MaxTCDelta should never be positive");
305
306 // Incoporate the retaddr area.
307 Offset = StackAdj - MaxTCDelta;
308 assert(Offset >= 0 && "Offset should never be negative");
309
310 if (Opcode == X86::TCRETURNdicc || Opcode == X86::TCRETURNdi64cc) {
311 assert(Offset == 0 && "Conditional tail call cannot adjust the stack.");
312 }
313
314 if (Offset) {
315 // Check for possible merge with preceding ADD instruction.
316 Offset = X86FL->mergeSPAdd(MBB, MBBI, Offset, true);
317 X86FL->emitSPUpdate(MBB, MBBI, DL, Offset, /*InEpilogue=*/true);
318 }
319
320 // Use this predicate to set REX prefix for X86_64 targets.
321 bool IsX64 = STI->isTargetWin64() || STI->isTargetUEFI64();
322 // Jump to label or value in register.
323 if (Opcode == X86::TCRETURNdi || Opcode == X86::TCRETURNdicc ||
324 Opcode == X86::TCRETURNdi64 || Opcode == X86::TCRETURNdi64cc) {
325 unsigned Op;
326 switch (Opcode) {
327 case X86::TCRETURNdi:
328 Op = X86::TAILJMPd;
329 break;
330 case X86::TCRETURNdicc:
331 Op = X86::TAILJMPd_CC;
332 break;
333 case X86::TCRETURNdi64cc:
335 "Conditional tail calls confuse "
336 "the Win64 unwinder.");
337 Op = X86::TAILJMPd64_CC;
338 break;
339 default:
340 // Note: Win64 uses REX prefixes indirect jumps out of functions, but
341 // not direct ones.
342 Op = X86::TAILJMPd64;
343 break;
344 }
345 MachineInstrBuilder MIB = BuildMI(MBB, MBBI, DL, TII->get(Op));
346 if (JumpTarget.isGlobal()) {
347 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(),
348 JumpTarget.getTargetFlags());
349 } else {
350 assert(JumpTarget.isSymbol());
351 MIB.addExternalSymbol(JumpTarget.getSymbolName(),
352 JumpTarget.getTargetFlags());
353 }
354 if (Op == X86::TAILJMPd_CC || Op == X86::TAILJMPd64_CC) {
355 MIB.addImm(MBBI->getOperand(2).getImm());
356 }
357
358 } else if (Opcode == X86::TCRETURNmi || Opcode == X86::TCRETURNmi64 ||
359 Opcode == X86::TCRETURN_WINmi64) {
360 unsigned Op = (Opcode == X86::TCRETURNmi)
361 ? X86::TAILJMPm
362 : (IsX64 ? X86::TAILJMPm64_REX : X86::TAILJMPm64);
363 MachineInstrBuilder MIB = BuildMI(MBB, MBBI, DL, TII->get(Op));
364 for (unsigned i = 0; i != X86::AddrNumOperands; ++i)
365 MIB.add(MBBI->getOperand(i));
366 } else if (Opcode == X86::TCRETURNri64 ||
367 Opcode == X86::TCRETURNri64_ImpCall ||
368 Opcode == X86::TCRETURN_WIN64ri) {
369 JumpTarget.setIsKill();
370 BuildMI(MBB, MBBI, DL,
371 TII->get(IsX64 ? X86::TAILJMPr64_REX : X86::TAILJMPr64))
372 .add(JumpTarget);
373 } else {
374 assert(!IsX64 && "Win64 and UEFI64 require REX for indirect jumps.");
375 JumpTarget.setIsKill();
376 BuildMI(MBB, MBBI, DL, TII->get(X86::TAILJMPr))
377 .add(JumpTarget);
378 }
379
380 MachineInstr &NewMI = *std::prev(MBBI);
381 NewMI.copyImplicitOps(*MBBI->getParent()->getParent(), *MBBI);
382 NewMI.setCFIType(*MBB.getParent(), MI.getCFIType());
383
384 // Update the call info.
385 if (MBBI->isCandidateForAdditionalCallInfo())
387
388 // Delete the pseudo instruction TCRETURN.
389 MBB.erase(MBBI);
390
391 return true;
392 }
393 case X86::EH_RETURN:
394 case X86::EH_RETURN64: {
395 MachineOperand &DestAddr = MBBI->getOperand(0);
396 assert(DestAddr.isReg() && "Offset should be in register!");
397 const bool Uses64BitFramePtr = STI->isTarget64BitLP64();
398 Register StackPtr = TRI->getStackRegister();
399 BuildMI(MBB, MBBI, DL,
400 TII->get(Uses64BitFramePtr ? X86::MOV64rr : X86::MOV32rr), StackPtr)
401 .addReg(DestAddr.getReg());
402 // The EH_RETURN pseudo is really removed during the MC Lowering.
403 return true;
404 }
405 case X86::IRET: {
406 // Adjust stack to erase error code
407 int64_t StackAdj = MBBI->getOperand(0).getImm();
408 X86FL->emitSPUpdate(MBB, MBBI, DL, StackAdj, true);
409 // Replace pseudo with machine iret
410 unsigned RetOp = STI->is64Bit() ? X86::IRET64 : X86::IRET32;
411 // Use UIRET if UINTR is present (except for building kernel)
412 if (STI->is64Bit() && STI->hasUINTR() &&
414 RetOp = X86::UIRET;
415 BuildMI(MBB, MBBI, DL, TII->get(RetOp));
416 MBB.erase(MBBI);
417 return true;
418 }
419 case X86::RET: {
420 // Adjust stack to erase error code
421 int64_t StackAdj = MBBI->getOperand(0).getImm();
422 MachineInstrBuilder MIB;
423 if (StackAdj == 0) {
424 MIB = BuildMI(MBB, MBBI, DL,
425 TII->get(STI->is64Bit() ? X86::RET64 : X86::RET32));
426 } else if (isUInt<16>(StackAdj)) {
427 MIB = BuildMI(MBB, MBBI, DL,
428 TII->get(STI->is64Bit() ? X86::RETI64 : X86::RETI32))
429 .addImm(StackAdj);
430 } else {
431 assert(!STI->is64Bit() &&
432 "shouldn't need to do this for x86_64 targets!");
433 // A ret can only handle immediates as big as 2**16-1. If we need to pop
434 // off bytes before the return address, we must do it manually.
435 BuildMI(MBB, MBBI, DL, TII->get(X86::POP32r)).addReg(X86::ECX, RegState::Define);
436 X86FL->emitSPUpdate(MBB, MBBI, DL, StackAdj, /*InEpilogue=*/true);
437 BuildMI(MBB, MBBI, DL, TII->get(X86::PUSH32r)).addReg(X86::ECX);
438 MIB = BuildMI(MBB, MBBI, DL, TII->get(X86::RET32));
439 }
440 for (unsigned I = 1, E = MBBI->getNumOperands(); I != E; ++I)
441 MIB.add(MBBI->getOperand(I));
442 MBB.erase(MBBI);
443 return true;
444 }
445 case X86::LCMPXCHG16B_SAVE_RBX: {
446 // Perform the following transformation.
447 // SaveRbx = pseudocmpxchg Addr, <4 opds for the address>, InArg, SaveRbx
448 // =>
449 // RBX = InArg
450 // actualcmpxchg Addr
451 // RBX = SaveRbx
452 const MachineOperand &InArg = MBBI->getOperand(6);
453 Register SaveRbx = MBBI->getOperand(7).getReg();
454
455 // Copy the input argument of the pseudo into the argument of the
456 // actual instruction.
457 // NOTE: We don't copy the kill flag since the input might be the same reg
458 // as one of the other operands of LCMPXCHG16B.
459 TII->copyPhysReg(MBB, MBBI, DL, X86::RBX, InArg.getReg(), false);
460 // Create the actual instruction.
461 MachineInstr *NewInstr = BuildMI(MBB, MBBI, DL, TII->get(X86::LCMPXCHG16B));
462 // Copy the operands related to the address. If we access a frame variable,
463 // we need to replace the RBX base with SaveRbx, as RBX has another value.
464 const MachineOperand &Base = MBBI->getOperand(1);
465 if (Base.getReg() == X86::RBX || Base.getReg() == X86::EBX)
467 Base.getReg() == X86::RBX
468 ? SaveRbx
469 : Register(TRI->getSubReg(SaveRbx, X86::sub_32bit)),
470 /*IsDef=*/false));
471 else
472 NewInstr->addOperand(Base);
473 for (unsigned Idx = 1 + 1; Idx < 1 + X86::AddrNumOperands; ++Idx)
474 NewInstr->addOperand(MBBI->getOperand(Idx));
475 // Finally, restore the value of RBX.
476 TII->copyPhysReg(MBB, MBBI, DL, X86::RBX, SaveRbx,
477 /*SrcIsKill*/ true);
478
479 // Delete the pseudo.
481 return true;
482 }
483 // Loading/storing mask pairs requires two kmov operations. The second one of
484 // these needs a 2 byte displacement relative to the specified address (with
485 // 32 bit spill size). The pairs of 1bit masks up to 16 bit masks all use the
486 // same spill size, they all are stored using MASKPAIR16STORE, loaded using
487 // MASKPAIR16LOAD.
488 //
489 // The displacement value might wrap around in theory, thus the asserts in
490 // both cases.
491 case X86::MASKPAIR16LOAD: {
492 int64_t Disp = MBBI->getOperand(1 + X86::AddrDisp).getImm();
493 assert(Disp >= 0 && Disp <= INT32_MAX - 2 && "Unexpected displacement");
494 Register Reg = MBBI->getOperand(0).getReg();
495 bool DstIsDead = MBBI->getOperand(0).isDead();
496 Register Reg0 = TRI->getSubReg(Reg, X86::sub_mask_0);
497 Register Reg1 = TRI->getSubReg(Reg, X86::sub_mask_1);
498
499 auto MIBLo =
500 BuildMI(MBB, MBBI, DL, TII->get(GET_EGPR_IF_ENABLED(X86::KMOVWkm)))
501 .addReg(Reg0, RegState::Define | getDeadRegState(DstIsDead));
502 auto MIBHi =
503 BuildMI(MBB, MBBI, DL, TII->get(GET_EGPR_IF_ENABLED(X86::KMOVWkm)))
504 .addReg(Reg1, RegState::Define | getDeadRegState(DstIsDead));
505
506 for (int i = 0; i < X86::AddrNumOperands; ++i) {
507 MIBLo.add(MBBI->getOperand(1 + i));
508 if (i == X86::AddrDisp)
509 MIBHi.addImm(Disp + 2);
510 else
511 MIBHi.add(MBBI->getOperand(1 + i));
512 }
513
514 // Split the memory operand, adjusting the offset and size for the halves.
515 MachineMemOperand *OldMMO = MBBI->memoperands().front();
517 MachineMemOperand *MMOLo = MF->getMachineMemOperand(OldMMO, 0, 2);
518 MachineMemOperand *MMOHi = MF->getMachineMemOperand(OldMMO, 2, 2);
519
520 MIBLo.setMemRefs(MMOLo);
521 MIBHi.setMemRefs(MMOHi);
522
523 // Delete the pseudo.
524 MBB.erase(MBBI);
525 return true;
526 }
527 case X86::MASKPAIR16STORE: {
528 int64_t Disp = MBBI->getOperand(X86::AddrDisp).getImm();
529 assert(Disp >= 0 && Disp <= INT32_MAX - 2 && "Unexpected displacement");
530 Register Reg = MBBI->getOperand(X86::AddrNumOperands).getReg();
531 bool SrcIsKill = MBBI->getOperand(X86::AddrNumOperands).isKill();
532 Register Reg0 = TRI->getSubReg(Reg, X86::sub_mask_0);
533 Register Reg1 = TRI->getSubReg(Reg, X86::sub_mask_1);
534
535 auto MIBLo =
536 BuildMI(MBB, MBBI, DL, TII->get(GET_EGPR_IF_ENABLED(X86::KMOVWmk)));
537 auto MIBHi =
538 BuildMI(MBB, MBBI, DL, TII->get(GET_EGPR_IF_ENABLED(X86::KMOVWmk)));
539
540 for (int i = 0; i < X86::AddrNumOperands; ++i) {
541 MIBLo.add(MBBI->getOperand(i));
542 if (i == X86::AddrDisp)
543 MIBHi.addImm(Disp + 2);
544 else
545 MIBHi.add(MBBI->getOperand(i));
546 }
547 MIBLo.addReg(Reg0, getKillRegState(SrcIsKill));
548 MIBHi.addReg(Reg1, getKillRegState(SrcIsKill));
549
550 // Split the memory operand, adjusting the offset and size for the halves.
551 MachineMemOperand *OldMMO = MBBI->memoperands().front();
553 MachineMemOperand *MMOLo = MF->getMachineMemOperand(OldMMO, 0, 2);
554 MachineMemOperand *MMOHi = MF->getMachineMemOperand(OldMMO, 2, 2);
555
556 MIBLo.setMemRefs(MMOLo);
557 MIBHi.setMemRefs(MMOHi);
558
559 // Delete the pseudo.
560 MBB.erase(MBBI);
561 return true;
562 }
563 case X86::MWAITX_SAVE_RBX: {
564 // Perform the following transformation.
565 // SaveRbx = pseudomwaitx InArg, SaveRbx
566 // =>
567 // [E|R]BX = InArg
568 // actualmwaitx
569 // [E|R]BX = SaveRbx
570 const MachineOperand &InArg = MBBI->getOperand(1);
571 // Copy the input argument of the pseudo into the argument of the
572 // actual instruction.
573 TII->copyPhysReg(MBB, MBBI, DL, X86::EBX, InArg.getReg(), InArg.isKill());
574 // Create the actual instruction.
575 BuildMI(MBB, MBBI, DL, TII->get(X86::MWAITXrrr));
576 // Finally, restore the value of RBX.
577 Register SaveRbx = MBBI->getOperand(2).getReg();
578 TII->copyPhysReg(MBB, MBBI, DL, X86::RBX, SaveRbx, /*SrcIsKill*/ true);
579 // Delete the pseudo.
581 return true;
582 }
583 case TargetOpcode::ICALL_BRANCH_FUNNEL:
584 expandICallBranchFunnel(&MBB, MBBI);
585 return true;
586 case X86::PLDTILECFGV: {
587 MI.setDesc(TII->get(GET_EGPR_IF_ENABLED(X86::LDTILECFG)));
588 return true;
589 }
590 case X86::PTILELOADDV:
591 case X86::PTILELOADDT1V:
592 case X86::PTILELOADDRSV:
593 case X86::PTILELOADDRST1V:
594 case X86::PTCVTROWD2PSrteV:
595 case X86::PTCVTROWD2PSrtiV:
596 case X86::PTCVTROWPS2BF16HrteV:
597 case X86::PTCVTROWPS2BF16HrtiV:
598 case X86::PTCVTROWPS2BF16LrteV:
599 case X86::PTCVTROWPS2BF16LrtiV:
600 case X86::PTCVTROWPS2PHHrteV:
601 case X86::PTCVTROWPS2PHHrtiV:
602 case X86::PTCVTROWPS2PHLrteV:
603 case X86::PTCVTROWPS2PHLrtiV:
604 case X86::PTILEMOVROWrteV:
605 case X86::PTILEMOVROWrtiV: {
606 for (unsigned i = 2; i > 0; --i)
607 MI.removeOperand(i);
608 unsigned Opc;
609 switch (Opcode) {
610 case X86::PTILELOADDRSV:
611 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADDRS);
612 break;
613 case X86::PTILELOADDRST1V:
614 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADDRST1);
615 break;
616 case X86::PTILELOADDV:
617 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADD);
618 break;
619 case X86::PTILELOADDT1V:
620 Opc = GET_EGPR_IF_ENABLED(X86::TILELOADDT1);
621 break;
622 case X86::PTCVTROWD2PSrteV:
623 Opc = X86::TCVTROWD2PSrte;
624 break;
625 case X86::PTCVTROWD2PSrtiV:
626 Opc = X86::TCVTROWD2PSrti;
627 break;
628 case X86::PTCVTROWPS2BF16HrteV:
629 Opc = X86::TCVTROWPS2BF16Hrte;
630 break;
631 case X86::PTCVTROWPS2BF16HrtiV:
632 Opc = X86::TCVTROWPS2BF16Hrti;
633 break;
634 case X86::PTCVTROWPS2BF16LrteV:
635 Opc = X86::TCVTROWPS2BF16Lrte;
636 break;
637 case X86::PTCVTROWPS2BF16LrtiV:
638 Opc = X86::TCVTROWPS2BF16Lrti;
639 break;
640 case X86::PTCVTROWPS2PHHrteV:
641 Opc = X86::TCVTROWPS2PHHrte;
642 break;
643 case X86::PTCVTROWPS2PHHrtiV:
644 Opc = X86::TCVTROWPS2PHHrti;
645 break;
646 case X86::PTCVTROWPS2PHLrteV:
647 Opc = X86::TCVTROWPS2PHLrte;
648 break;
649 case X86::PTCVTROWPS2PHLrtiV:
650 Opc = X86::TCVTROWPS2PHLrti;
651 break;
652 case X86::PTILEMOVROWrteV:
653 Opc = X86::TILEMOVROWrte;
654 break;
655 case X86::PTILEMOVROWrtiV:
656 Opc = X86::TILEMOVROWrti;
657 break;
658 default:
659 llvm_unreachable("Unexpected Opcode");
660 }
661 MI.setDesc(TII->get(Opc));
662 return true;
663 }
664 case X86::PTCMMIMFP16PSV:
665 case X86::PTCMMRLFP16PSV:
666 case X86::PTDPBSSDV:
667 case X86::PTDPBSUDV:
668 case X86::PTDPBUSDV:
669 case X86::PTDPBUUDV:
670 case X86::PTDPBF16PSV:
671 case X86::PTDPFP16PSV:
672 case X86::PTDPBF8PSV:
673 case X86::PTDPBHF8PSV:
674 case X86::PTDPHBF8PSV:
675 case X86::PTDPHF8PSV: {
676 MI.untieRegOperand(4);
677 for (unsigned i = 3; i > 0; --i)
678 MI.removeOperand(i);
679 unsigned Opc;
680 switch (Opcode) {
681 // clang-format off
682 case X86::PTCMMIMFP16PSV: Opc = X86::TCMMIMFP16PS; break;
683 case X86::PTCMMRLFP16PSV: Opc = X86::TCMMRLFP16PS; break;
684 case X86::PTDPBSSDV: Opc = X86::TDPBSSD; break;
685 case X86::PTDPBSUDV: Opc = X86::TDPBSUD; break;
686 case X86::PTDPBUSDV: Opc = X86::TDPBUSD; break;
687 case X86::PTDPBUUDV: Opc = X86::TDPBUUD; break;
688 case X86::PTDPBF16PSV: Opc = X86::TDPBF16PS; break;
689 case X86::PTDPFP16PSV: Opc = X86::TDPFP16PS; break;
690 case X86::PTDPBF8PSV: Opc = X86::TDPBF8PS; break;
691 case X86::PTDPBHF8PSV: Opc = X86::TDPBHF8PS; break;
692 case X86::PTDPHBF8PSV: Opc = X86::TDPHBF8PS; break;
693 case X86::PTDPHF8PSV: Opc = X86::TDPHF8PS; break;
694 // clang-format on
695 default:
696 llvm_unreachable("Unexpected Opcode");
697 }
698 MI.setDesc(TII->get(Opc));
699 MI.tieOperands(0, 1);
700 return true;
701 }
702 case X86::PTILESTOREDV: {
703 for (int i = 1; i >= 0; --i)
704 MI.removeOperand(i);
705 MI.setDesc(TII->get(GET_EGPR_IF_ENABLED(X86::TILESTORED)));
706 return true;
707 }
708#undef GET_EGPR_IF_ENABLED
709 case X86::PTILEZEROV: {
710 for (int i = 2; i > 0; --i) // Remove row, col
711 MI.removeOperand(i);
712 MI.setDesc(TII->get(X86::TILEZERO));
713 return true;
714 }
715 case X86::CALL64pcrel32_RVMARKER:
716 case X86::CALL64r_RVMARKER:
717 case X86::CALL64m_RVMARKER:
718 expandCALL_RVMARKER(MBB, MBBI);
719 return true;
720 case X86::CALL64r_ImpCall:
721 MI.setDesc(TII->get(X86::CALL64r));
722 return true;
723 case X86::ADD32mi_ND:
724 case X86::ADD64mi32_ND:
725 case X86::SUB32mi_ND:
726 case X86::SUB64mi32_ND:
727 case X86::AND32mi_ND:
728 case X86::AND64mi32_ND:
729 case X86::OR32mi_ND:
730 case X86::OR64mi32_ND:
731 case X86::XOR32mi_ND:
732 case X86::XOR64mi32_ND:
733 case X86::ADC32mi_ND:
734 case X86::ADC64mi32_ND:
735 case X86::SBB32mi_ND:
736 case X86::SBB64mi32_ND: {
737 // It's possible for an EVEX-encoded legacy instruction to reach the 15-byte
738 // instruction length limit: 4 bytes of EVEX prefix + 1 byte of opcode + 1
739 // byte of ModRM + 1 byte of SIB + 4 bytes of displacement + 4 bytes of
740 // immediate = 15 bytes in total, e.g.
741 //
742 // subq $184, %fs:257(%rbx, %rcx), %rax
743 //
744 // In such a case, no additional (ADSIZE or segment override) prefix can be
745 // used. To resolve the issue, we split the “long” instruction into 2
746 // instructions:
747 //
748 // movq %fs:257(%rbx, %rcx),%rax
749 // subq $184, %rax
750 //
751 // Therefore we consider the OPmi_ND to be a pseudo instruction to some
752 // extent.
753 const MachineOperand &ImmOp =
754 MI.getOperand(MI.getNumExplicitOperands() - 1);
755 // If the immediate is a expr, conservatively estimate 4 bytes.
756 if (ImmOp.isImm() && isInt<8>(ImmOp.getImm()))
757 return false;
758 int MemOpNo = X86::getFirstAddrOperandIdx(MI);
759 const MachineOperand &DispOp = MI.getOperand(MemOpNo + X86::AddrDisp);
760 Register Base = MI.getOperand(MemOpNo + X86::AddrBaseReg).getReg();
761 // If the displacement is a expr, conservatively estimate 4 bytes.
762 if (Base && DispOp.isImm() && isInt<8>(DispOp.getImm()))
763 return false;
764 // There can only be one of three: SIB, segment override register, ADSIZE
765 Register Index = MI.getOperand(MemOpNo + X86::AddrIndexReg).getReg();
766 unsigned Count = !!MI.getOperand(MemOpNo + X86::AddrSegmentReg).getReg();
767 if (X86II::needSIB(Base, Index, /*In64BitMode=*/true))
768 ++Count;
769 if (getX86MCRegisterClass(X86::GR32RegClassID).contains(Base) ||
770 getX86MCRegisterClass(X86::GR32RegClassID).contains(Index))
771 ++Count;
772 if (Count < 2)
773 return false;
774 unsigned Opc, LoadOpc;
775 switch (Opcode) {
776#define MI_TO_RI(OP) \
777 case X86::OP##32mi_ND: \
778 Opc = X86::OP##32ri; \
779 LoadOpc = X86::MOV32rm; \
780 break; \
781 case X86::OP##64mi32_ND: \
782 Opc = X86::OP##64ri32; \
783 LoadOpc = X86::MOV64rm; \
784 break;
785
786 default:
787 llvm_unreachable("Unexpected Opcode");
788 MI_TO_RI(ADD);
789 MI_TO_RI(SUB);
790 MI_TO_RI(AND);
791 MI_TO_RI(OR);
792 MI_TO_RI(XOR);
793 MI_TO_RI(ADC);
794 MI_TO_RI(SBB);
795#undef MI_TO_RI
796 }
797 // Insert OPri.
798 Register DestReg = MI.getOperand(0).getReg();
799 BuildMI(MBB, std::next(MBBI), DL, TII->get(Opc), DestReg)
800 .addReg(DestReg)
801 .add(ImmOp);
802 // Change OPmi_ND to MOVrm.
803 for (unsigned I = MI.getNumImplicitOperands() + 1; I != 0; --I)
804 MI.removeOperand(MI.getNumOperands() - 1);
805 MI.setDesc(TII->get(LoadOpc));
806 return true;
807 }
808 }
809 llvm_unreachable("Previous switch has a fallthrough?");
810}
811
812// This function creates additional block for storing varargs guarded
813// registers. It adds check for %al into entry block, to skip
814// GuardedRegsBlk if xmm registers should not be stored.
815//
816// EntryBlk[VAStartPseudoInstr] EntryBlk
817// | | .
818// | | .
819// | | GuardedRegsBlk
820// | => | .
821// | | .
822// | TailBlk
823// | |
824// | |
825//
826void X86ExpandPseudoImpl::expandVastartSaveXmmRegs(
827 MachineBasicBlock *EntryBlk,
828 MachineBasicBlock::iterator VAStartPseudoInstr) const {
829 assert(VAStartPseudoInstr->getOpcode() == X86::VASTART_SAVE_XMM_REGS);
830
831 MachineFunction *Func = EntryBlk->getParent();
832 const TargetInstrInfo *TII = STI->getInstrInfo();
833 const DebugLoc &DL = VAStartPseudoInstr->getDebugLoc();
834 Register CountReg = VAStartPseudoInstr->getOperand(0).getReg();
835
836 // Calculate liveins for newly created blocks.
837 LivePhysRegs LiveRegs(*STI->getRegisterInfo());
839
840 LiveRegs.addLiveIns(*EntryBlk);
841 for (MachineInstr &MI : EntryBlk->instrs()) {
842 if (MI.getOpcode() == VAStartPseudoInstr->getOpcode())
843 break;
844
845 LiveRegs.stepForward(MI, Clobbers);
846 }
847
848 // Create the new basic blocks. One block contains all the XMM stores,
849 // and another block is the final destination regardless of whether any
850 // stores were performed.
851 const BasicBlock *LLVMBlk = EntryBlk->getBasicBlock();
852 MachineFunction::iterator EntryBlkIter = ++EntryBlk->getIterator();
853 MachineBasicBlock *GuardedRegsBlk = Func->CreateMachineBasicBlock(LLVMBlk);
854 MachineBasicBlock *TailBlk = Func->CreateMachineBasicBlock(LLVMBlk);
855 Func->insert(EntryBlkIter, GuardedRegsBlk);
856 Func->insert(EntryBlkIter, TailBlk);
857
858 // Transfer the remainder of EntryBlk and its successor edges to TailBlk.
859 TailBlk->splice(TailBlk->begin(), EntryBlk,
860 std::next(MachineBasicBlock::iterator(VAStartPseudoInstr)),
861 EntryBlk->end());
862 TailBlk->transferSuccessorsAndUpdatePHIs(EntryBlk);
863
864 uint64_t FrameOffset = VAStartPseudoInstr->getOperand(4).getImm();
865 uint64_t VarArgsRegsOffset = VAStartPseudoInstr->getOperand(6).getImm();
866
867 // TODO: add support for YMM and ZMM here.
868 unsigned MOVOpc = STI->hasAVX() ? X86::VMOVAPSmr : X86::MOVAPSmr;
869
870 // In the XMM save block, save all the XMM argument registers.
871 for (int64_t OpndIdx = 7, RegIdx = 0;
872 OpndIdx < VAStartPseudoInstr->getNumOperands() - 1;
873 OpndIdx++, RegIdx++) {
874 auto NewMI = BuildMI(GuardedRegsBlk, DL, TII->get(MOVOpc));
875 for (int i = 0; i < X86::AddrNumOperands; ++i) {
876 if (i == X86::AddrDisp)
877 NewMI.addImm(FrameOffset + VarArgsRegsOffset + RegIdx * 16);
878 else
879 NewMI.add(VAStartPseudoInstr->getOperand(i + 1));
880 }
881 NewMI.addReg(VAStartPseudoInstr->getOperand(OpndIdx).getReg());
882 assert(VAStartPseudoInstr->getOperand(OpndIdx).getReg().isPhysical());
883 }
884
885 // The original block will now fall through to the GuardedRegsBlk.
886 EntryBlk->addSuccessor(GuardedRegsBlk);
887 // The GuardedRegsBlk will fall through to the TailBlk.
888 GuardedRegsBlk->addSuccessor(TailBlk);
889
890 if (!STI->isCallingConvWin64(Func->getFunction().getCallingConv())) {
891 // If %al is 0, branch around the XMM save block.
892 BuildMI(EntryBlk, DL, TII->get(X86::TEST8rr))
893 .addReg(CountReg)
894 .addReg(CountReg);
895 BuildMI(EntryBlk, DL, TII->get(X86::JCC_1))
896 .addMBB(TailBlk)
898 EntryBlk->addSuccessor(TailBlk);
899 }
900
901 // Add liveins to the created block.
902 addLiveIns(*GuardedRegsBlk, LiveRegs);
903 addLiveIns(*TailBlk, LiveRegs);
904
905 // Delete the pseudo.
906 VAStartPseudoInstr->eraseFromParent();
907}
908
909/// Expand all pseudo instructions contained in \p MBB.
910/// \returns true if any expansion occurred for \p MBB.
911bool X86ExpandPseudoImpl::expandMBB(MachineBasicBlock &MBB) {
912 bool Modified = false;
913
914 // MBBI may be invalidated by the expansion.
916 while (MBBI != E) {
917 MachineBasicBlock::iterator NMBBI = std::next(MBBI);
918 Modified |= expandMI(MBB, MBBI);
919 MBBI = NMBBI;
920 }
921
922 return Modified;
923}
924
925bool X86ExpandPseudoImpl::expandPseudosWhichAffectControlFlow(
926 MachineFunction &MF) {
927 // Currently pseudo which affects control flow is only
928 // X86::VASTART_SAVE_XMM_REGS which is located in Entry block.
929 // So we do not need to evaluate other blocks.
930 for (MachineInstr &Instr : MF.front().instrs()) {
931 if (Instr.getOpcode() == X86::VASTART_SAVE_XMM_REGS) {
932 expandVastartSaveXmmRegs(&(MF.front()), Instr);
933 return true;
934 }
935 }
936
937 return false;
938}
939
940bool X86ExpandPseudoImpl::runOnMachineFunction(MachineFunction &MF) {
941 STI = &MF.getSubtarget<X86Subtarget>();
942 TII = STI->getInstrInfo();
943 TRI = STI->getRegisterInfo();
944 X86FI = MF.getInfo<X86MachineFunctionInfo>();
945 X86FL = STI->getFrameLowering();
946
947 bool Modified = expandPseudosWhichAffectControlFlow(MF);
948
949 for (MachineBasicBlock &MBB : MF)
950 Modified |= expandMBB(MBB);
951 return Modified;
952}
953
954/// Returns an instance of the pseudo instruction expansion pass.
956 return new X86ExpandPseudoLegacy();
957}
958
959bool X86ExpandPseudoLegacy::runOnMachineFunction(MachineFunction &MF) {
960 X86ExpandPseudoImpl Impl;
961 return Impl.runOnMachineFunction(MF);
962}
963
964PreservedAnalyses
967 X86ExpandPseudoImpl Impl;
968 bool Changed = Impl.runOnMachineFunction(MF);
969 if (!Changed)
970 return PreservedAnalyses::all();
971
974 return PA;
975}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
unsigned uint64_t
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
MachineBasicBlock MachineBasicBlock::iterator MBBI
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
#define DEBUG_TYPE
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
This file implements the LivePhysRegs utility for tracking liveness of physical registers.
#define I(x, y, z)
Definition MD5.cpp:57
Register Reg
Register const TargetRegisterInfo * TRI
Promote Memory to Register
Definition Mem2Reg.cpp:110
#define P(N)
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
static bool contains(SmallPtrSetImpl< ConstantExpr * > &Cache, ConstantExpr *Expr, Constant *C)
Definition Value.cpp:484
static Target * FirstTarget
#define GET_EGPR_IF_ENABLED(OPC)
#define MI_TO_RI(OP)
#define X86_EXPAND_PSEUDO_NAME
Represent the analysis usage information of a pass.
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition Pass.cpp:275
LLVM Basic Block Representation.
Definition BasicBlock.h:62
Represents analyses that only rely on functions' control flow.
Definition Analysis.h:73
A debug info location.
Definition DebugLoc.h:126
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, Register DestReg, Register SrcReg, bool KillSrc, bool RenamableDest=false, bool RenamableSrc=false) const override
Emit instructions to copy a pair of physical registers.
LLVM_ABI void transferSuccessorsAndUpdatePHIs(MachineBasicBlock *FromMBB)
Transfers all the successors, as in transferSuccessors, and update PHI operands in the successor bloc...
const BasicBlock * getBasicBlock() const
Return the LLVM basic block that this instance corresponded to originally.
LLVM_ABI void addSuccessor(MachineBasicBlock *Succ, BranchProbability Prob=BranchProbability::getUnknown())
Add Succ as a successor of this MachineBasicBlock.
LLVM_ABI void eraseFromParent()
This method unlinks 'this' from the containing function and deletes it.
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
LLVM_ABI instr_iterator erase(instr_iterator I)
Remove an instruction from the instruction list and delete it.
void splice(iterator Where, MachineBasicBlock *Other, iterator From)
Take an instruction from MBB 'Other' at the position From, and insert it into this MBB right before '...
MachineInstrBundleIterator< MachineInstr > iterator
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
Properties which a MachineFunction may have at a given point in time.
void moveAdditionalCallInfo(const MachineInstr *Old, const MachineInstr *New)
Move the call site info from Old to \New call site info.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
BasicBlockListType::iterator iterator
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
const MachineBasicBlock & front() const
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags F, LLT MemTy, Align BaseAlignment, const MMOMetadata &Metadata=MMOMetadata(), SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
MachineBasicBlock * CreateMachineBasicBlock(const BasicBlock *BB=nullptr, std::optional< UniqueBBID > BBID=std::nullopt)
CreateMachineInstr - Allocate a new MachineInstr.
void insert(iterator MBBI, MachineBasicBlock *MBB)
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
const MachineInstrBuilder & addExternalSymbol(const char *FnName, unsigned TargetFlags=0) const
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
const MachineInstrBuilder & addRegMask(const uint32_t *Mask) const
const MachineInstrBuilder & addGlobalAddress(const GlobalValue *GV, int64_t Offset=0, unsigned TargetFlags=0) const
const MachineInstrBuilder & addMBB(MachineBasicBlock *MBB, unsigned TargetFlags=0) const
MachineInstr * getInstr() const
If conversion operators fail, use this method to get the MachineInstr explicitly.
Representation of each machine instruction.
LLVM_ABI void setCFIType(MachineFunction &MF, uint32_t Type)
Set the CFI type for the instruction.
unsigned getNumOperands() const
Retuns the total number of operands.
LLVM_ABI void addOperand(MachineFunction &MF, const MachineOperand &Op)
Add the specified operand to the instruction.
LLVM_ABI void copyImplicitOps(MachineFunction &MF, const MachineInstr &MI)
Copy implicit register operands from specified instruction to this instruction.
const DebugLoc & getDebugLoc() const
Returns the debug location id of this MachineInstr.
const MachineOperand & getOperand(unsigned i) const
LLVM_ABI MachineInstrBundleIterator< MachineInstr > eraseFromParent()
Unlink 'this' from the containing basic block and delete it.
MachineOperand class - Representation of each machine instruction operand.
const GlobalValue * getGlobal() const
int64_t getImm() const
bool isReg() const
isReg - Tests if this is a MO_Register operand.
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
bool isSymbol() const
isSymbol - Tests if this is a MO_ExternalSymbol operand.
void setIsKill(bool Val=true)
unsigned getTargetFlags() const
bool isGlobal() const
isGlobal - Tests if this is a MO_GlobalAddress operand.
const char * getSymbolName() const
Register getReg() const
getReg - Returns the register number.
static MachineOperand CreateReg(Register Reg, bool isDef, bool isImp=false, bool isKill=false, bool isDead=false, bool isUndef=false, bool isEarlyClobber=false, unsigned SubReg=0, bool isDebug=false, bool isInternalRead=false, bool isRenamable=false)
int64_t getOffset() const
Return the offset from the symbol in this operand.
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
PreservedAnalyses & preserveSet()
Mark an analysis set as preserved.
Definition Analysis.h:151
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
CodeModel::Model getCodeModel() const
Returns the code model.
Target - Wrapper for Target specific information.
bool isOSWindows() const
Tests whether the OS is Windows.
Definition Triple.h:776
PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
int64_t mergeSPAdd(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, int64_t AddOffset, bool doMergeWithPrevious) const
Equivalent to: mergeSPUpdates(MBB, MBBI, [AddOffset](int64_t Offset) { return AddOffset + Offset; }...
void emitSPUpdate(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, const DebugLoc &DL, int64_t NumBytes, bool InEpilogue) const
Emit a series of instructions to increment / decrement the stack pointer by a constant value.
X86MachineFunctionInfo - This class is derived from MachineFunction and contains private X86 target-s...
bool isTargetWin64() const
bool isTarget64BitLP64() const
Is this x86_64 with the LP64 programming model (standard AMD64, no x32)?
const Triple & getTargetTriple() const
const X86InstrInfo * getInstrInfo() const override
bool isCallingConvWin64(CallingConv::ID CC) const
bool isTargetUEFI64() const
const X86RegisterInfo * getRegisterInfo() const override
bool hasAVX() const
const X86FrameLowering * getFrameLowering() const override
self_iterator getIterator()
Definition ilist_node.h:123
Changed
Pass manager infrastructure for declaring and invalidating analyses.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ BasicBlock
Various leaf nodes.
Definition ISDOpcodes.h:81
@ X86
Windows x64, Windows Itanium (IA-64)
Definition MCAsmInfo.h:53
bool needSIB(MCRegister BaseReg, MCRegister IndexReg, bool In64BitMode)
int getFirstAddrOperandIdx(const MachineInstr &MI)
Return the index of the instruction's first address operand, if it has a memory reference,...
@ AddrNumOperands
Definition X86BaseInfo.h:36
NodeAddr< InstrNode * > Instr
Definition RDFGraph.h:389
NodeAddr< FuncNode * > Func
Definition RDFGraph.h:393
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
Definition STLExtras.h:315
@ Offset
Definition DWP.cpp:577
LLVM_ABI void finalizeBundle(MachineBasicBlock &MBB, MachineBasicBlock::instr_iterator FirstMI, MachineBasicBlock::instr_iterator LastMI)
finalizeBundle - Finalize a machine instruction bundle which includes a sequence of instructions star...
FunctionPass * createX86ExpandPseudoLegacyPass()
Returns an instance of the pseudo instruction expansion pass.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
Definition MathExtras.h:166
static bool isMem(const MachineInstr &MI, unsigned Op)
constexpr RegState getKillRegState(bool B)
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
constexpr RegState getDeadRegState(bool B)
LLVM_ABI PreservedAnalyses getMachineFunctionPassPreservedAnalyses()
Returns the minimum set of Analyses that all machine function passes must preserve.
constexpr bool isUInt(uint64_t x)
Checks if an unsigned integer fits into the given bit width.
Definition MathExtras.h:190
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
Definition InstrProf.h:145
DWARFExpression::Operation Op
LLVM_ABI void addLiveIns(MachineBasicBlock &MBB, const LivePhysRegs &LiveRegs)
Adds registers contained in LiveRegs to the block live-in list of MBB.