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

  /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/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...]
Instruction.h 246 unsigned NumUnits;
248 : CS(Cycles), NumUnits(Units) {}
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnitIndex.h 36 uint32_t NumUnits;
  /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/DebugInfo/DWARF/
DWARFUnitIndex.h 38 uint32_t NumUnits;
  /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/include/llvm/MC/
MCSchedule.h 30 unsigned NumUnits; // Number of resource of this kind
48 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
  /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/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 414 milliseconds