Lines Matching defs:exp
559 Export_instruction& exp = instr->exp();
567 encoding |= exp.valid_mask ? 0b1 << 12 : 0;
568 encoding |= exp.done ? 0b1 << 11 : 0;
569 encoding |= exp.compressed ? 0b1 << 10 : 0;
570 encoding |= exp.dest << 4;
571 encoding |= exp.enabled_mask;
573 encoding = 0xFF & exp.operands[0].physReg();
574 encoding |= (0xFF & exp.operands[1].physReg()) << 8;
575 encoding |= (0xFF & exp.operands[2].physReg()) << 16;
576 encoding |= (0xFF & exp.operands[3].physReg()) << 24;
778 Export_instruction& exp = (*it)->exp();
780 if (exp.dest >= V_008DFC_SQ_EXP_POS && exp.dest <= (V_008DFC_SQ_EXP_POS + 3)) {
781 exp.done = true;
786 exp.done = true;
787 exp.valid_mask = true;