| /freebsd/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/ |
| H A D | AVRMCExpr.h | 37 bool isNegated() const { return Negated; } in isNegated() 38 void setNegated(bool negated = true) { Negated = negated; } 46 bool Negated; variable 49 explicit AVRMCExpr(Specifier S, const MCExpr *Expr, bool Negated) in AVRMCExpr() argument 50 : MCSpecifierExpr(Expr, S), Negated(Negated) {} in AVRMCExpr()
|
| H A D | AVRMCExpr.cpp | 20 bool Negated, MCContext &Ctx) { in create() argument 21 return new (Ctx) AVRMCExpr(Kind, Expr, Negated); in create()
|
| H A D | AVRMCAsmInfo.cpp | 133 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/clang/lib/Format/ |
| H A D | MatchFilePath.cpp | 99 bool Negated = false; in matchFilePath() local 101 Negated = true; in matchFilePath() 113 if (Negated ? Match : !Match) in matchFilePath()
|
| /freebsd/contrib/llvm-project/llvm/lib/TargetParser/ |
| H A D | ARMTargetParser.cpp | 359 bool Negated = stripNegationPrefix(ArchExt); in getArchExtFeature() local 362 return StringRef(Negated ? AE.NegFeature : AE.Feature); in getArchExtFeature() 427 const bool Negated = stripNegationPrefix(ArchExt); in appendArchExtFeatures() local 434 if (Negated) { in appendArchExtFeatures() 453 if (Negated) { in appendArchExtFeatures() 469 } else if (Negated) { in appendArchExtFeatures()
|
| H A D | CSKYTargetParser.cpp | 162 bool Negated = stripNegationPrefix(ArchExt); in getArchExtFeature() local 165 return StringRef(Negated ? AE.NegFeature : AE.Feature); in getArchExtFeature()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseHLSLRootSignature.cpp | 982 bool Negated = Signed && CurToken.TokKind == TokenKind::pu_minus; in parseFloatParam() local 985 if (!Negated && tryConsumeExpectedToken(TokenKind::int_literal)) { in parseFloatParam() 992 if (Negated && tryConsumeExpectedToken(TokenKind::int_literal)) { in parseFloatParam() 993 std::optional<int32_t> Int = handleIntLiteral(Negated); in parseFloatParam() 1000 std::optional<float> Float = handleFloatLiteral(Negated); in parseFloatParam() 1269 std::optional<int32_t> RootSignatureParser::handleIntLiteral(bool Negated) { in handleIntLiteral() argument 1287 Overflowed |= (Negated && MaxNegativeMagnitude < Val.getExtValue()); in handleIntLiteral() 1290 Overflowed |= (!Negated && MaxPositiveMagnitude < Val.getExtValue()); in handleIntLiteral() 1299 if (Negated) in handleIntLiteral() 1305 std::optional<float> RootSignatureParser::handleFloatLiteral(bool Negated) { in handleFloatLiteral() argument [all …]
|
| /freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | ParseHLSLRootSignature.h | 160 std::optional<int32_t> handleIntLiteral(bool Negated); 170 std::optional<float> handleFloatLiteral(bool Negated);
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineNegator.cpp | 534 Value *Negated = negate(Root, IsNSW, /*Depth=*/0); in run() local 535 if (!Negated) { in run() 542 return std::make_pair(ArrayRef<Instruction *>(NewInstructions), Negated); in run()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | ConstraintElimination.cpp | 858 auto Negated = ConstraintSystem::negate(Coefficients); in isImpliedBy() local 859 bool IsNegatedImplied = !Negated.empty() && CS.isConditionImplied(Negated); in isImpliedBy() 878 auto Negated = ConstraintSystem::negate(Coefficients); in isImpliedBy() local 879 auto IsNegatedImplied = !Negated.empty() && CS.isConditionImplied(Negated); in isImpliedBy()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonBitTracker.cpp | 985 bool Negated = false; in evaluate() local 991 Negated = true; in evaluate() 1024 if (!Test.is(!Negated)) { in evaluate()
|
| H A D | HexagonConstPropagation.cpp | 2263 bool Negated = false; in evaluate() local 2268 Negated = true; in evaluate() 2314 if ((!Negated && CTrue) || (Negated && CFalse)) in evaluate() 2316 else if ((!Negated && CFalse) || (Negated && CTrue)) in evaluate()
|
| H A D | HexagonHardwareLoops.cpp | 643 bool Negated = TII->predOpcodeHasNot(Cond) ^ (TB != Header); in getLoopTripCount() local 689 if (Negated) in getLoopTripCount()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZOperands.td | 217 // Negated variants. 474 // Negated immediates that fit LF32 or LH16.
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULegalizerInfo.cpp | 4277 MachineBasicBlock *&UncondBrTarget, bool &Negated) { in verifyCFIntrinsic() argument 4294 Negated = true; in verifyCFIntrinsic() 7357 bool Negated = false; in legalizeIntrinsic() local 7359 verifyCFIntrinsic(MI, MRI, Br, UncondBrTarget, Negated)) { in legalizeIntrinsic() 7368 if (Negated) in legalizeIntrinsic() 7405 bool Negated = false; in legalizeIntrinsic() local 7407 verifyCFIntrinsic(MI, MRI, Br, UncondBrTarget, Negated)) { in legalizeIntrinsic() 7414 if (Negated) in legalizeIntrinsic()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 15555 static bool isPow2Splat(SDValue Op, uint64_t &SplatVal, bool &Negated) { in isPow2Splat() argument 15573 Negated = false; in isPow2Splat() 15577 Negated = true; in isPow2Splat() 15598 bool Negated; in LowerDIV() local 15600 if (Signed && isPow2Splat(Op.getOperand(1), SplatVal, Negated)) { in LowerDIV() 15605 if (Negated) in LowerDIV() 29008 bool Negated; in LowerFixedLengthVectorIntDivideToSVE() local 29010 if (Signed && isPow2Splat(Op.getOperand(1), SplatVal, Negated)) { in LowerFixedLengthVectorIntDivideToSVE() 29018 if (Negated) in LowerFixedLengthVectorIntDivideToSVE()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 15397 APFixedPoint Negated = Result.getFixedPoint().negate(&Overflowed); in VisitUnaryOperator() local 15398 if (Overflowed && !HandleOverflow(Info, E, Negated, E->getType())) in VisitUnaryOperator() 15400 return Success(Negated, E); in VisitUnaryOperator()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Attr.td | 550 bit Negated = negated;
|