As part of the unification of the debug format and the MIR format, print MBB references as '%bb.5'. The MIR printer prints the IR name of a MBB only for block definitions. * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#" << ([a-zA-Z0-9_]+)->getNumber\(\)/" << printMBBReference(*\1)/g' * find . \( -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#" << ([a-zA-Z0-9_]+)\.getNumber\(\)/" << printMBBReference(\1)/g' * find . \( -name "*.txt" -o -name "*.s" -o -name "*.mir" -o -name "*.cpp" -o -name "*.h" -o -name "*.ll" \) -type f -print0 | xargs -0 sed -i '' -E 's/BB#([0-9]+)/%bb.\1/g' * grep -nr 'BB#' and fix Differential Revision: https://reviews.llvm.org/D40422 llvm-svn: 319665
69 lines
1.4 KiB
ArmAsm
69 lines
1.4 KiB
ArmAsm
// RUN: llvm-mc -filetype=obj -triple i686-pc-linux-gnu %s -o - | llvm-readobj -h -s -r -t | FileCheck %s
|
|
|
|
.text
|
|
.globl main
|
|
.align 16, 0x90
|
|
.type main,@function
|
|
main: # @main
|
|
# %bb.0:
|
|
subl $4, %esp
|
|
movl $.L.str1, (%esp)
|
|
calll puts
|
|
movl $.L.str2, (%esp)
|
|
calll puts
|
|
xorl %eax, %eax
|
|
addl $4, %esp
|
|
ret
|
|
.Ltmp0:
|
|
.size main, .Ltmp0-main
|
|
|
|
.type .L.str1,@object # @.str1
|
|
.section .rodata.str1.1,"aMS",@progbits,1
|
|
.L.str1:
|
|
.asciz "Hello"
|
|
.size .L.str1, 6
|
|
|
|
.type .L.str2,@object # @.str2
|
|
.L.str2:
|
|
.asciz "World!"
|
|
.size .L.str2, 7
|
|
|
|
.section .note.GNU-stack,"",@progbits
|
|
|
|
// CHECK: ElfHeader {
|
|
// CHECK: Class: 32-bit
|
|
// CHECK: DataEncoding: LittleEndian
|
|
// CHECK: FileVersion: 1
|
|
// CHECK: }
|
|
// CHECK: Sections [
|
|
// CHECK: Section {
|
|
// CHECK: Index: 0
|
|
// CHECK: Name: (0)
|
|
|
|
// CHECK: Name: .text
|
|
|
|
// CHECK: Name: .rel.text
|
|
|
|
// CHECK: Relocations [
|
|
// CHECK: Section {{.*}} .rel.text {
|
|
// CHECK: 0x6 R_386_32 .L.str1
|
|
// CHECK: 0xB R_386_PC32 puts
|
|
// CHECK: 0x12 R_386_32 .L.str2
|
|
// CHECK: 0x17 R_386_PC32 puts
|
|
// CHECK: }
|
|
// CHECK: ]
|
|
|
|
// CHECK: Symbols [
|
|
|
|
// CHECK: Symbol {
|
|
// CHECK: Name: main
|
|
// CHECK: Binding: Global
|
|
// CHECK: Type: Function
|
|
// CHECK: }
|
|
|
|
// CHECK: Symbol {
|
|
// CHECK: Name: puts
|
|
// CHECK: Binding: Global
|
|
// CHECK: Type: None
|
|
// CHECK: }
|