Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/arm/
Ddisasm-arm.cc1229 if (instr->Opc1Value() == 0x7) { in DecodeTypeVFP()
1272 } else if (instr->Opc1Value() == 0x3) { in DecodeTypeVFP()
1282 } else if ((instr->Opc1Value() == 0x2) && !(instr->Opc3Value() & 0x1)) { in DecodeTypeVFP()
1288 } else if ((instr->Opc1Value() == 0x0) && !(instr->Opc3Value() & 0x1)) { in DecodeTypeVFP()
1294 } else if ((instr->Opc1Value() == 0x0) && (instr->Opc3Value() & 0x1)) { in DecodeTypeVFP()
1300 } else if ((instr->Opc1Value() == 0x4) && !(instr->Opc3Value() & 0x1)) { in DecodeTypeVFP()
1366 VERIFY((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7)); in DecodeVCMP()
1389 VERIFY((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7)); in DecodeVCVTBetweenDoubleAndSingle()
1403 VERIFY((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7)); in DecodeVCVTBetweenFloatingPointAndInteger()
Dsimulator-arm.cc2887 if (instr->Opc1Value() == 0x7) { in DecodeTypeVFP()
2945 } else if (instr->Opc1Value() == 0x3) { in DecodeTypeVFP()
2965 } else if ((instr->Opc1Value() == 0x2) && !(instr->Opc3Value() & 0x1)) { in DecodeTypeVFP()
2976 } else if ((instr->Opc1Value() == 0x0)) { in DecodeTypeVFP()
3000 } else if ((instr->Opc1Value() == 0x4) && !(instr->Opc3Value() & 0x1)) { in DecodeTypeVFP()
3112 DCHECK((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7)); in DecodeVCMP()
3150 DCHECK((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7)); in DecodeVCVTBetweenDoubleAndSingle()
3228 DCHECK((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7) && in DecodeVCVTBetweenFloatingPointAndInteger()
Dconstants-arm.h529 inline int Opc1Value() const { return (Bit(23) << 2) | Bits(21, 20); } in Opc1Value() function