mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-10-30 16:17:05 +00:00 
			
		
		
		
	This reverts commit r218918, effectively reapplying r218914 after fixing an Ocaml bindings test and an Asan crash. The root cause of the latter was a tightened-up check in `DILexicalBlock::Verify()`, so I'll file a PR to investigate who requires the loose check (and why). Original commit message follows. -- This patch addresses the first stage of PR17891 by folding constant arguments together into a single MDString. Integers are stringified and a `\0` character is used as a separator. Part of PR17891. Note: I've attached my testcases upgrade scripts to the PR. If I've just broken your out-of-tree testcases, they might help. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219010 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			89 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			LLVM
		
	
	
	
	
	
| ; RUN: true
 | |
| ; This file belongs to type-unique-simple2-a.ll.
 | |
| ;
 | |
| ; $ cat b.cpp
 | |
| ; #include "ab.h"
 | |
| ; void A::setFoo() {}
 | |
| ; const
 | |
| ; foo_t A::getFoo() { return 1; }
 | |
| ; ModuleID = 'b.cpp'
 | |
| ; target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
 | |
| ; target triple = "x86_64-apple-macosx10.9.0"
 | |
| 
 | |
| %class.A = type { i32 (...)** }
 | |
| 
 | |
| @_ZTV1A = unnamed_addr constant [4 x i8*] [i8* null, i8* bitcast ({ i8*, i8* }* @_ZTI1A to i8*), i8* bitcast (void (%class.A*)* @_ZN1A6setFooEv to i8*), i8* bitcast (i32 (%class.A*)* @_ZN1A6getFooEv to i8*)]
 | |
| @_ZTVN10__cxxabiv117__class_type_infoE = external global i8*
 | |
| @_ZTS1A = constant [3 x i8] c"1A\00"
 | |
| @_ZTI1A = unnamed_addr constant { i8*, i8* } { i8* bitcast (i8** getelementptr inbounds (i8** @_ZTVN10__cxxabiv117__class_type_infoE, i64 2) to i8*), i8* getelementptr inbounds ([3 x i8]* @_ZTS1A, i32 0, i32 0) }
 | |
| 
 | |
| ; Function Attrs: nounwind
 | |
| define void @_ZN1A6setFooEv(%class.A* %this) unnamed_addr #0 align 2 {
 | |
| entry:
 | |
|   %this.addr = alloca %class.A*, align 8
 | |
|   store %class.A* %this, %class.A** %this.addr, align 8
 | |
|   call void @llvm.dbg.declare(metadata !{%class.A** %this.addr}, metadata !32, metadata !{metadata !"0x102"}), !dbg !34
 | |
|   %this1 = load %class.A** %this.addr
 | |
|   ret void, !dbg !35
 | |
| }
 | |
| 
 | |
| ; Function Attrs: nounwind readnone
 | |
| declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
 | |
| 
 | |
| ; Function Attrs: nounwind
 | |
| define i32 @_ZN1A6getFooEv(%class.A* %this) unnamed_addr #0 align 2 {
 | |
| entry:
 | |
|   %this.addr = alloca %class.A*, align 8
 | |
|   store %class.A* %this, %class.A** %this.addr, align 8
 | |
|   call void @llvm.dbg.declare(metadata !{%class.A** %this.addr}, metadata !36, metadata !{metadata !"0x102"}), !dbg !37
 | |
|   %this1 = load %class.A** %this.addr
 | |
|   ret i32 1, !dbg !38
 | |
| }
 | |
| 
 | |
| attributes #0 = { nounwind }
 | |
| attributes #1 = { nounwind readnone }
 | |
| 
 | |
| !llvm.dbg.cu = !{!0}
 | |
| !llvm.module.flags = !{!29, !30}
 | |
| !llvm.ident = !{!31}
 | |
| 
 | |
| !0 = metadata !{metadata !"0x11\004\00clang version 3.5 \000\00\000\00\000", metadata !1, metadata !2, metadata !3, metadata !25, metadata !2, metadata !2} ; [ DW_TAG_compile_unit ] [/<unknown>] [DW_LANG_C_plus_plus]
 | |
| !1 = metadata !{metadata !"<unknown>", metadata !""}
 | |
| !2 = metadata !{}
 | |
| !3 = metadata !{metadata !4}
 | |
| !4 = metadata !{metadata !"0x2\00A\002\0064\0064\000\000\000", metadata !5, null, null, metadata !6, metadata !"_ZTS1A", null, metadata !"_ZTS1A"} ; [ DW_TAG_class_type ] [A] [line 2, size 64, align 64, offset 0] [def] [from ]
 | |
| !5 = metadata !{metadata !"./ab.h", metadata !""}
 | |
| !6 = metadata !{metadata !7, metadata !14, metadata !19}
 | |
