HomeSort by relevance Sort by last modified time
    Searched refs:NumUnits (Results 1 - 19 of 19) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
InstructionTables.cpp 38 unsigned NumUnits = ProcResource.NumUnits;
41 Cycles /= NumUnits;
42 for (unsigned I = 0, E = NumUnits; I < E; ++I) {
52 for (unsigned I1 = 0; I1 < NumUnits; ++I1) {
56 double RUCycles = Cycles / (NumUnits * SubUnit.NumUnits);
57 for (unsigned I2 = 0, E2 = SubUnit.NumUnits; I2 < E2; ++I2) {
ResourcePressureView.cpp 29 unsigned NumUnits = ProcResource.NumUnits;
31 if (ProcResource.SubUnitsIdxBegin || !NumUnits)
35 R2VIndex += ProcResource.NumUnits;
65 unsigned NumUnits = ProcResource.NumUnits;
67 if (ProcResource.SubUnitsIdxBegin || !NumUnits)
70 for (unsigned J = 0; J < NumUnits; ++J) {
73 if (NumUnits > 1)
105 unsigned NumUnits = ProcResource.NumUnits
    [all...]
Support.cpp 44 for (unsigned U = 0; U < Desc.NumUnits; ++U) {
69 double Throughput = static_cast<double>(ResourceCycles) / MCDesc.NumUnits;
75 // - (NumUnits / ResourceCycles) for every consumed processor resource.
Scheduler.h 75 // number of units (i.e. field 'NumUnits' in 'ProcResourceUnits').
176 : ((1ULL << Desc.NumUnits) - 1);
204 bool isReady(unsigned NumUnits = 1) const {
206 llvm::countPopulation(ReadyMask) >= NumUnits;
322 bool isReady(uint64_t ResourceID, unsigned NumUnits) const {
324 return Resource.isReady(NumUnits);
Instruction.h 246 unsigned NumUnits;
248 : CS(Cycles), NumUnits(Units) {}
Scheduler.cpp 154 unsigned NumUnits =
155 E.second.isReserved() ? 0U : E.second.NumUnits;
156 return isReady(E.first, NumUnits);
InstrBuilder.cpp 84 A.second.NumUnits = 0;
104 B.second.NumUnits++;
  /external/llvm/include/llvm/MC/
MCSchedule.h 30 unsigned NumUnits; // Number of resource of this kind
48 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
  /external/llvm/lib/CodeGen/
TargetSchedule.cpp 65 unsigned NumUnits = SchedModel.getProcResource(Idx)->NumUnits;
66 if (NumUnits > 0)
67 ResourceLCM = lcm(ResourceLCM, NumUnits);
71 unsigned NumUnits = SchedModel.getProcResource(Idx)->NumUnits;
72 ResourceFactors[Idx] = NumUnits ? (ResourceLCM / NumUnits) : 0;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCSchedule.h 34 unsigned NumUnits; // Number of resource of this kind
52 // of `NumUnits` elements containing the ProcResourceIdx of the sub units.
57 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
TargetSchedule.cpp 74 unsigned NumUnits = SchedModel.getProcResource(Idx)->NumUnits;
75 if (NumUnits > 0)
76 ResourceLCM = lcm(ResourceLCM, NumUnits);
80 unsigned NumUnits = SchedModel.getProcResource(Idx)->NumUnits;
81 ResourceFactors[Idx] = NumUnits ? (ResourceLCM / NumUnits) : 0;
  /external/llvm/lib/DebugInfo/DWARF/
DWARFUnitIndex.cpp 23 NumUnits = IndexData.getU32(OffsetPtr);
51 (2 * Header.NumUnits + 1) * 4 * Header.NumColumns))
56 llvm::make_unique<Entry::SectionContribution *[]>(Header.NumUnits);
88 for (unsigned i = 0; i != Header.NumUnits; ++i) {
95 for (unsigned i = 0; i != Header.NumUnits; ++i) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DWARFUnitIndex.cpp 27 NumUnits = IndexData.getU32(OffsetPtr);
55 (2 * Header.NumUnits + 1) * 4 * Header.NumColumns))
60 llvm::make_unique<Entry::SectionContribution *[]>(Header.NumUnits);
92 for (unsigned i = 0; i != Header.NumUnits; ++i) {
99 for (unsigned i = 0; i != Header.NumUnits; ++i) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
MCSchedule.cpp 98 unsigned NumUnits = SM.getProcResource(I->ProcResourceIdx)->NumUnits;
99 double Temp = NumUnits * 1.0 / I->Cycles;
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnitIndex.h 36 uint32_t NumUnits;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnitIndex.h 38 uint32_t NumUnits;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/
Analysis.cpp 353 SubResIdx != ProcResDesc->SubUnitsIdxBegin + ProcResDesc->NumUnits;
366 SubResIdx != ProcResDesc->SubUnitsIdxBegin + ProcResDesc->NumUnits;
368 ProcResUnitUsage[*SubResIdx] += RemainingCycles / ProcResDesc->NumUnits;
740 ProcResDesc->NumUnits);
  /external/llvm/utils/TableGen/
SubtargetEmitter.cpp 604 OS << "\n// {Name, NumUnits, SuperIdx, IsBuffered}\n";
614 unsigned NumUnits = 0;
619 NumUnits += RU->getValueAsInt("NumUnits");
629 NumUnits = PRDef->getValueAsInt("NumUnits");
637 OS << NumUnits << ", " << SuperIdx << ", "
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
SubtargetEmitter.cpp 607 for (unsigned J = 0; J < RU->getValueAsInt("NumUnits"); ++J) {
783 OS << "\n// {Name, NumUnits, SuperIdx, IsBuffered, SubUnitsIdxBegin}\n";
795 unsigned NumUnits = 0;
801 NumUnits += RU->getValueAsInt("NumUnits");
802 SubUnitsOffset += RU->getValueAsInt("NumUnits");
813 NumUnits = PRDef->getValueAsInt("NumUnits");
819 OS << NumUnits << ", " << SuperIdx << ", " << BufferSize << ", ";
    [all...]

Completed in 1171 milliseconds