/freebsd/contrib/llvm-project/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 | 38 bool Negated, MCContext &Ctx) { in create() argument 39 return new (Ctx) AVRMCExpr(Kind, Expr, Negated); in create() 102 if (Negated) in evaluateAsInt64()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | TrustNonnullChecker.cpp | 214 bool Negated) const { in addImplication() 219 Negated ? InputState->get<NonNullImplicationMap>(Antecedent) in addImplication() 227 if ((Negated && InputState->isNonNull(AntecedentV).isConstrainedTrue()) in addImplication() 228 || (!Negated && InputState->isNull(AntecedentV).isConstrainedTrue())) { in addImplication() 230 State = InputState->assume(ConsequentS.castAs<DefinedSVal>(), Negated); in addImplication() 235 if (Negated) { in addImplication()
|
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/ |
H A D | ARMTargetParser.cpp | 357 bool Negated = stripNegationPrefix(ArchExt); in getArchExtFeature() local 360 return StringRef(Negated ? AE.NegFeature : AE.Feature); in getArchExtFeature() 426 const bool Negated = stripNegationPrefix(ArchExt); in appendArchExtFeatures() local 433 if (Negated) { in appendArchExtFeatures() 452 if (Negated) { in appendArchExtFeatures() 468 } 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()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineNegator.cpp | 535 Value *Negated = negate(Root, IsNSW, /*Depth=*/0); in run() local 536 if (!Negated) { in run() 543 return std::make_pair(ArrayRef<Instruction *>(NewInstructions), Negated); in run()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | ConstraintElimination.cpp | 800 auto Negated = ConstraintSystem::negate(Coefficients); in isImpliedBy() local 801 bool IsNegatedImplied = !Negated.empty() && CS.isConditionImplied(Negated); in isImpliedBy() 820 auto Negated = ConstraintSystem::negate(Coefficients); in isImpliedBy() local 821 auto IsNegatedImplied = !Negated.empty() && CS.isConditionImplied(Negated); in isImpliedBy()
|
/freebsd/contrib/llvm-project/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 | 2265 bool Negated = false; in evaluate() local 2270 Negated = true; in evaluate() 2316 if ((!Negated && CTrue) || (Negated && CFalse)) in evaluate() 2318 else if ((!Negated && CFalse) || (Negated && CTrue)) in evaluate()
|
H A D | HexagonHardwareLoops.cpp | 650 bool Negated = TII->predOpcodeHasNot(Cond) ^ (TB != Header); in getLoopTripCount() local 696 if (Negated) in getLoopTripCount()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZOperands.td | 210 // Negated variants. 467 // Negated immediates that fit LF32 or LH16.
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPULegalizerInfo.cpp | 4219 MachineBasicBlock *&UncondBrTarget, bool &Negated) { in verifyCFIntrinsic() argument 4236 Negated = true; in verifyCFIntrinsic() 7185 bool Negated = false; in legalizeIntrinsic() local 7187 verifyCFIntrinsic(MI, MRI, Br, UncondBrTarget, Negated)) { in legalizeIntrinsic() 7196 if (Negated) in legalizeIntrinsic() 7233 bool Negated = false; in legalizeIntrinsic() local 7235 verifyCFIntrinsic(MI, MRI, Br, UncondBrTarget, Negated)) { in legalizeIntrinsic() 7242 if (Negated) in legalizeIntrinsic()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 14649 static bool isPow2Splat(SDValue Op, uint64_t &SplatVal, bool &Negated) { in isPow2Splat() argument 14667 Negated = false; in isPow2Splat() 14671 Negated = true; in isPow2Splat() 14692 bool Negated; in LowerDIV() local 14694 if (Signed && isPow2Splat(Op.getOperand(1), SplatVal, Negated)) { in LowerDIV() 14699 if (Negated) in LowerDIV() 27391 bool Negated; in LowerFixedLengthVectorIntDivideToSVE() local 27393 if (Signed && isPow2Splat(Op.getOperand(1), SplatVal, Negated)) { in LowerFixedLengthVectorIntDivideToSVE() 27401 if (Negated) in LowerFixedLengthVectorIntDivideToSVE()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 14529 APFixedPoint Negated = Result.getFixedPoint().negate(&Overflowed); in VisitUnaryOperator() local 14530 if (Overflowed && !HandleOverflow(Info, E, Negated, E->getType())) in VisitUnaryOperator() 14532 return Success(Negated, E); in VisitUnaryOperator()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | Attr.td | 510 bit Negated = negated;
|