| 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: %p2i --filetype=obj --disassemble -i %s --args -Om1 | FileCheck %s | 6 ; RUN: %p2i --filetype=obj --disassemble -i %s --args -Om1 | FileCheck %s |
| 7 | 7 |
| 8 declare i32 @memcpy_helper2(i32 %buf, i32 %buf2, i32 %n) | 8 declare i32 @memcpy_helper2(i32 %buf, i32 %buf2, i32 %n) |
| 9 | 9 |
| 10 define i32 @memcpy_helper(i32 %buf, i32 %n) { | 10 define i32 @memcpy_helper(i32 %buf, i32 %n) { |
| 11 entry: | 11 entry: |
| 12 br label %eblock ; Disable alloca optimization |
| 13 eblock: |
| 12 %buf2 = alloca i8, i32 128, align 4 | 14 %buf2 = alloca i8, i32 128, align 4 |
| 13 %n.arg_trunc = trunc i32 %n to i8 | 15 %n.arg_trunc = trunc i32 %n to i8 |
| 14 %arg.ext = zext i8 %n.arg_trunc to i32 | 16 %arg.ext = zext i8 %n.arg_trunc to i32 |
| 15 %buf2.asint = ptrtoint i8* %buf2 to i32 | 17 %buf2.asint = ptrtoint i8* %buf2 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 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 32 ; CHECK: movzx eax,BYTE PTR [ebp-0x8] | 34 ; CHECK: movzx eax,BYTE PTR [ebp-0x8] |
| 33 ; CHECK: mov DWORD PTR [ebp-0xc],eax | 35 ; CHECK: mov DWORD PTR [ebp-0xc],eax |
| 34 ; CHECK: sub esp,0x10 | 36 ; CHECK: sub esp,0x10 |
| 35 ; CHECK: mov eax,DWORD PTR [ebp+0x8] | 37 ; CHECK: mov eax,DWORD PTR [ebp+0x8] |
| 36 ; CHECK: mov DWORD PTR [esp],eax | 38 ; CHECK: mov DWORD PTR [esp],eax |
| 37 ; CHECK: mov eax,DWORD PTR [ebp-0x4] | 39 ; CHECK: mov eax,DWORD PTR [ebp-0x4] |
| 38 ; CHECK: mov DWORD PTR [esp+0x4],eax | 40 ; CHECK: mov DWORD PTR [esp+0x4],eax |
| 39 ; CHECK: mov eax,DWORD PTR [ebp-0xc] | 41 ; CHECK: mov eax,DWORD PTR [ebp-0xc] |
| 40 ; CHECK: mov DWORD PTR [esp+0x8],eax | 42 ; CHECK: mov DWORD PTR [esp+0x8],eax |
| 41 ; CHECK: call {{.*}} R_{{.*}} memcpy_helper2 | 43 ; CHECK: call {{.*}} R_{{.*}} memcpy_helper2 |
| OLD | NEW |