Searched defs:NumUnits (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFUnitIndex.h35 uint32_t NumUnits; member in struct:llvm::DWARFUnitIndex::Header
/external/llvm/include/llvm/MC/
H A DMCSchedule.h30 unsigned NumUnits; // Number of resource of this kind member in struct:llvm::MCProcResourceDesc
48 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
/external/llvm/lib/CodeGen/
H A DTargetSchedule.cpp65 unsigned NumUnits = SchedModel.getProcResource(Idx)->NumUnits; local
66 if (NumUnits > 0)
67 ResourceLCM = lcm(ResourceLCM, NumUnits);
71 unsigned NumUnits = SchedModel.getProcResource(Idx)->NumUnits; local
72 ResourceFactors[Idx] = NumUnits ? (ResourceLCM / NumUnits) : 0;
/external/llvm/utils/TableGen/
H A DSubtargetEmitter.cpp609 OS << "\n// {Name, NumUnits, SuperIdx, IsBuffered}\n";
619 unsigned NumUnits = 0; local
625 NumUnits += (*RUI)->getValueAsInt("NumUnits");
635 NumUnits = PRDef->getValueAsInt("NumUnits");
643 OS << NumUnits << ", " << SuperIdx << ", "

Completed in 113 milliseconds