LLVM 19.0.0git
GISelChangeObserver.cpp
Go to the documentation of this file.
1//===-- lib/CodeGen/GlobalISel/GISelChangeObserver.cpp --------------------===//
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 constains common code to combine machine functions at generic
10// level.
11//===----------------------------------------------------------------------===//
12
15
16using namespace llvm;
17
19 const MachineRegisterInfo &MRI, Register Reg) {
20 for (auto &ChangingMI : MRI.use_instructions(Reg)) {
21 changingInstr(ChangingMI);
22 ChangingAllUsesOfReg.insert(&ChangingMI);
23 }
24}
25
27 for (auto *ChangedMI : ChangingAllUsesOfReg)
28 changedInstr(*ChangedMI);
29 ChangingAllUsesOfReg.clear();
30}
31
34 : MF(MF), Delegate(Del) {
35 // Register this as the delegate for handling insertions and deletions of
36 // instructions.
37 MF.setDelegate(Del);
38}
39
41
43 GISelChangeObserver &Observer)
44 : MF(MF) {
45 MF.setObserver(&Observer);
46}
47
unsigned const MachineRegisterInfo * MRI
This contains common code to allow clients to notify changes to machine instr.
Abstract class that contains various methods for clients to notify about changes.
virtual void changingInstr(MachineInstr &MI)=0
This instruction is about to be mutated in some way.
void finishedChangingAllUsesOfReg()
All instructions reported as changing by changingAllUsesOfReg() have finished being changed.
virtual void changedInstr(MachineInstr &MI)=0
This instruction was mutated in some way.
void changingAllUsesOfReg(const MachineRegisterInfo &MRI, Register Reg)
All the instructions using the given register are being changed.
void setObserver(GISelChangeObserver *O)
void resetDelegate(Delegate *delegate)
Reset the currently registered delegate - otherwise assert.
void setDelegate(Delegate *delegate)
Set the delegate.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
RAIIDelegateInstaller(MachineFunction &MF, MachineFunction::Delegate *Del)
RAIIMFObserverInstaller(MachineFunction &MF, GISelChangeObserver &Observer)
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18