Home | History | Annotate | Download | only in mips64

Lines Matching defs:opcode

889   uint32_t opcode = Assembler::GetOpcodeField(branch_instr);
891 // branch instructions and their r6 variants (with opcode being the branch
894 DCHECK(opcode == BEQ || // BEQ
895 opcode == BNE || // BNE
896 opcode == POP10 || // BEQC
897 opcode == POP30 || // BNEC
898 opcode == POP66 || // BEQZC
899 opcode == POP76); // BNEZC
900 switch (opcode) {
902 opcode = BNE; // change BEQ to BNE.
905 opcode = POP30; // change BEQC to BNEC.
908 opcode = POP76; // change BEQZC to BNEZC.
911 opcode = BEQ; // change BNE to BEQ.
914 opcode = POP10; // change BNEC to BEQC.
917 opcode = POP66; // change BNEZC to BEQZC.
922 patcher.ChangeBranchCondition(branch_instr, opcode);