| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kFrameLowering.cpp | 340 bool IsSub = NumBytes < 0; in emitSPUpdate() local 341 uint64_t Offset = IsSub ? -NumBytes : NumBytes; in emitSPUpdate() 352 if (IsSub && !isRegLiveIn(MBB, M68k::D0)) in emitSPUpdate() 360 Opc = IsSub ? M68k::SUB32ar : M68k::ADD32ar; in emitSPUpdate() 374 MBB, MBBI, DL, IsSub ? -ThisVal : ThisVal, InEpilogue); in emitSPUpdate() 375 if (IsSub) in emitSPUpdate() 427 bool IsSub = Offset < 0; in BuildStackAdjustment() local 428 uint64_t AbsOffset = IsSub ? -Offset : Offset; in BuildStackAdjustment() 429 unsigned Opc = IsSub ? M68k::SUB32ai : M68k::ADD32ai; in BuildStackAdjustment()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | ComplexDeinterleavingPass.cpp | 660 auto IsSub = [](unsigned Op) { in identifyPartialMul() local 666 else if (IsSub(Real->getOpcode()) && IsAdd(Imag->getOpcode())) in identifyPartialMul() 668 else if (IsSub(Real->getOpcode()) && IsSub(Imag->getOpcode())) in identifyPartialMul() 670 else if (IsAdd(Real->getOpcode()) && IsSub(Imag->getOpcode())) in identifyPartialMul()
|
| H A D | AggressiveAntiDepBreaker.cpp | 578 bool IsSub = TRI->isSubRegister(SuperReg, Reg); in FindSuitableFreeRegisters() local 582 if (!IsSub) in FindSuitableFreeRegisters()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonConstExtenders.cpp | 1801 bool IsSub = ExtOpc == Hexagon::S4_subaddi; in replaceInstrExpr() local 1802 Register Rs = MI.getOperand(IsSub ? 3 : 2); in replaceInstrExpr() 1803 ExtValue V = MI.getOperand(IsSub ? 2 : 3); in replaceInstrExpr() 1804 assert(EV == V && Rs == Ex.Rs && IsSub == Ex.Neg && "Initializer mismatch"); in replaceInstrExpr()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/GISel/ |
| H A D | X86InstructionSelector.cpp | 1096 bool IsSub = I.getOpcode() == TargetOpcode::G_USUBE || in selectUAddSub() local 1138 unsigned Opcode = IsSub ? OpSUB : OpADD; in selectUAddSub() 1162 Opcode = IsSub ? OpSBB : OpADC; in selectUAddSub() 1168 Opcode = IsSub ? OpSUB : OpADD; in selectUAddSub()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86FrameLowering.cpp | 371 bool IsSub = Offset < 0; in BuildStackAdjustment() local 372 uint64_t AbsOffset = IsSub ? -Offset : Offset; in BuildStackAdjustment() 373 const unsigned Opc = IsSub ? getSUBriOpcode(Uses64BitFramePtr) in BuildStackAdjustment()
|
| H A D | X86ISelLowering.cpp | 49147 (IsSub && CC == X86::COND_B && ConstantX->isZero())) { in combineAddOrSubToADCOrSBB() 49157 (IsSub && CC == X86::COND_A && ConstantX->isZero())) { in combineAddOrSubToADCOrSBB() 49178 return DAG.getNode(IsSub ? X86ISD::SBB : X86ISD::ADC, DL, in combineAddOrSubToADCOrSBB() 49209 return DAG.getNode(IsSub ? X86ISD::ADC : X86ISD::SBB, DL, in combineAddOrSubToADCOrSBB() 49268 if ((IsSub && CC == X86::COND_E && ConstantX->isZero()) || in combineAddOrSubToADCOrSBB() 49303 bool IsSub = N->getOpcode() == ISD::SUB; in combineAddOrSubToADCOrSBB() local 49314 if (IsSub) in combineAddOrSubToADCOrSBB() 49337 bool IsSub = N->getOpcode() == ISD::XOR; in combineOrXorWithSETCC() local 49339 if (IsSub ? N1COdd : !N1COdd) { in combineOrXorWithSETCC() 53953 bool IsSub = X86ISD::SUB == N->getOpcode(); in combineX86AddSub() local [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMISelDAGToDAG.cpp | 2711 bool IsSub = SDValueToConstBool(N->getOperand(2)); in SelectBaseMVE_VMLLDAV() local 2714 assert(!IsSub && in SelectBaseMVE_VMLLDAV() 2729 if (IsSub) in SelectBaseMVE_VMLLDAV()
|
| H A D | ARMBaseInstrInfo.cpp | 3218 bool IsSub = Opc == ARM::SUBrr || Opc == ARM::t2SUBrr || in optimizeCompareInstr() local 3223 if (!IsSub || in optimizeCompareInstr() 3230 ARMCC::CondCodes NewCC = (IsSub ? getSwappedCondition(CC) : getCmpToAddCondition(CC)); in optimizeCompareInstr()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 2345 bool IsSub = (BinOp == Instruction::Sub); in willNotOverflow() local 2348 bool OverflowDown = IsSub ^ IsNegativeConst; in willNotOverflow()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 12992 bool IsSub) { in addOrSubLValueAsInteger() argument 13000 Offset = CharUnits::fromQuantity(IsSub ? Offset64 - Index64 in addOrSubLValueAsInteger()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 17731 bool IsSub, ASTContext &Ctx) { in getAlignmentAndOffsetFromBinAddOrSub() argument 17745 if (IsSub) in getAlignmentAndOffsetFromBinAddOrSub()
|