HomeSort by: relevance | last modified time | path
    Searched refs:Negated (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/
AVRMCExpr.h 55 bool isNegated() const { return Negated; }
56 void setNegated(bool negated = true) { Negated = negated; }
82 bool Negated;
85 explicit AVRMCExpr(VariantKind Kind, const MCExpr *Expr, bool Negated)
86 : Kind(Kind), SubExpr(Expr), Negated(Negated) {}
AVRMCExpr.cpp 40 bool Negated, MCContext &Ctx) {
41 return new (Ctx) AVRMCExpr(Kind, Expr, Negated);
103 if (Negated)
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 276 bool Negated;
279 CapabilityExpr(const til::SExpr *E, bool Neg) : CapExpr(E), Negated(Neg) {}
282 bool negative() const { return Negated; }
285 return CapabilityExpr(CapExpr, !Negated);
289 return (Negated == other.Negated) && sx::equals(CapExpr, other.CapExpr);
293 return (Negated == other.Negated) && sx::matches(CapExpr, other.CapExpr);
301 return (Negated == other.Negated) &
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
TrustNonnullChecker.cpp 210 /// If \p Negated is true, checks NullImplicationMap, and assumes
215 bool Negated) const {
220 Negated ? InputState->get<NonNullImplicationMap>(Antecedent)
228 if ((Negated && InputState->isNonNull(AntecedentV).isConstrainedTrue())
229 || (!Negated && InputState->isNull(AntecedentV).isConstrainedTrue())) {
231 State = InputState->assume(ConsequentS.castAs<DefinedSVal>(), Negated);
236 if (Negated) {
  /src/external/apache2/llvm/dist/llvm/lib/Support/
ARMTargetParser.cpp 461 bool Negated = stripNegationPrefix(ArchExt);
464 return StringRef(Negated ? AE.NegFeature : AE.Feature);
505 const bool Negated = stripNegationPrefix(ArchExt);
512 if (Negated) {
527 if (Negated) {
532 } else if (Negated) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineNegator.cpp 82 "Negator: Number of new negated instructions created, total");
87 "Negator: Number of new negated instructions created in successful "
148 // Integral constants can be freely negated.
280 // All incoming values are indeed negatible. Create negated PHI node.
382 NegatedOps.emplace_back(NegOp); // Successfully negated operand!
478 Value *Negated = negate(Root, /*Depth=*/0);
479 if (!Negated) {
486 return std::make_pair(ArrayRef<Instruction *>(NewInstructions), Negated);
513 // already specified when producing negated instructions.
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonBitTracker.cpp 988 bool Negated = false;
994 Negated = true;
1026 // "Test.is(!Negated)" means "branch condition is true".
1027 if (!Test.is(!Negated)) {
HexagonConstPropagation.cpp 2272 bool Negated = false;
2277 Negated = true;
2323 if ((!Negated && CTrue) || (Negated && CFalse))
2325 else if ((!Negated && CFalse) || (Negated && CTrue))
HexagonHardwareLoops.cpp 647 bool Negated = TII->predOpcodeHasNot(Cond) ^ (TB != Header);
692 if (Negated)
842 // negated. To avoid the negation, just swap Start and End.
1694 // HexagonInstrInfo::analyzeBranch for negated branches inserts imm(0)
1695 // into Cond, followed by the predicate register. For non-negated branches
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPULegalizerInfo.cpp 2680 MachineBasicBlock *&UncondBrTarget, bool &Negated) {
2697 Negated = true;
4692 bool Negated = false;
4694 verifyCFIntrinsic(MI, MRI, Br, UncondBrTarget, Negated)) {
4703 if (Negated)
4740 bool Negated = false;
4742 verifyCFIntrinsic(MI, MRI, Br, UncondBrTarget, Negated)) {
4749 if (Negated)
AMDGPUISelDAGToDAG.cpp 142 bool isInlineImmediate(const SDNode *N, bool Negated = false) const;
525 bool Negated) const {
530 if (Negated) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
ExprConstant.cpp 13371 APFixedPoint Negated = Result.getFixedPoint().negate(&Overflowed);
13372 if (Overflowed && !HandleOverflow(Info, E, Negated, E->getType()))
13374 return Success(Negated, E);

Completed in 69 milliseconds