mirror of
				https://github.com/c64scene-ar/llvm-6502.git
				synced 2025-11-04 05:17:07 +00:00 
			
		
		
		
	Currently, llvm always emits a DWARF CIE with a version of 1, even when emitting DWARF 3 or 4, which both support CIE version 3. This patch makes it emit the newer CIE version when we are emitting DWARF 3 or 4. This will not reduce compatibility, as we already emit other DWARF3/4 features, and is worth doing as the DWARF3 spec removed some ambiguities in the interpretation of call frame information. It also fixes a minor bug where the "return address" field of the CIE was encoded as a ULEB128, which is only valid when the CIE version is 3. There are no test changes for this, because (as far as I can tell) none of the platforms that we test have a return address register with a DWARF register number >127. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211272 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -s -sd | FileCheck -check-prefix=ELF_64 %s
 | 
						|
// RUN: llvm-mc -filetype=obj -triple i686-pc-linux-gnu %s -o - | llvm-readobj -s -sd | FileCheck -check-prefix=ELF_32 %s
 | 
						|
 | 
						|
.cfi_sections .debug_frame
 | 
						|
 | 
						|
f1:
 | 
						|
        .cfi_startproc
 | 
						|
        nop
 | 
						|
        .cfi_endproc
 | 
						|
 | 
						|
f2:
 | 
						|
        .cfi_startproc
 | 
						|
        nop
 | 
						|
        .cfi_endproc
 | 
						|
 | 
						|
// ELF_64:        Section {
 | 
						|
// ELF_64:          Name: .debug_frame
 | 
						|
// ELF_64-NEXT:     Type: SHT_PROGBITS
 | 
						|
// ELF_64-NEXT:     Flags [
 | 
						|
// ELF_64-NEXT:     ]
 | 
						|
// ELF_64-NEXT:     Address: 0x0
 | 
						|
// ELF_64-NEXT:     Offset: 0x48
 | 
						|
// ELF_64-NEXT:     Size: 72
 | 
						|
// ELF_64-NEXT:     Link: 0
 | 
						|
// ELF_64-NEXT:     Info: 0
 | 
						|
// ELF_64-NEXT:     AddressAlignment: 8
 | 
						|
// ELF_64-NEXT:     EntrySize: 0
 | 
						|
// ELF_64-NEXT:     SectionData (
 | 
						|
// ELF_64-NEXT:       0000: 14000000 FFFFFFFF 03000178 100C0708
 | 
						|
// ELF_64-NEXT:       0010: 90010000 00000000 14000000 00000000
 | 
						|
// ELF_64-NEXT:       0020: 00000000 00000000 01000000 00000000
 | 
						|
// ELF_64-NEXT:       0030: 14000000 00000000 00000000 00000000
 | 
						|
// ELF_64-NEXT:       0040: 01000000 00000000
 | 
						|
// ELF_64-NEXT:     )
 | 
						|
// ELF_64-NEXT:   }
 | 
						|
 | 
						|
// ELF_32:        Section {
 | 
						|
// ELF_32:          Name: .debug_frame
 | 
						|
// ELF_32-NEXT:     Type: SHT_PROGBITS
 | 
						|
// ELF_32-NEXT:     Flags [
 | 
						|
// ELF_32-NEXT:     ]
 | 
						|
// ELF_32-NEXT:     Address: 0x0
 | 
						|
// ELF_32-NEXT:     Offset: 0x38
 | 
						|
// ELF_32-NEXT:     Size: 52
 | 
						|
// ELF_32-NEXT:     Link: 0
 | 
						|
// ELF_32-NEXT:     Info: 0
 | 
						|
// ELF_32-NEXT:     AddressAlignment: 4
 | 
						|
// ELF_32-NEXT:     EntrySize: 0
 | 
						|
// ELF_32-NEXT:     SectionData (
 | 
						|
// ELF_32-NEXT:       0000: 10000000 FFFFFFFF 0300017C 080C0404
 | 
						|
// ELF_32-NEXT:       0010: 88010000 0C000000 00000000 00000000
 | 
						|
// ELF_32-NEXT:       0020: 01000000 0C000000 00000000 01000000
 | 
						|
// ELF_32-NEXT:       0030: 01000000
 | 
						|
// ELF_32-NEXT:     )
 | 
						|
// ELF_32-NEXT:   }
 |