LLVM 20.0.0git
XCoreFrameToArgsOffsetElim.cpp
Go to the documentation of this file.
1//===-- XCoreFrameToArgsOffsetElim.cpp ----------------------------*- C++ -*-=//
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// Replace Pseudo FRAME_TO_ARGS_OFFSET with the appropriate real offset.
10//
11//===----------------------------------------------------------------------===//
12
13#include "XCore.h"
14#include "XCoreInstrInfo.h"
15#include "XCoreSubtarget.h"
19using namespace llvm;
20
21namespace {
22 struct XCoreFTAOElim : public MachineFunctionPass {
23 static char ID;
24 XCoreFTAOElim() : MachineFunctionPass(ID) {}
25
26 bool runOnMachineFunction(MachineFunction &Fn) override;
29 MachineFunctionProperties::Property::NoVRegs);
30 }
31
32 StringRef getPassName() const override {
33 return "XCore FRAME_TO_ARGS_OFFSET Elimination";
34 }
35 };
36 char XCoreFTAOElim::ID = 0;
37}
38
39/// createXCoreFrameToArgsOffsetEliminationPass - returns an instance of the
40/// Frame to args offset elimination pass
42 return new XCoreFTAOElim();
43}
44
45bool XCoreFTAOElim::runOnMachineFunction(MachineFunction &MF) {
46 const XCoreInstrInfo &TII =
47 *static_cast<const XCoreInstrInfo *>(MF.getSubtarget().getInstrInfo());
48 unsigned StackSize = MF.getFrameInfo().getStackSize();
49 for (MachineBasicBlock &MBB : MF) {
51 MBBI != EE; ++MBBI) {
52 if (MBBI->getOpcode() == XCore::FRAME_TO_ARGS_OFFSET) {
53 MachineInstr &OldInst = *MBBI;
54 Register Reg = OldInst.getOperand(0).getReg();
55 MBBI = TII.loadImmediate(MBB, MBBI, Reg, StackSize);
56 OldInst.eraseFromParent();
57 }
58 }
59 }
60 return true;
61}
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator MBBI
const HexagonInstrInfo * TII
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:310
uint64_t getStackSize() const
Return the number of bytes that must be allocated to hold all of the fixed size frame objects.
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
virtual bool runOnMachineFunction(MachineFunction &MF)=0
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
virtual MachineFunctionProperties getRequiredProperties() const
Properties which a MachineFunction may have at a given point in time.
MachineFunctionProperties & set(Property P)
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
Representation of each machine instruction.
Definition: MachineInstr.h:69
void eraseFromParent()
Unlink 'this' from the containing basic block and delete it.
const MachineOperand & getOperand(unsigned i) const
Definition: MachineInstr.h:585
Register getReg() const
getReg - Returns the register number.
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Definition: Pass.cpp:81
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
virtual const TargetInstrInfo * getInstrInfo() const
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
FunctionPass * createXCoreFrameToArgsOffsetEliminationPass()
createXCoreFrameToArgsOffsetEliminationPass - returns an instance of the Frame to args offset elimina...