Lines Matching defs:Imm
20 std::optional<unsigned int> OpIdx, int64_t Imm) const {
25 printSDelayAluImm(Imm, OS);
28 MIRFormatter::printImm(OS, MI, OpIdx, Imm);
37 StringRef Src, int64_t &Imm,
43 return parseSDelayAluImmMnemonic(OpIdx, Imm, Src, ErrorCallback);
50 void AMDGPUMIRFormatter::printSDelayAluImm(int64_t Imm,
58 uint64_t Id0 = (Imm & 0xF);
59 uint64_t Skip = ((Imm >> 4) & 0x7);
60 uint64_t Id1 = ((Imm >> 7) & 0xF);
94 const unsigned int OpIdx, int64_t &Imm, llvm::StringRef &Src,
99 Imm = 0;
132 // Set the Imm so far, to that early return has the correct value.
133 Imm = Delay0;
166 Imm = Imm | (Skip << 4) | (Delay1 << 7);