| /llvm-project-15.0.7/llvm/test/CodeGen/Hexagon/intrinsics/ |
| H A D | xtype_fp.ll | 9 declare float @llvm.hexagon.F2.sfadd(float, float) 17 declare i32 @llvm.hexagon.F2.sfclass(float, i32) 24 declare i32 @llvm.hexagon.F2.dfclass(double, i32) 111 declare double @llvm.hexagon.F2.conv.d2df(i64) 125 declare double @llvm.hexagon.F2.conv.w2df(i32) 139 declare float @llvm.hexagon.F2.conv.d2sf(i64) 153 declare float @llvm.hexagon.F2.conv.w2sf(i32) 196 declare i64 @llvm.hexagon.F2.conv.sf2d(float) 334 declare float @llvm.hexagon.F2.sfimm.p(i32) 341 declare float @llvm.hexagon.F2.sfimm.n(i32) [all …]
|
| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | BitmaskEnumTest.cpp | 18 F2 = 2, enumerator 25 Flags f = F1 | F2; in TEST() 38 f = F2; in TEST() 45 EXPECT_EQ(F2, f); in TEST() 53 f &= F1 | F2; in TEST() 62 Flags f = (F1 | F2) ^ (F2 | F3); in TEST() 70 Flags f = (F1 | F2); in TEST() 71 f ^= (F2 | F4); in TEST() 99 F2 = 2, enumerator 115 f |= F2; in getFlags() [all …]
|
| /llvm-project-15.0.7/llvm/unittests/Transforms/Utils/ |
| H A D | FunctionComparatorTest.cpp | 47 TestComparator(const Function *F1, const Function *F2, in TestComparator() argument 49 : FunctionComparator(F1, F2, GN) { in TestComparator() 54 return F1 == FnL && F2 == FnR; in testFunctionAccess() 112 TestFunction F2(C, M, 28); in TEST() local 115 TestComparator Cmp(F1.F, F2.F, &GN); in TEST() 117 EXPECT_TRUE(Cmp.testFunctionAccess(F1.F, F2.F)); in TEST() 120 EXPECT_EQ(Cmp.testCmpBasicBlocks(F1.BB, F2.BB), -1); in TEST() 121 EXPECT_EQ(Cmp.testCmpConstants(F1.C, F2.C), -1); in TEST() 122 EXPECT_EQ(Cmp.testCmpGlobalValues(F1.F, F2.F), -1); in TEST() 123 EXPECT_EQ(Cmp.testCmpValues(F1.I, F2.I), 0); in TEST() [all …]
|
| /llvm-project-15.0.7/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
| H A D | p5-generic-lambda-1y.cpp | 14 template <class F1, class F2> struct overload : F1, F2 { 16 using F2::operator(); 17 overload(F1 f1, F2 f2) : F1(f1), F2(f2) { } in overload() 32 template <class F1, class F2> struct overload : F1, F2 { 34 using F2::operator(); 35 overload(F1 f1, F2 f2) : F1(f1), F2(f2) { } in overload()
|
| /llvm-project-15.0.7/llvm/unittests/IR/ |
| H A D | FunctionTest.cpp | 53 std::unique_ptr<Function> F2( in TEST() local 56 EXPECT_TRUE(F2->hasLazyArguments()); in TEST() 62 F1->stealArgumentListFrom(*F2); in TEST() 64 EXPECT_TRUE(F2->hasLazyArguments()); in TEST() 77 F2->stealArgumentListFrom(*F1); in TEST() 79 EXPECT_FALSE(F2->hasLazyArguments()); in TEST() 81 for (Argument &A : F2->args()) { in TEST() 101 F1->stealArgumentListFrom(*F2); in TEST() 103 EXPECT_TRUE(F2->hasLazyArguments()); in TEST() 115 F1->stealArgumentListFrom(*F2); in TEST() [all …]
|
| /llvm-project-15.0.7/llvm/test/Transforms/JumpThreading/ |
| H A D | freeze.ll | 15 ; CHECK: F2: 33 br i1 %A.fr, label %T2, label %F2 39 F2: 50 ; CHECK: F2: 76 F2: 87 ; CHECK: F2: 113 F2: 124 ; CHECK: F2: 148 F2: 166 ; CHECK: F2: [all …]
|
| H A D | threadable-edge-cast.ll | 14 ; CHECK-NEXT: br label [[F2:%.*]] 17 ; CHECK-NEXT: br label [[F2]] 18 ; CHECK: F2: 38 br i1 %cond, label %T2, label %F2 44 F2: 54 ; CHECK-NEXT: br label [[F2:%.*]] 57 ; CHECK-NEXT: br label [[F2]] 58 ; CHECK: F2: 80 br i1 %cond, label %T2, label %F2 86 F2:
|
| H A D | basic.ll | 31 F2: 32 ; CHECK: F2: 57 F2: 104 F2: 138 F2: 206 F2: 208 ; CHECK: F2: 286 F2: 325 F2: 413 F2: [all …]
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | stream-note.c | 11 FILE *F2 = tmpfile(); in check_note_at_correct_open() local 12 if (!F2) { in check_note_at_correct_open() 18 rewind(F2); in check_note_at_correct_open() 19 fclose(F2); in check_note_at_correct_open() 58 FILE *F2 = fopen("foo2.c", "r"); // expected-note {{Stream opened here}} in check_note_leak_2() local 59 if (!F2) { in check_note_leak_2() 78 fclose(F2); in check_note_leak_2()
|
| H A D | plist-macros-with-expansion-ctu.c | 17 extern void F2(int **); 43 F2(&X); in test2() 74 #define M F2(&X)
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | warn-msvc-enum-bitfield.cpp | 6 enum F { F1, F2 }; in test0() enumerator 13 s.f2 = F2; in test0() 19 enum F : long { F1, F2 }; in test1() enumerator 26 s.f2 = F2; in test1() 32 enum F : unsigned long { F1, F2 }; in test3() enumerator 39 s.f2 = F2; in test3()
|
| H A D | derived-to-base-ambig.cpp | 18 class F2 : public E2, public A2 { }; // expected-warning{{direct base 'A2' is inaccessible due to a… class 20 void g(E2* e2, F2* f2) { in g() 31 void overload_call(F2* f2) { in overload_call()
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-xray/X86/ |
| H A D | graph-deduce-tail-call.yaml | 51 #EMPTY-DAG: F1 -> F2 [label=""]; 52 #EMPTY-DAG: F2 -> F3 [label=""]; 54 #EMPTY-DAG: F2 [label="@(2)"]; 60 #COUNT-DAG: F1 -> F2 [label="1"]; 61 #COUNT-DAG: F2 -> F3 [label="1"]; 63 #COUNT-DAG: F2 [label="@(2)"]; 70 #TIME-DAG: F1 -> F2 [label="3.{{.*}}"]; 71 #TIME-DAG: F2 -> F3 [label="1.{{.*}}"]; 73 #TIME-DAG: F2 [label="@(2)"];
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | TaskQueueTest.cpp | 40 std::future<void> F2 = TQ.async([&] { in TEST_F() local 56 F2.wait(); in TEST_F() 79 std::future<void> F2 = TQ.async([&] { ++Y; }); in TEST_F() local 85 F2.wait(); in TEST_F() 102 std::future<int> F2 = TQ.async([&] { return 42; }); in TEST_F() local 104 ASSERT_EQ(42, F2.get()); in TEST_F()
|
| /llvm-project-15.0.7/compiler-rt/lib/xray/tests/unit/ |
| H A D | function_call_trie_test.cpp | 173 const auto &F2 = *F1.Callees[0].NodePtr; in TEST() local 174 ASSERT_EQ(F2.FId, 2); in TEST() 175 ASSERT_FALSE(F2.Callees.empty()); in TEST() 177 const auto &F3 = *F2.Callees[0].NodePtr; in TEST() 184 EXPECT_EQ(F2.CallCount, 1u); in TEST() 187 EXPECT_EQ(F2.CumulativeLocalTime, 300u); in TEST() 304 const auto &F2 = *F1.Callees[0].NodePtr; in TEST() local 305 EXPECT_EQ(F2.FId, 3); in TEST() 306 EXPECT_EQ(F2.CallCount, 2u); in TEST() 307 EXPECT_EQ(F2.CumulativeLocalTime, 2u); in TEST() [all …]
|
| /llvm-project-15.0.7/clang/unittests/Basic/ |
| H A D | FileManagerTest.cpp | 302 ASSERT_FALSE(!F2); in TEST_F() 305 EXPECT_EQ("dir/f2.cpp", F2->getName()); in TEST_F() 350 ASSERT_FALSE(!F2); in TEST_F() 357 EXPECT_EQ("dir/f2.cpp", F2->getName()); in TEST_F() 362 EXPECT_NE(&F2->getFileEntry(), *F1); in TEST_F() 363 EXPECT_NE(*F1, &F2->getFileEntry()); in TEST_F() 370 EXPECT_NE(*F2, *F1); in TEST_F() 371 EXPECT_NE(*F2, *F1Also); in TEST_F() 372 EXPECT_NE(*F2, *F1Again); in TEST_F() 373 EXPECT_NE(*F2, *F1Redirect); in TEST_F() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/ |
| H A D | F_assign.pass.cpp | 127 using F2 = std::function<void(int, int, int)>; in main() typedef 128 static_assert(!std::is_assignable<F1&, F2&&>::value, ""); in main() 132 using F2 = std::function<A (int, int)>; in main() typedef 133 static_assert(!std::is_assignable<F1&, F2&&>::value, ""); in main() 134 static_assert(!std::is_assignable<F2&, F1&&>::value, ""); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/arithmetic.operations/ |
| H A D | negate.pass.cpp | 31 typedef std::negate<> F2; in main() typedef 32 const F2 f2 = F2(); in main()
|
| H A D | plus.pass.cpp | 32 typedef std::plus<> F2; in main() typedef 33 const F2 f2 = F2(); in main()
|
| H A D | modulus.pass.cpp | 32 typedef std::modulus<> F2; in main() typedef 33 const F2 f2 = F2(); in main()
|
| H A D | divides.pass.cpp | 32 typedef std::divides<> F2; in main() typedef 33 const F2 f2 = F2(); in main()
|
| H A D | minus.pass.cpp | 32 typedef std::minus<> F2; in main() typedef 33 const F2 f2 = F2(); in main()
|
| H A D | multiplies.pass.cpp | 32 typedef std::multiplies<> F2; in main() typedef 33 const F2 f2 = F2(); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/logical.operations/ |
| H A D | logical_not.pass.cpp | 32 typedef std::logical_not<> F2; in main() typedef 33 const F2 f2 = F2(); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/utilities/function.objects/comparisons/ |
| H A D | equal_to.pass.cpp | 33 typedef std::equal_to<> F2; in main() typedef 34 const F2 f2 = F2(); in main()
|