Home
last modified time | relevance | path

Searched refs:LOI (Results 1 – 3 of 3) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DFunctionLoweringInfo.h221 const LiveOutInfo *LOI = &LiveOutRegInfo[Reg]; in GetLiveOutRegInfo() local
222 if (!LOI->IsValid) in GetLiveOutRegInfo()
225 return LOI; in GetLiveOutRegInfo()
243 LiveOutInfo &LOI = LiveOutRegInfo[Reg]; in AddLiveOutRegInfo() local
244 LOI.NumSignBits = NumSignBits; in AddLiveOutRegInfo()
245 LOI.Known.One = Known.One; in AddLiveOutRegInfo()
246 LOI.Known.Zero = Known.Zero; in AddLiveOutRegInfo()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DFunctionLoweringInfo.cpp421 LiveOutInfo *LOI = &LiveOutRegInfo[Reg]; in GetLiveOutRegInfo() local
422 if (!LOI->IsValid) in GetLiveOutRegInfo()
425 if (BitWidth > LOI->Known.getBitWidth()) { in GetLiveOutRegInfo()
426 LOI->NumSignBits = 1; in GetLiveOutRegInfo()
427 LOI->Known = LOI->Known.anyext(BitWidth); in GetLiveOutRegInfo()
430 return LOI; in GetLiveOutRegInfo()
H A DSelectionDAGBuilder.cpp847 const FunctionLoweringInfo::LiveOutInfo *LOI = in getCopyFromRegs() local
849 if (!LOI) in getCopyFromRegs()
853 unsigned NumSignBits = LOI->NumSignBits; in getCopyFromRegs()
854 unsigned NumZeroBits = LOI->Known.countMinLeadingZeros(); in getCopyFromRegs()