| OLD | NEW |
| 1 ; This test originally exhibited a bug in ebp-based stack slots. The | 1 ; This test originally exhibited a bug in ebp-based stack slots. The |
| 2 ; problem was that during a function call push sequence, the esp | 2 ; problem was that during a function call push sequence, the esp |
| 3 ; adjustment was incorrectly added to the stack/frame offset for | 3 ; adjustment was incorrectly added to the stack/frame offset for |
| 4 ; ebp-based frames. | 4 ; ebp-based frames. |
| 5 | 5 |
| 6 ; RUN: %llvm2ice -Om1 --target=x8632 --verbose none %s | FileCheck %s | 6 ; RUN: %llvm2ice -Om1 --target=x8632 --verbose none %s \ |
| 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 |
| 7 | 9 |
| 8 declare i32 @memcpy_helper2(i32 %buf, i32 %buf2, i32 %n) | 10 declare i32 @memcpy_helper2(i32 %buf, i32 %buf2, i32 %n) |
| 9 | 11 |
| 10 define i32 @memcpy_helper(i32 %buf, i32 %n) { | 12 define i32 @memcpy_helper(i32 %buf, i32 %n) { |
| 11 entry: | 13 entry: |
| 12 %n.arg_trunc = trunc i32 %n to i8 | 14 %n.arg_trunc = trunc i32 %n to i8 |
| 13 %buf2 = alloca i8, i32 128, align 4 | 15 %buf2 = alloca i8, i32 128, align 4 |
| 14 %buf2.asint = ptrtoint i8* %buf2 to i32 | 16 %buf2.asint = ptrtoint i8* %buf2 to i32 |
| 15 %arg_ext = zext i8 %n.arg_trunc to i32 | 17 %arg_ext = zext i8 %n.arg_trunc to i32 |
| 16 %call = call i32 @memcpy_helper2(i32 %buf, i32 %buf2.asint, i32 %arg_ext) | 18 %call = call i32 @memcpy_helper2(i32 %buf, i32 %buf2.asint, i32 %arg_ext) |
| 17 ret i32 %call | 19 ret i32 %call |
| 18 } | 20 } |
| 19 | 21 |
| 20 ; This check sequence is highly specific to the current Om1 lowering | 22 ; This check sequence is highly specific to the current Om1 lowering |
| 21 ; and stack slot assignment code, and may need to be relaxed if the | 23 ; and stack slot assignment code, and may need to be relaxed if the |
| 22 ; lowering code changes. | 24 ; lowering code changes. |
| 23 | 25 |
| 24 ; CHECK-LABEL: memcpy_helper: | 26 ; CHECK-LABEL: memcpy_helper: |
| 25 ; CHECK: push ebp | 27 ; CHECK: push ebp |
| 26 ; CHECK: mov ebp, esp | 28 ; CHECK: mov ebp, esp |
| 27 ; CHECK: sub esp, 24 | 29 ; CHECK: sub esp, 24 |
| 28 ; CHECK: mov eax, dword ptr [ebp+12] | 30 ; CHECK: mov eax, dword ptr [ebp + 12] |
| 29 ; CHECK: mov dword ptr [ebp-4], eax | 31 ; CHECK: mov dword ptr [ebp - 4], eax |
| 30 ; CHECK: sub esp, 128 | 32 ; CHECK: sub esp, 128 |
| 31 ; CHECK: mov dword ptr [ebp-8], esp | 33 ; CHECK: mov dword ptr [ebp - 8], esp |
| 32 ; CHECK: mov eax, dword ptr [ebp-8] | 34 ; CHECK: mov eax, dword ptr [ebp - 8] |
| 33 ; CHECK: mov dword ptr [ebp-12], eax | 35 ; CHECK: mov dword ptr [ebp - 12], eax |
| 34 ; CHECK: movzx eax, byte ptr [ebp-4] | 36 ; CHECK: movzx eax, byte ptr [ebp - 4] |
| 35 ; CHECK: mov dword ptr [ebp-16], eax | 37 ; CHECK: mov dword ptr [ebp - 16], eax |
| 36 ; CHECK: sub esp, 16 | 38 ; CHECK: sub esp, 16 |
| 37 ; CHECK: mov ecx, dword ptr [ebp+8] | 39 ; CHECK: mov ecx, dword ptr [ebp + 8] |
| 38 ; CHECK: mov dword ptr [esp], ecx | 40 ; CHECK: mov dword ptr [esp], ecx |
| 39 ; CHECK: mov ecx, dword ptr [ebp-12] | 41 ; CHECK: mov ecx, dword ptr [ebp - 12] |
| 40 ; CHECK: mov dword ptr [esp+4], ecx | 42 ; CHECK: mov dword ptr [esp + 4], ecx |
| 41 ; CHECK: mov ecx, dword ptr [ebp-16] | 43 ; CHECK: mov ecx, dword ptr [ebp - 16] |
| 42 ; CHECK: mov dword ptr [esp+8], ecx | 44 ; CHECK: mov dword ptr [esp + 8], ecx |
| 43 ; CHECK: call memcpy_helper2 | 45 ; CHECK: call -4 |
| OLD | NEW |