Lines Matching refs:opcode_1
2312 int opcode_1, in cdp() argument
2318 DCHECK(is_uint4(opcode_1) && is_uint3(opcode_2)); in cdp()
2319 emit(cond | B27 | B26 | B25 | (opcode_1 & 15)*B20 | crn.code()*B16 | in cdp()
2323 void Assembler::cdp2(Coprocessor coproc, int opcode_1, CRegister crd, in cdp2() argument
2325 cdp(coproc, opcode_1, crd, crn, crm, opcode_2, kSpecialCondition); in cdp2()
2330 int opcode_1, in mcr() argument
2336 DCHECK(is_uint3(opcode_1) && is_uint3(opcode_2)); in mcr()
2337 emit(cond | B27 | B26 | B25 | (opcode_1 & 7)*B21 | crn.code()*B16 | in mcr()
2341 void Assembler::mcr2(Coprocessor coproc, int opcode_1, Register rd, in mcr2() argument
2343 mcr(coproc, opcode_1, rd, crn, crm, opcode_2, kSpecialCondition); in mcr2()
2348 int opcode_1, in mrc() argument
2354 DCHECK(is_uint3(opcode_1) && is_uint3(opcode_2)); in mrc()
2355 emit(cond | B27 | B26 | B25 | (opcode_1 & 7)*B21 | L | crn.code()*B16 | in mrc()
2359 void Assembler::mrc2(Coprocessor coproc, int opcode_1, Register rd, in mrc2() argument
2361 mrc(coproc, opcode_1, rd, crn, crm, opcode_2, kSpecialCondition); in mrc2()