Home
last modified time | relevance | path

Searched refs:Any (Results 1 – 25 of 536) sorted by relevance

12345678910>>...22

/src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAny.h28 class LLVM_EXTERNAL_VISIBILITY Any {
63 Any() = default;
65 Any(const Any &Other) in Any() function
74 std::negation<std::is_same<std::decay_t<T>, Any>>,
85 std::negation<std::is_convertible<Any, std::decay_t<T>>>,
88 Any(T &&Value) { in Any() function
93 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} in Any() function
95 Any &swap(Any &Other) { in swap()
100 Any &operator=(Any Other) {
114 return Storage->id() == &Any::TypeId<remove_cvref_t<T>>::Id; in isa()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/Passes/
H A DStandardInstrumentations.h64 void printBeforePass(StringRef PassID, Any IR);
65 void printAfterPass(StringRef PassID, Any IR);
76 void pushPassRunDescriptor(StringRef PassID, Any IR,
79 std::string fetchDumpFilename(StringRef PassId, Any IR);
97 bool shouldRun(StringRef PassID, Any IR);
105 bool shouldRun(StringRef PassName, Any IR);
206 void saveIRBeforePass(Any IR, StringRef PassID, StringRef PassName);
208 void handleIRAfterPass(Any IR, StringRef PassID, StringRef PassName);
217 virtual void handleInitialIR(Any IR) = 0;
219 virtual void generateIRRepresentation(Any IR, StringRef PassID,
[all …]
/src/contrib/llvm-project/llvm/include/llvm/IR/
H A DPassInstrumentation.h79 using BeforePassFunc = bool(StringRef, Any);
80 using BeforeSkippedPassFunc = void(StringRef, Any);
81 using BeforeNonSkippedPassFunc = void(StringRef, Any);
82 using AfterPassFunc = void(StringRef, Any, const PreservedAnalyses &);
84 using BeforeAnalysisFunc = void(StringRef, Any);
85 using AfterAnalysisFunc = void(StringRef, Any);
86 using AnalysisInvalidatedFunc = void(StringRef, Any);
243 ShouldRun &= C(Pass.name(), llvm::Any(&IR)); in runBeforePass()
248 C(Pass.name(), llvm::Any(&IR)); in runBeforePass()
251 C(Pass.name(), llvm::Any(&IR)); in runBeforePass()
[all …]
H A DComdat.h36 Any, ///< The linker may choose any COMDAT. enumerator
63 SelectionKind SK = Any;
/src/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp141 template <typename IRUnitT> static const IRUnitT *unwrapIR(Any IR) { in unwrapIR()
162 const Module *unwrapModule(Any IR, bool Force = false) { in unwrapModule()
238 std::string getIRName(Any IR) { in getIRName()
274 bool shouldPrintIR(Any IR) { in shouldPrintIR()
294 void unwrapAndPrint(raw_ostream &OS, Any IR) { in unwrapAndPrint()
357 const Module *getModuleForComparison(Any IR) { in getModuleForComparison()
371 bool isInteresting(Any IR, StringRef PassID, StringRef PassName) { in isInteresting()
386 void ChangeReporter<T>::saveIRBeforePass(Any IR, StringRef PassID, in saveIRBeforePass()
409 void ChangeReporter<T>::handleIRAfterPass(Any IR, StringRef PassID, in handleIRAfterPass()
454 PIC.registerBeforeNonSkippedPassCallback([&PIC, this](StringRef P, Any IR) { in registerRequiredCallbacks()
[all …]
/src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.cpp644 bool Any = false; in convertArgumentInfo() local
645 Any |= convertArg(AI.PrivateSegmentBuffer, ArgInfo.PrivateSegmentBuffer); in convertArgumentInfo()
646 Any |= convertArg(AI.DispatchPtr, ArgInfo.DispatchPtr); in convertArgumentInfo()
647 Any |= convertArg(AI.QueuePtr, ArgInfo.QueuePtr); in convertArgumentInfo()
648 Any |= convertArg(AI.KernargSegmentPtr, ArgInfo.KernargSegmentPtr); in convertArgumentInfo()
649 Any |= convertArg(AI.DispatchID, ArgInfo.DispatchID); in convertArgumentInfo()
650 Any |= convertArg(AI.FlatScratchInit, ArgInfo.FlatScratchInit); in convertArgumentInfo()
651 Any |= convertArg(AI.LDSKernelId, ArgInfo.LDSKernelId); in convertArgumentInfo()
652 Any |= convertArg(AI.PrivateSegmentSize, ArgInfo.PrivateSegmentSize); in convertArgumentInfo()
653 Any |= convertArg(AI.WorkGroupIDX, ArgInfo.WorkGroupIDX); in convertArgumentInfo()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/CodeGenTypes/
H A DMachineValueType.h41 #define GET_VT_ATTR(Ty, n, sz, Any, Int, FP, Vec, Sc, NElem, EltTy) Ty = n, argument
174 #define GET_VT_ATTR(Ty, n, sz, Any, Int, FP, Vec, Sc, NElem, EltTy) \ in isOverloaded() argument
176 return Any; in isOverloaded()
257 #define GET_VT_ATTR(Ty, N, Sz, Any, Int, FP, Vec, Sc, NElem, EltTy) EltTy, in getVectorElementType() argument
270 #define GET_VT_ATTR(Ty, N, Sz, Any, Int, FP, Vec, Sc, NElem, EltTy) NElem, in getVectorMinNumElements() argument
299 #define GET_VT_ATTR(Ty, N, Sz, Any, Int, FP, Vec, Sc, NElem, EltTy) \ in getSizeInBits() argument
316 case Any: in getSizeInBits()
421 #define GET_VT_ATTR(Ty, n, sz, Any, Int, FP, Vec, Sc, NElem, EltTy) \ in getFloatingPointVT() argument
431 #define GET_VT_ATTR(Ty, n, sz, Any, Int, FP, Vec, Sc, NElem, EltTy) \ in getIntegerVT() argument
/src/tests/atf_python/sys/netpfil/ipfw/
H A Dutils.py13 from typing import Any
46 cls: Any
47 child_map: Any = None
/src/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-enumerations.h209 Any = 1 << 15, enumerator
211 AnyModule = Any | Module,
213 AnyType = Any | ClassOrStruct | Union | Enum | Typedef | Builtin,
215 AnyDeclContext = Any | Namespace | ClassOrStruct | Union | Enum | Function,
/src/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DRewriteRule.h50 llvm::Any Metadata;
69 using AnyGenerator = MatchConsumer<llvm::Any>;
115 -> llvm::Expected<llvm::Any> {
116 return llvm::Expected<llvm::Any>(llvm::Any());
247 const ast_matchers::MatchFinder::MatchResult &R) -> llvm::Any { in withMetadata()
/src/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DAtomicChange.h46 llvm::Any Metadata);
129 const llvm::Any &getMetadata() const { return Metadata; } in getMetadata()
151 llvm::Any Metadata;
/src/contrib/llvm-project/lldb/include/lldb/Core/
H A DRichManglingContext.h74 llvm::Any m_cxx_method_parser;
88 template <class ParserT> static ParserT *get(llvm::Any parser) { in get()
/src/contrib/bc/
H A DMAINTENANCE-TERMS.md16 * Any other non-contractual obligations or conventions, regardless of their
31 * Any hours spent on bugs or code that have been, or are suspected to have been,
46 * Any compute time that interferes with my ability to do any other work:
53 * Any other instances of blocking compute time.
/src/contrib/llvm-project/llvm/lib/IR/
H A DComdat.cpp50 case Comdat::Any: in LLVMGetComdatSelectionKind()
68 Cd->setSelectionKind(Comdat::Any); in LLVMSetComdatSelectionKind()
H A DPassTimingInfo.cpp316 [this](StringRef P, Any) { this->startPassTimer(P); }); in registerCallbacks() argument
318 [this](StringRef P, Any, const PreservedAnalyses &) { in registerCallbacks() argument
326 [this](StringRef P, Any) { this->startAnalysisTimer(P); }); in registerCallbacks() argument
328 [this](StringRef P, Any) { this->stopAnalysisTimer(P); }); in registerCallbacks() argument
/src/tests/atf_python/sys/netlink/
H A Dutils.py3 from typing import Any
36 child_map: Any = None
/src/usr.sbin/bsdconfig/include/
H A Dmedia.hlp4 ATAPI - Any standard ATAPI CDROM drive hooked to
6 SCSI - Any standard SCSI CDROM drive hooked to
/src/crypto/openssl/doc/man3/
H A DSSL_CONF_CTX_set_ssl_ctx.pod19 B<SSL_CTX> structure B<ctx>. Any previous B<SSL> or B<SSL_CTX> associated with
24 B<SSL> structure B<ssl>. Any previous B<SSL> or B<SSL_CTX> associated with
H A DBIO_new_CMS.pod16 of the filter is written to B<out>. Any data written to the chain is
35 Any content written through the filter is used verbatim: no canonical
H A DDH_get0_pqg.pod54 Any of the out parameters I<p>, I<q>, and I<g> can be NULL, in which case no
74 Any of the out parameters I<pub_key> and I<priv_key> can be NULL, in which case
83 Any of the values I<p>, I<q>, I<g>, I<priv_key>, and I<pub_key> can also be
88 Multiple flags can be passed in one go (bitwise ORed together). Any flags that
/src/contrib/ntp/html/hints/
H A Dtodo2 Any change in a source file in the lib directory causes all files to
/src/contrib/ntp/
H A Dreadme.y2kfixes32 for their distribution. Any copyright claims only only apply to
33 the specific changes made by Y2K to the code. Any original
46 Any distributions of the updates must keep the entire update
/src/sys/contrib/openzfs/etc/sudoers.d/
H A Dzfs5 ## CAUTION: Any syntax error introduced here will break sudo.
/src/sys/contrib/device-tree/Bindings/regulator/
H A Dsy8824x.txt11 Any property defined as part of the core regulator binding, defined in
H A Dda9210.txt12 Any standard regulator properties can be used to configure the single da9210

12345678910>>...22