Home
last modified time | relevance | path

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

/external/llvm/include/llvm/CodeGen/
DFunctionLoweringInfo.h156 const LiveOutInfo *LOI = &LiveOutRegInfo[Reg]; in GetLiveOutRegInfo() local
157 if (!LOI->IsValid) in GetLiveOutRegInfo()
160 return LOI; in GetLiveOutRegInfo()
178 LiveOutInfo &LOI = LiveOutRegInfo[Reg]; in AddLiveOutRegInfo() local
179 LOI.NumSignBits = NumSignBits; in AddLiveOutRegInfo()
180 LOI.KnownOne = KnownOne; in AddLiveOutRegInfo()
181 LOI.KnownZero = KnownZero; in AddLiveOutRegInfo()
/external/llvm/lib/CodeGen/SelectionDAG/
DFunctionLoweringInfo.cpp247 LiveOutInfo *LOI = &LiveOutRegInfo[Reg]; in GetLiveOutRegInfo() local
248 if (!LOI->IsValid) in GetLiveOutRegInfo()
251 if (BitWidth > LOI->KnownZero.getBitWidth()) { in GetLiveOutRegInfo()
252 LOI->NumSignBits = 1; in GetLiveOutRegInfo()
253 LOI->KnownZero = LOI->KnownZero.zextOrTrunc(BitWidth); in GetLiveOutRegInfo()
254 LOI->KnownOne = LOI->KnownOne.zextOrTrunc(BitWidth); in GetLiveOutRegInfo()
257 return LOI; in GetLiveOutRegInfo()
DSelectionDAGBuilder.cpp679 const FunctionLoweringInfo::LiveOutInfo *LOI = in getCopyFromRegs() local
681 if (!LOI) in getCopyFromRegs()
685 unsigned NumSignBits = LOI->NumSignBits; in getCopyFromRegs()
686 unsigned NumZeroBits = LOI->KnownZero.countLeadingOnes(); in getCopyFromRegs()
/external/llvm/lib/ExecutionEngine/JIT/
DJIT.cpp165 LibgccObjectInfo* LOI = (struct LibgccObjectInfo*) in DarwinRegisterFrame() local
167 assert(LOI && "This should be preallocated by the runtime"); in DarwinRegisterFrame()
187 ob->fde_end = (char*)LOI->unseenObjects; in DarwinRegisterFrame()
188 ob->next = LOI->unseenObjects; in DarwinRegisterFrame()
191 LOI->unseenObjects = ob; in DarwinRegisterFrame()
195 LOI); in DarwinRegisterFrame()
298 struct LibgccObjectInfo* LOI = (struct LibgccObjectInfo*) in JIT() local
304 if (!LOI) in JIT()
305 LOI = (LibgccObjectInfo*)calloc(sizeof(struct LibgccObjectInfo), 1); in JIT()
306 _keymgr_set_and_unlock_processwide_ptr(KEYMGR_GCC3_DW2_OBJ_LIST, LOI); in JIT()
/external/llvm/lib/CodeGen/
DDeadMachineInstructionElim.cpp106 for (MachineRegisterInfo::liveout_iterator LOI = MRI->liveout_begin(), in runOnMachineFunction() local
107 LOE = MRI->liveout_end(); LOI != LOE; ++LOI) { in runOnMachineFunction()
108 unsigned Reg = *LOI; in runOnMachineFunction()