mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:40:38 +00:00
591bfa1e0b
This feature is needed in order to support shifts of more than 255 bits on large integer types. This changes the syntax for llvm assembly to make shl, ashr and lshr instructions look like a binary operator: shl i32 %X, 1 instead of shl i32 %X, i8 1 Additionally, this should help a few passes perform additional optimizations. llvm-svn: 33776
28 lines
778 B
LLVM
28 lines
778 B
LLVM
; RUN: llvm-as %s -o - | llvm-dis > %t.ll
|
|
; RUN: diff %t.ll %s.out
|
|
|
|
; test 9 bits
|
|
;
|
|
@b = constant i9 add(i9 511, i9 1)
|
|
@c = constant i9 add(i9 511, i9 511)
|
|
@d = constant i9 add(i9 504, i9 8)
|
|
@e = constant i9 sub(i9 0 , i9 1)
|
|
@f = constant i9 sub(i9 0 , i9 511)
|
|
@g = constant i9 sub(i9 2 , i9 511)
|
|
|
|
@h = constant i9 shl(i9 1 , i9 9)
|
|
@i = constant i9 shl(i9 1 , i9 8)
|
|
@j = constant i9 lshr(i9 511 , i9 8)
|
|
@k = constant i9 lshr(i9 511 , i9 9)
|
|
@l = constant i9 ashr(i9 511 , i9 8)
|
|
@m = constant i9 ashr(i9 511 , i9 9)
|
|
|
|
@n = constant i9 mul(i9 511, i9 2)
|
|
@q = constant i9 sdiv(i9 511, i9 2)
|
|
@r = constant i9 udiv(i9 511, i9 2)
|
|
@s = constant i9 urem(i9 511, i9 -1)
|
|
@t = constant i9 srem(i9 1, i9 510)
|
|
@o = constant i9 trunc( i10 512 to i9 )
|
|
@p = constant i9 trunc( i10 511 to i9 )
|
|
|