mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 00:17:01 +00:00
Add DAG combine for ladd / lsub.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98057 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
28
test/CodeGen/XCore/ladd_lsub_combine.ll
Normal file
28
test/CodeGen/XCore/ladd_lsub_combine.ll
Normal file
@@ -0,0 +1,28 @@
|
||||
; RUN: llvm-as < %s | llc -march=xcore | FileCheck %s
|
||||
|
||||
; Only needs one ladd
|
||||
define i64 @f1(i32 %x, i32 %y) nounwind {
|
||||
entry:
|
||||
%0 = zext i32 %x to i64 ; <i64> [#uses=1]
|
||||
%1 = zext i32 %y to i64 ; <i64> [#uses=1]
|
||||
%2 = add i64 %1, %0 ; <i64> [#uses=1]
|
||||
ret i64 %2
|
||||
}
|
||||
; CHECK: f1:
|
||||
; CHECK: ldc r2, 0
|
||||
; CHECK-NEXT: ladd r1, r0, r1, r0, r2
|
||||
; CHECK-NEXT: retsp 0
|
||||
|
||||
; Only needs one lsub and one neg
|
||||
define i64 @f2(i32 %x, i32 %y) nounwind {
|
||||
entry:
|
||||
%0 = zext i32 %x to i64 ; <i64> [#uses=1]
|
||||
%1 = zext i32 %y to i64 ; <i64> [#uses=1]
|
||||
%2 = sub i64 %1, %0 ; <i64> [#uses=1]
|
||||
ret i64 %2
|
||||
}
|
||||
; CHECK: f2:
|
||||
; CHECK: ldc r2, 0
|
||||
; CHECK-NEXT: lsub r1, r0, r1, r0, r2
|
||||
; CHECK-NEXT: neg r1, r1
|
||||
; CHECK-NEXT: retsp 0
|
||||
Reference in New Issue
Block a user