HomeSort by relevance Sort by last modified time
    Searched defs:LOI (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 155 const LiveOutInfo *LOI = &LiveOutRegInfo[Reg];
156 if (!LOI->IsValid)
159 return LOI;
177 LiveOutInfo &LOI = LiveOutRegInfo[Reg];
178 LOI.NumSignBits = NumSignBits;
179 LOI.KnownOne = KnownOne;
180 LOI.KnownZero = KnownZero;
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 166 LibgccObjectInfo* LOI = (struct LibgccObjectInfo*)
168 assert(LOI && "This should be preallocated by the runtime");
188 ob->fde_end = (char*)LOI->unseenObjects;
189 ob->next = LOI->unseenObjects;
192 LOI->unseenObjects = ob;
196 LOI);
299 struct LibgccObjectInfo* LOI = (struct LibgccObjectInfo*)
305 if (!LOI)
306 LOI = (LibgccObjectInfo*)calloc(sizeof(struct LibgccObjectInfo), 1);
307 _keymgr_set_and_unlock_processwide_ptr(KEYMGR_GCC3_DW2_OBJ_LIST, LOI);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 684 const FunctionLoweringInfo::LiveOutInfo *LOI =
686 if (!LOI)
690 unsigned NumSignBits = LOI->NumSignBits;
691 unsigned NumZeroBits = LOI->KnownZero.countLeadingOnes();
    [all...]

Completed in 32 milliseconds