Home
last modified time | relevance | path

Searched +full:- +full:- +full:requested +full:- +full:by (Results 1 – 25 of 984) sorted by relevance

12345678910>>...40

/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUSubtarget.cpp1 //===-- AMDGPUSubtarget.cpp - AMDGPU Subtarget Information -------
422 std::pair<unsigned, unsigned> Requested = AMDGPU::getIntegerPairAttribute( getFlatWorkGroupSizes() local
439 getEffectiveWavesPerEU(std::pair<unsigned,unsigned> Requested,std::pair<unsigned,unsigned> FlatWorkGroupSizes) const getEffectiveWavesPerEU() argument
475 std::pair<unsigned, unsigned> Requested = getWavesPerEU() local
745 unsigned Requested = getBaseMaxNumSGPRs() local
827 unsigned Requested = getBaseMaxNumVGPRs() local
[all...]
H A DAMDGPUSubtarget.h1 //=====-- AMDGPUSubtarget.h - Define Subtarget for AMDGPU -------*
[all...]
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/altera/
H A Dunroll-loops.cpp1 …%check_clang_tidy %s altera-unroll-loops %t -- -config="{CheckOptions: {altera-unroll-loops.MaxLoo…
2 …_tidy -check-suffix=MULT %s altera-unroll-loops %t -- -config="{CheckOptions: {altera-unroll-loops…
14-MESSAGES-MULT: :[[@LINE-1]]:3: warning: loop likely has a large number of iterations and thus can… in for_loop_mult_div_increments()
24-MESSAGES-MULT: :[[@LINE-1]]:3: warning: loop likely has a large number of iterations and thus can… in for_loop_mult_div_increments()
33 …HECK-MESSAGES: :[[@LINE-1]]:3: warning: kernel performance could be improved by unrolling this loo… in while_loops()
39 …HECK-MESSAGES: :[[@LINE-1]]:3: warning: kernel performance could be improved by unrolling this loo… in while_loops()
48 …// CHECK-MESSAGES: :[[@LINE-1]]:3: note: full unrolling requested, but loop bounds may not be know… in while_loops()
54 …// CHECK-MESSAGES: :[[@LINE-1]]:3: note: full unrolling requested, but loop bounds may not be know… in while_loops()
70 // Range-based for loops.
75 …HECK-MESSAGES: :[[@LINE-1]]:3: warning: kernel performance could be improved by unrolling this loo… in cxx_for_loops()
[all …]
/llvm-project/lldb/include/lldb/Target/
H A DTrace.h1 //===-- Trace.h -------------------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
23 #include "lldb/lldb-private.h"
24 #include "lldb/lldb-types.h"
29 /// A plug-in interface definition class for trace information.
31 /// Trace plug-ins allow processor trace information to be loaded into LLDB so
44 /// In order to support live tracing, the name of the plug-in should match the
45 /// name of the tracing type returned by the gdb-remote packet
50 /// Dump the trace data that this plug-in has access to.
[all …]
H A DQueueList.h1 //===-- QueueList.h --------------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
17 #include "lldb/lldb-private.h"
26 // the QueueList may be populated with Queues by the SystemRuntime.
45 /// The index number (0-based) of the queue.
68 /// Used by the SystemRuntime to populate the QueueList
71 /// Find a queue in the QueueList by QueueID
74 /// The QueueID (same as returned by Thread::GetQueueID()) to find.
77 /// A QueueSP to the queue requested, if it is present in the QueueList.
[all …]
/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h1 //===- CompileOnDemandLayer.h - Compile each function on demand -*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exceptio
[all...]
H A DOrcABISupport.h1 //===- OrcABISupport.h - ABI support code -----------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 //===----------------------------------------------------------------------===//
67 llvm_unreachable("writeResolverCode is not supported by the generic host " in writeResolverCode()
75 llvm_unreachable("writeTrampolines is not supported by the generic host " in writeTrampolines()
84 "writeIndirectStubsBlock is not supported by the generic host " in writeIndirectStubsBlock()
109 /// Write the requested number of trampolines into the given memory,
137 /// Write the requested number of trampolines into the given memory,
218 /// Write the requested number of trampolines into the given memory,
[all …]
/llvm-project/clang/test/SemaTemplate/
H A Ddependent-names.cpp1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
12 int a0[sizeof(X<int>::a) == sizeof(double) ? 1 : -1];
40 …Base<T>::Inner::instance_foo(); // expected-error {{call to non-static member function without an … in test1()
45 …Base<T>::instance_foo(); // expected-error {{call to non-static member function without an object … in test2()
50 …Base<T>::Inner::instance_foo(); // expected-error {{call to non-static member function without an … in test3()
58 …Base<T>::instance_foo(); // expected-error {{call to non-static member function without an object … in test0()
68 …Base<T>::instance_foo(); // expected-error {{call to non-static member function without an object … in test2()
73 …Base<T>::Inner::instance_foo(); // expected-error {{call to non-static member function without an … in test3()
80 d1.test1(); // expected-note {{in instantiation of member function}} in test0()
81 d1.test2(); // expected-note {{in instantiation of member function}} in test0()
[all …]
H A Dinstantiate-expr-1.cpp1 // RUN: %clang_cc1 -fsyntax-only -verify %s -triple x86_64-pc-linux-gnu
4 int simple : I; // expected-error{{bit-field 'simple' has zero width}}
10 …(void)sizeof(Bitfields<0, 1>); // expected-note{{in instantiation of template class 'Bitfields<0, … in test_Bitfields()
15 int bitfield : I + J; // expected-error{{bit-field 'bitfield' has zero width}}
20 …(void)sizeof(BitfieldPlus<-5, 5>); // expected-note{{in instantiation of template class 'BitfieldP… in test_BitfieldPlus()
25 int bitfield : I - J; // expected-error{{bit-field 'bitfield' has negative width (-1)}} \
26 // expected-error{{bit-field 'bitfield' has zero width}}
31 …sizeof(BitfieldMinus<0, 1>); // expected-note{{in instantiation of template class 'BitfieldMinus<0… in test_BitfieldMinus()
32 …sizeof(BitfieldMinus<5, 5>); // expected-note{{in instantiation of template class 'BitfieldMinus<5… in test_BitfieldMinus()
37 int bitfield : I / J; // expected-error{{expression is not an integral constant expression}} \
[all …]
/llvm-project/llvm/test/CodeGen/Thumb2/
H A Dframe-pointer.ll1 ; RUN: llc -mtriple=thumbv7m-none-eabi -o - %s | FileCheck %s
7 ; CHECK-LABEL: leaf:
8 ; CHECK-NOT: push
9 ; CHECK-NOT: sp
10 ; CHECK-NOT: pop
15 ; Leaf function, frame pointer is requested bu
[all...]
/llvm-project/llvm/include/llvm/Analysis/
H A DLazyBranchProbabilityInfo.h1 //===- LazyBranchProbabilityInfo.h - Lazy Branch Probability ----*- C++ -*-===//
5 // SPDX-Licens
[all...]
H A DLazyBlockFrequencyInfo.h1 //===- LazyBlockFrequencyInfo.h - Lazy Block Frequency Analysis -*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exceptio
[all...]
/llvm-project/llvm/include/llvm/Support/
H A DMemory.h1 //===- llvm/Support/Memory.h - Memory Support --------
[all...]
/llvm-project/clang/test/CXX/except/except.spec/
H A Dp13.cpp1 // RUN: %clang_cc1 -fexceptions -fcxx-exceptions -fsyntax-only -verify %s
29 // expected-error@-1 {{no member named 'y' in 'A'}}
34 void f(A, int*) noexcept; // expected-error {{exception specification in declaration does not match…
35 … // expected-note@-1 {{in instantiation of exception specification for 'f<A, int>' requested here}}
36 // expected-note@-2 {{previous declaration is here}}
48 void f(T, U**) noexcept(T::y); // expected-error {{no member named 'y' in 'A'}}
54 void f(A, int*) noexcept; // expected-note {{previous declaration is here}}
57 void f(A, int*); // expected-error {{'f<A, int>' is missing exception specification 'noexcept'}}
60 void f(A, int**) noexcept; // expected-error {{exception specification in declaration does not matc…
61 … // expected-note@-1 {{in instantiation of exception specification for 'f<A, int>' requested here}}
[all …]
/llvm-project/clang/test/SemaCXX/
H A Dvartemplate-lambda.cpp1 // RUN: %clang_cc1 -std=c++14 -fsyntax-only -verify %s
8 // expected-error@-1{{cannot initialize a parameter of type 'int' with an rvalue of type 'int *'}}
9 // expected-note@-2{{in instantiation of default function argument expression for 'operator()<int *…
10 // expected-note@-3{{passing argument to parameter 'a' here}}
14 …(7)){return f;}(); // expected-error{{constexpr variable 't<int>' must be initialized by a constan… in __anonc90add910402()
22 …(void)v1<int *>; // expected-note{{in instantiation of variable template specialization 'v1' reque… in foo2()
23 …(void)S::t<int>; // expected-note{{in instantiation of static data member 'S::t<int>' requested he… in foo2()
29 …C::m1(); // expected-error{{type 'long long' cannot be used prior to '::' because it has no member… in foo3()
34 …nt a = foo3<C>()){}; // expected-note{{in instantiation of function template specialization 'foo3… in __anonc90add910502()
H A Dco_await-range-for.cpp1 // RUN: %clang_cc1 -triple x86_64-apple-darwin9 %s -std=c++20 \
2 // RUN: -fsyntax-only -Wignored-qualifiers -Wno-error=return-type -verify \
3 // RUN: -fblocks
4 #include "Inputs/std-coroutine.h"
29 pointer operator->();
48 Awaiter<T *> await_transform(T *) = delete; // expected-note {{explicitly deleted}}
53 …for co_await(auto i : arr) {} // expected-warning {{'for co_await' belongs to CoroutineTS instead … in g()
54 // expected-error@-1 {{call to deleted member function 'await_transform'}} in g()
55 // expected-note@-2 {{'await_transform' implicitly required by 'co_await' here}} in g()
67 Awaiter<T> await_transform(BeginTag<T>) = delete; // expected-note 1+ {{explicitly deleted}}
[all …]
/llvm-project/clang-tools-extra/clangd/index/dex/
H A DIterator.h1 //===--- Iterator.h - Query Symbol Retrieval --------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 /// Symbol index queries consist of specific requirements for the requested
14 /// index. Inverted index maps these tokens to the posting lists - sorted (by
21 /// these multi-level queries is handled by Iterators. Iterators advance through
26 /// place) without processing all items with requested properties (this might
29 //===----------------------------------------------------------------------===//
43 /// Symbol position in the list of all index symbols sorted by a pre-computed
50 /// can manage intersection, union of the elements produced by other iterators
[all …]
/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp1 //===-- BreakpointResolver.cpp --------
242 SourceLoc requested(line, *column); SetSCMatchesByLine() local
[all...]
/llvm-project/llvm/include/llvm/CodeGen/
H A DLazyMachineBlockFrequencyInfo.h1 ///===- LazyMachineBlockFrequencyInfo.h - Lazy Block Frequency -*- C++ -*--===//
5 /// SPDX-License-Identifier: Apache-2.
[all...]
/llvm-project/openmp/runtime/src/
H A Dkmp_alloc.cpp2 * kmp_alloc.cpp -- private/shared dynamic memory allocation and management
5 //===----------------------------------------------------------------------===//
9 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
11 //===----------------------------------------------------------------------===//
38 /* The three modes of operation are, fifo search, lifo search, and best-fit */
59 /* On IA-32 architecture with Linux* OS, malloc() does not
128 // Declare the interface, including the requested buffer size type, bufsize.
148 char b_pad[sizeof(bhead2_t) + (SizeQuant - (sizeof(bhead2_t) % SizeQuant))];
153 /* Header in directly allocated buffers (by acqfcn) */
186 -1: not all pool blocks are the same size
[all …]
/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h1 //===- SectionMemoryManager.h - Memory manager for MCJIT/RtDyld -*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file contains the declaration of a section-based memory manager used by
12 //===----------------------------------------------------------------------===//
26 /// This is a simple memory manager which implements the methods called by
27 /// the RuntimeDyld class to allocate memory for section-based loading of
28 /// objects, usually those generated by the MCJIT execution engine.
30 /// This memory manager allocates all section memory as read-write. The
34 /// Any client using this memory manager MUST ensure that section-specific
[all …]
/llvm-project/lldb/source/Commands/
H A DCommandObjectDWIMPrint.cpp1 //===-- CommandObjectDWIMPrint.cpp --------
[all...]
/llvm-project/clang/include/clang/Basic/
H A DTargetID.h1 //===--- TargetID.h - Utilities for target ID -------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
22 /// postfixed by a plus or minus sign delimited by colons, e.g.
23 /// gfx908:xnack+:sramecc-. Each processor have a limited
39 /// If the target ID contains feature-, map it to false.
56 /// Check whether the provided target ID is compatible with the requested
58 bool isCompatibleTargetID(llvm::StringRef Provided, llvm::StringRef Requested);
/llvm-project/lldb/source/Plugins/Process/Linux/
H A DIntelPTSingleBufferTrace.h1 //===-- IntelPTSingleBufferTrace.h ---------------------------- -*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
14 #include "lldb/lldb-types.h"
58 /// The bytes requested by a jLLDBTraceGetBinaryData packet that was routed
63 /// Read the intel pt trace buffer managed by this trace instance. To ensure
64 /// that the data is up-to-date and is not corrupted by read-write race
69 /// A vector with the requested binary data.
73 /// The total the size in bytes used by the intel pt trace buffer managed
74 /// by this trace instance.
/llvm-project/openmp/runtime/src/i18n/
H A Den_US.txt4 #//===----------------------------------------------------------------------===//
8 #// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
10 #//===----------------------------------------------------------------------===//
21 # Incompatible changes (version must be bumbed by 1):
23 # * Changing type of placeholders (e.g. "line %1$d" -> "line %1$s").
30 # --------------------------------------------------------------------------------------------------
31 -*- META -*-
32 # --------------------------------------------------------------------------------------------------
44 # --------------------------------------------------------------------------------------------------
45 -*- STRINGS -*-
[all …]

12345678910>>...40