| /llvm-project-15.0.7/llvm/lib/Target/AVR/MCTargetDesc/ |
| H A D | AVRMCExpr.h | 55 bool isNegated() const { return Negated; } in isNegated() 56 void setNegated(bool negated = true) { Negated = negated; } 82 bool Negated; variable 85 explicit AVRMCExpr(VariantKind Kind, const MCExpr *Expr, bool Negated) in AVRMCExpr() argument 86 : Kind(Kind), SubExpr(Expr), Negated(Negated) {} in AVRMCExpr()
|
| H A D | AVRMCExpr.cpp | 39 bool Negated, MCContext &Ctx) { in create() argument 40 return new (Ctx) AVRMCExpr(Kind, Expr, Negated); in create() 103 if (Negated) in evaluateAsInt64()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | SimplifyBooleanExprCheck.h | 48 const ConditionalOperator *Ternary, bool Negated); 51 const Expr *BoolLiteral, bool Negated); 54 const Expr *Var, SourceLocation Loc, bool Negated); 57 const ReturnStmt *Ret, bool Negated,
|
| H A D | SimplifyBooleanExprCheck.cpp | 148 return ExprText + " " + (Negated ? "!=" : "==") + " " + Constant; in compareExpressionToConstant() 154 return compareExpressionToConstant(Context, E, Negated, NullPtr); in compareExpressionToNullPtr() 159 return compareExpressionToConstant(Context, E, Negated, "0"); in compareExpressionToZero() 169 if (Negated) { in replacementExpression() 636 replacementExpression(Context, Negated, ReplaceWith); in reportBinOp() 721 bool Negated) { in replaceWithCondition() argument 723 replacementExpression(Context, Negated, Ternary->getCond()); in replaceWithCondition() 731 bool Negated) { in replaceWithReturnCondition() argument 734 replacementExpression(Context, Negated, If->getCond()); in replaceWithReturnCondition() 742 const ASTContext &Context, const ReturnStmt *Ret, bool Negated, in replaceCompoundReturnWithCondition() argument [all …]
|
| H A D | ContainerContainsCheck.cpp | 113 bool Negated = NegativeComparison != nullptr; in check() local 114 const auto *Comparison = Negated ? NegativeComparison : PositiveComparison; in check() 135 Negated ? "!" : ""); in check()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | TrustNonnullChecker.cpp | 215 bool Negated) const { in addImplication() 220 Negated ? InputState->get<NonNullImplicationMap>(Antecedent) in addImplication() 228 if ((Negated && InputState->isNonNull(AntecedentV).isConstrainedTrue()) in addImplication() 229 || (!Negated && InputState->isNull(AntecedentV).isConstrainedTrue())) { in addImplication() 231 State = InputState->assume(ConsequentS.castAs<DefinedSVal>(), Negated); in addImplication() 236 if (Negated) { in addImplication()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | ARMTargetParser.cpp | 477 bool Negated = stripNegationPrefix(ArchExt); in getArchExtFeature() local 480 return StringRef(Negated ? AE.NegFeature : AE.Feature); in getArchExtFeature() 521 const bool Negated = stripNegationPrefix(ArchExt); in appendArchExtFeatures() local 528 if (Negated) { in appendArchExtFeatures() 543 if (Negated) { in appendArchExtFeatures() 548 } else if (Negated) { in appendArchExtFeatures()
|
| H A D | CSKYTargetParser.cpp | 161 bool Negated = stripNegationPrefix(ArchExt); in getArchExtFeature() local 164 return StringRef(Negated ? AE.NegFeature : AE.Feature); in getArchExtFeature()
|
| /llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineNegator.cpp | 506 Value *Negated = negate(Root, /*Depth=*/0); in run() local 507 if (!Negated) { in run() 514 return std::make_pair(ArrayRef<Instruction *>(NewInstructions), Negated); in run()
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/readability/ |
| H A D | simplify-boolean-expr.rst | 41 2. Negated applications of ``!`` are eliminated. 42 3. Negated applications of comparison operators are changed to use the
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/ |
| H A D | HexagonBitTracker.cpp | 993 bool Negated = false; in evaluate() local 999 Negated = true; in evaluate() 1032 if (!Test.is(!Negated)) { in evaluate()
|
| H A D | HexagonConstPropagation.cpp | 2266 bool Negated = false; in evaluate() local 2271 Negated = true; in evaluate() 2317 if ((!Negated && CTrue) || (Negated && CFalse)) in evaluate() 2319 else if ((!Negated && CFalse) || (Negated && CTrue)) in evaluate()
|
| H A D | HexagonHardwareLoops.cpp | 647 bool Negated = TII->predOpcodeHasNot(Cond) ^ (TB != Header); in getLoopTripCount() local 692 if (Negated) in getLoopTripCount()
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUISelDAGToDAG.h | 114 bool isInlineImmediate(const SDNode *N, bool Negated = false) const;
|
| H A D | AMDGPULegalizerInfo.cpp | 3229 MachineBasicBlock *&UncondBrTarget, bool &Negated) { in verifyCFIntrinsic() argument 3246 Negated = true; in verifyCFIntrinsic() 5560 bool Negated = false; in legalizeIntrinsic() local 5562 verifyCFIntrinsic(MI, MRI, Br, UncondBrTarget, Negated)) { in legalizeIntrinsic() 5571 if (Negated) in legalizeIntrinsic() 5608 bool Negated = false; in legalizeIntrinsic() local 5610 verifyCFIntrinsic(MI, MRI, Br, UncondBrTarget, Negated)) { in legalizeIntrinsic() 5617 if (Negated) in legalizeIntrinsic()
|
| H A D | AMDGPUISelDAGToDAG.cpp | 331 bool Negated) const { in isInlineImmediate() 336 if (Negated) { in isInlineImmediate()
|
| /llvm-project-15.0.7/llvm/docs/CommandGuide/ |
| H A D | llvm-strip.rst | 127 ``[!a-z]``, ``[^a-z]`` Negated character class ``[^a-z]``
|
| H A D | llvm-objcopy.rst | 244 ``[!a-z]``, ``[^a-z]`` Negated character class ``[^a-z]``
|
| /llvm-project-15.0.7/llvm/lib/Target/SystemZ/ |
| H A D | SystemZOperands.td | 212 // Negated variants. 465 // Negated immediates that fit LF32 or LH16.
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/GlobalISel/ |
| H A D | lower-neon-vector-fcmp.mir | 608 ; Negated EQ. 634 ; Negated EQ.
|
| /llvm-project-15.0.7/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 11751 static bool isPow2Splat(SDValue Op, uint64_t &SplatVal, bool &Negated) { in isPow2Splat() argument 11769 Negated = false; in isPow2Splat() 11773 Negated = true; in isPow2Splat() 11794 bool Negated; in LowerDIV() local 11796 if (Signed && isPow2Splat(Op.getOperand(1), SplatVal, Negated)) { in LowerDIV() 11801 if (Negated) in LowerDIV() 21135 bool Negated; in LowerFixedLengthVectorIntDivideToSVE() local 21137 if (Signed && isPow2Splat(Op.getOperand(1), SplatVal, Negated)) { in LowerFixedLengthVectorIntDivideToSVE() 21144 if (Negated) in LowerFixedLengthVectorIntDivideToSVE()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 13634 APFixedPoint Negated = Result.getFixedPoint().negate(&Overflowed); in VisitUnaryOperator() local 13635 if (Overflowed && !HandleOverflow(Info, E, Negated, E->getType())) in VisitUnaryOperator() 13637 return Success(Negated, E); in VisitUnaryOperator()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | Attr.td | 434 bit Negated = negated;
|