Home
last modified time | relevance | path

Searched refs:CondMet (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DAsmCond.h31 bool CondMet = false; variable
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp6157 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
6158 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIf()
6180 TheCondState.CondMet = ExpectBlank == Str.empty(); in parseDirectiveIfb()
6181 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfb()
6216 TheCondState.CondMet = in parseDirectiveIfidn()
6219 TheCondState.CondMet = ExpectEqual == (String1 == String2); in parseDirectiveIfidn()
6220 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfidn()
6256 TheCondState.CondMet = (is_defined == expect_defined); in parseDirectiveIfdef()
6257 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfdef()
6276 if (LastIgnoreState || TheCondState.CondMet) { in parseDirectiveElseIf()
[all …]
H A DAsmParser.cpp5207 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
5208 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIf()
5228 TheCondState.CondMet = ExpectBlank == Str.empty(); in parseDirectiveIfb()
5229 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfb()
5255 TheCondState.CondMet = ExpectEqual == (Str1.trim() == Str2.trim()); in parseDirectiveIfc()
5256 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfc()
5294 TheCondState.CondMet = ExpectEqual == (String1 == String2); in parseDirectiveIfeqs()
5295 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfeqs()
5317 TheCondState.CondMet = (Sym && !Sym->isUndefined(false)); in parseDirectiveIfdef()
5319 TheCondState.CondMet = (!Sym || Sym->isUndefined(false)); in parseDirectiveIfdef()
[all …]