Searched refs:opcode_1 (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/arm/ |
D | assembler-arm.h | 963 void cdp(Coprocessor coproc, int opcode_1, 967 void cdp2(Coprocessor coproc, int opcode_1, 971 void mcr(Coprocessor coproc, int opcode_1, 975 void mcr2(Coprocessor coproc, int opcode_1, 979 void mrc(Coprocessor coproc, int opcode_1, 983 void mrc2(Coprocessor coproc, int opcode_1,
|
D | assembler-arm.cc | 2397 int opcode_1, in cdp() argument 2403 DCHECK(is_uint4(opcode_1) && is_uint3(opcode_2)); in cdp() 2404 emit(cond | B27 | B26 | B25 | (opcode_1 & 15)*B20 | crn.code()*B16 | in cdp() 2408 void Assembler::cdp2(Coprocessor coproc, int opcode_1, CRegister crd, in cdp2() argument 2410 cdp(coproc, opcode_1, crd, crn, crm, opcode_2, kSpecialCondition); in cdp2() 2415 int opcode_1, in mcr() argument 2421 DCHECK(is_uint3(opcode_1) && is_uint3(opcode_2)); in mcr() 2422 emit(cond | B27 | B26 | B25 | (opcode_1 & 7)*B21 | crn.code()*B16 | in mcr() 2426 void Assembler::mcr2(Coprocessor coproc, int opcode_1, Register rd, in mcr2() argument 2428 mcr(coproc, opcode_1, rd, crn, crm, opcode_2, kSpecialCondition); in mcr2() [all …]
|