mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
ccbc75257a
The failures in r116753 r116756 were caused by a python issue - Python likes to append 'L' suffix to stringified numbers if the number is larger than a machine int. Unfortunately, this causes a divergence of behavior between 32 and 64 bit python versions. I re-crafted elf-dump/common_dump to take care of these issues by: 1. always printing 0x (makes for easy sed/regex) 2. always print fixed length (exactly 2 + numBits/4 digits long) by mod ((2^numBits) - 1) 3. left-padded with '0' There is a residual common routine that is also used by macho-dump (dataToHex) , so I left the 'section_data' test values alone. llvm-svn: 116823
23 lines
1.1 KiB
ArmAsm
23 lines
1.1 KiB
ArmAsm
// RUN: llvm-mc -filetype=obj -triple i686-pc-linux-gnu %s -o - | elf-dump --dump-section-data | FileCheck -check-prefix=ELF_32 %s
|
|
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump --dump-section-data | FileCheck -check-prefix=ELF_64 %s
|
|
// RUN: llvm-mc -filetype=obj -triple i386-apple-darwin9 %s -o - | macho-dump --dump-section-data | FileCheck -check-prefix=MACHO_32 %s
|
|
// RUN: llvm-mc -filetype=obj -triple x86_64-apple-darwin9 %s -o - | macho-dump --dump-section-data | FileCheck -check-prefix=MACHO_64 %s
|
|
|
|
.text
|
|
foo:
|
|
.uleb128 0
|
|
.uleb128 1
|
|
.uleb128 127
|
|
.uleb128 128
|
|
.uleb128 16383
|
|
.uleb128 16384
|
|
|
|
// ELF_32: ('sh_name', 0x00000001) # '.text'
|
|
// ELF_32: ('_section_data', '00017f80 01ff7f80 8001')
|
|
// ELF_64: ('sh_name', 0x00000001) # '.text'
|
|
// ELF_64: ('_section_data', '00017f80 01ff7f80 8001')
|
|
// MACHO_32: ('section_name', '__text\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00')
|
|
// MACHO_32: ('_section_data', '00017f80 01ff7f80 8001')
|
|
// MACHO_64: ('section_name', '__text\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00')
|
|
// MACHO_64: ('_section_data', '00017f80 01ff7f80 8001')
|