Lines Matching defs:TheCondState

398   AsmCond TheCondState;
1347 AsmCond StartingCondState = TheCondState;
1401 if (TheCondState.TheCond != StartingCondState.TheCond ||
1402 TheCondState.Ignore != StartingCondState.Ignore)
2124 if (!TheCondState.Ignore) {
2196 if (TheCondState.Ignore) {
5909 TheCondState = TheCondStack.back();
6138 TheCondStack.push_back(TheCondState);
6139 TheCondState.TheCond = AsmCond::IfCond;
6140 if (TheCondState.Ignore) {
6157 TheCondState.CondMet = ExprValue;
6158 TheCondState.Ignore = !TheCondState.CondMet;
6167 TheCondStack.push_back(TheCondState);
6168 TheCondState.TheCond = AsmCond::IfCond;
6170 if (TheCondState.Ignore) {
6180 TheCondState.CondMet = ExpectBlank == Str.empty();
6181 TheCondState.Ignore = !TheCondState.CondMet;
6213 TheCondStack.push_back(TheCondState);
6214 TheCondState.TheCond = AsmCond::IfCond;
6216 TheCondState.CondMet =
6219 TheCondState.CondMet = ExpectEqual == (String1 == String2);
6220 TheCondState.Ignore = !TheCondState.CondMet;
6229 TheCondStack.push_back(TheCondState);
6230 TheCondState.TheCond = AsmCond::IfCond;
6232 if (TheCondState.Ignore) {
6256 TheCondState.CondMet = (is_defined == expect_defined);
6257 TheCondState.Ignore = !TheCondState.CondMet;
6267 if (TheCondState.TheCond != AsmCond::IfCond &&
6268 TheCondState.TheCond != AsmCond::ElseIfCond)
6271 TheCondState.TheCond = AsmCond::ElseIfCond;
6276 if (LastIgnoreState || TheCondState.CondMet) {
6277 TheCondState.Ignore = true;
6297 TheCondState.CondMet = ExprValue;
6298 TheCondState.Ignore = !TheCondState.CondMet;
6307 if (TheCondState.TheCond != AsmCond::IfCond &&
6308 TheCondState.TheCond != AsmCond::ElseIfCond)
6311 TheCondState.TheCond = AsmCond::ElseIfCond;
6316 if (LastIgnoreState || TheCondState.CondMet) {
6317 TheCondState.Ignore = true;
6330 TheCondState.CondMet = ExpectBlank == Str.empty();
6331 TheCondState.Ignore = !TheCondState.CondMet;
6342 if (TheCondState.TheCond != AsmCond::IfCond &&
6343 TheCondState.TheCond != AsmCond::ElseIfCond)
6346 TheCondState.TheCond = AsmCond::ElseIfCond;
6351 if (LastIgnoreState || TheCondState.CondMet) {
6352 TheCondState.Ignore = true;
6377 TheCondState.CondMet = (is_defined == expect_defined);
6378 TheCondState.Ignore = !TheCondState.CondMet;
6388 if (TheCondState.TheCond != AsmCond::IfCond &&
6389 TheCondState.TheCond != AsmCond::ElseIfCond)
6392 TheCondState.TheCond = AsmCond::ElseIfCond;
6397 if (LastIgnoreState || TheCondState.CondMet) {
6398 TheCondState.Ignore = true;
6427 TheCondState.CondMet =
6430 TheCondState.CondMet = ExpectEqual == (String1 == String2);
6431 TheCondState.Ignore = !TheCondState.CondMet;
6443 if (TheCondState.TheCond != AsmCond::IfCond &&
6444 TheCondState.TheCond != AsmCond::ElseIfCond)
6447 TheCondState.TheCond = AsmCond::ElseCond;
6451 if (LastIgnoreState || TheCondState.CondMet)
6452 TheCondState.Ignore = true;
6454 TheCondState.Ignore = false;
6607 TheCondState.CondMet =
6610 TheCondState.CondMet = ExpectEqual == (String1 == String2);
6611 TheCondState.Ignore = !TheCondState.CondMet;
6653 if ((TheCondState.TheCond == AsmCond::NoCond) || TheCondStack.empty())
6657 TheCondState = TheCondStack.back();