Searched refs:opc1_opc2 (Results 1 – 3 of 3) sorted by relevance
/external/v8/src/arm/ |
D | disasm-arm.cc | 1578 int opc1_opc2 = (instr->Bits(22, 21) << 2) | instr->Bits(6, 5); in DecodeTypeVFP() local 1579 if ((opc1_opc2 & 0xB) == 0) { in DecodeTypeVFP() 1588 if ((opc1_opc2 & 0x8) != 0) { in DecodeTypeVFP() 1590 int i = opc1_opc2 & 0x7; in DecodeTypeVFP() 1593 } else if ((opc1_opc2 & 0x1) != 0) { in DecodeTypeVFP() 1595 int i = (opc1_opc2 >> 1) & 0x3; in DecodeTypeVFP() 1614 int opc1_opc2 = (instr->Bits(22, 21) << 2) | instr->Bits(6, 5); in DecodeTypeVFP() local 1615 if ((opc1_opc2 & 0xB) == 0) { in DecodeTypeVFP() 1626 if ((opc1_opc2 & 0x8) != 0) { in DecodeTypeVFP() 1628 int i = opc1_opc2 & 0x7; in DecodeTypeVFP() [all …]
|
D | simulator-arm.cc | 3360 int opc1_opc2 = (instr->Bits(22, 21) << 2) | instr->Bits(6, 5); in DecodeTypeVFP() local 3361 if ((opc1_opc2 & 0xB) == 0) { in DecodeTypeVFP() 3371 if ((opc1_opc2 & 0x8) != 0) { in DecodeTypeVFP() 3373 int i = opc1_opc2 & 0x7; in DecodeTypeVFP() 3379 } else if ((opc1_opc2 & 0x1) != 0) { in DecodeTypeVFP() 3381 int i = (opc1_opc2 >> 1) & 0x3; in DecodeTypeVFP() 3436 int opc1_opc2 = (instr->Bits(22, 21) << 2) | instr->Bits(6, 5); in DecodeTypeVFP() local 3439 if ((opc1_opc2 & 0xB) == 0) { in DecodeTypeVFP() 3448 if ((opc1_opc2 & 0x8) != 0) { in DecodeTypeVFP() 3450 int i = opc1_opc2 & 0x7; in DecodeTypeVFP() [all …]
|
D | assembler-arm.cc | 3926 int opc1_opc2 = 0; in EncodeScalar() local 3932 opc1_opc2 = 0x8 | index; in EncodeScalar() 3937 opc1_opc2 = 0x1 | (index << 1); in EncodeScalar() 3942 opc1_opc2 = index << 2; in EncodeScalar() 3948 return (opc1_opc2 >> 2) * B21 | (opc1_opc2 & 0x3) * B5; in EncodeScalar() 3958 int opc1_opc2 = EncodeScalar(dt, index); in vmov() local 3960 opc1_opc2); in vmov() 3970 int opc1_opc2 = EncodeScalar(dt, index); in vmov() local 3973 n * B7 | B4 | opc1_opc2); in vmov()
|