mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
b3f912b510
r186399 aggressively used the RISBG instruction for immediate ANDs, both because it can handle some values that AND IMMEDIATE can't, and because it allows the destination register to be different from the source. I realized later while implementing the distinct-ops support that it would be better to leave the choice up to convertToThreeAddress() instead. The AND IMMEDIATE form is shorter and is less likely to be cracked. This is a problem for 32-bit ANDs because we assume that all 32-bit operations will leave the high word untouched, whereas RISBG used in this way will either clear the high word or copy it from the source register. The patch uses the z196 instruction RISBLG for this instead. This means that z10 will be restricted to NILL, NILH and NILF for 32-bit ANDs, but I think that should be OK for now. Although we're using z10 as the base architecture, the optimization work is going to be focused more on z196 and zEC12. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187492 91177308-0d34-0410-b5e6-96231b3b80d8
117 lines
3.2 KiB
LLVM
117 lines
3.2 KiB
LLVM
; addr-01.ll in which the address is also used in a non-address context.
|
|
; The assumption here is that we should match complex addresses where
|
|
; possible, but this might well need to change in future.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
; A simple index address.
|
|
define void @f1(i64 %addr, i64 %index, i8 **%dst) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: lb %r0, 0(%r3,%r2)
|
|
; CHECK: br %r14
|
|
%add = add i64 %addr, %index
|
|
%ptr = inttoptr i64 %add to i8 *
|
|
%a = load volatile i8 *%ptr
|
|
store volatile i8 *%ptr, i8 **%dst
|
|
ret void
|
|
}
|
|
|
|
; An address with an index and a displacement (order 1).
|
|
define void @f2(i64 %addr, i64 %index, i8 **%dst) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: lb %r0, 100(%r3,%r2)
|
|
; CHECK: br %r14
|
|
%add1 = add i64 %addr, %index
|
|
%add2 = add i64 %add1, 100
|
|
%ptr = inttoptr i64 %add2 to i8 *
|
|
%a = load volatile i8 *%ptr
|
|
store volatile i8 *%ptr, i8 **%dst
|
|
ret void
|
|
}
|
|
|
|
; An address with an index and a displacement (order 2).
|
|
define void @f3(i64 %addr, i64 %index, i8 **%dst) {
|
|
; CHECK-LABEL: f3:
|
|
; CHECK: lb %r0, 100(%r3,%r2)
|
|
; CHECK: br %r14
|
|
%add1 = add i64 %addr, 100
|
|
%add2 = add i64 %add1, %index
|
|
%ptr = inttoptr i64 %add2 to i8 *
|
|
%a = load volatile i8 *%ptr
|
|
store volatile i8 *%ptr, i8 **%dst
|
|
ret void
|
|
}
|
|
|
|
; An address with an index and a subtracted displacement (order 1).
|
|
define void @f4(i64 %addr, i64 %index, i8 **%dst) {
|
|
; CHECK-LABEL: f4:
|
|
; CHECK: lb %r0, -100(%r3,%r2)
|
|
; CHECK: br %r14
|
|
%add1 = add i64 %addr, %index
|
|
%add2 = sub i64 %add1, 100
|
|
%ptr = inttoptr i64 %add2 to i8 *
|
|
%a = load volatile i8 *%ptr
|
|
store volatile i8 *%ptr, i8 **%dst
|
|
ret void
|
|
}
|
|
|
|
; An address with an index and a subtracted displacement (order 2).
|
|
define void @f5(i64 %addr, i64 %index, i8 **%dst) {
|
|
; CHECK-LABEL: f5:
|
|
; CHECK: lb %r0, -100(%r3,%r2)
|
|
; CHECK: br %r14
|
|
%add1 = sub i64 %addr, 100
|
|
%add2 = add i64 %add1, %index
|
|
%ptr = inttoptr i64 %add2 to i8 *
|
|
%a = load volatile i8 *%ptr
|
|
store volatile i8 *%ptr, i8 **%dst
|
|
ret void
|
|
}
|
|
|
|
; An address with an index and a displacement added using OR.
|
|
define void @f6(i64 %addr, i64 %index, i8 **%dst) {
|
|
; CHECK-LABEL: f6:
|
|
; CHECK: nill %r2, 65528
|
|
; CHECK: lb %r0, 6(%r3,%r2)
|
|
; CHECK: br %r14
|
|
%aligned = and i64 %addr, -8
|
|
%or = or i64 %aligned, 6
|
|
%add = add i64 %or, %index
|
|
%ptr = inttoptr i64 %add to i8 *
|
|
%a = load volatile i8 *%ptr
|
|
store volatile i8 *%ptr, i8 **%dst
|
|
ret void
|
|
}
|
|
|
|
; Like f6, but without the masking. This OR doesn't count as a displacement.
|
|
define void @f7(i64 %addr, i64 %index, i8 **%dst) {
|
|
; CHECK-LABEL: f7:
|
|
; CHECK: oill %r2, 6
|
|
; CHECK: lb %r0, 0(%r3,%r2)
|
|
; CHECK: br %r14
|
|
%or = or i64 %addr, 6
|
|
%add = add i64 %or, %index
|
|
%ptr = inttoptr i64 %add to i8 *
|
|
%a = load volatile i8 *%ptr
|
|
store volatile i8 *%ptr, i8 **%dst
|
|
ret void
|
|
}
|
|
|
|
; Like f6, but with the OR applied after the index. We don't know anything
|
|
; about the alignment of %add here.
|
|
define void @f8(i64 %addr, i64 %index, i8 **%dst) {
|
|
; CHECK-LABEL: f8:
|
|
; CHECK: nill %r2, 65528
|
|
; CHECK: agr %r2, %r3
|
|
; CHECK: oill %r2, 6
|
|
; CHECK: lb %r0, 0(%r2)
|
|
; CHECK: br %r14
|
|
%aligned = and i64 %addr, -8
|
|
%add = add i64 %aligned, %index
|
|
%or = or i64 %add, 6
|
|
%ptr = inttoptr i64 %or to i8 *
|
|
%a = load volatile i8 *%ptr
|
|
store volatile i8 *%ptr, i8 **%dst
|
|
ret void
|
|
}
|