Home
last modified time | relevance | path

Searched refs:Opc1Value (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/arm/
Ddisasm-arm.cc1422 if (instr->Opc1Value() == 0x7) { in DecodeTypeVFP()
1484 } else if (instr->Opc1Value() == 0x3) { in DecodeTypeVFP()
1498 } else if ((instr->Opc1Value() == 0x2) && !(instr->Opc3Value() & 0x1)) { in DecodeTypeVFP()
1504 } else if ((instr->Opc1Value() == 0x0) && !(instr->Opc3Value() & 0x1)) { in DecodeTypeVFP()
1510 } else if ((instr->Opc1Value() == 0x0) && (instr->Opc3Value() & 0x1)) { in DecodeTypeVFP()
1516 } else if ((instr->Opc1Value() == 0x4) && !(instr->Opc3Value() & 0x1)) { in DecodeTypeVFP()
1582 VERIFY((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7)); in DecodeVCMP()
1613 VERIFY((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7)); in DecodeVCVTBetweenDoubleAndSingle()
1627 VERIFY((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7)); in DecodeVCVTBetweenFloatingPointAndInteger()
1868 if (instr->Opc1Value() == 0x7 && instr->Bits(19, 18) == 0x2 && in DecodeSpecialCondition()
Dsimulator-arm.cc3188 if (instr->Opc1Value() == 0x7) { in DecodeTypeVFP()
3279 } else if (instr->Opc1Value() == 0x3) { in DecodeTypeVFP()
3311 } else if ((instr->Opc1Value() == 0x2) && !(instr->Opc3Value() & 0x1)) { in DecodeTypeVFP()
3326 } else if ((instr->Opc1Value() == 0x0)) { in DecodeTypeVFP()
3360 } else if ((instr->Opc1Value() == 0x4) && !(instr->Opc3Value() & 0x1)) { in DecodeTypeVFP()
3475 DCHECK((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7)); in DecodeVCMP()
3526 DCHECK((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7)); in DecodeVCVTBetweenDoubleAndSingle()
3604 DCHECK((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7) && in DecodeVCVTBetweenFloatingPointAndInteger()
3966 if (instr->Opc1Value() == 0x7 && instr->Opc3Value() == 0x1 && in DecodeSpecialCondition()
Dconstants-arm.h557 inline int Opc1Value() const { return (Bit(23) << 2) | Bits(21, 20); } in Opc1Value() function