Home
last modified time | relevance | path

Searched refs:OMod (Results 1 – 5 of 5) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSIFoldOperands.cpp1444 int OMod = getOModValue(Op, ImmOp->getImm()); in isOMod() local
1445 if (OMod == SIOutMods::NONE || in isOMod()
1452 return std::make_pair(RegOp, OMod); in isOMod()
1485 int OMod; in tryFoldOMod() local
1486 std::tie(RegOp, OMod) = isOMod(MI); in tryFoldOMod()
1487 if (OMod == SIOutMods::NONE || !RegOp->isReg() || in tryFoldOMod()
1504 DefOMod->setImm(OMod); in tryFoldOMod()
H A DVOP1Instructions.td202 // OMod clears exceptions when set in this instruction
211 // OMod clears exceptions when set in this instruction
229 // OMod clears exceptions when set in these 2 instructions
398 // OMod clears exceptions when set in these two instructions
H A DSIPeepholeSDWA.cpp1063 MachineOperand *OMod = TII->getNamedOperand(MI, AMDGPU::OpName::omod); in convertToSDWA() local
1064 if (OMod) { in convertToSDWA()
1065 SDWAInst.add(*OMod); in convertToSDWA()
H A DSIInstrInfo.cpp3870 const MachineOperand *OMod = getNamedOperand(MI, AMDGPU::OpName::omod); in verifyInstruction() local
3871 if (OMod != nullptr && in verifyInstruction()
3872 (!OMod->isImm() || OMod->getImm() != 0)) { in verifyInstruction()
3896 const MachineOperand *OMod = getNamedOperand(MI, AMDGPU::OpName::omod); in verifyInstruction() local
3897 if (OMod && (!OMod->isImm() || OMod->getImm() != 0)) { in verifyInstruction()
H A DAMDGPU.td386 "Support OMod with SDWA (Sub-DWORD Addressing) extension"