Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DSIFoldOperands.cpp1473 int OMod = getOModValue(Op, ImmOp->getImm()); in isOMod() local
1474 if (OMod == SIOutMods::NONE || in isOMod()
1481 return std::pair(RegOp, OMod); in isOMod()
1517 int OMod; in tryFoldOMod() local
1518 std::tie(RegOp, OMod) = isOMod(MI); in tryFoldOMod()
1519 if (OMod == SIOutMods::NONE || !RegOp->isReg() || in tryFoldOMod()
1536 DefOMod->setImm(OMod); in tryFoldOMod()
H A DVOP1Instructions.td192 // OMod clears exceptions when set. OMod was always an operand, but its
261 // OMod clears exceptions when set in this instruction
270 // OMod clears exceptions when set in this instruction
288 // OMod clears exceptions when set in these 2 instructions
477 // OMod clears exceptions when set in these two instructions
H A DSIPeepholeSDWA.cpp1053 MachineOperand *OMod = TII->getNamedOperand(MI, AMDGPU::OpName::omod); in convertToSDWA() local
1054 if (OMod) { in convertToSDWA()
1055 SDWAInst.add(*OMod); in convertToSDWA()
H A DSIInstrInfo.cpp4283 const MachineOperand *OMod = getNamedOperand(MI, AMDGPU::OpName::omod); in verifyInstruction() local
4284 if (OMod != nullptr && in verifyInstruction()
4285 (!OMod->isImm() || OMod->getImm() != 0)) { in verifyInstruction()
4309 const MachineOperand *OMod = getNamedOperand(MI, AMDGPU::OpName::omod); in verifyInstruction() local
4310 if (OMod && (!OMod->isImm() || OMod->getImm() != 0)) { in verifyInstruction()
H A DAMDGPU.td421 "Support OMod with SDWA (Sub-DWORD Addressing) extension"