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

  /external/llvm/lib/CodeGen/
TargetSchedule.cpp 107 const MCSchedClassDesc *SCDesc = SchedModel.getSchedClassDesc(SchedClass);
108 if (!SCDesc->isValid())
109 return SCDesc;
114 while (SCDesc->isVariant()) {
118 SCDesc = SchedModel.getSchedClassDesc(SchedClass);
120 return SCDesc;
188 const MCSchedClassDesc *SCDesc = resolveSchedClass(DefMI);
190 if (DefIdx < SCDesc->NumWriteLatencyEntries) {
193 STI->getWriteLatencyEntry(SCDesc, DefIdx);
212 if (SCDesc->isValid() && !DefMI->getOperand(DefOperIdx).isImplicit(
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64StorePairSuppress.cpp 83 const MCSchedClassDesc *SCDesc =
87 if (SCDesc->isValid() && !SCDesc->isVariant()) {
89 ArrayRef<const MachineBasicBlock *>(), SCDesc);
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 217 const MCSchedClassDesc *SCDesc = SCModel->getSchedClassDesc(SCClass);
220 if (!SCDesc || !SCDesc->isValid() || SCDesc->isVariant())
225 for (unsigned DefIdx = 0, DefEnd = SCDesc->NumWriteLatencyEntries;
228 const MCWriteLatencyEntry *WLEntry = STI->getWriteLatencyEntry(SCDesc,
  /external/llvm/utils/TableGen/
SubtargetEmitter.cpp 842 MCSchedClassDesc &SCDesc = SCTab.back();
843 // SCDesc.Name is guarded by NDEBUG
844 SCDesc.NumMicroOps = 0;
845 SCDesc.BeginGroup = false;
846 SCDesc.EndGroup = false;
847 SCDesc.WriteProcResIdx = 0;
848 SCDesc.WriteLatencyIdx = 0;
849 SCDesc.ReadAdvanceIdx = 0;
868 SCDesc.NumMicroOps = MCSchedClassDesc::VariantNumMicroOps;
    [all...]

Completed in 702 milliseconds