Searched refs:Any (Results 1 - 25 of 44) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAny.h1 //===- Any.h - Generic type erased holder of any type -----------*- C++ -*-===//
9 // This file provides Any, a non-template class modeled in the spirit of
26 class Any { class in namespace:llvm
54 Any() = default;
56 Any(const Any &Other) function in class:llvm::Any
59 // When T is Any or T is not copy-constructible we need to explicitly disable
66 llvm::negation<std::is_same<typename std::decay<T>::type, Any>>,
67 // We also disable this overload when an `Any` object can be
74 // going ahead and adopting it to work-around usage of `Any` wit
79 Any(T &&Value) { function in class:llvm::Any
84 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} function in class:llvm::Any
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h41 bool printBeforePass(StringRef PassID, Any IR);
42 void printAfterPass(StringRef PassID, Any IR);
47 void pushModuleDesc(StringRef PassID, Any IR);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DComdat.h34 Any, ///< The linker may choose any COMDAT. enumerator in enum:llvm::Comdat::SelectionKind
57 SelectionKind SK = Any;
H A DPassInstrumentation.h38 /// - PassInstrumentation wraps address of IRUnit into llvm::Any and passes
56 #include "llvm/ADT/Any.h"
71 // to take them as constant pointers, wrapped with llvm::Any.
78 using BeforePassFunc = bool(StringRef, Any);
79 using AfterPassFunc = void(StringRef, Any);
81 using BeforeAnalysisFunc = void(StringRef, Any);
82 using AfterAnalysisFunc = void(StringRef, Any);
150 ShouldRun &= C(Pass.name(), llvm::Any(&IR));
161 C(Pass.name(), llvm::Any(&IR));
180 C(Analysis.name(), llvm::Any(
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DRichManglingContext.h17 #include "llvm/ADT/Any.h"
86 /// dependency. Instead keep a llvm::Any and cast it on-access in the cpp.
87 llvm::Any m_cxx_method_parser;
98 template <class ParserT> static ParserT *get(llvm::Any parser) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DComdat.cpp44 case Comdat::Any:
62 Cd->setSelectionKind(Comdat::Any);
H A DPassTimingInfo.cpp267 [this](StringRef P, Any) { return this->runBeforePass(P); });
269 [this](StringRef P, Any) { this->runAfterPass(P); });
273 [this](StringRef P, Any) { this->runBeforePass(P); });
275 [this](StringRef P, Any) { this->runAfterPass(P); });
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.cpp452 bool Any = false; local
453 Any |= convertArg(AI.PrivateSegmentBuffer, ArgInfo.PrivateSegmentBuffer);
454 Any |= convertArg(AI.DispatchPtr, ArgInfo.DispatchPtr);
455 Any |= convertArg(AI.QueuePtr, ArgInfo.QueuePtr);
456 Any |= convertArg(AI.KernargSegmentPtr, ArgInfo.KernargSegmentPtr);
457 Any |= convertArg(AI.DispatchID, ArgInfo.DispatchID);
458 Any |= convertArg(AI.FlatScratchInit, ArgInfo.FlatScratchInit);
459 Any |= convertArg(AI.PrivateSegmentSize, ArgInfo.PrivateSegmentSize);
460 Any |= convertArg(AI.WorkGroupIDX, ArgInfo.WorkGroupIDX);
461 Any |
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp34 Optional<std::pair<const Module *, std::string>> unwrapModule(Any IR) {
105 /// llvm::Any and does actual print job.
106 void unwrapAndPrint(Any IR, StringRef Banner, bool ForceModule = false) {
150 void PrintIRInstrumentation::pushModuleDesc(StringRef PassID, Any IR) {
167 bool PrintIRInstrumentation::printBeforePass(StringRef PassID, Any IR) {
186 void PrintIRInstrumentation::printAfterPass(StringRef PassID, Any IR) {
228 [this](StringRef P, Any IR) { return this->printBeforePass(P, IR); });
232 [this](StringRef P, Any IR) { this->printAfterPass(P, IR); });
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-enumerations.h123 eInstructionTypePCModifying, // Any instruction that modifies the program
214 Any = 1 << 15, member in class:lldb_private::TypeValidatorResult::CompilerContextKind
216 AnyModule = Any | Module,
218 AnyType = Any | Class | Struct | Union | Enum | Typedef
/freebsd-11-stable/contrib/ntp/sntp/libevent/build-aux/
H A Dylwrap85 Any number of OUTPUT,DESIRED pairs may be used.
/freebsd-11-stable/contrib/binutils/
H A Dylwrap56 Any number of OUTPUT,DESIRED pairs may be used.
/freebsd-11-stable/contrib/openbsm/config/
H A Dylwrap53 Any number of OUTPUT,DESIRED pairs may be used.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Linker/
H A DLinkModules.cpp156 // The ability to mix Comdat::SelectionKind::Any with
158 bool DstAnyOrLargest = Dst == Comdat::SelectionKind::Any ||
160 bool SrcAnyOrLargest = Src == Comdat::SelectionKind::Any ||
167 Result = Comdat::SelectionKind::Any;
176 case Comdat::SelectionKind::Any:
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h376 /// 1) Any - indicates no constraint, any dependence is possible.
385 enum ConstraintKind { Empty, Point, Distance, Line, Any } Kind; enumerator in enum:llvm::DependenceInfo::Constraint::ConstraintKind
407 /// isAny - Return true if the constraint is of kind Any;
408 bool isAny() const { return Kind == Any; }
450 /// setAny - Change a constraint to Any.
/freebsd-11-stable/contrib/bmake/mk/
H A Dwarnings.mk21 # Any number of warnings sets can be added.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp4330 bool Any = false; local
4391 Any = true;
4395 if (Any)
4440 bool Any = false; local
4461 Any = true;
4477 Any = true;
4484 if (Any)
4531 bool Any = false; local
4540 Any = true;
4544 if (Any)
4637 bool Any = false; local
4854 bool Any = false; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMachineValueType.h246 // Any floating-point or vector floating-point value. This is used
260 // Any type. This is used for intrinsics that have overloadings.
262 Any = 255
388 return (SimpleTy==MVT::Any ||
691 case Any:
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgdb-events.sh31 # Any UI module that is installing events is changed so that the
143 them against the existing \`\`gdb-events.[hc]''. Any differences
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h328 Any = 0xffff member in class:llvm::pdb::PDB_Checksum::PDB_StackFrameType::PDB_MemoryType
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCheckImpl.h539 enum class AllowedOperand { LineVar, Literal, Any };
H A DFileCheck.cpp185 if (AO == AllowedOperand::LineVar || AO == AllowedOperand::Any) {
247 IsLegacyLineExpr ? AllowedOperand::Literal : AllowedOperand::Any;
278 IsLegacyLineExpr ? AllowedOperand::LineVar : AllowedOperand::Any;
356 // Paren value #0 is for the fully matched string. Any new parenthesized
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DIntrinsicEmitter.cpp339 case MVT::Any: {
422 case MVT::Any:
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp508 if (C->getSelectionKind() != Comdat::Any)
509 report_fatal_error("ELF COMDATs only support SelectionKind::Any, '" +
1281 case Comdat::Any:
1686 if (C->getSelectionKind() != Comdat::Any)
1688 "SelectionKind::Any, '" + C->getName() + "' cannot be "
/freebsd-11-stable/crypto/openssl/util/
H A Dmkerr.pl306 print STDERR "!! Any new alerts must be added to $config.\n";
470 * The following lines are auto generated by the script mkerr.pl. Any changes

Completed in 315 milliseconds

12