Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/utils/TableGen/
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()
96 << ").getReg() " << (shouldNegate() ? "!= " : "== ") << "0"; in expandCheckInvalidRegOperand()
102 << ").getReg() " << (shouldNegate() ? "!=" : "==") << " MI" in expandCheckSameRegOperand()
108 << (shouldNegate() ? "!= " : "== ") << NumOps; in expandCheckNumOperands()
113 << (shouldNegate() ? "!= " : "== ") << Inst->getValueAsString("Namespace") in expandCheckOpcode()
135 OS << (shouldNegate() ? "&& " : "|| "); in expandCheckOpcode()
[all …]
DPredicateExpander.h42 bool shouldNegate() const { return NegatePredicate; } in shouldNegate() function