mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-26 14:15:53 +00:00
[llvm-c][Disassembler] When printing latency information, skip scheduling
classes that are marked as Variant as those require an MI to pass to SubTargetInfo::resolveSchedClass. This is part of <rdar://problem/14687488>. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191864 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
407847f130
commit
4897e26390
@ -191,7 +191,9 @@ static int getLatency(LLVMDisasmContext *DC, const MCInst &Inst) {
|
||||
const MCInstrDesc& Desc = DC->getInstrInfo()->get(Inst.getOpcode());
|
||||
unsigned SCClass = Desc.getSchedClass();
|
||||
const MCSchedClassDesc *SCDesc = SCModel->getSchedClassDesc(SCClass);
|
||||
if (!SCDesc || !SCDesc->isValid())
|
||||
// Resolving the variant SchedClass requires an MI to pass to
|
||||
// SubTargetInfo::resolveSchedClass.
|
||||
if (!SCDesc || !SCDesc->isValid() || SCDesc->isVariant())
|
||||
return NoInformationAvailable;
|
||||
|
||||
// Compute output latency.
|
||||
|
Loading…
Reference in New Issue
Block a user