Home
last modified time | relevance | path

Searched refs:callee2 (Results 1 – 25 of 76) sorted by relevance

1234

/external/llvm-project/llvm/test/Transforms/Inline/
Dinline-incompat-attrs.ll3 ;; caller1/caller2/callee1/callee2 test functions with incompatible attributes
14 define i32 @callee2(i32 %x) #0 {
23 ;; caller1 doesn't have use-sample-profile attribute but callee2 has,
24 ;; so callee2 won't be inlined into caller1.
28 ; CHECK: call i32 @callee2
30 %y2 = call i32 @callee2(i32 %y1)
36 ;; caller2 and callee2 both have use-sample-profile attribute, so
37 ;; callee2 can be inlined into caller2.
41 ; CHECK-NOT: call i32 @callee2
43 %y2 = call i32 @callee2(i32 %y1)
Dinline-hot-callsite.ll22 define i32 @callee2(i32 %x) {
23 ; CHECK-LABEL: @callee2(
34 ; CHECK: call i32 @callee2
37 %y2 = call i32 @callee2(i32 %y1), !prof !22
46 ; CHECK: invoke i32 @callee2
49 %y2 = invoke i32 @callee2(i32 %y1) to label %next unwind label %lpad, !prof !22
64 ; CHECK: invoke i32 @callee2
67 %y2 = invoke i32 @callee2(i32 %y1) to label %next unwind label %lpad,
84 ; CHECK: invoke i32 @callee2
87 %y2 = invoke i32 @callee2(i32 %y1) to label %next unwind label %lpad,
Dinline-semantic-interposition.ll1 ; Check that @callee1 gets inlined while @callee2 is not, because of
10 define i32 @callee2(i32 %A) {
18 ; CHECK: %A2 = call i32 @callee2(i32 %A)
19 %A2 = call i32 @callee2(i32 %A)
Dinline-cold-callee.ll16 define i32 @callee2(i32 %x) !prof !22 {
17 ; CHECK-LABEL: @callee2(
27 ; CHECK: call i32 @callee2
30 %y2 = call i32 @callee2(i32 %y1)
Dinline-hot-callee.ll17 define i32 @callee2(i32 %x) !prof !22 {
18 ; CHECK-LABEL: @callee2(
28 ; CHECK: call i32 @callee2
31 %y2 = call i32 @callee2(i32 %y1)
Darray-alloca.ll11 define void @callee2(i32 %M) {
29 ; CHECK: call void @callee2
30 call void @callee2(i32 4096)
Dcrash-lifetime-marker.ll8 declare i32 @callee2(i8*)
12 %call0 = call i32 @callee2(i8* %a0)
19 ; CHECK: call i32 @callee2(i8* [[ALLOCA]])
Dinline_prune.ll18 define internal i32 @callee2(i32 %A, i32 %B) {
19 ; CHECK-NOT: @callee2
47 %Y = call i32 @callee2( i32 10, i32 %A )
/external/llvm-project/llvm/test/MC/PowerPC/
Dppc64-localentry.s16 .type callee2, @function
17 callee2: label
20 .size callee2, .-callee2
26 bl callee2
34 bl callee2
39 copy2 = callee2
51 # CHECK-NOT: R_PPC64_REL24 callee2
67 # CHECK: Name: callee2
/external/llvm/test/MC/PowerPC/
Dppc64-localentry.s16 .type callee2, @function
17 callee2: label
20 .size callee2, .-callee2
26 bl callee2
34 bl callee2
39 copy2 = callee2
51 # CHECK-NOT: R_PPC64_REL24 callee2
67 # CHECK: Name: callee2
/external/llvm-project/clang/test/Sema/
Darm-interrupt-attr.c23 __attribute__((interrupt("IRQ"))) void callee2();
26 callee2(); in caller1()
32 callee2(); in caller2()
42 callee2(); in caller2()
/external/llvm/test/Transforms/Inline/
Dinline-cold-callee.ll16 define i32 @callee2(i32 %x) !prof !22 {
17 ; CHECK-LABEL: @callee2(
27 ; CHECK: call i32 @callee2
30 %y2 = call i32 @callee2(i32 %y1)
Dinline-hot-callsite.ll16 define i32 @callee2(i32 %x) {
17 ; CHECK-LABEL: @callee2(
27 ; CHECK: call i32 @callee2
30 %y2 = call i32 @callee2(i32 %y1), !prof !22
Dinline-hot-callee.ll16 define i32 @callee2(i32 %x) !prof !22 {
17 ; CHECK-LABEL: @callee2(
27 ; CHECK: call i32 @callee2
30 %y2 = call i32 @callee2(i32 %y1)
Darray-alloca.ll10 define void @callee2(i32 %M) {
28 ; CHECK: call void @callee2
29 call void @callee2(i32 4096)
Dcrash-lifetime-marker.ll7 declare i32 @callee2(i8*)
11 %call0 = call i32 @callee2(i8* %a0)
18 ; CHECK: call i32 @callee2(i8* [[ALLOCA]])
/external/llvm-project/llvm/test/Transforms/SCCP/
Dip-add-range-to-call.ll38 ; The return value of @callee2 can be tracked, but arguments cannot, because
44 define internal noundef i32 @callee2(i32 %x) {
45 ; CHECK-LABEL: @callee2(
53 ; CHECK-NEXT: [[C1:%.*]] = call i32 @callee2(i32 9)
55 ; CHECK-NEXT: [[C2:%.*]] = call i32 @callee2(i32 10)
57 ; CHECK-NEXT: call void @use_cb1(i32 (i32)* @callee2)
60 %c1 = call i32 @callee2(i32 9)
61 %c2 = call i32 @callee2(i32 10)
62 call void @use_cb1(i32 (i32)* @callee2)
/external/llvm-project/llvm/test/CodeGen/Hexagon/
Dtailcall_fastcc_ccc.ll6 declare hidden void @callee2(i32, i32) #0
15 ; CHECK: jump callee2
18 tail call fastcc void @callee2(i32 %pp, i32 0)
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_subcomputation_unification_test.cc73 auto callee2 = in TEST_F() local
81 HloInstruction::CreateCall(r0s32_, {constant}, callee2)); in TEST_F()
100 auto callee2 = in TEST_F() local
110 HloInstruction::CreateCall(r0s32_, {constant1, constant2}, callee2)); in TEST_F()
130 auto callee2 = in TEST_F() local
140 HloInstruction::CreateCall(r1s32_3_, {param2, param2}, callee2)); in TEST_F()
/external/llvm-project/clang/test/SemaCUDA/
Ddeferred-oeverload.cu18 __host__ void callee2(); // dev-note{{candidate function not viable: call to __host__ function from…
36 callee2(); in hf()
45 callee2(); // dev-error {{no matching function for call to 'callee2'}} in df()
/external/llvm-project/llvm/test/Transforms/CodeExtractor/
DPartialInlineDebug.ll35 ; CHECK-LABEL: @callee2
37 define i32 @callee2(i32 %v) !dbg !18 {
58 ; CHECK: call void @callee2.1.if.then(i32 %v, i32* %sub.loc.i), !dbg ![[DBG4:[0-9]+]]
61 %call = call i32 @callee2(i32 %v), !dbg !22
65 ; CHECK-LABEL: define internal void @callee2.1.if.then
101 !18 = distinct !DISubprogram(name: "callee2", scope: !1, file: !1, line: 8, type: !9, isLocal: fals…
/external/llvm-project/compiler-rt/test/profile/
Dinstrprof-value-prof-2.c27 void callee2() {} in callee2() function
41 callee2Ptr = callee2; in setFunctionPointers()
55 func == callee1 || func == callee2 || func == main) in main()
/external/compiler-rt/test/profile/
Dinstrprof-value-prof-2.c27 void callee2() {} in callee2() function
41 callee2Ptr = callee2; in setFunctionPointers()
55 func == callee1 || func == callee2 || func == main) in main()
/external/llvm-project/clang/test/Frontend/
Dremarks-hotness.cpp20 __attribute__((noinline)) int callee2() { in callee2() function
33 return callee2(); in caller2()
/external/llvm-project/llvm/test/CodeGen/X86/
Dpr27591.ll32 ; CHECK-NEXT: callq callee2
37 call void @callee2(i1 signext %tobool)
42 declare void @callee2(i1 signext)

1234