Lines Matching refs:operand
670 uint32_t operand = lir->operands[i]; in EncodeLIRs() local
677 bool is_zero = A64_REG_IS_ZR(operand); in EncodeLIRs()
726 RegStorage reg(operand | RegStorage::kValid); in EncodeLIRs()
751 << ". Expected " << expected << ", got 0x" << std::hex << operand; in EncodeLIRs()
754 << ". Expected " << expected << ", got 0x" << std::hex << operand; in EncodeLIRs()
767 value = (operand << encoder->field_loc[i].start) & in EncodeLIRs()
780 DCHECK_EQ((operand & (1 << 6)) == 0, kind == kFmtShift); in EncodeLIRs()
781 value = (operand & 0x3f) << 10; in EncodeLIRs()
782 value |= ((operand & 0x1c0) >> 6) << 21; in EncodeLIRs()
786 value = (operand & 0x3) << 29; in EncodeLIRs()
787 value |= ((operand & 0x1ffffc) >> 2) << 5; in EncodeLIRs()