mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
8f4cb72386
This is a small pet peeve from me. This change makes sure the AVR backend uses the correct private label prefix (.L) so that private labels are hidden in avr-objdump. Example code: define i8 @foo(i1 %cond) { br i1 %cond, label %then, label %else then: ret i8 3 else: ret i8 5 } When compiling this: llc -march=avr -filetype=obj -o test.o test.ll and then dumping it: avr-objdump -d test.o You would previously get an ugly temporary label: 00000000 <foo>: 0: 81 70 andi r24, 0x01 ; 1 2: 80 30 cpi r24, 0x00 ; 0 4: f9 f3 breq .-2 ; 0x4 <foo+0x4> 6: 83 e0 ldi r24, 0x03 ; 3 8: 08 95 ret 0000000a <LBB0_2>: a: 85 e0 ldi r24, 0x05 ; 5 c: 08 95 ret This patch fixes that, the output is now: 00000000 <foo>: 0: 81 70 andi r24, 0x01 ; 1 2: 80 30 cpi r24, 0x00 ; 0 4: 01 f0 breq .+0 ; 0x6 <foo+0x6> 6: 83 e0 ldi r24, 0x03 ; 3 8: 08 95 ret a: 85 e0 ldi r24, 0x05 ; 5 c: 08 95 ret Note that as you can see the breq operand is different. However it is still the same after linking: 4: 11 f0 breq .+4 Differential Revision: https://reviews.llvm.org/D75124
41 lines
1.3 KiB
LLVM
41 lines
1.3 KiB
LLVM
; RUN: llc < %s -march=avr | FileCheck %s
|
|
|
|
define i8 @count_trailing_zeros(i8) unnamed_addr {
|
|
entry-block:
|
|
%1 = tail call i8 @llvm.cttz.i8(i8 %0)
|
|
ret i8 %1
|
|
}
|
|
|
|
declare i8 @llvm.cttz.i8(i8)
|
|
|
|
; CHECK-LABEL: count_trailing_zeros:
|
|
; CHECK: cpi [[RESULT:r[0-9]+]], 0
|
|
; CHECK: breq [[END_BB:.LBB[0-9]+_[0-9]+]]
|
|
; CHECK: mov [[SCRATCH:r[0-9]+]], {{.*}}[[RESULT]]
|
|
; CHECK: dec {{.*}}[[SCRATCH]]
|
|
; CHECK: com {{.*}}[[RESULT]]
|
|
; CHECK: and {{.*}}[[RESULT]], {{.*}}[[SCRATCH]]
|
|
; CHECK: mov {{.*}}[[SCRATCH]], {{.*}}[[RESULT]]
|
|
; CHECK: lsr {{.*}}[[SCRATCH]]
|
|
; CHECK: andi {{.*}}[[SCRATCH]], 85
|
|
; CHECK: sub {{.*}}[[RESULT]], {{.*}}[[SCRATCH]]
|
|
; CHECK: mov {{.*}}[[SCRATCH]], {{.*}}[[RESULT]]
|
|
; CHECK: andi {{.*}}[[SCRATCH]], 51
|
|
; CHECK: lsr {{.*}}[[RESULT]]
|
|
; CHECK: lsr {{.*}}[[RESULT]]
|
|
; CHECK: andi {{.*}}[[RESULT]], 51
|
|
; CHECK: add {{.*}}[[RESULT]], {{.*}}[[SCRATCH]]
|
|
; CHECK: mov {{.*}}[[SCRATCH]], {{.*}}[[RESULT]]
|
|
; CHECK: lsr {{.*}}[[SCRATCH]]
|
|
; CHECK: lsr {{.*}}[[SCRATCH]]
|
|
; CHECK: lsr {{.*}}[[SCRATCH]]
|
|
; CHECK: lsr {{.*}}[[SCRATCH]]
|
|
; CHECK: add {{.*}}[[SCRATCH]], {{.*}}[[RESULT]]
|
|
; CHECK: andi {{.*}}[[SCRATCH]], 15
|
|
; CHECK: mov {{.*}}[[RESULT]], {{.*}}[[SCRATCH]]
|
|
; CHECK: ret
|
|
; CHECK: [[END_BB]]:
|
|
; CHECK: ldi {{.*}}[[SCRATCH]], 8
|
|
; CHECK: mov {{.*}}[[RESULT]], {{.*}}[[SCRATCH]]
|
|
; CHECK: ret
|