Home
last modified time | relevance | path

Searched refs:Invert (Results 1 – 25 of 55) sorted by relevance

123

/llvm-project/clang-tools-extra/clang-tidy/bugprone/
H A DReservedIdentifierCheck.cpp61 Invert(Options.get("Invert", false)), in ReservedIdentifierCheck()
68 Options.store(Opts, "Invert", Invert); in storeOptions()
129 const LangOptions &LangOpts, bool Invert, in getFailureInfoImpl() argument
143 if (!Invert) { in getFailureInfoImpl()
188 /*IsMacro = */ false, getLangOpts(), Invert, AllowedIdentifiers); in getDeclFailureInfo()
195 /*IsMacro = */ true, getLangOpts(), Invert, in getMacroFailureInfo()
H A DReservedIdentifierCheck.h32 const bool Invert; variable
/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64GlobalISelUtils.cpp188 AArch64CC::CondCode &CondCode2, bool &Invert) { in changeVectorFCMPPredToAArch64CC()
189 Invert = false; in changeVectorFCMPPredToAArch64CC()
196 Invert = true; in changeVectorFCMPPredToAArch64CC()
209 Invert = true; in changeVectorFCMPPredToAArch64CC()
190 changeVectorFCMPPredToAArch64CC(const CmpInst::Predicate P,AArch64CC::CondCode & CondCode,AArch64CC::CondCode & CondCode2,bool & Invert) changeVectorFCMPPredToAArch64CC() argument
H A DAArch64GlobalISelUtils.h82 bool &Invert);
H A DAArch64PostLegalizerLowering.cpp1032 bool Invert = false; in applyLowerVectorFCMP()
1046 changeVectorFCMPPredToAArch64CC(Pred, CC, CC2, Invert); in applyLowerVectorFCMP()
1064 if (Invert) in applyFormTruncstore()
1013 bool Invert = false; applyLowerVectorFCMP() local
/llvm-project/lld/MachO/
H A DEhFrame.cpp105 * `b - (offset + a)` if Invert == false
106 * `(a + offset) - b` if Invert == true
108 template <bool Invert = false>
115 if (Invert) in createSubtraction()
121 (Invert ? 1 : -1) * off, minuend); in createSubtraction()
135 createSubtraction</*Invert=*/true>(isec, target, off, length, &newRelocs); in makeNegativePcRel()
H A DInputFiles.cpp1329 // If `Invert` is set, then we instead expect `target_addr - PC` to be written
1331 template <bool Invert = false>
1349 if (Invert) in targetSymFromCanonicalSubtractor()
1352 if (pcSym->value - (Invert ? -1 : 1) * minuend.addend != subtrahend.offset) in targetSymFromCanonicalSubtractor()
1361 macho::Reloc &pcReloc = Invert ? minuend : subtrahend; in targetSymFromCanonicalSubtractor()
1364 minuend.addend = pcReloc.offset * (Invert ? 1LL : -1LL); in targetSymFromCanonicalSubtractor()
1422 targetSymFromCanonicalSubtractor</*Invert=*/true>(isec, cieOffRelocIt) in registerEhFrames()
/llvm-project/llvm/lib/Support/
H A DGlobPattern.cpp175 bool Invert = S[I] == '^' || S[I] == '!'; in create() local
177 Invert ? expand(Chars.substr(1), S) : expand(Chars, S); in create()
180 if (Invert) in create()
/llvm-project/libc/src/__support/RPC/
H A Drpc.h
/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfo.h287 bool Invert) const override;
310 bool Invert = false) const;
H A DRISCVInstrInfo.cpp1476 bool Invert = !DefMI; in getInstSizeInBytes()
1483 MachineOperand FalseReg = MI.getOperand(Invert ? 5 : 4); in getInstSizeInBytes()
1502 if (Invert) in getInstSizeInBytes()
1748 bool Invert) const { in areRVVInstsReassociable()
1768 if (Invert) { in areRVVInstsReassociable()
1926 isVectorAssociativeAndCommutative(*MI1, /* Invert */ true)) && in isAssociativeAndCommutative()
1934 !isVectorAssociativeAndCommutative(Inst, /*Invert=*/true)) in isAssociativeAndCommutative()
1968 isVectorAssociativeAndCommutative(Inst, /*Invert=*/true)) in getInverseOpcode()
1989 bool Invert) const { in getInverseOpcode()
1990 if (isVectorAssociativeAndCommutative(Inst, Invert)) in getInverseOpcode()
1408 bool Invert = !DefMI; optimizeSelect() local
[all...]
/llvm-project/llvm/include/llvm/Analysis/
H A DSimplifyQuery.h64 bool Invert = false; member
/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.cpp498 bool Invert = !DefMI; in optimizeSelect() local
505 MachineOperand FalseReg = MI.getOperand(Invert ? 1 : 2); in optimizeSelect()
522 if (Invert) in optimizeSelect()
H A DLanaiISelLowering.cpp1337 // * Invert is set when N is the all zero/ones constant when CC is false.
1341 // * X = 0, Invert = False and OtherOp = Y
1342 // * Y = 0, Invert = True and OtherOp = X
1344 bool &Invert, SDValue &OtherOp,
1354 Invert = false; in isConditionalZeroOrAllOnes()
1359 Invert = true; in isConditionalZeroOrAllOnes()
1375 Invert = true; in isConditionalZeroOrAllOnes()
1384 Invert = !AllOnes; in isConditionalZeroOrAllOnes()
1350 isConditionalZeroOrAllOnes(SDNode * N,bool AllOnes,SDValue & CC,bool & Invert,SDValue & OtherOp,SelectionDAG & DAG) isConditionalZeroOrAllOnes() argument
/llvm-project/llvm/lib/Transforms/Scalar/
H A DStructurizeCFG.cpp314 PredInfo buildCondition(BranchInst *Term, unsigned Idx, bool Invert);
497 bool Invert) { in gatherPredicates()
498 Value *Cond = Invert ? BoolFalse : BoolTrue; in gatherPredicates()
505 if (Idx != (unsigned)Invert) { in gatherPredicates()
453 buildCondition(BranchInst * Term,unsigned Idx,bool Invert) buildCondition() argument
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dreserved-identifier.rst49 .. option:: Invert
/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp1333 std::optional<bool> Invert; in simplifyUsingControlFlow()
1357 if (Invert && *Invert != NeedsInvert) in simplifyUsingControlFlow()
1360 Invert = NeedsInvert; in simplifyUsingControlFlow()
1363 if (!*Invert) in simplifyUsingControlFlow()
1336 std::optional<bool> Invert; simplifyUsingControlFlow() local
/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h781 bool Invert) const;
791 bool Invert = false) const;
H A DSystemZInstrInfo.h296 bool Invert) const override;
H A DSystemZISelLowering.cpp3275 bool Swap = false, Invert = false; in expandV4F32ToV2F64()
3279 case SystemZ::CCMASK_CMP_LE: Invert = true; break; in expandV4F32ToV2F64()
3280 case SystemZ::CCMASK_CMP_GE: Swap = Invert = true; break; in expandV4F32ToV2F64()
3293 if (Invert) in getVectorCmp()
3545 // or 0 if neither can be done directly. Indicate in Invert whether the in lowerGlobalAddress()
3548 bool &Invert) { in lowerGlobalAddress()
3550 Invert = false; in lowerGlobalAddress()
3556 Invert = true; in lowerGlobalAddress()
3631 bool Invert = false; in lowerThreadPointer()
3636 Invert in lowerGlobalTLSAddress()
2985 bool Swap = false, Invert = false; adjustICmp128() local
3258 getVectorComparisonOrInvert(ISD::CondCode CC,CmpMode Mode,bool & Invert) getVectorComparisonOrInvert() argument
3341 bool Invert = false; lowerVectorSETCC() local
7605 bool Invert = false; combineCCMask() local
[all...]
/llvm-project/mlir/test/Integration/Dialect/SparseTensor/CPU/
H A Dsparse_unary.mlir56 // Invert the structure of a sparse vector. Present values become missing.
77 // Invert the structure of a sparse vector, where missing values are
/llvm-project/flang/include/flang/Parser/
H A Dprovenance.h123 ProvenanceRangeToOffsetMappings Invert(const AllSources &) const;
/llvm-project/flang/lib/Parser/
H A Dprovenance.cpp126 ProvenanceRangeToOffsetMappings OffsetToProvenanceMappings::Invert( in Invert() function in Fortran::parser::OffsetToProvenanceMappings
558 invertedMap_ = provenanceMap_.Invert(allSources); in Dump()
/llvm-project/llvm/lib/Target/Mips/
H A DMipsCallingConv.td12 class CCIfSubtarget<string F, CCAction A, string Invert = "">
13 : CCIf<!strconcat(Invert,
/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp1164 bool Invert = false; in LowerSETCC() local
1176 Invert = true; in LowerSETCC()
1184 Invert = true; in LowerSETCC()
1202 if (Invert) in LowerSETCC()

123