mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-13 23:26:25 +00:00
FastISel was only enabled for iOS ARM and Thumb2, this patch enables it for ARM (not Thumb2) on Linux and NaCl. Thumb2 support needs a bit more work, mainly around register class restrictions. The patch punts to SelectionDAG when doing TLS relocation on non-Darwin targets. I will fix this and other FastISel-to-SelectionDAG failures in a separate patch. The patch also forces FastISel to retain frame pointers: iOS always keeps them for backtracking (so emitted code won't change because of this), but Linux was getting much worse code that was incorrect when using big frames (such as test-suite's lencod). I'll also fix this in a later patch, it will probably require a peephole so that FastISel doesn't rematerialize frame pointers back-to-back. The test changes are straightforward, similar to: http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20130513/174279.html They also add a vararg test that got dropped in that change. I ran all of test-suite on A15 hardware with --optimize-option=-O0 and all the tests pass. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182877 91177308-0d34-0410-b5e6-96231b3b80d8
79 lines
1.9 KiB
LLVM
79 lines
1.9 KiB
LLVM
; RUN: llc < %s -O0 -fast-isel-abort -relocation-model=dynamic-no-pic -mtriple=armv7-apple-ios | FileCheck %s --check-prefix=ARM
|
|
; RUN: llc < %s -O0 -fast-isel-abort -relocation-model=dynamic-no-pic -mtriple=armv7-linux-gnueabi | FileCheck %s --check-prefix=ARM
|
|
; RUN: llc < %s -O0 -fast-isel-abort -relocation-model=dynamic-no-pic -mtriple=thumbv7-apple-ios | FileCheck %s --check-prefix=THUMB
|
|
|
|
define i32 @icmp_i16_signed(i16 %a, i16 %b) nounwind {
|
|
entry:
|
|
; ARM: icmp_i16_signed
|
|
; ARM: sxth r0, r0
|
|
; ARM: sxth r1, r1
|
|
; ARM: cmp r0, r1
|
|
; THUMB: icmp_i16_signed
|
|
; THUMB: sxth r0, r0
|
|
; THUMB: sxth r1, r1
|
|
; THUMB: cmp r0, r1
|
|
%cmp = icmp slt i16 %a, %b
|
|
%conv2 = zext i1 %cmp to i32
|
|
ret i32 %conv2
|
|
}
|
|
|
|
define i32 @icmp_i16_unsigned(i16 %a, i16 %b) nounwind {
|
|
entry:
|
|
; ARM: icmp_i16_unsigned
|
|
; ARM: uxth r0, r0
|
|
; ARM: uxth r1, r1
|
|
; ARM: cmp r0, r1
|
|
; THUMB: icmp_i16_unsigned
|
|
; THUMB: uxth r0, r0
|
|
; THUMB: uxth r1, r1
|
|
; THUMB: cmp r0, r1
|
|
%cmp = icmp ult i16 %a, %b
|
|
%conv2 = zext i1 %cmp to i32
|
|
ret i32 %conv2
|
|
}
|
|
|
|
define i32 @icmp_i8_signed(i8 %a, i8 %b) nounwind {
|
|
entry:
|
|
; ARM: icmp_i8_signed
|
|
; ARM: sxtb r0, r0
|
|
; ARM: sxtb r1, r1
|
|
; ARM: cmp r0, r1
|
|
; THUMB: icmp_i8_signed
|
|
; THUMB: sxtb r0, r0
|
|
; THUMB: sxtb r1, r1
|
|
; THUMB: cmp r0, r1
|
|
%cmp = icmp sgt i8 %a, %b
|
|
%conv2 = zext i1 %cmp to i32
|
|
ret i32 %conv2
|
|
}
|
|
|
|
define i32 @icmp_i8_unsigned(i8 %a, i8 %b) nounwind {
|
|
entry:
|
|
; ARM: icmp_i8_unsigned
|
|
; ARM: uxtb r0, r0
|
|
; ARM: uxtb r1, r1
|
|
; ARM: cmp r0, r1
|
|
; THUMB: icmp_i8_unsigned
|
|
; THUMB: uxtb r0, r0
|
|
; THUMB: uxtb r1, r1
|
|
; THUMB: cmp r0, r1
|
|
%cmp = icmp ugt i8 %a, %b
|
|
%conv2 = zext i1 %cmp to i32
|
|
ret i32 %conv2
|
|
}
|
|
|
|
define i32 @icmp_i1_unsigned(i1 %a, i1 %b) nounwind {
|
|
entry:
|
|
; ARM: icmp_i1_unsigned
|
|
; ARM: and r0, r0, #1
|
|
; ARM: and r1, r1, #1
|
|
; ARM: cmp r0, r1
|
|
; THUMB: icmp_i1_unsigned
|
|
; THUMB: and r0, r0, #1
|
|
; THUMB: and r1, r1, #1
|
|
; THUMB: cmp r0, r1
|
|
%cmp = icmp ult i1 %a, %b
|
|
%conv2 = zext i1 %cmp to i32
|
|
ret i32 %conv2
|
|
}
|