llvm-6502/test/Integer/a15.ll
Reid Spencer 832254e1c2 Changes to support making the shift instructions be true BinaryOperators.
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.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33776 91177308-0d34-0410-b5e6-96231b3b80d8
2007-02-02 02:16:23 +00:00

29 lines
924 B
LLVM

; RUN: llvm-as %s -o - | llvm-dis > %t.ll
; RUN: diff %t.ll %s.out
; test 15 bits
;
@b = constant i15 add(i15 32767, i15 1)
@c = constant i15 add(i15 32767, i15 32767)
@d = constant i15 add(i15 32760, i15 8)
@e = constant i15 sub(i15 0 , i15 1)
@f = constant i15 sub(i15 0 , i15 32767)
@g = constant i15 sub(i15 2 , i15 32767)
@h = constant i15 shl(i15 1 , i15 15)
@i = constant i15 shl(i15 1 , i15 14)
@j = constant i15 lshr(i15 32767 , i15 14)
@k = constant i15 lshr(i15 32767 , i15 15)
@l = constant i15 ashr(i15 32767 , i15 14)
@m = constant i15 ashr(i15 32767 , i15 15)
@n = constant i15 mul(i15 32767, i15 2)
@q = constant i15 mul(i15 -16383,i15 -3)
@r = constant i15 sdiv(i15 -1, i15 16383)
@s = constant i15 udiv(i15 -1, i15 16383)
@t = constant i15 srem(i15 1, i15 32766)
@u = constant i15 urem(i15 32767,i15 -1)
@o = constant i15 trunc( i16 32768 to i15 )
@p = constant i15 trunc( i16 32767 to i15 )