Home
last modified time | relevance | path

Searched refs:shouldNegate (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/utils/TableGen/
H A DPredicateExpander.cpp30 OS << (shouldNegate() ? " != " : " == ") << ImmVal; in expandCheckImmOperand()
45 OS << (shouldNegate() ? " != " : " == ") << ImmVal; in expandCheckImmOperand()
51 if (shouldNegate()) in expandCheckImmOperandSimple()
72 OS << (shouldNegate() ? " != " : " == "); in expandCheckRegOperand()
83 if (shouldNegate()) in expandCheckRegOperandSimple()
135 OS << (shouldNegate() ? "&& " : "|| "); in expandCheckOpcode()
164 OS << (shouldNegate() ? "!(" : "("); in expandPredicateSequence()
167 bool OldValue = shouldNegate(); in expandPredicateSequence()
186 OS << (shouldNegate() ? "!" : ""); in expandTIIFunctionCall()
300 if (shouldNegate()) in expandPredicate()
[all …]
H A DPredicateExpander.h42 bool shouldNegate() const { return NegatePredicate; } in shouldNegate() function