File: apint-cast.ll

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (36 lines) | stat: -rw-r--r-- 1,316 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
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt < %s -instcombine -S | FileCheck %s

target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"

; Tests to make sure elimination of casts is working correctly

define i17 @test1(i17 %a) {
; CHECK-LABEL: @test1(
; CHECK-NEXT:    [[C:%.*]] = lshr i17 [[A:%.*]], 8
; CHECK-NEXT:    [[D:%.*]] = shl i17 [[A]], 8
; CHECK-NEXT:    [[E:%.*]] = or i17 [[C]], [[D]]
; CHECK-NEXT:    ret i17 [[E]]
;
  %b = zext i17 %a to i37    ; <i37> [#uses=2]
  %c = lshr i37 %b, 8        ; <i37> [#uses=1]
  %d = shl i37 %b, 8         ; <i37> [#uses=1]
  %e = or i37 %c, %d         ; <i37> [#uses=1]
  %f = trunc i37 %e to i17   ; <i17> [#uses=1]
  ret i17 %f
}

define i167 @test2(i167 %a) {
; CHECK-LABEL: @test2(
; CHECK-NEXT:    [[C:%.*]] = lshr i167 [[A:%.*]], 9
; CHECK-NEXT:    [[D:%.*]] = shl i167 [[A]], 8
; CHECK-NEXT:    [[E:%.*]] = or i167 [[C]], [[D]]
; CHECK-NEXT:    ret i167 [[E]]
;
  %b = zext i167 %a to i577   ; <i577> [#uses=2]
  %c = lshr i577 %b, 9        ; <i577> [#uses=1]
  %d = shl i577 %b, 8         ; <i577> [#uses=1]
  %e = or i577 %c, %d         ; <i577> [#uses=1]
  %f = trunc i577 %e to i167  ; <i167> [#uses=1]
  ret i167 %f
}