Home
last modified time | relevance | path

Searched refs:Runtime (Results 1 – 25 of 144) sorted by relevance

123456

/llvm-project-15.0.7/flang/lib/Optimizer/Builder/
H A DCMakeLists.txt11 Runtime/Assign.cpp
12 Runtime/Character.cpp
13 Runtime/Command.cpp
14 Runtime/Derived.cpp
15 Runtime/Inquiry.cpp
16 Runtime/Numeric.cpp
17 Runtime/Ragged.cpp
18 Runtime/Reduction.cpp
19 Runtime/Stop.cpp
20 Runtime/Transformational.cpp
/llvm-project-15.0.7/flang/unittests/Optimizer/
H A DCMakeLists.txt16 Builder/Runtime/AssignTest.cpp
17 Builder/Runtime/CommandTest.cpp
18 Builder/Runtime/CharacterTest.cpp
19 Builder/Runtime/DerivedTest.cpp
20 Builder/Runtime/NumericTest.cpp
21 Builder/Runtime/RaggedTest.cpp
22 Builder/Runtime/ReductionTest.cpp
23 Builder/Runtime/StopTest.cpp
24 Builder/Runtime/TransformationalTest.cpp
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DRuntime.h15 class Runtime {
17 Runtime(Process *process) : m_process(process) {} in Runtime() function
18 virtual ~Runtime() = default;
19 Runtime(const Runtime &) = delete;
20 const Runtime &operator=(const Runtime &) = delete;
/llvm-project-15.0.7/libc/benchmarks/
H A DJSONTest.cpp29 Runtime{HostState{"CpuName", in getStudy()
89 auto equals(const Runtime &RI) -> auto { in equals()
90 return AllOf(Field(&Runtime::Host, equals(RI.Host)), in equals()
91 Field(&Runtime::BufferSize, RI.BufferSize), in equals()
92 Field(&Runtime::BatchParameterCount, RI.BatchParameterCount), in equals()
93 Field(&Runtime::BenchmarkOptions, equals(RI.BenchmarkOptions))); in equals()
98 Field(&Study::Runtime, equals(S.Runtime)), in equals()
124 "Runtime": 1 in TEST()
132 "Runtime": { in TEST()
165 "Runtime": { in TEST()
[all …]
H A DLibcMemoryBenchmark.h69 struct Runtime { struct
94 Runtime Runtime; argument
H A DLibcMemoryBenchmarkMain.cpp108 Runtime &RI = Study.Runtime; in createStudy()
183 BenchmarkOptions &BO = Study.Runtime.BenchmarkOptions; in run()
220 BenchmarkOptions &BO = Study.Runtime.BenchmarkOptions; in run()
H A DJSON.cpp218 static Error fromJson(const json::Value &V, libc_benchmarks::Runtime &Out) { in fromJson()
230 O.map("Runtime", Out.Runtime); in fromJson()
301 static void serialize(const Runtime &RI, json::OStream &JOS) { in serialize()
312 JOS.attributeObject("Runtime", [&]() { serialize(S.Runtime, JOS); }); in serializeToJson()
H A Dlibc-benchmark-analysis.py329 return study["Runtime"]["Host"]["CpuFrequency"]
32 CpuName = study["Runtime"]["Host"]["CpuName"]
35 CpuCaches = ", ".join(formatCache(c) for c in study["Runtime"]["Host"]["Caches"])
/llvm-project-15.0.7/mlir/include/mlir/Conversion/GPUToROCDL/
H A DGPUToROCDLPass.h32 gpu::amd::Runtime runtime);
44 gpu::amd::Runtime runtime = gpu::amd::Runtime::Unknown);
H A DRuntimes.h15 enum Runtime { enum
/llvm-project-15.0.7/mlir/lib/Conversion/GPUToROCDL/
H A DLowerGpuOpsToROCDLOps.cpp58 gpu::amd::Runtime runtime) { in LowerGpuOpsToROCDLOpsPass()
126 mlir::gpu::amd::Runtime runtime) { in populateGpuToROCDLConversionPatterns()
127 using mlir::gpu::amd::Runtime; in populateGpuToROCDLConversionPatterns()
144 if (Runtime::HIP == runtime) { in populateGpuToROCDLConversionPatterns()
146 } else if (Runtime::OpenCL == runtime) { in populateGpuToROCDLConversionPatterns()
192 gpu::amd::Runtime runtime) { in createLowerGpuOpsToROCDLOpsPass()
/llvm-project-15.0.7/clang/tools/clang-format-vs/ClangFormat/Properties/
H A DAssemblyInfo.cs4 using System.Runtime.CompilerServices;
5 using System.Runtime.InteropServices;
/llvm-project-15.0.7/openmp/libomptarget/plugins/amdgpu/impl/
H A Dimpl.cpp42 core::Runtime::Memfree(p); // ignore failure to free in operator ()()
99 hsa_status_t ret = core::Runtime::HostMalloc(&tempHostPtr, size, MemoryPool); in impl_memcpy_h2d()
128 hsa_status_t ret = core::Runtime::HostMalloc(&tempHostPtr, size, MemoryPool); in impl_memcpy_d2h()
H A Ddata.cpp20 namespace Runtime { namespace
H A Drt.h18 namespace Runtime {
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp206 UP.Runtime = false; in gatherUnrollingPreferences()
247 UP.Runtime = UnrollRuntime; in gatherUnrollingPreferences()
265 UP.Runtime = *UserRuntime; in gatherUnrollingPreferences()
917 UP.Runtime = false; in computeUnrollCount()
931 UP.Runtime |= (PragmaCount > 0); in computeUnrollCount()
983 UP.Runtime = false; in computeUnrollCount()
1059 if (!UP.Runtime) { in computeUnrollCount()
1307 UP.Runtime &= TripCount == 0 && TripMultiple % UP.Count != 0; in tryToUnrollLoop()
1316 {UP.Count, UP.Force, UP.Runtime, UP.AllowExpensiveTripCount, in tryToUnrollLoop()
1389 ProvidedRuntime(Runtime), ProvidedUpperBound(UpperBound), in LoopUnroll()
[all …]
/llvm-project-15.0.7/polly/tools/GPURuntime/
H A DGPUJIT.c1583 switch (Runtime) { in polly_initContext()
1604 switch (Runtime) { in polly_freeKernel()
1626 switch (Runtime) { in polly_getKernel()
1648 switch (Runtime) { in polly_copyFromHostToDevice()
1668 switch (Runtime) { in polly_copyFromDeviceToHost()
1690 switch (Runtime) { in polly_launchKernel()
1711 switch (Runtime) { in polly_freeDeviceMemory()
1732 switch (Runtime) { in polly_allocateMemoryForDevice()
1755 switch (Runtime) { in polly_getDevicePtr()
1776 switch (Runtime) { in polly_synchronizeDevice()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Scalar/
H A DLoopUnrollPass.h93 LoopUnrollOptions &setRuntime(bool Runtime) { in setRuntime()
94 AllowRuntime = Runtime; in setRuntime()
/llvm-project-15.0.7/openmp/runtime/src/
H A Dlibomp.rc.var41 VALUE "FileDescription", "LLVM* OpenMP* Runtime Library\0"
45 VALUE "ProductName", "LLVM* OpenMP* Runtime Library\0"
/llvm-project-15.0.7/clang/lib/Basic/
H A DSanitizers.cpp96 case llvm::AsanDetectStackUseAfterReturnMode::Runtime: in AsanDetectStackUseAfterReturnModeToString()
110 .Case("runtime", llvm::AsanDetectStackUseAfterReturnMode::Runtime) in AsanDetectStackUseAfterReturnModeFromString()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DLoopUnroll.cpp364 ULO.Runtime = false; in UnrollLoop()
404 assert((!HasConvergent || !ULO.Runtime) && in UnrollLoop()
412 if (ULO.Runtime && in UnrollLoop()
418 ULO.Runtime = false; in UnrollLoop()
441 if (ULO.Runtime) in UnrollLoop()
450 if (ULO.Runtime) in UnrollLoop()
713 if (ULO.Runtime) { in UnrollLoop()
/llvm-project-15.0.7/polly/lib/CodeGen/
H A DManagedMemoryRewrite.cpp355 GPURuntime Runtime; member in __anon3eb854810111::ManagedMemoryRewritePass
406 GPURuntime Runtime) { in createManagedMemoryRewritePassPass() argument
408 pass->Runtime = Runtime; in createManagedMemoryRewritePassPass()
/llvm-project-15.0.7/llvm/include/llvm/Transforms/Instrumentation/
H A DAddressSanitizerOptions.h25 Runtime, ///< Detect stack use after return if not disabled runtime with enumerator
/llvm-project-15.0.7/openmp/libomptarget/
H A DREADME.txt2 README for the LLVM* OpenMP* Offloading Runtime Library (libomptarget)
5 How to Build the LLVM* OpenMP* Offloading Runtime Library (libomptarget)
/llvm-project-15.0.7/mlir/include/mlir/Dialect/Async/IR/
H A DAsyncTypes.td71 // Types for lowering to LLVM + Async Runtime via the LLVM Coroutines.
75 // identifiers and handles. To define type-safe Async Runtime operations and

123456