Home
last modified time | relevance | path

Searched refs:opcode_1 (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/arm/
Dassembler-arm.h1057 void cdp(Coprocessor coproc, int opcode_1,
1061 void cdp2(Coprocessor coproc, int opcode_1,
1065 void mcr(Coprocessor coproc, int opcode_1,
1069 void mcr2(Coprocessor coproc, int opcode_1,
1073 void mrc(Coprocessor coproc, int opcode_1,
1077 void mrc2(Coprocessor coproc, int opcode_1,
Dassembler-arm.cc2312 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()
[all …]