Home
last modified time | relevance | path

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

/external/llvm/include/llvm/CodeGen/
DFunctionLoweringInfo.h152 const LiveOutInfo *LOI = &LiveOutRegInfo[Reg]; in GetLiveOutRegInfo() local
153 if (!LOI->IsValid) in GetLiveOutRegInfo()
156 return LOI; in GetLiveOutRegInfo()
174 LiveOutInfo &LOI = LiveOutRegInfo[Reg]; in AddLiveOutRegInfo() local
175 LOI.NumSignBits = NumSignBits; in AddLiveOutRegInfo()
176 LOI.KnownOne = KnownOne; in AddLiveOutRegInfo()
177 LOI.KnownZero = KnownZero; in AddLiveOutRegInfo()
/external/llvm/lib/CodeGen/SelectionDAG/
DFunctionLoweringInfo.cpp249 LiveOutInfo *LOI = &LiveOutRegInfo[Reg]; in GetLiveOutRegInfo() local
250 if (!LOI->IsValid) in GetLiveOutRegInfo()
253 if (BitWidth > LOI->KnownZero.getBitWidth()) { in GetLiveOutRegInfo()
254 LOI->NumSignBits = 1; in GetLiveOutRegInfo()
255 LOI->KnownZero = LOI->KnownZero.zextOrTrunc(BitWidth); in GetLiveOutRegInfo()
256 LOI->KnownOne = LOI->KnownOne.zextOrTrunc(BitWidth); in GetLiveOutRegInfo()
259 return LOI; in GetLiveOutRegInfo()
DSelectionDAGBuilder.cpp711 const FunctionLoweringInfo::LiveOutInfo *LOI = in getCopyFromRegs() local
713 if (!LOI) in getCopyFromRegs()
717 unsigned NumSignBits = LOI->NumSignBits; in getCopyFromRegs()
718 unsigned NumZeroBits = LOI->KnownZero.countLeadingOnes(); in getCopyFromRegs()
/external/llvm/lib/ExecutionEngine/JIT/
DJIT.cpp166 LibgccObjectInfo* LOI = (struct LibgccObjectInfo*) in DarwinRegisterFrame() local
168 assert(LOI && "This should be preallocated by the runtime"); in DarwinRegisterFrame()
188 ob->fde_end = (char*)LOI->unseenObjects; in DarwinRegisterFrame()
189 ob->next = LOI->unseenObjects; in DarwinRegisterFrame()
192 LOI->unseenObjects = ob; in DarwinRegisterFrame()
196 LOI); in DarwinRegisterFrame()
299 struct LibgccObjectInfo* LOI = (struct LibgccObjectInfo*) in JIT() local
305 if (!LOI) in JIT()
306 LOI = (LibgccObjectInfo*)calloc(sizeof(struct LibgccObjectInfo), 1); in JIT()
307 _keymgr_set_and_unlock_processwide_ptr(KEYMGR_GCC3_DW2_OBJ_LIST, LOI); in JIT()