| !7 = metadata !{metadata !"0xd\00_vptr$A\000\0064\000\000\0064", metadata !5, metadata !8, metadata !9} ; [ DW_TAG_member ] [_vptr$A] [line 0, size 64, align 0, offset 0] [artificial] [from ]
 | |
| !8 = metadata !{metadata !"0x29", metadata !5}          ; [ DW_TAG_file_type ] [/./ab.h]
 | |
| !9 = metadata !{metadata !"0xf\00\000\0064\000\000\000", null, null, metadata !10} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 0, offset 0] [from __vtbl_ptr_type]
 | |
| !10 = metadata !{metadata !"0xf\00__vtbl_ptr_type\000\0064\000\000\000", null, null, metadata !11} ; [ DW_TAG_pointer_type ] [__vtbl_ptr_type] [line 0, size 64, align 0, offset 0] [from ]
 | |
| !11 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !12, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
 | |
| !12 = metadata !{metadata !13}
 | |
| !13 = metadata !{metadata !"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ] [int] [line 0, size 32, align 32, offset 0, enc DW_ATE_signed]
 | |
| !14 = metadata !{metadata !"0x2e\00setFoo\00setFoo\00_ZN1A6setFooEv\004\000\000\001\006\00259\000\004", metadata !5, metadata !"_ZTS1A", metadata !15, metadata !"_ZTS1A", null, null, i32 0, metadata !18} ; [ DW_TAG_subprogram ] [line 4] [setFoo]
 | |
| !15 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !16, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
 | |
| !16 = metadata !{null, metadata !17}
 | |
| !17 = metadata !{metadata !"0xf\00\000\0064\0064\000\001088", null, null, metadata !"_ZTS1A"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [artificial] [from _ZTS1A]
 | |
| !18 = metadata !{i32 786468}
 | |
| !19 = metadata !{metadata !"0x2e\00getFoo\00getFoo\00_ZN1A6getFooEv\005\000\000\001\006\00259\000\005", metadata !5, metadata !"_ZTS1A", metadata !20, metadata !"_ZTS1A", null, null, i32 0, metadata !24} ; [ DW_TAG_subprogram ] [line 5] [getFoo]
 | |
| !20 = metadata !{metadata !"0x15\00\000\000\000\000\000\000", i32 0, null, null, metadata !21, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
 | |
| !21 = metadata !{metadata !22, metadata !17}
 | |
| !22 = metadata !{metadata !"0x26\00\000\000\000\000\000", null, null, metadata !23} ; [ DW_TAG_const_type ] [line 0, size 0, align 0, offset 0] [from foo_t]
 | |
| !23 = metadata !{metadata !"0x16\00foo_t\001\000\000\000\000", metadata !5, null, metadata !13} ; [ DW_TAG_typedef ] [foo_t] [line 1, size 0, align 0, offset 0] [from int]
 | |
| !24 = metadata !{i32 786468}
 | |
| !25 = metadata !{metadata !26, metadata !28}
 | |
| !26 = metadata !{metadata !"0x2e\00setFoo\00setFoo\00_ZN1A6setFooEv\002\000\001\000\006\00259\000\002", metadata !27, metadata !"_ZTS1A", metadata !15, null, void (%class.A*)* @_ZN1A6setFooEv, null, metadata !14, metadata !2} ; [ DW_TAG_subprogram ] [line 2] [def] [setFoo]
 | |
| !27 = metadata !{metadata !"b.cpp", metadata !""}
 | |
| !28 = metadata !{metadata !"0x2e\00getFoo\00getFoo\00_ZN1A6getFooEv\004\000\001\000\006\00259\000\004", metadata !27, metadata !"_ZTS1A", metadata !20, null, i32 (%class.A*)* @_ZN1A6getFooEv, null, metadata !19, metadata !2} ; [ DW_TAG_subprogram ] [line 4] [def] [getFoo]
 | |
| !29 = metadata !{i32 2, metadata !"Dwarf Version", i32 2}
 | |
| !30 = metadata !{i32 1, metadata !"Debug Info Version", i32 2}
 | |
| !31 = metadata !{metadata !"clang version 3.5 "}
 | |
| !32 = metadata !{metadata !"0x101\00this\0016777216\001088", metadata !26, null, metadata !33} ; [ DW_TAG_arg_variable ] [this] [line 0]
 | |
| !33 = metadata !{metadata !"0xf\00\000\0064\0064\000\000", null, null, metadata !"_ZTS1A"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from _ZTS1A]
 | |
| !34 = metadata !{i32 0, i32 0, metadata !26, null}
 | |
| !35 = metadata !{i32 2, i32 0, metadata !26, null}
 | |
| !36 = metadata !{metadata !"0x101\00this\0016777216\001088", metadata !28, null, metadata !33} ; [ DW_TAG_arg_variable ] [this] [line 0]
 | |
| !37 = metadata !{i32 0, i32 0, metadata !28, null}
 | |
| !38 = metadata !{i32 4, i32 0, metadata !28, null}
 |