File: printf-i16.ll

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (84 lines) | stat: -rw-r--r-- 3,919 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
;
; RUN: opt < %s -mtriple=avr-freebsd -passes=instcombine -S | FileCheck %s --check-prefix=AVR
; RUN: opt < %s -mtriple=msp430-linux -passes=instcombine -S | FileCheck %s --check-prefix=MSP430
; REQUIRES: avr-registered-target,msp430-registered-target
;
; Verify that the puts to putchar transformation works correctly even for
; targets with 16-bit int.

declare i16 @putchar(i16)
declare i16 @puts(ptr)

@s1 = constant [2 x i8] c"\01\00"
@s7f = constant [2 x i8] c"\7f\00"
@s80 = constant [2 x i8] c"\80\00"
@sff = constant [2 x i8] c"\ff\00"

@pcnt_c = constant [3 x i8] c"%c\00"
@pcnt_s = constant [3 x i8] c"%s\00"

declare i16 @printf(ptr, ...)

; Verfify that the three printf to putchar transformations all result
; in the same output for calls with equivalent arguments.

define void @xform_printf(i8 %c8, i16 %c16) {
; AVR-LABEL: @xform_printf(
; AVR-NEXT:    [[PUTCHAR:%.*]] = call addrspace(1) i16 @putchar(i16 1)
; AVR-NEXT:    [[PUTCHAR1:%.*]] = call addrspace(1) i16 @putchar(i16 1)
; AVR-NEXT:    [[PUTCHAR2:%.*]] = call addrspace(1) i16 @putchar(i16 1)
; AVR-NEXT:    [[PUTCHAR3:%.*]] = call addrspace(1) i16 @putchar(i16 127)
; AVR-NEXT:    [[PUTCHAR4:%.*]] = call addrspace(1) i16 @putchar(i16 127)
; AVR-NEXT:    [[PUTCHAR5:%.*]] = call addrspace(1) i16 @putchar(i16 127)
; AVR-NEXT:    [[PUTCHAR6:%.*]] = call addrspace(1) i16 @putchar(i16 128)
; AVR-NEXT:    [[PUTCHAR7:%.*]] = call addrspace(1) i16 @putchar(i16 128)
; AVR-NEXT:    [[PUTCHAR8:%.*]] = call addrspace(1) i16 @putchar(i16 128)
; AVR-NEXT:    [[PUTCHAR9:%.*]] = call addrspace(1) i16 @putchar(i16 255)
; AVR-NEXT:    [[PUTCHAR10:%.*]] = call addrspace(1) i16 @putchar(i16 255)
; AVR-NEXT:    [[PUTCHAR11:%.*]] = call addrspace(1) i16 @putchar(i16 255)
; AVR-NEXT:    [[TMP1:%.*]] = zext i8 [[C8:%.*]] to i16
; AVR-NEXT:    [[PUTCHAR12:%.*]] = call addrspace(1) i16 @putchar(i16 [[TMP1]])
; AVR-NEXT:    [[PUTCHAR13:%.*]] = call addrspace(1) i16 @putchar(i16 [[C16:%.*]])
; AVR-NEXT:    ret void
;
; MSP430-LABEL: @xform_printf(
; MSP430-NEXT:    [[PUTCHAR:%.*]] = call i16 @putchar(i16 1)
; MSP430-NEXT:    [[PUTCHAR1:%.*]] = call i16 @putchar(i16 1)
; MSP430-NEXT:    [[PUTCHAR2:%.*]] = call i16 @putchar(i16 1)
; MSP430-NEXT:    [[PUTCHAR3:%.*]] = call i16 @putchar(i16 127)
; MSP430-NEXT:    [[PUTCHAR4:%.*]] = call i16 @putchar(i16 127)
; MSP430-NEXT:    [[PUTCHAR5:%.*]] = call i16 @putchar(i16 127)
; MSP430-NEXT:    [[PUTCHAR6:%.*]] = call i16 @putchar(i16 128)
; MSP430-NEXT:    [[PUTCHAR7:%.*]] = call i16 @putchar(i16 128)
; MSP430-NEXT:    [[PUTCHAR8:%.*]] = call i16 @putchar(i16 128)
; MSP430-NEXT:    [[PUTCHAR9:%.*]] = call i16 @putchar(i16 255)
; MSP430-NEXT:    [[PUTCHAR10:%.*]] = call i16 @putchar(i16 255)
; MSP430-NEXT:    [[PUTCHAR11:%.*]] = call i16 @putchar(i16 255)
; MSP430-NEXT:    [[TMP1:%.*]] = zext i8 [[C8:%.*]] to i16
; MSP430-NEXT:    [[PUTCHAR12:%.*]] = call i16 @putchar(i16 [[TMP1]])
; MSP430-NEXT:    [[PUTCHAR13:%.*]] = call i16 @putchar(i16 [[C16:%.*]])
; MSP430-NEXT:    ret void
;
  call i16 (ptr, ...) @printf(ptr @s1)
  call i16 (ptr, ...) @printf(ptr @pcnt_c, i16 1)
  call i16 (ptr, ...) @printf(ptr @pcnt_s, ptr @s1)

  call i16 (ptr, ...) @printf(ptr @s7f)
  call i16 (ptr, ...) @printf(ptr @pcnt_c, i16 127)
  call i16 (ptr, ...) @printf(ptr @pcnt_s, ptr @s7f)

  call i16 (ptr, ...) @printf(ptr @s80)
  call i16 (ptr, ...) @printf(ptr @pcnt_c, i16 128)
  call i16 (ptr, ...) @printf(ptr @pcnt_s, ptr @s80)

  call i16 (ptr, ...) @printf(ptr @sff)
  call i16 (ptr, ...) @printf(ptr @pcnt_c, i16 255)
  call i16 (ptr, ...) @printf(ptr @pcnt_s, ptr @sff)

; The i8 argument to printf can be either zero-extended or sign-extended
; when passed to putchar which then converts it to unsigned char.
  call i16 (ptr, ...) @printf(ptr @pcnt_c, i8 %c8)
  call i16 (ptr, ...) @printf(ptr @pcnt_c, i16 %c16)
  ret void
}