Home
last modified time | relevance | path

Searched refs:proxy (Results 1 – 25 of 29) sorted by relevance

12

/llvm-project-15.0.7/llvm/test/Transforms/Inline/
H A Dunwind-inline-asm.ll13 define dso_local void @proxy() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
23 ; CHECK-NOT: invoke void @proxy()
27 invoke void @proxy()
H A Dno-unwind-inline-asm.ll13 define dso_local void @proxy() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
23 ; CHECK-NOT: invoke void @proxy()
27 invoke void @proxy()
H A Dcgscc-incremental-invalidate.ll122 ; a function analysis manager proxy for the SCC that things get merged into.
/llvm-project-15.0.7/libcxx/test/std/iterators/predef.iterators/iterators.common/
H A Darrow.pass.cpp75 auto proxy = common.operator->(); in test() local
76 std::same_as<int const*> auto result = proxy.operator->(); in test()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGVTables.cpp656 llvm::GlobalVariable *proxy = module.getNamedGlobal(rttiProxyName); in addRelativeComponent() local
657 if (!proxy) { in addRelativeComponent()
658 proxy = new llvm::GlobalVariable(module, globalVal->getType(), in addRelativeComponent()
661 proxy->setDSOLocal(true); in addRelativeComponent()
662 proxy->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); in addRelativeComponent()
663 if (!proxy->hasLocalLinkage()) { in addRelativeComponent()
664 proxy->setVisibility(llvm::GlobalValue::HiddenVisibility); in addRelativeComponent()
665 proxy->setComdat(module.getOrInsertComdat(rttiProxyName)); in addRelativeComponent()
668 target = proxy; in addRelativeComponent()
/llvm-project-15.0.7/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py657 def _receive_proxy(self, proxy): argument
658 assert isinstance(proxy, AsanSymbolizerPlugInProxy)
659 self.proxy = proxy
834 def get_module_path_for_symbolication(self, module_name, proxy, validate_uuid): argument
840 module_desc = proxy.filter_module_desc(module_desc)
968 self.proxy,
/llvm-project-15.0.7/openmp/libomptarget/include/
H A Dinterop.h125 unsigned proxy : 1; // task is a proxy task (it will be executed outside the member
/llvm-project-15.0.7/llvm/docs/
H A DNewPassManager.rst204 proxy to an outer or inner level analysis manager. For example, to get a
332 analysis manager proxy which will clear all cached analyses, conservatively
335 cached/invalidated, you can mark the analysis manager proxy as preserved,
398 any existing inner proxies. The inner proxy's ``invalidate()`` first checks
399 if the proxy itself should be invalidated. If so, that means the proxy may
400 contain pointers to IR that is no longer valid, meaning that the inner proxy
401 needs to completely clear all relevant analysis results. Otherwise the proxy
H A DHowToAddABuilder.rst46 the contact listed in a workers attributes - to proxy requests to the relevant
H A DMyFirstTypoFix.rst412 Commit by proxy
/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_tasking.cpp905 !taskdata->td_flags.proxy; in __kmp_free_task_and_ancestors()
971 ret = ret || flags.proxy == TASK_PROXY || in __kmp_track_children_task()
1251 task->td_flags.proxy = TASK_FULL; in __kmp_init_implicit_task()
1397 if (UNLIKELY(flags->proxy == TASK_PROXY || in __kmp_task_alloc()
1399 if (flags->proxy == TASK_PROXY) { in __kmp_task_alloc()
1494 if (flags->proxy == TASK_FULL) in __kmp_task_alloc()
1580 input_flags->proxy ? "proxy" : "", in __kmpc_omp_task_alloc()
1685 if (taskdata->td_flags.proxy != TASK_PROXY) { in __kmp_invoke_task()
1814 if (taskdata->td_flags.proxy != TASK_PROXY) { in __kmp_invoke_task()
1905 if (new_taskdata->td_flags.proxy == TASK_PROXY || in __kmp_omp_task()
[all …]
H A Dkmp.h2452 unsigned proxy : 1; /* task is a proxy task (it will be executed outside the member
/llvm-project-15.0.7/llvm/test/tools/llvm-libtool-darwin/
H A Ddeterministic-library.test4 ## We only test timestamps as a proxy for full deterministic writing; i.e. we
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/google/
H A Dobjc-avoid-nsobject-new.m68 ProxyFoo *proxy = [ProxyFoo new];
/llvm-project-15.0.7/llvm/test/tools/llvm-profgen/
H A Dcs-preinline-cost.test2 ; Test default using size of profile as a proxy
/llvm-project-15.0.7/libcxx/docs/Status/
H A DCxx2bIssues.csv92 `3546 <https://wg21.link/LWG3546>`__,"``common_iterator``'s postfix-proxy is not quite right","June…
138 `3595 <https://wg21.link/LWG3595>`__,"Exposition-only classes proxy and postfix-proxy for ``common_…
144 "`3601 <https://wg21.link/LWG3601>`__","common_iterator's postfix-proxy needs ``indirectly_readable…
/llvm-project-15.0.7/libcxx/test/std/concepts/concepts.lang/concept.swappable/
H A Dswappable_with.compile.pass.cpp670 constexpr Proxy proxy(A& a) { return Proxy{a}; } in proxy() function
679 value_swap(a1, proxy(a2)); in CheckRegression()
/llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/ELF/
H A Ddeterministic-archive.test4 # We only test timestamps as a proxy for full deterministic writing; i.e. we
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A DCMakeLists.txt119 # sane and use the macOS SDK version as a proxy for aligned SDKs.
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A DCMakeLists.txt116 # sane and use the macOS SDK version as a proxy for aligned SDKs.
/llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/
H A Dskip-if-dead.ll1698 %proxy = phi float [ undef, %kill ], [ %scale, %live ]
1699 …m.amdgcn.exp.f32(i32 immarg 0, i32 immarg 15, float %proxy, float %proxy, float %proxy, float %pro…
/llvm-project-15.0.7/lldb/docs/testsuite/
H A Da-detailed-walkthrough.txt203 temporary or proxy databases, directories, or starting a server process.
/llvm-project-15.0.7/llvm/lib/Passes/
H A DPassRegistry.def163 CGSCC_ANALYSIS("fam-proxy", FunctionAnalysisManagerCGSCCProxy())
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DVOP3Instructions.td426 // Note: Use !isDivergent as a conservative proxy for whether the value
/llvm-project-15.0.7/libcxx/include/experimental/
H A Dsimd1526 // TODO: this is strawman implementation. Turn it into a proxy type.

12