Home
last modified time | relevance | path

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

/external/v8/src/arm/
Dassembler-arm.h991 void cdp(Coprocessor coproc, int opcode_1,
995 void cdp2(Coprocessor coproc, int opcode_1,
999 void mcr(Coprocessor coproc, int opcode_1,
1003 void mcr2(Coprocessor coproc, int opcode_1,
1007 void mrc(Coprocessor coproc, int opcode_1,
1011 void mrc2(Coprocessor coproc, int opcode_1,
Dassembler-arm.cc2140 int opcode_1, in cdp() argument
2146 DCHECK(is_uint4(opcode_1) && is_uint3(opcode_2)); in cdp()
2147 emit(cond | B27 | B26 | B25 | (opcode_1 & 15)*B20 | crn.code()*B16 | in cdp()
2153 int opcode_1, in cdp2() argument
2158 cdp(coproc, opcode_1, crd, crn, crm, opcode_2, kSpecialCondition); in cdp2()
2163 int opcode_1, in mcr() argument
2169 DCHECK(is_uint3(opcode_1) && is_uint3(opcode_2)); in mcr()
2170 emit(cond | B27 | B26 | B25 | (opcode_1 & 7)*B21 | crn.code()*B16 | in mcr()
2176 int opcode_1, in mcr2() argument
2181 mcr(coproc, opcode_1, rd, crn, crm, opcode_2, kSpecialCondition); in mcr2()
[all …]