Lines Matching defs:Instructions
750 SmallVector<struct Instr, 2> Instructions;
760 Instructions.emplace_back(Mips::XOR, Temp, LHS, RHS);
761 Instructions.emplace_back(Mips::SLTiu, ICMPReg, Temp, 1);
764 Instructions.emplace_back(Mips::XOR, Temp, LHS, RHS);
765 Instructions.emplace_back(Mips::SLTu, ICMPReg, Mips::ZERO, Temp);
768 Instructions.emplace_back(Mips::SLTu, ICMPReg, RHS, LHS);
771 Instructions.emplace_back(Mips::SLTu, Temp, LHS, RHS);
772 Instructions.emplace_back(Mips::XORi, ICMPReg, Temp, 1);
775 Instructions.emplace_back(Mips::SLTu, ICMPReg, LHS, RHS);
778 Instructions.emplace_back(Mips::SLTu, Temp, RHS, LHS);
779 Instructions.emplace_back(Mips::XORi, ICMPReg, Temp, 1);
782 Instructions.emplace_back(Mips::SLT, ICMPReg, RHS, LHS);
785 Instructions.emplace_back(Mips::SLT, Temp, LHS, RHS);
786 Instructions.emplace_back(Mips::XORi, ICMPReg, Temp, 1);
789 Instructions.emplace_back(Mips::SLT, ICMPReg, LHS, RHS);
792 Instructions.emplace_back(Mips::SLT, Temp, RHS, LHS);
793 Instructions.emplace_back(Mips::XORi, ICMPReg, Temp, 1);
800 for (const struct Instr &Instruction : Instructions) {