Searched refs:LivePhysRegs (Results 1 - 8 of 8) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DLivePhysRegs.h1 //===- llvm/CodeGen/LivePhysRegs.h - Live Physical Register Set -*- C++ -*-===//
10 // This file implements the LivePhysRegs utility for tracking liveness of
43 class LivePhysRegs { class in namespace:llvm
47 LivePhysRegs(const LivePhysRegs&) LLVM_DELETED_FUNCTION;
48 LivePhysRegs &operator=(const LivePhysRegs&) LLVM_DELETED_FUNCTION;
50 /// \brief Constructs a new empty LivePhysRegs set.
51 LivePhysRegs() : TRI(nullptr), LiveRegs() {} function in class:llvm::LivePhysRegs
53 /// \brief Constructs and initialize an empty LivePhysRegs se
54 LivePhysRegs(const TargetRegisterInfo *TRI) : TRI(TRI) { function in class:llvm::LivePhysRegs
[all...]
H A DStackMapLivenessAnalysis.h19 #include "llvm/CodeGen/LivePhysRegs.h"
36 LivePhysRegs LiveRegs;
/external/llvm/lib/CodeGen/
H A DLivePhysRegs.cpp1 //===--- LivePhysRegs.cpp - Live Physical Register Set --------------------===//
10 // This file implements the LivePhysRegs utility for tracking liveness of
16 #include "llvm/CodeGen/LivePhysRegs.h"
24 void LivePhysRegs::removeRegsInMask(const MachineOperand &MO) {
36 void LivePhysRegs::stepBackward(const MachineInstr &MI) {
65 void LivePhysRegs::stepForward(const MachineInstr &MI) {
92 void LivePhysRegs::print(raw_ostream &OS) const {
110 void LivePhysRegs::dump() const {
H A DDeadMachineInstructionElim.cpp36 BitVector LivePhysRegs; member in class:__anon25737::DeadMachineInstructionElim
73 if (LivePhysRegs.test(Reg) || MRI->isReserved(Reg))
104 LivePhysRegs = MRI->getReservedRegs();
106 // Add live-ins from sucessors to LivePhysRegs. Normally, physregs are not
113 LivePhysRegs.set(*LI);
156 LivePhysRegs.reset(*SR);
160 LivePhysRegs.clearBitsNotInMask(MO.getRegMask());
171 LivePhysRegs.set(*AI);
182 LivePhysRegs.clear();
H A DStackMapLivenessAnalysis.cpp123 for (LivePhysRegs::const_iterator RI = LiveRegs.begin(), RE = LiveRegs.end();
H A DAndroid.mk40 LivePhysRegs.cpp \
H A DIfConversion.cpp19 #include "llvm/CodeGen/LivePhysRegs.h"
167 LivePhysRegs Redefs;
168 LivePhysRegs DontKill;
973 static void UpdatePredRedefs(MachineInstr *MI, LivePhysRegs &Redefs) {
1000 static void RemoveKills(MachineInstr &MI, const LivePhysRegs &DontKill) {
1015 const LivePhysRegs &DontKill,
H A DExecutionDepsFix.cpp25 #include "llvm/CodeGen/LivePhysRegs.h"
145 LivePhysRegs LiveRegSet;

Completed in 109 milliseconds