Home
last modified time | relevance | path

Searched refs:TheDelegates (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h70 SmallPtrSet<Delegate *, 1> TheDelegates; variable
166 assert(TheDelegates.count(delegate) && in resetDelegate()
168 TheDelegates.erase(delegate); in resetDelegate()
172 assert(delegate && !TheDelegates.count(delegate) && in addDelegate()
176 TheDelegates.insert(delegate); in addDelegate()
180 for (auto *TheDelegate : TheDelegates) in noteNewVirtualRegister()
185 for (auto *TheDelegate : TheDelegates) in noteCloneVirtualRegister()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp52 TheDelegates.clear(); in MachineRegisterInfo()