| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | builtins-arm64-exclusive.c | 3 struct Simple { struct 17 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex() argument 23 …sum += __builtin_arm_ldrex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldrex() 32 struct Simple var = {0}; in test_strex() 40 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex() 49 …res |= __builtin_arm_strex(&var, (struct Simple **)addr).a; // expected-error {{is not a structure… in test_strex() 66 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex() 72 …sum += __builtin_arm_ldaex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldaex() 81 struct Simple var = {0}; in test_stlex() 89 res |= __builtin_arm_stlex(&var, (struct Simple **)addr); in test_stlex() [all …]
|
| H A D | builtins-arm-exclusive.c | 3 struct Simple { struct 16 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex() argument 22 …sum += __builtin_arm_ldrex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldrex() 33 struct Simple var = {0}; in test_strex() 40 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex() 49 …res |= __builtin_arm_strex(&var, (struct Simple **)addr).a; // expected-error {{is not a structure… in test_strex() 67 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex() 73 …sum += __builtin_arm_ldaex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldaex() 84 struct Simple var = {0}; in test_stlex() 91 res |= __builtin_arm_stlex(&var, (struct Simple **)addr); in test_stlex() [all …]
|
| /llvm-project-15.0.7/compiler-rt/test/msan/ |
| H A D | use-after-dtor.cpp | 21 struct Simple { struct 23 Simple() { in Simple() argument 26 ~Simple() { in ~Simple() argument 33 assert(sizeof(Simple) <= sizeof(buf)); in main() 35 Simple *s = new(&buf) Simple(); in main() 36 s->~Simple(); in main()
|
| H A D | dtor-member.cpp | 21 struct Simple { struct 23 Simple() { in Simple() argument 26 ~Simple() { } in ~Simple() argument 31 assert(sizeof(Simple) <= sizeof(buf)); in main() 37 Simple *s = new(&buf) Simple(); in main() 38 s->~Simple(); in main()
|
| H A D | dtor-bit-fields.cpp | 35 struct Simple { struct 37 ~Simple() {} in ~Simple() argument 61 Simple *s = new Simple(); in main() 62 s->~Simple(); in main()
|
| /llvm-project-15.0.7/clang/test/Profile/ |
| H A D | cxx-class.cpp | 20 class Simple { class 26 explicit Simple(int Member) : Member(Member) { in Simple() function in Simple 39 ~Simple() { in ~Simple() 63 class Derived : virtual public Simple { 68 Derived() : Simple(0) { in Derived() 100 Simple S(I); in simple_wrapper()
|
| /llvm-project-15.0.7/compiler-rt/test/fuzzer/ |
| H A D | UseAfterDtor.cpp | 4 struct Simple { struct 6 Simple() { in Simple() argument 9 ~Simple() { in ~Simple() argument 14 Simple *volatile SimpleSink; 20 Simple S; in LLVMFuzzerTestOneInput()
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | builtins-arm-exclusive.c | 4 struct Simple { struct 88 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex() 181 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex() 198 struct Simple var = {0}; in test_strex() 254 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex() 272 struct Simple var = {0}; in test_stlex() 328 res |= __builtin_arm_stlex(&var, (struct Simple **)addr); in test_stlex()
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | sanitize-dtor-tail-call.cpp | 5 struct Simple { struct 7 Simple() { in Simple() argument 10 ~Simple() { in ~Simple() argument 15 Simple s;
|
| H A D | sanitize-dtor-callback.cpp | 7 struct Simple { struct 9 ~Simple() {} in ~Simple() argument 11 Simple s; 41 Simple s;
|
| H A D | sanitize-no-dtor-callback.cpp | 5 struct Simple { struct 7 ~Simple() {} in ~Simple() argument 9 Simple s;
|
| H A D | sanitize-dtor-bit-field.cpp | 32 struct Simple { struct 34 ~Simple() {} in ~Simple() argument 36 Simple s;
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/objc-checker/ |
| H A D | main.m | 10 @interface Simple : NSObject interface 19 @implementation Simple implementation 41 Simple *my_simple = [[Simple alloc] init];
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/data-formatter-advanced/ |
| H A D | main.cpp | 35 struct Simple struct 40 Simple(int X, float Y, char Z) : in Simple() argument 65 Simple* s; 67 s(new Simple(X,Y,Z)) {} in Couple() 164 Simple a_simple_object(3,0.14,'E'); in main()
|
| /llvm-project-15.0.7/clang/test/APINotes/ |
| H A D | yaml-roundtrip.test | 1 RUN: apinotes-test %S/Inputs/Frameworks/Simple.framework/Headers/Simple.apinotes > %t.result 2 RUN: not diff -b %S/Inputs/Frameworks/Simple.framework/Headers/Simple.apinotes %t.result | FileChec…
|
| /llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.zip/ |
| H A D | types.h | 34 template <bool Simple> 39 requires(!Simple) in begin() 45 requires(!Simple) in end() 63 template <bool Simple> 69 requires(!Simple) { in begin() 74 requires(!Simple) { in end() 89 template <bool Simple> 93 requires(!Simple) { in begin() 98 requires(!Simple) { in end() 113 template <bool Simple> [all …]
|
| /llvm-project-15.0.7/llvm/test/TableGen/ |
| H A D | RelTest.td | 9 let Namespace = "Simple"; 12 def SimpleRegClass : RegisterClass<"Simple",[i32],0,(add R0)>; 30 let Namespace = "Simple";
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/ |
| H A D | use-override-no-destructors.cpp | 9 struct Simple : public Base { struct 10 virtual ~Simple();
|
| H A D | use-override-allow-override-and-final.cpp | 17 struct Simple : public Base { struct 18 virtual ~Simple();
|
| /llvm-project-15.0.7/clang/test/Index/ |
| H A D | ms-property.cpp | 4 struct Simple { struct 20 Simple s; in test()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/ARM/ |
| H A D | thumb1-varalloc.ll | 47 ; Simple variable ending up *at* sp. 61 ; Simple variable ending up at aligned offset from sp. 82 ; Simple variable ending up at aligned offset from sp.
|
| /llvm-project-15.0.7/llvm/unittests/DebugInfo/PDB/ |
| H A D | StringTableBuilderTest.cpp | 22 TEST(StringTableBuilderTest, Simple) { in TEST() argument 78 TEST(StringTableHashTraitsTest, Simple) { in TEST() argument
|
| /llvm-project-15.0.7/llvm/test/Instrumentation/AddressSanitizer/ |
| H A D | fake-stack.ll | 19 define void @Simple() uwtable sanitize_address { 20 ; NEVER-LABEL: @Simple( 33 ; NEVER-NEXT: store i64 ptrtoint (void ()* @Simple to i64), i64* [[TMP7]], align 8 46 ; RUNTIME-LABEL: @Simple( 75 ; RUNTIME-NEXT: store i64 ptrtoint (void ()* @Simple to i64), i64* [[TMP17]], align 8 103 ; ALWAYS-LABEL: @Simple( 125 ; ALWAYS-NEXT: store i64 ptrtoint (void ()* @Simple to i64), i64* [[TMP12]], align 8
|
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | InfoByHwMode.cpp | 47 bool Simple = isSimple(); in operator ==() local 48 if (Simple != T.isSimple()) in operator ==() 50 if (Simple) in operator ==()
|
| /llvm-project-15.0.7/llvm/test/Transforms/LoopVectorize/ |
| H A D | tripcount.ll | 11 ; Simple loop with low tripcount. Should not be vectorized. 90 ; Simple loop with low tripcount and inequality test for exit. 115 ; Simple loop with constant, small trip count and no profiling info. 139 ; Simple loop with constant large trip count and no profiling info. 163 ; Simple loop with static, small trip count and no profiling info.
|