| 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: %p2i -i %s --args -O2 --verbose none \ | 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: %p2i -i %s --args -Om1 --verbose none \ | 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: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s | 9 ; RUN: %p2i -i %s --args --verbose none | FileCheck --check-prefix=ERRORS %s |
| 10 ; TODO(kschimpf) Find out why lc2i is needed. | |
| 11 ; RUN: %lc2i -i %s --insts | %szdiff %s | FileCheck --check-prefix=DUMP %s | |
| 12 | 10 |
| 13 define void @fixed_416_align_16(i32 %n) { | 11 define void @fixed_416_align_16(i32 %n) { |
| 14 entry: | 12 entry: |
| 15 %array = alloca i8, i32 416, align 16 | 13 %array = alloca i8, i32 416, align 16 |
| 16 %__2 = ptrtoint i8* %array to i32 | 14 %__2 = ptrtoint i8* %array to i32 |
| 17 call void @f1(i32 %__2) | 15 call void @f1(i32 %__2) |
| 18 ret void | 16 ret void |
| 19 } | 17 } |
| 20 ; CHECK-LABEL: fixed_416_align_16: | 18 ; CHECK-LABEL: fixed_416_align_16: |
| 21 ; CHECK: sub esp, 416 | 19 ; CHECK: sub esp, 416 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 ; CHECK: add [[REG:.*]], 15 | 113 ; CHECK: add [[REG:.*]], 15 |
| 116 ; CHECK: and [[REG]], -16 | 114 ; CHECK: and [[REG]], -16 |
| 117 ; CHECK: sub esp, [[REG]] | 115 ; CHECK: sub esp, [[REG]] |
| 118 | 116 |
| 119 define void @f2(i32 %ignored) { | 117 define void @f2(i32 %ignored) { |
| 120 entry: | 118 entry: |
| 121 ret void | 119 ret void |
| 122 } | 120 } |
| 123 | 121 |
| 124 ; ERRORS-NOT: ICE translation error | 122 ; ERRORS-NOT: ICE translation error |
| 125 ; DUMP-NOT: SZ | |
| OLD | NEW |