Home
last modified time | relevance | path

Searched refs:Large (Results 1 – 25 of 104) sorted by relevance

12345

/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dtrivial_abi.cpp17 struct __attribute__((trivial_abi)) Large { struct
20 Large(); argument
21 ~Large();
22 Large(const Large &) noexcept;
23 Large &operator=(const Large &);
151 void testParamLarge(Large a) noexcept { in testParamLarge()
159 Large testReturnLarge() { in testReturnLarge()
160 Large t; in testReturnLarge()
175 Large t; in testCallLarge0()
259 void calleeExceptionLarge(Large, Large);
[all …]
H A Ddebug-info-thunk.cpp148 struct Large { struct
164 virtual void baz(X, X&, _Complex float, Small, Small&, Large) = 0;
172 void baz(X, X&, _Complex float, Small, Small&, Large);
175 void D::baz(X, X&, _Complex float, Small, Small&, Large) { } in baz() argument
H A Dstack-reuse-exceptions.cpp9 struct Large { struct
13 Large getLarge(); argument
H A Dthunks.cpp228 struct Large { struct
244 virtual void baz(X, X&, _Complex float, Small, Small&, Large) = 0;
252 void baz(X, X&, _Complex float, Small, Small&, Large);
255 void D::baz(X, X&, _Complex float, Small, Small&, Large) { } in baz() argument
/llvm-project-15.0.7/libcxx/test/libcxx/utilities/any/
H A Dallocator.pass.cpp28 struct Large { char big[sizeof(std::any) + 1]; }; argument
43 struct allocator<Large> {
44 using value_type = Large;
50 Large* allocate(std::size_t n) { in allocate()
52 return static_cast<Large*>(::operator new(n * sizeof(Large))); in allocate()
56 void construct(Large* p, Args&& ...args) { in construct()
57 new (p) Large(std::forward<Args>(args)...); in construct()
61 void destroy(Large* p) { in destroy()
62 p->~Large(); in destroy()
66 void deallocate(Large* p, std::size_t) { in deallocate()
[all …]
/llvm-project-15.0.7/clang/test/CXX/dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp6.cpp12 concept Large = LargerThan<T, 1>;
22 Large auto test1() { // expected-error{{deduced type 'char' does not satisfy 'Large'}} in test1()
23 Large auto i = 'a'; in test1()
25 Large auto j = 10; in test1()
26 ::Large auto k = 10; in test1()
36 ::Large auto test2() { return 10; } in test2()
41 Large auto test5() -> void;
43 auto test6() -> Large auto { return 1; } in test6()
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dsegmented-stacks.ll82 ; X64-Linux-Large: # %bb.0:
85 ; X64-Linux-Large-NEXT: .LBB0_2:
94 ; X64-Linux-Large-NEXT: retq
95 ; X64-Linux-Large-NEXT: .LBB0_1:
99 ; X64-Linux-Large-NEXT: retq
363 ; X64-Linux-Large-NEXT: retq
370 ; X64-Linux-Large-NEXT: retq
685 ; X64-Linux-Large-NEXT: retq
690 ; X64-Linux-Large-NEXT: retq
933 ; X64-Linux-Large-NEXT: retq
[all …]
/llvm-project-15.0.7/compiler-rt/test/fuzzer/
H A DImplicitSignedIntegerTruncationTest.cpp14 static uint8_t Large = UINT8_MAX; variable
23 Large = Large + 1; // 'char overflow'. in LLVMFuzzerTestOneInput()
H A DImplicitUnsignedIntegerTruncationTest.cpp14 static uint8_t Large = UINT8_MAX; variable
23 Large = (unsigned int)Large + 1U; // 'char overflow'. in LLVMFuzzerTestOneInput()
H A DSignedIntOverflowTest.cpp14 static int Large = INT_MAX; variable
23 Large++; // int overflow. in LLVMFuzzerTestOneInput()
/llvm-project-15.0.7/third-party/benchmark/test/
H A Ddonotoptimize_assembly_test.cc22 struct Large { struct
36 benchmark::DoNotOptimize(Large{ExternInt, {ExternInt, ExternInt}}); in test_with_large_rvalue() argument
62 Large L{ExternInt, {ExternInt, ExternInt}}; in test_with_large_lvalue()
90 const Large L{ExternInt, {ExternInt, ExternInt}}; in test_with_large_const_lvalue()
/llvm-project-15.0.7/llvm/include/llvm/Target/
H A DCodeGenCWrappers.h42 return CodeModel::Large; in unwrap()
57 case CodeModel::Large: in wrap()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DCodeGen.h28 enum Model { Tiny, Small, Kernel, Medium, Large }; enumerator
37 enum Level { Default=0, Small=1, Large=2 }; enumerator
/llvm-project-15.0.7/llvm/test/CodeGen/AVR/pseudo/
H A DSTDWPtrQRr.mir38 ; Large displacement (>=63):
49 ; Large displacement where the destination register is killed:
56 ; Large displacement where the source register is killed:
/llvm-project-15.0.7/clang/test/CXX/expr/expr.prim/expr.prim.id/
H A Dp3.cpp159 concept Large = sizeof(T) > 100;
163 static_assert(Large<small>);
166 static_assert(Large<small>, "small isn't large");
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dregcall.c33 struct Large { int a[5]; }; argument
34 void __regcall v4(int a, struct Large b, int c) {} in v4()
H A Dvectorcall.c17 struct Large { int a[5]; }; argument
18 void __vectorcall v4(int a, struct Large b, int c) {} in v4()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86Subtarget.cpp95 case CodeModel::Large: in classifyLocalReference()
135 if (TM.getCodeModel() == CodeModel::Large && !isPositionIndependent()) in classifyGlobalReference()
170 if (TM.getCodeModel() == CodeModel::Large) in classifyGlobalReference()
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DFunctionExtrasTest.cpp126 unique_function<int()> Large = LargeCallable(); in TEST() local
127 EXPECT_EQ(Large(), 15); in TEST()
128 unique_function<int()> Large2 = std::move(Large); in TEST()
/llvm-project-15.0.7/libcxx/benchmarks/
H A Dstring.bench.cpp60 enum class Length { Empty, Small, Large, Huge }; enumerator
134 case Length::Large: in getString()
149 case Length::Large: in makeString()
540 for (auto Lhs : {Length::Empty, Length::Small, Length::Large, Length::Huge}) { in sanityCheckGeneratedStrings()
543 {Length::Empty, Length::Small, Length::Large, Length::Huge}) { in sanityCheckGeneratedStrings()
557 for (auto L : {Length::Small, Length::Large, Length::Huge}) { in sanityCheckGeneratedStrings()
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/MSP430/
H A Dbuild-attributes.test49 # LARGE-CODE-NEXT: Description: Large
59 # LARGE-DATA-NEXT: Description: Large
116 ## MSP430X Large Code Model, Small Data Model
133 ## MSP430X Small Code Model, Large Data Model
/llvm-project-15.0.7/clang/test/CXX/expr/expr.prim/expr.prim.req/
H A Dcompound-requirement.cpp89 concept Large = sizeof(typename remove_reference<T>::type) >= 4;
92 template<typename T> requires requires (T t) { { t } -> Large; } // expected-note{{because 'short &…
/llvm-project-15.0.7/llvm/unittests/Support/
H A DAllocatorTest.cpp117 void *Large = Alloc.Allocate(4096, 1); in TEST() local
120 EXPECT_EQ(Empty, Large); in TEST()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64Subtarget.cpp319 if (TM.getCodeModel() == CodeModel::Large && isTargetMachO()) in ClassifyGlobalReference()
351 if (TM.getCodeModel() == CodeModel::Large && isTargetMachO() && in classifyGlobalFunctionReference()
/llvm-project-15.0.7/polly/test/ScopInfo/
H A Dintegers.ll7 ; Large positive integer
67 ; Large negative integer

12345