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

12

/freebsd-13-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
65 llvm::negation<std::is_same<std::decay_t<T>, Any>>,
66 // We also disable this overload when an `Any` object can be
74 // 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-13-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-13-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-13-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-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DComdat.cpp44 case Comdat::Any:
62 Cd->setSelectionKind(Comdat::Any);
H A DPassTimingInfo.cpp274 [this](StringRef P, Any) { return this->runBeforePass(P); });
276 [this](StringRef P, Any) { this->runAfterPass(P); });
280 [this](StringRef P, Any) { this->runBeforePass(P); });
282 [this](StringRef P, Any) { this->runAfterPass(P); });
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.cpp513 bool Any = false; local
514 Any |= convertArg(AI.PrivateSegmentBuffer, ArgInfo.PrivateSegmentBuffer);
515 Any |= convertArg(AI.DispatchPtr, ArgInfo.DispatchPtr);
516 Any |= convertArg(AI.QueuePtr, ArgInfo.QueuePtr);
517 Any |= convertArg(AI.KernargSegmentPtr, ArgInfo.KernargSegmentPtr);
518 Any |= convertArg(AI.DispatchID, ArgInfo.DispatchID);
519 Any |= convertArg(AI.FlatScratchInit, ArgInfo.FlatScratchInit);
520 Any |= convertArg(AI.PrivateSegmentSize, ArgInfo.PrivateSegmentSize);
521 Any |= convertArg(AI.WorkGroupIDX, ArgInfo.WorkGroupIDX);
522 Any |
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp34 Optional<std::pair<const Module *, std::string>> unwrapModule(Any IR) {
113 /// llvm::Any and does actual print job.
114 void unwrapAndPrint(Any IR, StringRef Banner, bool ForceModule = false) {
158 void PrintIRInstrumentation::pushModuleDesc(StringRef PassID, Any IR) {
175 bool PrintIRInstrumentation::printBeforePass(StringRef PassID, Any IR) {
194 void PrintIRInstrumentation::printAfterPass(StringRef PassID, Any IR) {
236 [this](StringRef P, Any IR) { return this->printBeforePass(P, IR); });
240 [this](StringRef P, Any IR) { this->printAfterPass(P, IR); });
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-enumerations.h123 eInstructionTypePCModifying, // Any instruction that modifies the program
202 Any = 1 << 15, member in class:lldb_private::TypeValidatorResult::CompilerContextKind
204 AnyModule = Any | Module,
206 AnyType = Any | Class | Struct | Union | Enum | Typedef
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DAtomicChange.h20 #include "llvm/ADT/Any.h"
46 llvm::Any Metadata);
127 const llvm::Any &getMetadata() const { return Metadata; }
149 llvm::Any Metadata;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DRewriteRule.h24 #include "llvm/ADT/Any.h"
39 llvm::Any Metadata;
90 llvm::Any Metadata;
264 inline ASTEdit withMetadata(ASTEdit edit, llvm::Any Metadata) {
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dcond-late.mk6 # Any variables appearing in these
H A Dvarmod-defined.mk37 # Any other backslash sequences are preserved.
55 # Any other text is written without any further escaping. In contrast
H A Dcond-cmp-string.mk34 # Any character in a string literal may be escaped using a backslash.
/freebsd-13-stable/contrib/ntp/sntp/libevent/build-aux/
H A Dylwrap85 Any number of OUTPUT,DESIRED pairs may be used.
/freebsd-13-stable/contrib/openbsm/config/
H A Dylwrap53 Any number of OUTPUT,DESIRED pairs may be used.
/freebsd-13-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-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h377 /// 1) Any - indicates no constraint, any dependence is possible.
386 enum ConstraintKind { Empty, Point, Distance, Line, Any } Kind; enumerator in enum:llvm::DependenceInfo::Constraint::ConstraintKind
408 /// isAny - Return true if the constraint is of kind Any;
409 bool isAny() const { return Kind == Any; }
451 /// setAny - Change a constraint to Any.
/freebsd-13-stable/contrib/bmake/mk/
H A Dwarnings.mk21 # Any number of warnings sets can be added.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCheck.cpp507 if (AO != AllowedOperand::Any)
513 if (AO == AllowedOperand::LineVar || AO == AllowedOperand::Any) {
520 if (AO != AllowedOperand::Any)
549 if (AO == AllowedOperand::Any && !Expr.consumeInteger(0, SignedLiteralValue))
574 Expr, AllowedOperand::Any, /*MaybeInvalidConstraint=*/false, LineNumber,
626 IsLegacyLineExpr ? AllowedOperand::LegacyLiteral : AllowedOperand::Any;
670 Expr, AllowedOperand::Any, /*MaybeInvalidConstraint=*/false, LineNumber,
784 IsLegacyLineExpr ? AllowedOperand::LineVar : AllowedOperand::Any;
882 // Paren value #0 is for the fully matched string. Any new parenthesized
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMachineValueType.h267 // Any floating-point or vector floating-point value. This is used
281 // Any type. This is used for intrinsics that have overloadings.
283 Any = 255
417 return (SimpleTy == MVT::Any || SimpleTy == MVT::iAny ||
765 case Any:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp4328 bool Any = false; local
4389 Any = true;
4393 if (Any)
4438 bool Any = false; local
4459 Any = true;
4475 Any = true;
4482 if (Any)
4529 bool Any = false; local
4538 Any = true;
4542 if (Any)
4635 bool Any = false; local
4699 bool Any = false; local
4900 bool Any = false; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h330 Any = 0xffff member in class:llvm::pdb::PDB_Checksum::PDB_StackFrameType::PDB_MemoryType
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp208 llvm::Any M)

Completed in 304 milliseconds

12