mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-13 07:50:41 +00:00
e31d7f83c5
Adds pushes to the folding tables. This also required a fix to the TD definition, since the memory forms of the push instructions did not have the right mayLoad/mayStore flags. Differential Revision: http://reviews.llvm.org/D11340 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243010 91177308-0d34-0410-b5e6-96231b3b80d8
41 lines
1.1 KiB
LLVM
41 lines
1.1 KiB
LLVM
; RUN: llc < %s -mtriple=i686-windows | FileCheck %s -check-prefix=CHECK -check-prefix=NORMAL
|
|
; RUN: llc < %s -mtriple=i686-windows -mattr=call-reg-indirect | FileCheck %s -check-prefix=CHECK -check-prefix=SLM
|
|
|
|
declare void @foo(i32 %r)
|
|
|
|
define void @test(i32 %a, i32 %b) optsize {
|
|
; CHECK-LABEL: test:
|
|
; CHECK: movl [[EAX:%e..]], (%esp)
|
|
; CHECK-NEXT: pushl [[EAX]]
|
|
; CHECK-NEXT: calll
|
|
; CHECK-NEXT: addl $4, %esp
|
|
; CHECK: nop
|
|
; NORMAL: pushl (%esp)
|
|
; SLM: movl (%esp), [[RELOAD:%e..]]
|
|
; SLM-NEXT: pushl [[RELOAD]]
|
|
; CHECK: calll
|
|
; CHECK-NEXT: addl $4, %esp
|
|
%c = add i32 %a, %b
|
|
call void @foo(i32 %c)
|
|
call void asm sideeffect "nop", "~{ax},~{bx},~{cx},~{dx},~{bp},~{si},~{di}"()
|
|
call void @foo(i32 %c)
|
|
ret void
|
|
}
|
|
|
|
define void @test_min(i32 %a, i32 %b) minsize {
|
|
; CHECK-LABEL: test_min:
|
|
; CHECK: movl [[EAX:%e..]], (%esp)
|
|
; CHECK-NEXT: pushl [[EAX]]
|
|
; CHECK-NEXT: calll
|
|
; CHECK-NEXT: addl $4, %esp
|
|
; CHECK: nop
|
|
; CHECK: pushl (%esp)
|
|
; CHECK: calll
|
|
; CHECK-NEXT: addl $4, %esp
|
|
%c = add i32 %a, %b
|
|
call void @foo(i32 %c)
|
|
call void asm sideeffect "nop", "~{ax},~{bx},~{cx},~{dx},~{bp},~{si},~{di}"()
|
|
call void @foo(i32 %c)
|
|
ret void
|
|
}
|