Searched refs:opcode_1 (Results 1 - 2 of 2) sorted by relevance
/third_party/node/deps/v8/src/codegen/arm/ |
H A D | assembler-arm.h | 651 void cdp(Coprocessor coproc, int opcode_1, CRegister crd, CRegister crn, 654 void cdp2(Coprocessor coproc, int opcode_1, CRegister crd, CRegister crn, 658 void mcr(Coprocessor coproc, int opcode_1, Register rd, CRegister crn, 661 void mcr2(Coprocessor coproc, int opcode_1, Register rd, CRegister crn, 665 void mrc(Coprocessor coproc, int opcode_1, Register rd, CRegister crn, 668 void mrc2(Coprocessor coproc, int opcode_1, Register rd, CRegister crn,
|
H A D | assembler-arm.cc | 2361 void Assembler::cdp(Coprocessor coproc, int opcode_1, CRegister crd, in cdp() argument 2364 DCHECK(is_uint4(opcode_1) && is_uint3(opcode_2)); in cdp() 2365 emit(cond | B27 | B26 | B25 | (opcode_1 & 15) * B20 | crn.code() * B16 | in cdp() 2369 void Assembler::cdp2(Coprocessor coproc, int opcode_1, CRegister crd, in cdp2() argument 2371 cdp(coproc, opcode_1, crd, crn, crm, opcode_2, kSpecialCondition); in cdp2() 2374 void Assembler::mcr(Coprocessor coproc, int opcode_1, Register rd, in mcr() argument 2377 DCHECK(is_uint3(opcode_1) && is_uint3(opcode_2)); in mcr() 2378 emit(cond | B27 | B26 | B25 | (opcode_1 & 7) * B21 | crn.code() * B16 | in mcr() 2382 void Assembler::mcr2(Coprocessor coproc, int opcode_1, Register rd, in mcr2() argument 2384 mcr(coproc, opcode_1, r in mcr2() 2387 mrc(Coprocessor coproc, int opcode_1, Register rd, CRegister crn, CRegister crm, int opcode_2, Condition cond) mrc() argument 2395 mrc2(Coprocessor coproc, int opcode_1, Register rd, CRegister crn, CRegister crm, int opcode_2) mrc2() argument [all...] |
Completed in 11 milliseconds