| ; This is a test of C-level conversion operations that clang lowers |
| ; into pairs of shifts. |
| |
| ; RUN: %p2i -i %s --no-local-syms --args -O2 --verbose none \ |
| ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ |
| ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s |
| ; RUN: %p2i -i %s --no-local-syms --args -Om1 --verbose none \ |
| ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ |
| ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s |
| ; RUN: %p2i -i %s --no-local-syms --args --verbose none \ |
| ; RUN: | FileCheck --check-prefix=ERRORS %s |
| ; TODO(kschimpf) Find out why lc2i is needed. |
| ; RUN: %lc2i -i %s --insts | %szdiff %s | FileCheck --check-prefix=DUMP %s |
| |
| @i1 = internal global [4 x i8] zeroinitializer, align 4 |
| @i2 = internal global [4 x i8] zeroinitializer, align 4 |
| @u1 = internal global [4 x i8] zeroinitializer, align 4 |
| |
| define void @conv1() { |
| entry: |
| %__0 = bitcast [4 x i8]* @u1 to i32* |
| %v0 = load i32* %__0, align 1 |
| %sext = shl i32 %v0, 24 |
| %v1 = ashr i32 %sext, 24 |
| %__4 = bitcast [4 x i8]* @i1 to i32* |
| store i32 %v1, i32* %__4, align 1 |
| ret void |
| } |
| ; CHECK-LABEL: conv1 |
| ; CHECK: shl {{.*}}, 24 |
| ; CHECK: sar {{.*}}, 24 |
| |
| define void @conv2() { |
| entry: |
| %__0 = bitcast [4 x i8]* @u1 to i32* |
| %v0 = load i32* %__0, align 1 |
| %sext1 = shl i32 %v0, 16 |
| %v1 = ashr i32 %sext1, 16 |
| %__4 = bitcast [4 x i8]* @i2 to i32* |
| store i32 %v1, i32* %__4, align 1 |
| ret void |
| } |
| ; CHECK-LABEL: conv2 |
| ; CHECK: shl {{.*}}, 16 |
| ; CHECK: sar {{.*}}, 16 |
| |
| ; ERRORS-NOT: ICE translation error |
| ; DUMP-NOT: SZ |