Home
last modified time | relevance | path

Searched refs:MaskImm (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FixupInstTuning.cpp137 unsigned MaskImm = MI.getOperand(NumOperands - 1).getImm(); in processInstruction() local
141 MI.addOperand(MachineOperand::CreateImm(MaskImm)); in processInstruction()
156 unsigned MaskImm = MI.getOperand(NumOperands - 1).getImm(); in processInstruction() local
160 MI.addOperand(MachineOperand::CreateImm(MaskImm)); in processInstruction()
197 auto ProcessUNPCK = [&](unsigned NewOpc, unsigned MaskImm) -> bool { in processInstruction() argument
203 MI.addOperand(MachineOperand::CreateImm(MaskImm)); in processInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp1903 int64_t MaskImm = (Size == 1) ? 255 : 65535; in emitAtomicBinaryPartword() local
1919 .addReg(Mips::ZERO).addImm(MaskImm); in emitAtomicBinaryPartword()
2090 int64_t MaskImm = (Size == 1) ? 255 : 65535; in emitAtomicCmpSwapPartword() local
2106 .addReg(Mips::ZERO).addImm(MaskImm); in emitAtomicCmpSwapPartword()
2111 .addReg(CmpVal).addImm(MaskImm); in emitAtomicCmpSwapPartword()
2115 .addReg(NewVal).addImm(MaskImm); in emitAtomicCmpSwapPartword()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp3362 uint64_t MaskImm; in tryBitfieldInsertOpFromOrAndImm() local
3366 !isOpcWithIntImmediate(And.getNode(), ISD::AND, MaskImm)) in tryBitfieldInsertOpFromOrAndImm()
3928 uint64_t MaskImm; in tryShiftAmountMod() local
3929 if (!isOpcWithIntImmediate(ShiftAmt.getNode(), ISD::AND, MaskImm) && in tryShiftAmountMod()
3930 !isOpcWithIntImmediate(ShiftAmt.getNode(), AArch64ISD::ANDS, MaskImm)) in tryShiftAmountMod()
3933 if ((unsigned)llvm::countr_one(MaskImm) < Bits) in tryShiftAmountMod()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp2536 int64_t MaskImm; in earlySelect() local
2540 m_OneNonDBGUse(m_GAnd(m_Reg(MaskSrc), m_ICst(MaskImm)))))) in earlySelect()
2543 if (ShiftImm > Size || ((1ULL << ShiftImm) - 1ULL) != uint64_t(MaskImm)) in earlySelect()