Lines Matching refs:InstructionBase
1240 class InstructionBase {
1407 InstructionBase() {} in InstructionBase() function
1414 DCHECK(this->InstructionType() == InstructionBase::kRegisterType || in RsValue()
1415 this->InstructionType() == InstructionBase::kImmediateType); in RsValue()
1420 DCHECK(this->InstructionType() == InstructionBase::kRegisterType || in RtValue()
1421 this->InstructionType() == InstructionBase::kImmediateType); in RtValue()
1426 DCHECK_EQ(this->InstructionType(), InstructionBase::kRegisterType); in RdValue()
1431 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in BaseValue()
1436 DCHECK_EQ(this->InstructionType(), InstructionBase::kRegisterType); in SaValue()
1441 DCHECK_EQ(this->InstructionType(), InstructionBase::kRegisterType); in LsaSaValue()
1446 DCHECK(this->InstructionType() == InstructionBase::kRegisterType || in FunctionValue()
1447 this->InstructionType() == InstructionBase::kImmediateType); in FunctionValue()
1480 DCHECK_EQ(this->InstructionType(), InstructionBase::kRegisterType); in Bp2Value()
1485 DCHECK_EQ(this->InstructionType(), InstructionBase::kRegisterType); in Bp3Value()
1510 DCHECK(this->InstructionType() == InstructionBase::kRegisterType || in RsFieldRaw()
1511 this->InstructionType() == InstructionBase::kImmediateType); in RsFieldRaw()
1521 DCHECK(this->InstructionType() == InstructionBase::kRegisterType || in RtFieldRaw()
1522 this->InstructionType() == InstructionBase::kImmediateType); in RtFieldRaw()
1527 DCHECK_EQ(this->InstructionType(), InstructionBase::kRegisterType); in RdFieldRaw()
1556 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in ImmValue()
1561 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in Imm9Value()
1566 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in Imm16Value()
1571 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in Imm18Value()
1576 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in Imm19Value()
1581 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in Imm21Value()
1586 DCHECK((this->InstructionType() == InstructionBase::kJumpType) || in Imm26Value()
1587 (this->InstructionType() == InstructionBase::kImmediateType)); in Imm26Value()
1592 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in MsaImm8Value()
1597 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in MsaImm5Value()
1602 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in MsaImm10Value()
1607 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in MsaImmMI10Value()
1612 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in MsaBitDf()
1628 DCHECK_EQ(this->InstructionType(), InstructionBase::kImmediateType); in MsaBitMValue()
1633 DCHECK(this->InstructionType() == InstructionBase::kRegisterType || in MsaElmDf()
1634 this->InstructionType() == InstructionBase::kImmediateType); in MsaElmDf()
1650 DCHECK(this->InstructionType() == InstructionBase::kRegisterType || in MsaElmNValue()
1651 this->InstructionType() == InstructionBase::kImmediateType); in MsaElmNValue()
1700 class Instruction : public InstructionGetters<InstructionBase> {
1730 InstructionBase::Type InstructionBase::InstructionType() const { in InstructionType()