| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIPostRABundler.cpp | 154 if (I->getNumExplicitDefs() != 0) in runOnMachineFunction() 166 if (I->getNumExplicitDefs() != 0) in runOnMachineFunction()
|
| H A D | AMDGPUInstrInfo.cpp | 31 return I.getOperand(I.getNumExplicitDefs()).getIntrinsicID(); in getIntrinsicID()
|
| H A D | SIFixSGPRCopies.cpp | 954 } else if (Inst->getNumExplicitDefs() != 0) { in analyzeVGPRToSGPRCopy()
|
| H A D | AMDGPULegalizerInfo.cpp | 4576 const unsigned FirstSrcOpIdx = MI.getNumExplicitDefs(); in legalizeUnsignedDIV_REM() 4602 const unsigned FirstSrcOpIdx = MI.getNumExplicitDefs(); in legalizeSignedDIV_REM() 5722 assert(MI.getNumExplicitDefs() == 1 || MI.getNumExplicitDefs() == 2); in legalizeBufferLoad() 5723 bool IsTFE = MI.getNumExplicitDefs() == 2; in legalizeBufferLoad() 6115 const unsigned NumDefs = MI.getNumExplicitDefs(); in legalizeImageIntrinsic()
|
| H A D | AMDGPURegisterBankInfo.cpp | 324 for (unsigned I = 0, E = MI.getNumExplicitDefs(); I != E; ++I) { in addMappingFromTable() 1221 const int NumDefs = MI.getNumExplicitDefs(); in applyMappingImage() 3582 RsrcIdx += MI.getNumExplicitDefs() + 1; in getImageMapping()
|
| H A D | SIFoldOperands.cpp | 1987 if (!ST->hasGFX90AInsts() || MI.getNumExplicitDefs() != 1) in tryFoldLoad()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVFoldMasks.cpp | 163 unsigned MaskOpIdx = I->MaskOpIdx + MI.getNumExplicitDefs(); in convertToUnmasked() 169 unsigned PassthruOpIdx = MI.getNumExplicitDefs(); in convertToUnmasked()
|
| H A D | RISCVOptWInstrs.cpp | 126 if (MI->getNumExplicitDefs() != 1) in hasAllNBitUsers()
|
| H A D | RISCVAsmPrinter.cpp | 919 if (OpNo == MI->getNumExplicitDefs() && MO.isReg() && MO.isTied()) { in lowerRISCVVMachineInstrToMCInst()
|
| H A D | RISCVInsertVSETVLI.cpp | 387 if (RISCVII::hasSEWOp(TSFlags) && MI.getNumExplicitDefs() == 0) { in getDemanded()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachineInstr.h | 613 return getNumExplicitDefs() + MCID->implicit_defs().size(); 647 unsigned getNumExplicitDefs() const; 698 operands_begin() + getNumExplicitDefs()); 703 operands_begin() + getNumExplicitDefs()); 708 return make_range(operands_begin() + getNumExplicitDefs(), operands_end()); 712 return make_range(operands_begin() + getNumExplicitDefs(), operands_end()); 715 return make_range(operands_begin() + getNumExplicitDefs(), 719 return make_range(operands_begin() + getNumExplicitDefs(),
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyMCInstLower.cpp | 172 unsigned NumVariadicDefs = MI->getNumExplicitDefs() - Desc.getNumDefs(); in lower() 270 OutMI.insert(OutMI.begin(), MCOperand::createImm(MI->getNumExplicitDefs())); in lower()
|
| H A D | WebAssemblyUtilities.cpp | 92 return MI.getOperand(MI.getNumExplicitDefs()); in getCalleeOp()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVDuplicatesTracker.cpp | 85 if (MI.getNumExplicitDefs() > 0 && in buildDepsGraph()
|
| H A D | SPIRVPreLegalizer.cpp | 106 unsigned NumOp = MI.getNumExplicitDefs() + AssignNameOperandShift; in foldConstantsIntoIntrinsics() 320 MI.getNumExplicitOperands() - MI.getNumExplicitDefs(); in generateAssignInstrs()
|
| H A D | SPIRVInstructionSelector.cpp | 990 for (unsigned i = I.getNumExplicitDefs(); i < I.getNumExplicitOperands(); ++i) in selectConstVector() 1368 bool IsNull = I.getNumExplicitDefs() + 1 == I.getNumExplicitOperands(); in selectIntrinsic() 1376 for (unsigned i = I.getNumExplicitDefs() + 1; in selectIntrinsic() 1385 MIB.addUse(I.getOperand(I.getNumExplicitDefs() + 1).getReg()); in selectIntrinsic() 1386 for (unsigned i = I.getNumExplicitDefs() + 2; in selectIntrinsic()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMFixCortexA57AES1742098Pass.cpp | 288 assert(MI.getNumExplicitOperands() == 3 && MI.getNumExplicitDefs() == 1 && in analyzeMF()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | GenericMachineInstrs.h | 455 return getOperand(getNumExplicitDefs()).getIntrinsicID(); in getIntrinsicID()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineCSE.cpp | 812 MI->getNumExplicitDefs() != 1) in isPRECandidate()
|
| H A D | TwoAddressInstructionPass.cpp | 726 assert(mi->getNumExplicitDefs() == 1); in convertInstTo3Addr() 727 assert(NewMI->getNumExplicitDefs() == 1); in convertInstTo3Addr()
|
| H A D | TargetInstrInfo.cpp | 1549 if (MI.getNumExplicitDefs() != 1) in describeLoadedValue()
|
| H A D | MachineInstr.cpp | 768 unsigned MachineInstr::getNumExplicitDefs() const { in getNumExplicitDefs() function in MachineInstr
|
| H A D | MachineVerifier.cpp | 1568 const MachineOperand &IntrIDOp = MI->getOperand(MI->getNumExplicitDefs()); in verifyPreISelGenericInstruction()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | GISelKnownBits.cpp | 60 assert(MI.getNumExplicitDefs() == 1 && in getKnownBits()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64RegisterBankInfo.cpp | 1095 Idx += MI.getNumExplicitDefs(); in getInstrMapping()
|