Home | History | Annotate | Download | only in arm

Lines Matching refs:Condition

119 // Values for the condition field as defined in section A3.2
120 enum Condition {
139 kSpecialCondition = 15 << 28, // Special condition (refer to section A3.2.1).
148 inline Condition NegateCondition(Condition cond) {
150 return static_cast<Condition>(cond ^ ne);
155 inline Condition ReverseCondition(Condition cond) {
229 S = 1 << 20, // Set condition code (or leave unchanged).
272 // Condition code updating mode.
274 SetCC = 1 << 20, // Set condition code.
275 LeaveCC = 0 << 20 // Leave condition code unchanged.
502 // Example: Test whether the instruction at ptr does set the condition code
587 inline Condition ConditionValue() const {
588 return static_cast<Condition>(Bits(31, 28));
590 inline Condition ConditionField() const {
591 return static_cast<Condition>(BitField(31, 28));
593 DECLARE_STATIC_TYPED_ACCESSOR(Condition, ConditionValue);
594 DECLARE_STATIC_TYPED_ACCESSOR(Condition, ConditionField);