Lines Matching refs:inst2if
659 uint8_t ifThenElse(Condition condition, bool inst2if, bool inst3if, bool inst4if) in ifThenElse() argument
661 int mask = (ifThenElseConditionBit(condition, inst2if) << 3) in ifThenElse()
668 uint8_t ifThenElse(Condition condition, bool inst2if, bool inst3if) in ifThenElse() argument
670 int mask = (ifThenElseConditionBit(condition, inst2if) << 3) in ifThenElse()
676 uint8_t ifThenElse(Condition condition, bool inst2if) in ifThenElse() argument
678 int mask = (ifThenElseConditionBit(condition, inst2if) << 3) in ifThenElse()
927 void it(Condition cond, bool inst2if) in it() argument
929 m_formatter.oneWordOp8Imm8(OP_IT, ifThenElse(cond, inst2if)); in it()
932 void it(Condition cond, bool inst2if, bool inst3if) in it() argument
934 m_formatter.oneWordOp8Imm8(OP_IT, ifThenElse(cond, inst2if, inst3if)); in it()
937 void it(Condition cond, bool inst2if, bool inst3if, bool inst4if) in it() argument
939 m_formatter.oneWordOp8Imm8(OP_IT, ifThenElse(cond, inst2if, inst3if, inst4if)); in it()