Skip to content

Commit

Permalink
[InstCombine] add tests for known bits before FP casts; NFC
Browse files Browse the repository at this point in the history
  • Loading branch information
rotateright committed May 8, 2020
1 parent 26466ef commit df5c9fd
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions llvm/test/Transforms/InstCombine/sitofp.ll
Expand Up @@ -216,3 +216,32 @@ define i55 @test19(i64 %A) {
ret i55 %C
}

; TODO: The mask guarantees that the input is small enough to eliminate the FP casts.

define i25 @masked_input(i25 %A) {
; CHECK-LABEL: @masked_input(
; CHECK-NEXT: [[M:%.*]] = and i25 [[A:%.*]], 65535
; CHECK-NEXT: [[B:%.*]] = uitofp i25 [[M]] to float
; CHECK-NEXT: [[C:%.*]] = fptoui float [[B]] to i25
; CHECK-NEXT: ret i25 [[C]]
;
%m = and i25 %A, 65535
%B = uitofp i25 %m to float
%C = fptoui float %B to i25
ret i25 %C
}

; TODO: Clear the low bit - guarantees that the input is converted to FP without rounding.

define i25 @low_masked_input(i25 %A) {
; CHECK-LABEL: @low_masked_input(
; CHECK-NEXT: [[M:%.*]] = and i25 [[A:%.*]], -2
; CHECK-NEXT: [[B:%.*]] = uitofp i25 [[M]] to float
; CHECK-NEXT: [[C:%.*]] = fptoui float [[B]] to i25
; CHECK-NEXT: ret i25 [[C]]
;
%m = and i25 %A, -2
%B = uitofp i25 %m to float
%C = fptoui float %B to i25
ret i25 %C
}

0 comments on commit df5c9fd

Please sign in to comment.