/llvm-project/llvm/test/tools/llvm-profgen/Inputs/ |
H A D | coff-profile.perfscript | 1 …P2 5752/0: [0x7ff70a1b0000(0x640000) @ 0x1000 00:00 0 0]: r-xp c:\Users\haohaiwe\Desktop\coff-prof… 2 …-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0… 3 …-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0… 4 …-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0… 5 …-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0… 6 …-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/-/X/A/0 0x7ff70a1b1482/0… 7 …-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0… 8 …-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0… 9 …-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0… 10 …-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0x7ff70a1b1430/P/-/A/0 0x7ff70a1b1482/0… [all …]
|
/llvm-project/llvm/test/MC/Sparc/ |
H A D | sparc-ctrl-instructions.s | 1 ! RUN: llvm-mc %s -triple=sparc -show-encoding | FileCheck %s 2 ! RUN: llvm-mc %s -triple=sparcv9 -show-encoding | FileCheck %s 4 ! CHECK: call foo ! encoding: [0b01AAAAAA,A,A, [all...] |
H A D | sparc64-ctrl-instructions.s | 1 ! RUN: llvm-mc %s -triple=sparc64-unknown-linux-gnu -show-encoding | FileCheck %s 4 ! CHECK: bne %xcc, .BB0 ! encoding: [0x12,0b01101AAA,A,A] 5 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br19 8 ! CHECK: be %xcc, .BB0 ! encoding: [0x02,0b01101AAA,A,A] 9 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br19 12 ! CHECK: bg %xcc, .BB0 ! encoding: [0x14,0b01101AAA,A,A] 13 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br19 16 ! CHECK: ble %xcc, .BB0 ! encoding: [0x04,0b01101AAA,A,A] 17 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br19 20 ! CHECK: bge %xcc, .BB0 ! encoding: [0x16,0b01101AAA,A,A] [all …]
|
/llvm-project/llvm/test/CodeGen/X86/ |
H A D | fold-rmw-ops.ll | 2 ; RUN: llc < %s -verify-machineinstrs -show-mc-encoding | FileCheck %s 4 target triple = "x86_64-unknown-unknown" 11 declare dso_local void @a() 15 ; CHECK-LABEL: add64_imm32_br: 17 ; CHECK-NEXT: addq $16777214, g64(%rip) # encoding: [0x48,0x81,0x05,A,A,A,A,0xfe,0xff,0xff,0x00] 18 ; CHECK-NEXT: # fixup A - offset: 3, value: g64-8, kind: reloc_riprel_4byte 19 ; CHECK-NEXT: # imm = 0xFFFFFE 20 ; CHECK-NEXT: jns b # TAILCALL 21 ; CHECK-NEXT: # encoding: [0x79,A] 22 ; CHECK-NEXT: # fixup A - offset: 1, value: b-1, kind: FK_PCRel_1 [all …]
|
/llvm-project/libcxx/test/std/algorithms/alg.sorting/alg.sort/is.sorted/ |
H A D | is_sorted_until.pass.cpp | 1 //===----------------------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 36 int a[] = {0}; in test() local 37 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 38 assert(std::is_sorted_until(Iter(a), Iter(a)) == Iter(a)); in test() 39 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test() 43 int a[] = {0, 0}; in test() local 44 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 45 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test() [all …]
|
H A D | is_sorted_until_comp.pass.cpp | 1 //===----------------------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 37 int a[] = {0}; in test() local 38 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 39 assert(std::is_sorted_until(Iter(a), Iter(a), std::greater<int>()) == Iter(a)); in test() 40 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test() 44 int a[] = {0, 0}; in test() local 45 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 46 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test() [all …]
|
H A D | is_sorted.pass.cpp | 1 //===----------------------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 36 int a[] = {0}; in test() local 37 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 38 assert(std::is_sorted(Iter(a), Iter(a))); in test() 39 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test() 43 int a[] = {0, 0}; in test() local 44 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 45 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test() [all …]
|
H A D | is_sorted_comp.pass.cpp | 1 //===----------------------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 37 int a[] = {0}; in test() local 38 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 39 assert(std::is_sorted(Iter(a), Iter(a))); in test() 40 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() 44 int a[] = {0, 0}; in test() local 45 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 46 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() [all …]
|
/llvm-project/polly/lib/External/isl/imath/ |
H A D | doc.md | 1 <!-- 4 --> 17 By default, the Makefile assumes you can use 64-bit integer types, even 19 `-DUSE_32BIT_WORDS` to the compiler options. 30 the library's routines. The integer library is just a single source file, so 38 number. The type `mp_int` is a pointer to an `mpz_t`, and `mp_rat` is a 41 Most of the functions in the imath library return a value of type `mp_result`. 42 This is a signed integer type which can be used to convey status information 43 and also return small values. Any negative value is considered to be a status 47 | ----------- | -------------------------------------------- | [all …]
|
/llvm-project/clang/test/Sema/ |
H A D | outof-range-enum-constant-compare.c | 1 // RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -fsyntax-only -DUNSIGNED -verify %s 2 // RUN: %clang_cc1 -triple=x86_64-pc-win32 -fsyntax-only -DSIGNED -verify %s 3 // RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -fsyntax-only -DUNSIGNED -DSILENCE -Wno-tautological… 4 // RUN: %clang_cc1 -triple=x86_64-pc-win32 -fsyntax-only -DSIGNED -DSILENCE -Wno-tautological-const… 7 enum A { A_a = 2 }; in main() enum 8 enum A a; in main() local 11 // expected-no-diagnostics in main() 16 …if (a < 4294967296) // expected-warning {{comparison of constant 4294967296 with expression of typ… in main() 18 …if (4294967296 >= a) // expected-warning {{comparison of constant 4294967296 with expression of ty… in main() 20 …if (a > 4294967296) // expected-warning {{comparison of constant 4294967296 with expression of typ… in main() [all …]
|
H A D | tautological-constant-enum-compare.c | 1 // RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -fsyntax-only -DUNSIGNED -Wtautological-constant-in-… 2 // RUN: %clang_cc1 -triple=x86_64-pc-win32 -fsyntax-only -DSIGNED -Wtautological-constant-in-range-… 3 // RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -fsyntax-only -DUNSIGNED -DSILENCE -Wno-tautological… 4 // RUN: %clang_cc1 -triple=x86_64-pc-win32 -fsyntax-only -DSIGNED -DSILENCE -Wno-tautological-const… 5 // RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -fsyntax-only -DUNSIGNED -Wtype-limits -verify %s 6 // RUN: %clang_cc1 -triple=x86_64-pc-linux-gnu -fsyntax-only -DUNSIGNED -DSILENCE -Wno-type-limits … 9 enum A { A_a = 2 }; in main() enum 10 enum A a; in main() local 13 // expected-no-diagnostics in main() 17 if (a < 0U) // expected-warning {{comparison of unsigned enum expression < 0 is always false}} in main() [all …]
|
H A D | warn-unsequenced.c | 1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c11 -Wno-unused %s 5 typedef struct A { struct 7 } A; argument 10 int a; in test() local 12 a + ++a; // expected-warning {{unsequenced modification and access to 'a'}} in test() 13 a = ++a; // expected-warning {{multiple unsequenced modifications to 'a'}} in test() 14 a + a++; // expected-warning {{unsequenced modification and access to 'a'}} in test() 15 a = a++; // expected-warning {{multiple unsequenced modifications to 'a'}} in test() 16 (a++, a++); // ok in test() 17 ++a + ++a; // expected-warning {{multiple unsequenced modifications}} in test() [all …]
|
H A D | builtins-arm.c | 1 // RUN: %clang_cc1 -triple armv7 -fsyntax-only -verify %s 2 // RUN: %clang_cc1 -triple armv7 -target-abi apcs-gnu \ 3 // RUN: -fsyntax-only -verify %s 7 void f(void *a, void *b) { in f() argument 8 …ear_cache(); // expected-error {{too few arguments to function call, expected 2, have 0}} // expec… in f() 9 __clear_cache(a); // expected-error {{too few arguments to function call, expected 2, have 1}} in f() 10 __clear_cache(a, b); in f() 13 void __clear_cache(char*, char*); // expected-error {{conflicting types for '__clear_cache'}} 21 *(ptr.__ap) = '0'; /* expected-error {{incomplete type 'void' is not assignable}} in test1() 22 … expected-warning {{ISO C does not allow indirection on operand of type 'void *'}} */ in test1() [all …]
|
H A D | arm-no-fp16.c | 1 // RUN: %clang_cc1 -triple thumbv7-none-eabi %s -target-feature +neon \ 2 // RUN: -target-feature -fp16 \ 3 // RUN: -fsyntax-only -verify -Wno-error=implicit-function-declaration 5 // REQUIRES: aarch64-registered-target || arm-registered-target 9 float16x4_t test_vcvt_f16_f32(float32x4_t a) { in test_vcvt_f16_f32() argument 10 …return vcvt_f16_f32(a); // expected-warning{{call to undeclared function 'vcvt_f16_f32'}} expecte… in test_vcvt_f16_f32() 13 float32x4_t test_vcvt_f32_f16(float16x4_t a) { in test_vcvt_f32_f16() argument 14 …return vcvt_f32_f16(a); // expected-warning{{call to undeclared function 'vcvt_f32_f16'}} expected… in test_vcvt_f32_f16() 17 float16x4_t test_vrnda_f16(float16x4_t a) { in test_vrnda_f16() argument 18 …return vrnda_f16(a); // expected-warning{{call to undeclared function 'vrnda_f16'}} expected-error… in test_vrnda_f16() [all …]
|
/llvm-project/clang/test/Analysis/ |
H A D | use-after-move.cpp | 1 // RUN: %clang_analyze_cc1 -analyzer-checker=cplusplus.Move %s\ 2 // RUN: -std=c++11 -analyzer-output=text -analyzer-config eagerly-assume=false\ 3 // RUN: -analyzer-confi 72 class A { global() class 78 A(int ii = 42, double dd = 1.0) : d(dd), i(ii), b(B()) {} A() function in A 89 A(A * a) A() argument 92 A(const A &other) : i(other.i), d(other.d), b(other.b) {} A() function in A 93 A(A &&other) : i(other.i), d(other.d), b(std::move(other.b)) { // aggressive-note{{Object 'b' is moved}} A() function in A 95 A(A &&other, char *k) { A() function in A 121 A a; testUpdateField() local 127 A a; testUpdateFieldDouble() local 136 moveInsideFunctionCall(A a) moveInsideFunctionCall() argument 139 leftRefCall(A & a) leftRefCall() argument 142 rightRefCall(A && a) rightRefCall() argument 145 constCopyOrMoveCall(const A a) constCopyOrMoveCall() argument 149 copyOrMoveCall(A a) copyOrMoveCall() argument 155 A a; simpleMoveCtorTest() local 174 A a; simpleMoveCtorTest() local 180 A a; simpleMoveCtorTest() local 189 A a; simpleMoveAssignementTest() local 196 A a; simpleMoveAssignementTest() local 203 A a; simpleMoveAssignementTest() local 213 A a; moveInInitListTest() member 215 A a; moveInInitListTest() local 224 A a; reinitializationTest() local 231 A a; reinitializationTest() local 244 A a; reinitializationTest() local 264 A a; reinitializationTest() local 274 A a; reinitializationTest() local 291 A a; decltypeIsNotUseTest() local 298 A a; loopTest() local 305 A a; loopTest() local 313 A a; loopTest() local 319 A a; loopTest() local 327 A a; loopTest() local 333 A a; loopTest() local 341 A a; loopTest() local 347 A a; loopTest() local 355 A a; loopTest() local 361 A a; loopTest() local 369 A a; loopTest() local 380 A a; loopTest() local 394 A a(42, 42.0); uniqueTest() local 411 A a; uniqueTest2() local 423 A a; moveSafeFunctionsTest() local 435 A a; moveStateResetFunctionsTest() local 443 A a; moveStateResetFunctionsTest() local 449 A a; moveStateResetFunctionsTest() local 456 A a; moveStateResetFunctionsTest() local 463 A a; moveStateResetFunctionsTest() local 485 A a; templateArgIsNotUseTest() local 489 A a; templateArgIsNotUseTest() local 503 A a; global() member in memberVariablesTest 540 A a; exclusiveConditionsTest() local 553 A a; differentBranchesTest() local 564 A a, b; differentBranchesTest() local 571 A a; differentBranchesTest() local 583 A a, b; differentBranchesTest() local 596 A a, b; differentBranchesTest() local 609 A a = A::get(); tempTest() local 624 interFunTest1(A & a) interFunTest1() argument 630 A a; interFunTest2() local 640 A a; paramEvaluateOrderTest() local 657 A a; regionAndPointerEscapeTest() local 664 A a; regionAndPointerEscapeTest() local 672 A a; regionAndPointerEscapeTest() local 679 A a; regionAndPointerEscapeTest() local 686 A a; regionAndPointerEscapeTest() local 699 A a; declarationSequenceTest() local 703 A a; declarationSequenceTest() local 713 A a; logicalOperatorsSequenceTest() local 727 A a; logicalOperatorsSequenceTest() local 739 A a; logicalOperatorsSequenceTest() local 753 A a; logicalOperatorsSequenceTest() local 761 A a; logicalOperatorsSequenceTest() local 786 if (A a = A()) { ifStmtSequencesDeclAndConditionTest() local 799 A a; subRegionMoveTest() local 805 A a; subRegionMoveTest() local 813 A a; subRegionMoveTest() local 917 B a = std::move(*b); checkExplicitDestructorCalls() local 922 B a, b; checkExplicitDestructorCalls() local 928 B a = std::move(b); checkExplicitDestructorCalls() local 974 localRValueMove(A && a) localRValueMove() argument 1001 A *a = P.get(); // peaceful-warning {{Method called on moved-from object 'P'}} getAfterMove() local [all...] |
H A D | PR38208.c | 1 // RUN: %clang_analyze_cc1 -analyzer-checker=core -verify %s 3 // expected-no-diagnostics 5 int foo(int a, int b) { in foo() argument 6 a += b; b -= a; in foo() 7 a += b; b -= a; in foo() 8 a += b; b -= a; in foo() 9 a += b; b -= a; in foo() 10 a += b; b -= a; in foo() 11 a += b; b -= a; in foo() 12 a += b; b -= a; in foo() [all …]
|
H A D | additive-folding-range-constraints.c | 1 // RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection -analyzer-config eagerly-ass… 7 #define INT_MIN (-INT_MAX - 1) 13 void smallAdjustmentGT (unsigned a) { in smallAdjustmentGT() argument 14 if (a+2 > 1) in smallAdjustmentGT() 15 clang_analyzer_eval(a < UINT_MAX-1); // expected-warning{{TRUE}} in smallAdjustmentGT() 17 clang_analyzer_eval(a == UINT_MAX-1 || a == UINT_MAX); // expected-warning{{TRUE}} in smallAdjustmentGT() 20 void smallAdjustmentGE (unsigned a) { in smallAdjustmentGE() argument 21 if (a+2 >= 1) in smallAdjustmentGE() 22 clang_analyzer_eval(a < UINT_MAX-1 || a == UINT_MAX); // expected-warning{{TRUE}} in smallAdjustmentGE() 24 clang_analyzer_eval(a == UINT_MAX-1); // expected-warning{{TRUE}} in smallAdjustmentGE() [all …]
|
/llvm-project/llvm/test/MC/SystemZ/ |
H A D | insn-good-zos-pcrel.s | 2 * RUN: llvm-mc -triple s390x-ibm-zos -show-encoding %s | FileCheck %s 4 *CHECK: brcl 0, FOO * encoding: [0xc0,0x04,A,A,A,A] [all...] |
/llvm-project/libcxx/test/std/library/description/conventions/customization.point.object/ |
H A D | niebloid.compile.pass.cpp | 1 //===---------- 55 int a[10]; global() variable [all...] |
/llvm-project/clang/test/CXX/temp/temp.res/temp.dep/temp.dep.type/ |
H A D | p4.cpp | 1 // RUN: %clang_cc1 -Wno-unused-value -verify %s 4 struct A { struct 23 struct B : A { 34 using A::x1; 35 using A::y1; 36 using A::f1; 37 using A 5 x0N0::A global() argument 6 y0N0::A global() argument 7 x1N0::A global() argument 8 y1N0::A global() argument 15 M0N0::A global() argument 16 M1N0::A global() argument 18 C0N0::A global() argument 19 C1N0::A global() argument 382 struct A { global() struct 420 struct A { global() struct 425 BN2::A not_instantiated() argument 431 not_instantiatedN2::A not_instantiated() argument 440 struct A { }; global() struct 485 struct A { global() struct 494 instantiatedN4::A instantiated() argument [all...] |
/llvm-project/clang/unittests/Analysis/FlowSensitive/ |
H A D | ArenaTest.cpp | 1 //===- ArenaTest.cpp ------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 22 Arena A; member in clang::dataflow::__anon053341640111::ArenaTest 26 auto &X = A.makeAtomValue(); in TEST_F() 27 auto &Y = A.makeAtomValue(); in TEST_F() 32 auto &X = A.makeTopValue(); in TEST_F() 33 auto &Y = A.makeTopValue(); in TEST_F() 38 auto &X = A.makeAtomRef(A.makeAtom()); in TEST_F() 39 auto &Y = A.makeAtomRef(A.makeAtom()); in TEST_F() [all …]
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
H A D | use-after-move.cpp | 1 // RUN: %check_clang_tidy -std=c++11 -check-suffixes=,CXX11 %s bugprone-use-after-move %t -- -- 129 class A { global() class 161 A a; simple() local 171 A a; selfMove() local 178 A a; onlyFlagOneUseAfterMove() local 190 A a; moveAfterMove() local 199 A a; moveAfterMove() local 210 parameters(A a) parameters() argument 320 A a; useAfterMoveInMemberFunction() local 330 A a; moveInDeclaration() local 345 A a; moveInInitList() member 347 A a; moveInInitList() local 357 A a; lambdas() local 368 A a; lambdas() local 380 A a; lambdas() local 388 A a; lambdas() local 394 A a; lambdas() local 400 A a; lambdas() local 408 A a; lambdas() local 416 A a; lambdas() local 423 A a; lambdas() local 431 A a; lambdas() local 437 A a; lambdas() local 443 A a; lambdas() local 448 A a; lambdas() local 453 A a; lambdas() local 466 A a; movedTypeIsNotDependentType() local 502 A a; decltypeIsNotUse() local 519 A a; templateArgIsNotUse() local 523 A a; templateArgIsNotUse() local 537 A a; global() member in IgnoreMemberVariables 553 A a; ignoreMoveInTryEmplace() local 559 A a; ignoreMoveInTryEmplace() local 572 A a; useAndMoveInLoop() local 583 A a; useAndMoveInLoop() local 598 A a; useAndMoveInLoop() local 609 A a, other; useAndMoveInLoop() local 616 A a; useAndMoveInLoop() local 630 A a; differentBranches() local 639 A a; differentBranches() local 644 A a; differentBranches() local 649 A a; differentBranches() local 661 A a; differentBranches() local 677 A a; mutuallyExclusiveBranchesFalsePositive() local 701 A a; noreturnDestructor() local 715 swap(T & a,T & b) swap() argument 724 A a; assignments() local 733 A a; assignments() local 743 A a; assignments() local 761 A a; assignments() local 772 A a; assignments() local 791 A a; passByNonConstPointerIsReinit() local 797 A a; passByNonConstPointerIsReinit() local 813 const A a; passByConstPointerIsUse() local 819 const A a; passByConstPointerIsUse() local 1056 A a; sequencingOfMoveAndUse() local 1068 A a; sequencingOfMoveAndUse() local 1075 A a; sequencingOfMoveAndUse() local 1083 A a; sequencingOfMoveAndUse() local 1095 A a; sequencingOfMoveAndUse() local 1102 A a; sequencingOfMoveAndUse() local 1110 A a; sequencingOfMoveAndUse() local 1128 A a; sequencingOfMoveAndReinit() local 1135 A a; sequencingOfMoveAndReinit() local 1144 A a; sequencingOfMoveAndReinit() local 1158 A a; sequencingOfReinitAndUse() local 1165 A a; sequencingOfReinitAndUse() local 1176 A a; commaOperatorSequences() local 1182 A a; commaOperatorSequences() local 1194 A a; global() member 1198 A a; global() member 1211 A a; initializerListSequences() local 1215 A a; initializerListSequences() local 1219 A a; initializerListSequences() local 1225 A a; initializerListSequences() local 1234 A a; initializerListSequences() local 1238 A a; initializerListSequences() local 1251 A a; declarationSequences() local 1255 A a; declarationSequences() local 1265 A a; logicalOperatorsSequence() local 1273 A a; logicalOperatorsSequence() local 1279 A a; logicalOperatorsSequence() local 1287 A a; logicalOperatorsSequence() local 1293 A a; logicalOperatorsSequence() local 1351 while (A a = A()) { ifWhileAndSwitchSequenceInitDeclAndCondition() local 1378 std::unique_ptr<A> a; calleeSequencedBeforeArguments() local 1385 std::unique_ptr<A> a; calleeSequencedBeforeArguments() local 1393 A a; calleeSequencedBeforeArguments() local 1420 struct A { global() struct 1421 dPR33020::A global() argument 1424 A a; global() member in PR33020::B 1429 int a; m_fn1() local 1475 bool a; global() member in CtorInit 1506 bool a; global() member in CtorInitLambda 1523 bool a; global() member in CtorInitOrder [all...] |
/llvm-project/clang/test/CXX/temp/temp.spec/ |
H A D | func.spec.cpp | 1 // RUN: %clang_cc1 -std=c++17 -fsyntax-only -verify %s 4 // The usual access checking rules do not apply to names in a declaration 6 // exception of names appearing in a function body, default argument, 7 // base-clause, member-specification, enumerator-list, or static data member 14 class A { class 15 // expected-note@+1 17{{implicitly declared private here}} 17 // expected-note@+1 3{{implicitly declared private here}} 21 // expected-note@+1 13{{declared protected here}} 23 // expected-note@+1 2{{declared protected here}} 31 int A::num4 = 44; [all …]
|
/llvm-project/llvm/test/CodeGen/RISCV/ |
H A D | stack-slot-coloring.mir | 2 # RUN: llc -mtriple=riscv32 -run-pass=greedy,virtregrewriter,stack-slot-coloring %s -o - 2>&1 | Fil… 4 --- | 7 %a = alloca i32, align 4 12 --- 30 - { id: 0, class: gpr, preferred-register: '' } 31 - { id: 1, class: gpr, preferred-register: '' } 56 - { id: 0, name: a, type: default, offset: 0, size: 4, alignment: 4, 57 stack-id: default, callee-saved-register: '', callee-saved-restored: true, 58 debug-info-variable: '', debug-info-expression: '', debug-info-location: '' } 67 ; CHECK-LABEL: name: main [all …]
|
/llvm-project/clang/test/CXX/class.access/class.protected/ |
H A D | p1.cpp | 1 // RUN: %clang_cc1 -fsyntax-only -verify %s 4 class A { class 5 protected: int x; // expected-note 3 {{declared}} \ 6 // expected-note {{member is declared here}} 7 static int sx; // expected-note 3 {{declared}} \ 8 // expected-note {{member is declared here}} 10 class B : public A { 12 class C : protected A { 14 class D : private B { // expected-note 2 {{constrained}} 17 void test(A &a) { in test() argument [all …]
|