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.h68 SmallPtrSet<Delegate *, 1> TheDelegates; variable
164 assert(TheDelegates.count(delegate) && in resetDelegate()
166 TheDelegates.erase(delegate); in resetDelegate()
170 assert(delegate && !TheDelegates.count(delegate) && in addDelegate()
174 TheDelegates.insert(delegate); in addDelegate()
178 for (auto *TheDelegate : TheDelegates) in noteNewVirtualRegister()
183 for (auto *TheDelegate : TheDelegates) in noteCloneVirtualRegister()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineRegisterInfo.cpp51 TheDelegates.clear(); in MachineRegisterInfo()