Searched refs:Add (Results 176 - 200 of 303) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVExpandAtomicPseudoInsts.cpp103 return expandAtomicBinOp(MBB, MBBI, AtomicRMWInst::Add, true, 32, NextMBBI);
309 case AtomicRMWInst::Add:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp110 case Instruction::Add:
985 case Instruction::Add: // SE: 16->32, 16/32->64, z14:16->64. ZE: 32->64
/freebsd-13-stable/stand/
H A Ddefs.mk126 # Add in the no float / no SIMD stuff and announce we're freestanding
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64Disassembler.cpp860 // Add the lane
867 unsigned Add) {
868 Inst.addOperand(MCOperand::createImm(Add - Imm));
873 unsigned Add) {
874 Inst.addOperand(MCOperand::createImm((Imm + Add) & (Add - 1)));
866 DecodeVecShiftRImm(MCInst &Inst, unsigned Imm, unsigned Add) argument
872 DecodeVecShiftLImm(MCInst &Inst, unsigned Imm, unsigned Add) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp125 case Instruction::Add:
849 Value *Add = Builder.CreateAdd(X, ConstantInt::get(X->getType(), -(*C1))); local
851 return Builder.CreateICmp(NewPred, Add, ConstantInt::get(X->getType(), 1));
1733 // Add/mul commute the constant to RHS; sub with constant RHS becomes add.
1879 case Instruction::Add:
3379 auto *Add = cast<BinaryOperator>(Op0); local
3380 Value *Neg = Builder.CreateNeg(A, "", Add->hasNoUnsignedWrap(),
3381 Add->hasNoSignedWrap());
H A DInstCombineSimplifyDemanded.cpp438 case Instruction::Add:
504 if ((I->getOpcode() == Instruction::Add ||
511 Known = KnownBits::computeForAddSub(I->getOpcode() == Instruction::Add,
1483 // Add additional discovered undefs.
H A DInstCombineVectorOps.cpp1195 case Instruction::Add:
1260 case Instruction::Add:
1350 case Instruction::Add:
1483 return { Instruction::Add, BO0, BO1 };
/freebsd-13-stable/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp512 case Instruction::Add:
692 case Instruction::Add:
742 case Instruction::Add:
1452 // Add null terminator
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h1392 return thisT()->getArithmeticReductionCost(Instruction::Add, VecOpTy,
1412 // FIXME: Add new flag for cost of strict reductions.
1417 // FIXME: Add new flag for cost of strict reductions.
1501 ? BinaryOperator::Add
1508 // Add:
1527 ? BinaryOperator::Add
H A DMachineScheduler.h148 Registry.Add(this);
312 /// Add a postprocessing step to the DAG builder.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp243 case Instruction::Add: {
781 case Instruction::Add:
827 case Instruction::Add:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp1319 (SubOneOp->getOpcode() == Instruction::Add &&
1337 if (Inst->getOpcode() != Instruction::Add)
1462 if (Inst->getOpcode() != Instruction::Add)
1730 // If the counter's initial value is not zero, insert Add Inst.
1802 // If the population counter's initial value is not zero, insert Add Inst.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp148 if (Opcode == Instruction::Add)
922 case Instruction::Add:
1434 if (I->getOpcode() != Instruction::Add) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp112 /// VisitGlobalVariableForEmission - Add \p GV to the list of GlobalVariable
2080 case Instruction::Add: {
2085 case Instruction::Add: return MCBinaryExpr::createAdd(LHS, RHS, Ctx);
2133 case MCBinaryExpr::Add:
/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp647 data->GetBreakpointLocationCollection().Add(shared_from_this());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp192 return m_watchpoint_list.Add(addr, size, watch_flags, hardware);
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGAtomic.cpp519 llvm::AtomicRMWInst::BinOp Op = llvm::AtomicRMWInst::Add;
598 PostOp = llvm::Instruction::Add;
603 Op = llvm::AtomicRMWInst::Add;
1104 PostOp = llvm::Instruction::Add;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalMap.h314 /// @param Add The number of elements to add to this node, possibly < 0.
316 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) { argument
317 if (Add > 0) {
319 unsigned Count = std::min(std::min(unsigned(Add), SSize), N - Size);
324 unsigned Count = std::min(std::min(unsigned(-Add), Size), N - SSize);
616 /// insertFrom - Add mapping of [a;b] to y if possible, coalescing as much as
654 // Add new interval at end.
831 /// push - Add entry to path.
1079 /// insert - Add a mapping of [a;b] to y, coalesce with adjacent intervals.
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h1835 /// Add a space after ``@property`` in Objective-C, i.e. use
1862 /// Add a space in front of an Objective-C protocol list, i.e. use
2431 void Add(FormatStyle Style);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEvaluator.cpp105 case Instruction::Add:
H A DLoopRotationUtils.cpp629 case Instruction::Add:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCCodeEmitter.cpp49 // Add a fixup for the branch target.
63 // Add a fixup for the branch target.
76 // Add a fixup for the branch target.
89 // Add a fixup for the branch target.
101 // Add a fixup for the immediate field.
115 // Add a fixup for the immediate field.
133 // Add a fixup for the displacement field.
151 // Add a fixup for the displacement field.
229 assert(BE->getOpcode() == MCBinaryExpr::Add &&
327 // Add
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DCFLGraph.h433 // TODO: Add support for noalias args/all the other fun function
561 case Instruction::Add:
H A DObjCARCInstKind.cpp252 case Instruction::Add:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp500 case AtomicRMWInst::Add:
726 case AtomicRMWInst::Add:
939 // Add the second value to the phi from above
1360 case AtomicRMWInst::Add:
1577 case AtomicRMWInst::Add:

Completed in 374 milliseconds

1234567891011>>