Lines Matching defs:TheCondState

138   AsmCond TheCondState;
613 AsmCond StartingCondState = TheCondState;
639 if (TheCondState.TheCond != StartingCondState.TheCond ||
640 TheCondState.Ignore != StartingCondState.Ignore)
1166 if (!TheCondState.Ignore)
1173 if (!TheCondState.Ignore)
1182 if (!TheCondState.Ignore)
1223 if (TheCondState.Ignore) {
3580 TheCondStack.push_back(TheCondState);
3581 TheCondState.TheCond = AsmCond::IfCond;
3582 if (TheCondState.Ignore) {
3594 TheCondState.CondMet = ExprValue;
3595 TheCondState.Ignore = !TheCondState.CondMet;
3604 TheCondStack.push_back(TheCondState);
3605 TheCondState.TheCond = AsmCond::IfCond;
3607 if (TheCondState.Ignore) {
3617 TheCondState.CondMet = ExpectBlank == Str.empty();
3618 TheCondState.Ignore = !TheCondState.CondMet;
3627 TheCondStack.push_back(TheCondState);
3628 TheCondState.TheCond = AsmCond::IfCond;
3630 if (TheCondState.Ignore) {
3647 TheCondState.CondMet = ExpectEqual == (Str1 == Str2);
3648 TheCondState.Ignore = !TheCondState.CondMet;
3658 TheCondStack.push_back(TheCondState);
3659 TheCondState.TheCond = AsmCond::IfCond;
3661 if (TheCondState.Ignore) {
3672 TheCondState.CondMet = (Sym != NULL && !Sym->isUndefined());
3674 TheCondState.CondMet = (Sym == NULL || Sym->isUndefined());
3675 TheCondState.Ignore = !TheCondState.CondMet;
3684 if (TheCondState.TheCond != AsmCond::IfCond &&
3685 TheCondState.TheCond != AsmCond::ElseIfCond)
3688 TheCondState.TheCond = AsmCond::ElseIfCond;
3693 if (LastIgnoreState || TheCondState.CondMet) {
3694 TheCondState.Ignore = true;
3705 TheCondState.CondMet = ExprValue;
3706 TheCondState.Ignore = !TheCondState.CondMet;
3720 if (TheCondState.TheCond != AsmCond::IfCond &&
3721 TheCondState.TheCond != AsmCond::ElseIfCond)
3724 TheCondState.TheCond = AsmCond::ElseCond;
3728 if (LastIgnoreState || TheCondState.CondMet)
3729 TheCondState.Ignore = true;
3731 TheCondState.Ignore = false;
3744 if ((TheCondState.TheCond == AsmCond::NoCond) || TheCondStack.empty())
3748 TheCondState = TheCondStack.back();