| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/convert.carbon
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/function/generic/self_canonical.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/function/generic/self_canonical.carbon
- // In this test, specific46 becomes canonical for others. Then, specific42 is
- // found to be equivalent to specific46 and it becomes its canonical.
- // Then through another equivalence from other specifics that point to
- // specific46, specific46 is picked as the canonical. This is fine, we keep the
- // chain of equivalences and eventually this is walked to get to specific42.
- // The canonical for specific46, should not be updated to self in this case.
- // Test that chains of equivalances are properly maintained and walked.
- class class_name1 {}
- class class_name2 {}
- class class_name3 {}
- class class_name4 {}
- class class_name5 {}
- class class_name6 {}
- fn third_function[T:! type, U:! type, V:! type](arg1: T, arg2: U, arg3: V);
- fn fourth_function[T:! type](arg: T);
- fn first_function[T:! type](arg: T);
- fn second_function[T:! type, U:! type, V:! type](arg1: T, arg2: U, arg3: V);
- fn third_function[T:! type, U:! type, V:! type](arg1: T, arg2: U, unused arg3: V) {
- var local1: class_name2*;
- var local2: class_name2*;
- third_function(arg1, arg2, local2);
- fourth_function(local1);
- }
- fn unused_1[T:! type, U:! type, V:! type](arg1: T, unused arg2: U, arg3: V) {
- var local1: class_name6*;
- third_function(arg1, arg3, local1);
- }
- fn fourth_function[T:! type](unused arg: T) {
- var local1: class_name5**;
- var local2: class_name6*;
- first_function(local1);
- first_function(local2);
- }
- fn first_function[T:! type](arg: T) {
- var local1: class_name4*;
- var local2: class_name3*;
- second_function(local2, local1, arg);
- }
- fn unused_2[T:! type, U:! type](arg1: T, arg2: U) {
- var local1: class_name6*;
- second_function(arg1, arg2, local1);
- }
- fn second_function[T:! type, U:! type, V:! type](arg1: T, unused arg2: U, arg3: V) {
- var local1: class_name3*;
- var local2: class_name4*;
- var local3: class_name2*;
- second_function(arg3, local3, local2);
- third_function(local1, arg3, arg1);
- }
- fn Main_method_no_template () {
- var local1: class_name1*;
- first_function(local1);
- }
- // CHECK:STDOUT: ; ModuleID = 'self_canonical.carbon'
- // CHECK:STDOUT: source_filename = "self_canonical.carbon"
- // CHECK:STDOUT:
- // CHECK:STDOUT: ; Function Attrs: nounwind
- // CHECK:STDOUT: define void @_CMain_method_no_template.Main() #0 !dbg !4 {
- // CHECK:STDOUT: entry:
- // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !7
- // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !7
- // CHECK:STDOUT: store ptr poison, ptr %local1.var, align 8, !dbg !7
- // CHECK:STDOUT: %.loc82 = load ptr, ptr %local1.var, align 8, !dbg !8
- // CHECK:STDOUT: call void @_Cfirst_function.Main.cf543a2f19840c22(ptr %.loc82), !dbg !9
- // CHECK:STDOUT: ret void, !dbg !10
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
- // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #1
- // CHECK:STDOUT:
- // CHECK:STDOUT: ; Function Attrs: nounwind
- // CHECK:STDOUT: define linkonce_odr void @_Cfourth_function.Main.1ef1de437a217ee4(ptr %arg) #0 !dbg !11 {
- // CHECK:STDOUT: entry:
- // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !17
- // CHECK:STDOUT: %local2.var = alloca ptr, align 8, !dbg !18
- // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !17
- // CHECK:STDOUT: store ptr poison, ptr %local1.var, align 8, !dbg !17
- // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local2.var), !dbg !18
- // CHECK:STDOUT: store ptr poison, ptr %local2.var, align 8, !dbg !18
- // CHECK:STDOUT: %.loc53 = load ptr, ptr %local1.var, align 8, !dbg !19
- // CHECK:STDOUT: call void @_Cfirst_function.Main.cf543a2f19840c22(ptr %.loc53), !dbg !20
- // CHECK:STDOUT: %.loc54 = load ptr, ptr %local2.var, align 8, !dbg !21
- // CHECK:STDOUT: call void @_Cfirst_function.Main.cf543a2f19840c22(ptr %.loc54), !dbg !22
- // CHECK:STDOUT: ret void, !dbg !23
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: ; Function Attrs: nounwind
- // CHECK:STDOUT: define linkonce_odr void @_Cfirst_function.Main.cf543a2f19840c22(ptr %arg) #0 !dbg !24 {
- // CHECK:STDOUT: entry:
- // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !27
- // CHECK:STDOUT: %local2.var = alloca ptr, align 8, !dbg !28
- // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !27
- // CHECK:STDOUT: store ptr poison, ptr %local1.var, align 8, !dbg !27
- // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local2.var), !dbg !28
- // CHECK:STDOUT: store ptr poison, ptr %local2.var, align 8, !dbg !28
- // CHECK:STDOUT: %.loc61_19 = load ptr, ptr %local2.var, align 8, !dbg !29
- // CHECK:STDOUT: %.loc61_27 = load ptr, ptr %local1.var, align 8, !dbg !30
- // CHECK:STDOUT: call void @_Csecond_function.Main.fa07ebc2c86fcc7a(ptr %.loc61_19, ptr %.loc61_27, ptr %arg), !dbg !31
- // CHECK:STDOUT: ret void, !dbg !32
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: ; Function Attrs: nounwind
- // CHECK:STDOUT: define linkonce_odr void @_Csecond_function.Main.fa07ebc2c86fcc7a(ptr %arg1, ptr %arg2, ptr %arg3) #0 !dbg !33 {
- // CHECK:STDOUT: entry:
- // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !40
- // CHECK:STDOUT: %local2.var = alloca ptr, align 8, !dbg !41
- // CHECK:STDOUT: %local3.var = alloca ptr, align 8, !dbg !42
- // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !40
- // CHECK:STDOUT: store ptr poison, ptr %local1.var, align 8, !dbg !40
- // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local2.var), !dbg !41
- // CHECK:STDOUT: store ptr poison, ptr %local2.var, align 8, !dbg !41
- // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local3.var), !dbg !42
- // CHECK:STDOUT: store ptr poison, ptr %local3.var, align 8, !dbg !42
- // CHECK:STDOUT: %.loc75_25 = load ptr, ptr %local3.var, align 8, !dbg !43
- // CHECK:STDOUT: %.loc75_33 = load ptr, ptr %local2.var, align 8, !dbg !44
- // CHECK:STDOUT: call void @_Csecond_function.Main.fa07ebc2c86fcc7a(ptr %arg3, ptr %.loc75_25, ptr %.loc75_33), !dbg !45
- // CHECK:STDOUT: %.loc76 = load ptr, ptr %local1.var, align 8, !dbg !46
- // CHECK:STDOUT: call void @_Cthird_function.Main.4704114ae40540d8(ptr %.loc76, ptr %arg3, ptr %arg1), !dbg !47
- // CHECK:STDOUT: ret void, !dbg !48
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: ; Function Attrs: nounwind
- // CHECK:STDOUT: define linkonce_odr void @_Cthird_function.Main.4704114ae40540d8(ptr %arg1, ptr %arg2, ptr %arg3) #0 !dbg !49 {
- // CHECK:STDOUT: entry:
- // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !54
- // CHECK:STDOUT: %local2.var = alloca ptr, align 8, !dbg !55
- // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !54
- // CHECK:STDOUT: store ptr poison, ptr %local1.var, align 8, !dbg !54
- // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local2.var), !dbg !55
- // CHECK:STDOUT: store ptr poison, ptr %local2.var, align 8, !dbg !55
- // CHECK:STDOUT: %.loc39 = load ptr, ptr %local2.var, align 8, !dbg !56
- // CHECK:STDOUT: call void @_Cthird_function.Main.4704114ae40540d8(ptr %arg1, ptr %arg2, ptr %.loc39), !dbg !57
- // CHECK:STDOUT: %.loc40 = load ptr, ptr %local1.var, align 8, !dbg !58
- // CHECK:STDOUT: call void @_Cfourth_function.Main.1ef1de437a217ee4(ptr %.loc40), !dbg !59
- // CHECK:STDOUT: ret void, !dbg !60
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: ; uselistorder directives
- // CHECK:STDOUT: uselistorder ptr @_Cfirst_function.Main.cf543a2f19840c22, { 1, 2, 0 }
- // CHECK:STDOUT:
- // CHECK:STDOUT: attributes #0 = { nounwind }
- // CHECK:STDOUT: attributes #1 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
- // CHECK:STDOUT:
- // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
- // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
- // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
- // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
- // CHECK:STDOUT: !3 = !DIFile(filename: "self_canonical.carbon", directory: "")
- // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "Main_method_no_template", linkageName: "_CMain_method_no_template.Main", scope: null, file: !3, line: 79, type: !5, spFlags: DISPFlagDefinition, unit: !2)
- // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
- // CHECK:STDOUT: !6 = !{null}
- // CHECK:STDOUT: !7 = !DILocation(line: 80, column: 3, scope: !4)
- // CHECK:STDOUT: !8 = !DILocation(line: 82, column: 18, scope: !4)
- // CHECK:STDOUT: !9 = !DILocation(line: 82, column: 3, scope: !4)
- // CHECK:STDOUT: !10 = !DILocation(line: 79, column: 1, scope: !4)
- // CHECK:STDOUT: !11 = distinct !DISubprogram(name: "fourth_function", linkageName: "_Cfourth_function.Main.1ef1de437a217ee4", scope: null, file: !3, line: 49, type: !12, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !15)
- // CHECK:STDOUT: !12 = !DISubroutineType(types: !13)
- // CHECK:STDOUT: !13 = !{null, !14}
- // CHECK:STDOUT: !14 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 8)
- // CHECK:STDOUT: !15 = !{!16}
- // CHECK:STDOUT: !16 = !DILocalVariable(arg: 1, scope: !11, type: !14)
- // CHECK:STDOUT: !17 = !DILocation(line: 50, column: 3, scope: !11)
- // CHECK:STDOUT: !18 = !DILocation(line: 51, column: 3, scope: !11)
- // CHECK:STDOUT: !19 = !DILocation(line: 53, column: 18, scope: !11)
- // CHECK:STDOUT: !20 = !DILocation(line: 53, column: 3, scope: !11)
- // CHECK:STDOUT: !21 = !DILocation(line: 54, column: 18, scope: !11)
- // CHECK:STDOUT: !22 = !DILocation(line: 54, column: 3, scope: !11)
- // CHECK:STDOUT: !23 = !DILocation(line: 49, column: 1, scope: !11)
- // CHECK:STDOUT: !24 = distinct !DISubprogram(name: "first_function", linkageName: "_Cfirst_function.Main.cf543a2f19840c22", scope: null, file: !3, line: 57, type: !12, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !25)
- // CHECK:STDOUT: !25 = !{!26}
- // CHECK:STDOUT: !26 = !DILocalVariable(arg: 1, scope: !24, type: !14)
- // CHECK:STDOUT: !27 = !DILocation(line: 58, column: 3, scope: !24)
- // CHECK:STDOUT: !28 = !DILocation(line: 59, column: 3, scope: !24)
- // CHECK:STDOUT: !29 = !DILocation(line: 61, column: 19, scope: !24)
- // CHECK:STDOUT: !30 = !DILocation(line: 61, column: 27, scope: !24)
- // CHECK:STDOUT: !31 = !DILocation(line: 61, column: 3, scope: !24)
- // CHECK:STDOUT: !32 = !DILocation(line: 57, column: 1, scope: !24)
- // CHECK:STDOUT: !33 = distinct !DISubprogram(name: "second_function", linkageName: "_Csecond_function.Main.fa07ebc2c86fcc7a", scope: null, file: !3, line: 70, type: !34, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !36)
- // CHECK:STDOUT: !34 = !DISubroutineType(types: !35)
- // CHECK:STDOUT: !35 = !{null, !14, !14, !14}
- // CHECK:STDOUT: !36 = !{!37, !38, !39}
- // CHECK:STDOUT: !37 = !DILocalVariable(arg: 1, scope: !33, type: !14)
- // CHECK:STDOUT: !38 = !DILocalVariable(arg: 2, scope: !33, type: !14)
- // CHECK:STDOUT: !39 = !DILocalVariable(arg: 3, scope: !33, type: !14)
- // CHECK:STDOUT: !40 = !DILocation(line: 71, column: 3, scope: !33)
- // CHECK:STDOUT: !41 = !DILocation(line: 72, column: 3, scope: !33)
- // CHECK:STDOUT: !42 = !DILocation(line: 73, column: 3, scope: !33)
- // CHECK:STDOUT: !43 = !DILocation(line: 75, column: 25, scope: !33)
- // CHECK:STDOUT: !44 = !DILocation(line: 75, column: 33, scope: !33)
- // CHECK:STDOUT: !45 = !DILocation(line: 75, column: 3, scope: !33)
- // CHECK:STDOUT: !46 = !DILocation(line: 76, column: 18, scope: !33)
- // CHECK:STDOUT: !47 = !DILocation(line: 76, column: 3, scope: !33)
- // CHECK:STDOUT: !48 = !DILocation(line: 70, column: 1, scope: !33)
- // CHECK:STDOUT: !49 = distinct !DISubprogram(name: "third_function", linkageName: "_Cthird_function.Main.4704114ae40540d8", scope: null, file: !3, line: 35, type: !34, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !50)
- // CHECK:STDOUT: !50 = !{!51, !52, !53}
- // CHECK:STDOUT: !51 = !DILocalVariable(arg: 1, scope: !49, type: !14)
- // CHECK:STDOUT: !52 = !DILocalVariable(arg: 2, scope: !49, type: !14)
- // CHECK:STDOUT: !53 = !DILocalVariable(arg: 3, scope: !49, type: !14)
- // CHECK:STDOUT: !54 = !DILocation(line: 36, column: 3, scope: !49)
- // CHECK:STDOUT: !55 = !DILocation(line: 37, column: 3, scope: !49)
- // CHECK:STDOUT: !56 = !DILocation(line: 39, column: 30, scope: !49)
- // CHECK:STDOUT: !57 = !DILocation(line: 39, column: 3, scope: !49)
- // CHECK:STDOUT: !58 = !DILocation(line: 40, column: 19, scope: !49)
- // CHECK:STDOUT: !59 = !DILocation(line: 40, column: 3, scope: !49)
- // CHECK:STDOUT: !60 = !DILocation(line: 35, column: 1, scope: !49)
|