Home
last modified time | relevance | path

Searched refs:func1 (Results 1 – 25 of 320) sorted by relevance

12345678910>>...13

/llvm-project-15.0.7/mlir/unittests/Analysis/Presburger/
H A DPWMAFunctionTest.cpp196 PWMAFunction func1 = parsePWMAF( in TEST() local
208 EXPECT_TRUE(func1.unionLexMax(func2).isEqual(func1)); in TEST()
209 EXPECT_TRUE(func2.unionLexMax(func1).isEqual(func1)); in TEST()
214 PWMAFunction func1 = parsePWMAF( in TEST() local
240 PWMAFunction func1 = parsePWMAF( in TEST() local
265 PWMAFunction func1 = parsePWMAF( in TEST() local
296 PWMAFunction func1 = parsePWMAF( in TEST() local
308 EXPECT_TRUE(func1.unionLexMin(func2).isEqual(func1)); in TEST()
309 EXPECT_TRUE(func2.unionLexMin(func1).isEqual(func1)); in TEST()
314 PWMAFunction func1 = parsePWMAF( in TEST() local
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/SPARC/
H A Dfunc-addr.ll8 define void @func1() #0 {
22 ; abs32: sethi %hi(func1), %i0
23 ; abs32: add %i0, %lo(func1), %i1
24 ; abs32: call %i0+%lo(func1)
27 ; abs44: sethi %h44(func1), %i0
31 ; abs44: call %i0+%l44(func1)
34 ; abs64: sethi %hi(func1), %i0
35 ; abs64: add %i0, %lo(func1), %i0
36 ; abs64: sethi %hh(func1), %i1
40 ; v8pic32: sethi %hi(func1), %i1
[all …]
/llvm-project-15.0.7/bolt/test/X86/
H A Dshared_object_entry.s2 # RUN: ld.lld %t.o -o %t.so --shared --entry=func1.cold.1 --emit-relocs
12 # CHECK: [[#%x,ENTRY]] {{.*}} func1.cold.1
14 .globl func1.cold.1
15 .type func1.cold.1,@function
16 func1.cold.1:
26 .size func1.cold.1, .-func1.cold.1
29 .globl func1
30 .type func1,@function
31 func1: label
37 .size func1, .-func1
/llvm-project-15.0.7/lldb/test/API/functionalities/unwind/noreturn/module-end/
H A Da.s23 call func1
28 .globl func1
29 .type func1, @function
30 func1: label
34 .size func1, .-func1
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/cpp/
H A Dmain.cpp9 void func1() in func1() function in a::c
32 void func1() in func1() function in aa::cc
55 void func1() in func1() function in b::c
91 ac.func1(); in main()
94 aac.func1(); in main()
97 bc.func1(); in main()
/llvm-project-15.0.7/lld/test/ELF/
H A Di386-feature-cet.s8 # RUN: ld.lld -e func1 %t.o %t1.o -o %t
11 # RUN: ld.lld -e func1 %t.o %t2.o -o %t
16 # RUN: ld.lld -e func1 %t.o %t3.o -o %t
22 # RUN: ld.lld -e func1 %t.o %t3.o -o %t -z force-ibt 2>&1 \
31 # RUN: ld.lld -e func1 %t.o %t3.o -o /dev/null -z cet-report=warning 2>&1 \
43 # RUN: ld.lld -e func1 %t.o %t4.o -o %t
50 # RUN: ld.lld -e func1 %t.o %t1.so -o %t
60 # DISASM: 00401200 <func1>:
101 .globl func1
102 .type func1,@function
[all …]
H A Dx86-64-feature-cet.s8 # RUN: ld.lld -e func1 %t.o %t1.o -o %t
11 # RUN: ld.lld -e func1 %t.o %t2.o -o %t
16 # RUN: ld.lld -e func1 %t.o %t3.o -o %t
22 # RUN: ld.lld -e func1 %t.o %t3.o -o %t -z force-ibt 2>&1 \
26 # RUN:not ld.lld -e func1 %t.o %t3.o -o /dev/null -z cet-report=something 2>&1 \
31 # RUN: ld.lld -e func1 %t.o %t3.o -o /dev/null -z force-ibt -z cet-report=warning 2>&1 \
37 # RUN: ld.lld -e func1 %t.o %t3.o -o /dev/null -z cet-report=warning 2>&1 \
43 # RUN: not ld.lld -e func1 %t.o %t3.o -o /dev/null -z cet-report=error 2>&1 \
49 # RUN: ld.lld -e func1 %t.o %t4.o -o %t
56 # RUN: ld.lld -e func1 %t.o %t1.so -o %t
[all …]
H A Darm-exidx-canunwind.s13 .section .text.func1, "ax",%progbits
14 .global func1
15 func1: label
51 bl func1
H A Darm-exidx-gc.s14 .section .text.func1, "ax",%progbits
15 .global func1
16 func1: label
86 bl func1
/llvm-project-15.0.7/llvm/test/Transforms/JumpThreading/
H A Dstale-loop-info-after-unfold-select.ll10 while.cond: ; preds = %func1.exit, %entry
11 %month.0 = phi i32 [ undef, %entry ], [ %month.0.be, %func1.exit ]
13 i32 4, label %func1.exit
14 i32 1, label %func1.exit
18 br label %func1.exit
20 func1.exit: ; preds = %if.end.i, %while.cond, %while.cond
/llvm-project-15.0.7/mlir/unittests/Pass/
H A DAnalysisManagerTest.cpp66 func::FuncOp func1 = in TEST() local
69 func1.setPrivate(); in TEST()
70 module->push_back(func1); in TEST()
75 AnalysisManager fam = am.nest(func1); in TEST()
97 func::FuncOp func1 = in TEST() local
100 func1.setPrivate(); in TEST()
101 module->push_back(func1); in TEST()
109 EXPECT_FALSE(am.getCachedChildAnalysis<MyAnalysis>(func1).has_value()); in TEST()
112 am.getChildAnalysis<MyAnalysis>(func1); in TEST()
113 am.getChildAnalysis<OtherAnalysis>(func1); in TEST()
[all …]
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/COFF/
H A Dx86_64-unwind-preferred-symbol-msvc.yaml1 ## Check that we print the external symbols "func1" and "func2", even though
7 # CHECK: StartAddress: func1
8 # CHECK: EndAddress: func1 +0x13
9 # CHECK: UnwindInfoAddress: $unwind$func1
47 SymbolName: '$unwind$func1'
77 - Name: func1
113 - Name: '$unwind$func1'
131 - Name: '$pdata$func1'
/llvm-project-15.0.7/clang/test/InterfaceStubs/
H A Dvirtual.cpp17 virtual HIDDEN int func1() const;
26 virtual HIDDEN int func1() const { return 42; } in func1() function
35 virtual HIDDEN int func1() const = 0;
39 int a = q.func1() + q.func2();
/llvm-project-15.0.7/clang/test/CodeGenCXX/
H A Dstatic-init-1.cpp8 int func1(int c) { return printf("loading the func1(%d)\n", c); } in func1() function
10 static int loader_1 = func1(++count);
15 static int loader_3 = func1(++count);
21 static int loader_5 = func1(++count);
/llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/
H A Dcomdat.ll4 ; CHECK: Name: func1
5 ; CHECK: Section: .text.func1
10 $func1 = comdat any
13 define amdgpu_kernel void @func1() local_unnamed_addr comdat {
H A Duniform-work-group-test.ll8 define void @func1() {
9 ; CHECK-LABEL: define {{[^@]+}}@func1
32 ; CHECK-NEXT: call void @func1()
36 call void @func1()
43 ; CHECK-NEXT: call void @func1()
46 call void @func1()
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dno-devirt.cpp17 virtual T& func1 (int idx);
25 if (a > 4) return data.func1(a); // Should devirtualize in indexIt()
34 template <typename T, int N> T& TmplWithArray<T, N >::func1(int idx) { in func1() function in TmplWithArray
45 template <typename T, int N> T& TmplWithArray<T, N >::func1(int idx) { in func1() function in TmplWithArray
/llvm-project-15.0.7/clang/test/Modules/Inputs/
H A Dredecl-merge-right.h66 int func1(int);
67 int func1(int);
68 int func1(int x) { return x; } in func1() function
69 int func1(int);
/llvm-project-15.0.7/flang/test/Lower/
H A Dstatement-function.f9041 real :: func1, arg1, func2, arg2 local
43 func1(arg1) = a + foo(arg1)
44 func2(arg2) = func1(arg2) + b
57 res1 = func1(8.)
/llvm-project-15.0.7/libc/fuzzing/math/
H A DSingleInputSingleOutputDiff.h22 void SingleInputSingleOutputDiff(SingleInputSingleOutputFunc<T> func1, in SingleInputSingleOutputDiff() argument
30 T result1 = func1(x); in SingleInputSingleOutputDiff()
42 SingleInputSingleOutputWithSideEffectFunc<T1, T2> func1, in SingleInputSingleOutputWithSideEffectDiff() argument
51 T1 result1 = func1(x, &sideEffect1); in SingleInputSingleOutputWithSideEffectDiff()
/llvm-project-15.0.7/lld/test/ELF/Inputs/
H A Daarch64-addrifunc.s2 .globl func1
3 .type func1, %function
4 func1: label
H A Dtrace-symbols-foo-weak.s8 .globl func1
9 .type func1, @function
10 func1: label
H A Darm-plt-reloc.s3 .globl func1
4 .type func1,%function
5 func1: label
/llvm-project-15.0.7/lldb/test/API/functionalities/tail_call_frames/ambiguous_tail_call_seq2/
H A Dmain.cpp10 void __attribute__((noinline)) func1() { in func1() function
21 func1(); in func2()
27 func1(); in main()
/llvm-project-15.0.7/lld/test/COFF/
H A Darm-thumb-thunks-pdb.s9 .globl func1
12 bne func1
17 func1: label

12345678910>>...13