Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DPredicateExpander.cpp26 << ").getImm() " << (shouldNegate() ? "!= " : "== ") << ImmVal; in expandCheckImmOperand()
32 << ").getImm() " << (shouldNegate() ? "!= " : "== ") << ImmVal; in expandCheckImmOperand()
40 << ").getReg() " << (shouldNegate() ? "!= " : "== "); in expandCheckRegOperand()
50 << ").getReg() " << (shouldNegate() ? "!= " : "== ") << "0"; in expandCheckInvalidRegOperand()
56 << ").getReg() " << (shouldNegate() ? "!=" : "==") << " MI" in expandCheckSameRegOperand()
63 << (shouldNegate() ? "!= " : "== ") << NumOps; in expandCheckNumOperands()
69 << (shouldNegate() ? "!= " : "== ") << Inst->getValueAsString("Namespace") in expandCheckOpcode()
91 OS << (shouldNegate() ? "&& " : "|| "); in expandCheckOpcode()
120 OS << (shouldNegate() ? "!(" : "("); in expandPredicateSequence()
123 bool OldValue = shouldNegate(); in expandPredicateSequence()
[all …]
DPredicateExpander.h42 bool shouldNegate() const { return NegatePredicate; } in shouldNegate() function