Home
last modified time | relevance | path

Searched refs:F2 (Results 1 – 25 of 194) sorted by relevance

12345678

/llvm-project-15.0.7/llvm/test/CodeGen/Hexagon/intrinsics/
H A Dxtype_fp.ll9 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 DBitmaskEnumTest.cpp18 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 DFunctionComparatorTest.cpp47 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 Dp5-generic-lambda-1y.cpp14 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 DFunctionTest.cpp53 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 Dfreeze.ll15 ; 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 Dthreadable-edge-cast.ll14 ; 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 Dbasic.ll31 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 Dstream-note.c11 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 Dplist-macros-with-expansion-ctu.c17 extern void F2(int **);
43 F2(&X); in test2()
74 #define M F2(&X)
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dwarn-msvc-enum-bitfield.cpp6 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 Dderived-to-base-ambig.cpp18 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 Dgraph-deduce-tail-call.yaml51 #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 DTaskQueueTest.cpp40 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 Dfunction_call_trie_test.cpp173 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 DFileManagerTest.cpp302 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 DF_assign.pass.cpp127 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 Dnegate.pass.cpp31 typedef std::negate<> F2; in main() typedef
32 const F2 f2 = F2(); in main()
H A Dplus.pass.cpp32 typedef std::plus<> F2; in main() typedef
33 const F2 f2 = F2(); in main()
H A Dmodulus.pass.cpp32 typedef std::modulus<> F2; in main() typedef
33 const F2 f2 = F2(); in main()
H A Ddivides.pass.cpp32 typedef std::divides<> F2; in main() typedef
33 const F2 f2 = F2(); in main()
H A Dminus.pass.cpp32 typedef std::minus<> F2; in main() typedef
33 const F2 f2 = F2(); in main()
H A Dmultiplies.pass.cpp32 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 Dlogical_not.pass.cpp32 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 Dequal_to.pass.cpp33 typedef std::equal_to<> F2; in main() typedef
34 const F2 f2 = F2(); in main()

12345678