Home
last modified time | relevance | path

Searched refs:Negate (Results 1 – 25 of 34) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86InstComments.cpp279 bool Negate = false; in printFMAComments() local
340 Negate = true; in printFMAComments()
346 Negate = true; in printFMAComments()
358 Negate = true; in printFMAComments()
365 Negate = true; in printFMAComments()
474 Negate = true; in printFMAComments()
486 Negate = true; in printFMAComments()
498 Negate = true; in printFMAComments()
511 Negate = true; in printFMAComments()
524 Negate = true; in printFMAComments()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/ata/
H A Dahci-ceva.txt12 CINMP : COMINIT Negate Minimum Period.
23 CWNMP: COMWAKE Negate Minimum Period.
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVInstPrinter.cpp281 bool Negate) { in printStackAdj() argument
291 if (Negate) in printStackAdj()
H A DRISCVInstPrinter.h57 bool Negate = false);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DVFABIDemangling.cpp
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_fp16.td19 // Negate
H A Darm_neon.td1524 // Scalar Negate
1528 // Scalar Signed Saturating Negate
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZOperands.td251 // Negate and then truncate an immediate to a 16-bit signed quantity.
269 // Negate and then truncate an immediate to a 32-bit unsigned quantity.
281 // Negate and then truncate an immediate to a 32-bit unsigned quantity.
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp2404 static SDValue combineBallotPattern(SDValue VCMP, bool &Negate) { in combineBallotPattern() argument
2424 Negate = VCMP_CC == ISD::SETEQ; in combineBallotPattern()
2445 bool Negate = false; in SelectBRCOND() local
2462 Negate = CC == ISD::SETEQ; in SelectBRCOND()
2467 Negate = Negate ^ NegatedBallot; in SelectBRCOND()
2482 UseSCCBr ? (Negate ? AMDGPU::S_CBRANCH_SCC0 : AMDGPU::S_CBRANCH_SCC1) in SelectBRCOND()
2483 : (Negate ? AMDGPU::S_CBRANCH_VCCZ : AMDGPU::S_CBRANCH_VCCNZ); in SelectBRCOND()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineNegator.cpp535 [[nodiscard]] Value *Negator::Negate(bool LHSIsZero, bool IsNSW, Value *Root, in Negate() function in Negator
H A DInstCombineInternal.h817 [[nodiscard]] static Value *Negate(bool LHSIsZero, bool IsNSW, Value *Root,
H A DInstCombineMulDivRem.cpp268 Negator::Negate(/*IsNegation*/ true, HasNSW, Op0, *this)) { in visitMul()
368 if (Value *NegOp0 = Negator::Negate(false, /*IsNSW*/ false, Op0, *this)) in visitMul()
H A DInstCombineAddSub.cpp2198 if (Value *NegOp1 = Negator::Negate(IsNegation, /* IsNSW */ IsNegation && in visitSub()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp4358 bool HasVSX, bool &Swap, bool &Negate) { in getVCmpInst() argument
4360 Negate = false; in getVCmpInst()
4375 case ISD::SETNE: CC = ISD::SETEQ; Negate = true; break; in getVCmpInst()
4376 case ISD::SETUNE: CC = ISD::SETOEQ; Negate = true; break; in getVCmpInst()
4377 case ISD::SETULE: CC = ISD::SETOGT; Negate = true; break; in getVCmpInst()
4378 case ISD::SETULT: CC = ISD::SETOGE; Negate = true; break; in getVCmpInst()
4419 case ISD::SETNE: CC = ISD::SETEQ; Negate = true; break; in getVCmpInst()
4420 case ISD::SETUNE: CC = ISD::SETUEQ; Negate = true; break; in getVCmpInst()
4421 case ISD::SETLE: CC = ISD::SETGT; Negate = true; break; in getVCmpInst()
4422 case ISD::SETULE: CC = ISD::SETUGT; Negate = true; break; in getVCmpInst()
[all …]
H A DREADME_P9.txt92 - Vector Integer Negate: vnegw vnegd
178 - QP Absolute/Negative-Absolute/Negate: xsabsqp xsnabsqp xsnegqp
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp1587 auto IsOutOfRangeConstant = [&](const MCExpr *E, bool Negate) -> bool { in parsePCRel() argument
1590 if (Negate) in parsePCRel()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp358 bool Negate, Register CCOp,
4785 Register Val, AArch64CC::CondCode &OutCC, bool Negate, Register CCOp, in emitConjunctionRec() argument
4795 if (Negate) in emitConjunctionRec()
4863 assert(!Negate); in emitConjunctionRec()
4873 NegateAfterAll = !Negate; in emitConjunctionRec()
4877 assert(!Negate && "Valid conjunction/disjunction tree"); in emitConjunctionRec()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp159 bool Negate = Str[0] == '-'; in convertStrToInt() local
172 uint64_t Max = AsSigned && Negate ? 1 : 0; in convertStrToInt()
232 if (Negate) in convertStrToInt()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp1091 if (const auto *Negate = dyn_cast<UnaryOperator>(E1)) { in checkIncorrectLogicOperator() local
1092 if (Negate->getOpcode() == UO_LNot && in checkIncorrectLogicOperator()
1093 Expr::isSameComparisonOperand(Negate->getSubExpr(), E2)) { in checkIncorrectLogicOperator()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp259 template <MVT::SimpleValueType VT, bool Negate>
261 return SelectSVEAddSubSSatImm(N, VT, Imm, Shift, Negate); in SelectSVEAddSubSSatImm()
496 bool Negate);
4169 bool Negate) { in SelectSVEAddSubSSatImm() argument
4179 if (Negate) in SelectSVEAddSubSSatImm()
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEInstrVec.td1500 // Section 8.17.8 - NNDM (Negate And VM)
1503 // Section 8.17.9 - NEGM (Negate VM)
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicsARM.td625 // Vector Saturating Negate.
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp14097 SDValue Negate = DCI.DAG.getNode(ISD::SUB, dl, MVT::i32, in PerformSUBCombine() local
14100 return DCI.DAG.getNode(ARMISD::VDUP, dl, N->getValueType(0), Negate); in PerformSUBCombine()
18184 bool &Negate) { in SearchLoopIntrinsic() argument
18193 Negate = !Negate; in SearchLoopIntrinsic()
18194 return SearchLoopIntrinsic(N.getOperand(0), CC, Imm, Negate); in SearchLoopIntrinsic()
18207 return SearchLoopIntrinsic(N->getOperand(0), CC, Imm, Negate); in SearchLoopIntrinsic()
18238 bool Negate = false; in PerformHWLoopCombine() local
18259 SDValue Int = SearchLoopIntrinsic(Cond, CC, Imm, Negate); in PerformHWLoopCombine()
18263 if (Negate) in PerformHWLoopCombine()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp3148 bool Negate = false; in parseImm() local
3153 Negate = true; in parseImm()
3171 if (Negate) in parseImm()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16InstrInfo.td939 // Purpose: Negate

12