Searched refs:Add (Results 101 - 125 of 303) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dvarparse-undef-partial.mk60 # TODO: Add a practical example where early/lazy expansion actually makes a
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.h159 /// Returns a member of one of the enums like Instruction::Add.
520 /// In LLVM, the Add, Mul, And, Or, and Xor operators are associative.
525 Opcode == Add || Opcode == Mul;
538 case Add: case FAdd:
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_secondary.h128 stat->Add(AllocatorStatAllocated, map_size);
129 stat->Add(AllocatorStatMapped, map_size);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h185 ID.Add(Loc);
370 /// addRoot - Add an untyped node to the set of roots.
376 /// addEndOfPath - Add an untyped node to the set of EOP nodes.
475 void Add(ExplodedNode *N) { function in class:clang::ento::ExplodedNodeSet
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterp.h97 // Add, Sub, Mul
132 bool Add(InterpState &S, CodePtr OpPC) { function in namespace:clang::interp
718 template <class T, bool Add> bool OffsetHelper(InterpState &S, CodePtr OpPC) {
747 APSInt NewIndex = Add ? (APIndex + APOffset) : (APIndex - APOffset);
756 if (Add && Offset.isNegative() && (Offset.isMin() || -Offset > Index))
758 if (!Add && Offset.isPositive() && Index < Offset)
763 if (Add && Offset.isPositive() && Offset > MaxOffset)
765 if (!Add && Offset.isNegative() && (Offset.isMin() || -Offset > MaxOffset))
771 int64_t Result = Add ? (WideIndex + WideOffset) : (WideIndex - WideOffset);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DOperations.cpp19 Ops.push_back(binOpDescriptor(1, Instruction::Add));
97 case Instruction::Add:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineNegator.cpp159 case Instruction::Add:
339 // Else, just defer to Instruction::Add handling.
341 case Instruction::Add: {
/freebsd-13-stable/sys/conf/
H A Ddtb.build.mk48 # Add dependencies on the source file so that out-of-tree things can be included
H A Dkmod.mk122 # Add -I paths for system headers. Individual module makefiles don't
391 # Add the sanitizer C flags
394 # Add the gcov flags
/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointList.cpp31 break_id_t BreakpointList::Add(BreakpointSP &bp_sp, bool notify) { function in class:BreakpointList
H A DBreakpointLocationCollection.cpp26 void BreakpointLocationCollection::Add(const BreakpointLocationSP &bp_loc) { function in class:BreakpointLocationCollection
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableList.h47 ID.Add(H);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DObjCSuperDeallocChecker.cpp77 ID.Add(ReceiverSymbol);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmtVisitor.h128 BINOP_FALLBACK(Add) BINOP_FALLBACK(Sub) BINOP_FALLBACK(Shl)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DIntrinsicInst.cpp316 return Instruction::Add;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrOrderFile.cpp146 AtomicRMWInst::Add, BufferIdx, ConstantInt::get(Int32Ty, 1),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerAtomic.cpp56 case AtomicRMWInst::Add:
H A DSpeculativeExecution.cpp217 case Instruction::Add:
H A DReassociate.cpp298 /// Add the extra weight 'RHS' to the existing weight 'LHS',
336 if (Opcode == Instruction::Add || Opcode == Instruction::FAdd) {
833 isReassociableOp(V, Instruction::Add, Instruction::FAdd)) {
837 if (I->getOpcode() == Instruction::Add) {
850 // Add the intermediate negates to the redo list as processing them later
936 if (isReassociableOp(V0, Instruction::Add, Instruction::FAdd) ||
940 if (isReassociableOp(V1, Instruction::Add, Instruction::FAdd) ||
945 (isReassociableOp(VB, Instruction::Add, Instruction::FAdd) ||
1479 // "A + A + B" -> "A*2 + B". Add the new multiply to the list of
1547 // Add on
[all...]
H A DLoopStrengthReduce.cpp147 cl::desc("Add instruction count to a LSR cost model"));
404 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
405 for (const SCEV *S : Add->operands())
711 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
712 if (IgnoreSignificantBits || isAddSExtable(Add, SE)) {
714 for (const SCEV *S : Add->operands()) {
755 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
756 SmallVector<const SCEV *, 8> NewOps(Add->op_begin(), Add->op_end());
781 } else if (const SCEVAddExpr *Add
2774 const SCEVAddExpr *Add = cast<SCEVAddExpr>(S); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCanonicalizeFreezeInLoops.cpp89 return Opc == Instruction::Add || Opc == Instruction::Sub ||
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp89 case Instruction::Add:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp108 case Instruction::Add:
227 // TODO: Add additional widening operations (e.g., mul, shl, etc.) once we
231 case Instruction::Add: // UADDL(2), SADDL(2), UADDW(2), SADDW(2).
545 Cost += getArithmeticInstrCost(Instruction::Add, Ty, CostKind,
575 int AddCost = getArithmeticInstrCost(Instruction::Add, Ty, CostKind,
684 // TODO: Add cost modeling for strict align. Misaligned loads expand to
987 case Instruction::Add:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp2043 const SCEVAddExpr *Add = cast<SCEVAddExpr>(Mul->getOperand(1));
2046 Add->op_begin(), Add->getNumOperands(),
2119 return Instruction::Add;
2300 while (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[Idx])) {
2302 Add->getNumOperands() > AddOpsInlineThreshold)
2307 Ops.append(Add->op_begin(), Add->op_end());
2696 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Ops[1]))
2697 // If any of Add'
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectType.cpp571 "Add a new formatting style for a type.", nullptr),
622 // Add the "--format" to all options groups
695 category_sp->GetRegexTypeFormatsContainer()->Add(std::move(typeRX),
698 category_sp->GetTypeFormatsContainer()->Add(std::move(typeCS), entry);
1458 "Add a new summary style for a type.", nullptr),
1623 category->GetRegexTypeSummariesContainer()->Add(std::move(typeRX), entry);
1628 DataVisualization::NamedSummaryFormats::Add(type_name, entry);
1631 category->GetTypeSummariesContainer()->Add(std::move(type_name), entry);
2310 "Add a new synthetic provider for a type.", nullptr),
2357 category->GetRegexTypeSyntheticsContainer()->Add(st
[all...]

Completed in 228 milliseconds

1234567891011>>