Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/MC/MCParser/
H A DAsmCond.h31 bool CondMet = false; variable
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DMasmParser.cpp6188 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
6189 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIf()
6211 TheCondState.CondMet = ExpectBlank == Str.empty(); in parseDirectiveIfb()
6212 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfb()
6247 TheCondState.CondMet = in parseDirectiveIfidn()
6250 TheCondState.CondMet = ExpectEqual == (String1 == String2); in parseDirectiveIfidn()
6251 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfidn()
6287 TheCondState.CondMet = (is_defined == expect_defined); in parseDirectiveIfdef()
6288 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfdef()
6307 if (LastIgnoreState || TheCondState.CondMet) { in parseDirectiveElseIf()
[all …]
H A DAsmParser.cpp5182 TheCondState.CondMet = ExprValue; in parseDirectiveIf()
5183 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIf()
5203 TheCondState.CondMet = ExpectBlank == Str.empty(); in parseDirectiveIfb()
5204 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfb()
5230 TheCondState.CondMet = ExpectEqual == (Str1.trim() == Str2.trim()); in parseDirectiveIfc()
5231 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfc()
5269 TheCondState.CondMet = ExpectEqual == (String1 == String2); in parseDirectiveIfeqs()
5270 TheCondState.Ignore = !TheCondState.CondMet; in parseDirectiveIfeqs()
5292 TheCondState.CondMet = (Sym && !Sym->isUndefined(false)); in parseDirectiveIfdef()
5294 TheCondState.CondMet = (!Sym || Sym->isUndefined(false)); in parseDirectiveIfdef()
[all …]