| OLD | NEW |
| 1 ; This is a basic test of the alloca instruction. | 1 ; This is a basic test of the alloca instruction. |
| 2 | 2 |
| 3 ; RUN: %llvm2ice -O2 --verbose none %s \ | 3 ; RUN: %p2i -i %s --args -O2 --verbose none \ |
| 4 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ | 4 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ |
| 5 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s | 5 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s |
| 6 ; RUN: %llvm2ice -Om1 --verbose none %s \ | 6 ; RUN: %p2i -i %s --args -Om1 --verbose none \ |
| 7 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ | 7 ; RUN: | llvm-mc -triple=i686-none-nacl -x86-asm-syntax=intel -filetype=obj \ |
| 8 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s | 8 ; RUN: | llvm-objdump -d --symbolize -x86-asm-syntax=intel - | FileCheck %s |
| 9 ; RUN: %llvm2ice --verbose none %s | FileCheck --check-prefix=ERRORS %s | 9 ; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s |
| 10 ; RUN: %llvm2iceinsts %s | %szdiff %s | FileCheck --check-prefix=DUMP %s | 10 ; TODO(kschimpf) Find out why lc2i is needed. |
| 11 ; RUN: %llvm2iceinsts --pnacl %s | %szdiff %s \ | 11 ; RUN: %lc2i -i %s --insts | %szdiff %s | FileCheck --check-prefix=DUMP %s |
| 12 ; RUN: | FileCheck --check-prefix=DUMP %s | |
| 13 | 12 |
| 14 define void @fixed_416_align_16(i32 %n) { | 13 define void @fixed_416_align_16(i32 %n) { |
| 15 entry: | 14 entry: |
| 16 %array = alloca i8, i32 416, align 16 | 15 %array = alloca i8, i32 416, align 16 |
| 17 %__2 = ptrtoint i8* %array to i32 | 16 %__2 = ptrtoint i8* %array to i32 |
| 18 call void @f1(i32 %__2) | 17 call void @f1(i32 %__2) |
| 19 ret void | 18 ret void |
| 20 } | 19 } |
| 21 ; CHECK-LABEL: fixed_416_align_16: | 20 ; CHECK-LABEL: fixed_416_align_16: |
| 22 ; CHECK: sub esp, 416 | 21 ; CHECK: sub esp, 416 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 ; CHECK: and [[REG]], -16 | 116 ; CHECK: and [[REG]], -16 |
| 118 ; CHECK: sub esp, [[REG]] | 117 ; CHECK: sub esp, [[REG]] |
| 119 | 118 |
| 120 define void @f2(i32 %ignored) { | 119 define void @f2(i32 %ignored) { |
| 121 entry: | 120 entry: |
| 122 ret void | 121 ret void |
| 123 } | 122 } |
| 124 | 123 |
| 125 ; ERRORS-NOT: ICE translation error | 124 ; ERRORS-NOT: ICE translation error |
| 126 ; DUMP-NOT: SZ | 125 ; DUMP-NOT: SZ |
| OLD | NEW |