mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-21 21:29:41 +00:00
on every node as it legalizes them. This makes it easier to use hasOneUse() heuristics, since unneeded nodes can be removed from the DAG earlier. Make LegalizeOps visit the DAG in an operands-last order. It previously used operands-first, because LegalizeTypes has to go operands-first, and LegalizeTypes used to be part of LegalizeOps, but they're now split. The operands-last order is more natural for several legalization tasks. For example, it allows lowering code for nodes with floating-point or vector constants to see those constants directly instead of seeing the lowered form (often constant-pool loads). This makes some things somewhat more complicated today, though it ought to allow things to be simpler in the future. It also fixes some bugs exposed by Legalizing using RAUW aggressively. Remove the part of LegalizeOps that attempted to patch up invalid chain operands on libcalls generated by LegalizeTypes, since it doesn't work with the new LegalizeOps traversal order. Instead, define what LegalizeTypes is doing to be correct, and transfer the responsibility of keeping calls from having overlapping calling sequences into the scheduler. Teach the scheduler to model callseq_begin/end pairs as having a physical register definition/use to prevent calls from having overlapping calling sequences. This is also somewhat complicated, though there are ways it might be simplified in the future. This addresses rdar://9816668, rdar://10043614, rdar://8434668, and others. Please direct high-level questions about this patch to management. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143177 91177308-0d34-0410-b5e6-96231b3b80d8
279 lines
8.0 KiB
LLVM
279 lines
8.0 KiB
LLVM
; RUN: llc < %s -march=cellspu > %t1.s
|
|
; RUN: grep and %t1.s | count 2
|
|
; RUN: grep orc %t1.s | count 85
|
|
; RUN: grep ori %t1.s | count 34
|
|
; RUN: grep orhi %t1.s | count 30
|
|
; RUN: grep orbi %t1.s | count 15
|
|
; RUN: FileCheck %s < %t1.s
|
|
|
|
; CellSPU legalization is over-sensitive to Legalize's traversal order.
|
|
; XFAIL: *
|
|
|
|
target datalayout = "E-p:32:32:128-f64:64:128-f32:32:128-i64:32:128-i32:32:128-i16:16:128-i8:8:128-i1:8:128-a0:0:128-v128:128:128-s0:128:128"
|
|
target triple = "spu"
|
|
|
|
; OR instruction generation:
|
|
define <4 x i32> @or_v4i32_1(<4 x i32> %arg1, <4 x i32> %arg2) {
|
|
%A = or <4 x i32> %arg1, %arg2
|
|
ret <4 x i32> %A
|
|
}
|
|
|
|
define <4 x i32> @or_v4i32_2(<4 x i32> %arg1, <4 x i32> %arg2) {
|
|
%A = or <4 x i32> %arg2, %arg1
|
|
ret <4 x i32> %A
|
|
}
|
|
|
|
define <8 x i16> @or_v8i16_1(<8 x i16> %arg1, <8 x i16> %arg2) {
|
|
%A = or <8 x i16> %arg1, %arg2
|
|
ret <8 x i16> %A
|
|
}
|
|
|
|
define <8 x i16> @or_v8i16_2(<8 x i16> %arg1, <8 x i16> %arg2) {
|
|
%A = or <8 x i16> %arg2, %arg1
|
|
ret <8 x i16> %A
|
|
}
|
|
|
|
define <16 x i8> @or_v16i8_1(<16 x i8> %arg1, <16 x i8> %arg2) {
|
|
%A = or <16 x i8> %arg2, %arg1
|
|
ret <16 x i8> %A
|
|
}
|
|
|
|
define <16 x i8> @or_v16i8_2(<16 x i8> %arg1, <16 x i8> %arg2) {
|
|
%A = or <16 x i8> %arg1, %arg2
|
|
ret <16 x i8> %A
|
|
}
|
|
|
|
define i32 @or_i32_1(i32 %arg1, i32 %arg2) {
|
|
%A = or i32 %arg2, %arg1
|
|
ret i32 %A
|
|
}
|
|
|
|
define i32 @or_i32_2(i32 %arg1, i32 %arg2) {
|
|
%A = or i32 %arg1, %arg2
|
|
ret i32 %A
|
|
}
|
|
|
|
define i16 @or_i16_1(i16 %arg1, i16 %arg2) {
|
|
%A = or i16 %arg2, %arg1
|
|
ret i16 %A
|
|
}
|
|
|
|
define i16 @or_i16_2(i16 %arg1, i16 %arg2) {
|
|
%A = or i16 %arg1, %arg2
|
|
ret i16 %A
|
|
}
|
|
|
|
define i8 @or_i8_1(i8 %arg1, i8 %arg2) {
|
|
%A = or i8 %arg2, %arg1
|
|
ret i8 %A
|
|
}
|
|
|
|
define i8 @or_i8_2(i8 %arg1, i8 %arg2) {
|
|
%A = or i8 %arg1, %arg2
|
|
ret i8 %A
|
|
}
|
|
|
|
; ORC instruction generation:
|
|
define <4 x i32> @orc_v4i32_1(<4 x i32> %arg1, <4 x i32> %arg2) {
|
|
%A = xor <4 x i32> %arg2, < i32 -1, i32 -1, i32 -1, i32 -1 >
|
|
%B = or <4 x i32> %arg1, %A
|
|
ret <4 x i32> %B
|
|
}
|
|
|
|
define <4 x i32> @orc_v4i32_2(<4 x i32> %arg1, <4 x i32> %arg2) {
|
|
%A = xor <4 x i32> %arg1, < i32 -1, i32 -1, i32 -1, i32 -1 >
|
|
%B = or <4 x i32> %arg2, %A
|
|
ret <4 x i32> %B
|
|
}
|
|
|
|
define <4 x i32> @orc_v4i32_3(<4 x i32> %arg1, <4 x i32> %arg2) {
|
|
%A = xor <4 x i32> %arg1, < i32 -1, i32 -1, i32 -1, i32 -1 >
|
|
%B = or <4 x i32> %A, %arg2
|
|
ret <4 x i32> %B
|
|
}
|
|
|
|
define <8 x i16> @orc_v8i16_1(<8 x i16> %arg1, <8 x i16> %arg2) {
|
|
%A = xor <8 x i16> %arg2, < i16 -1, i16 -1, i16 -1, i16 -1,
|
|
i16 -1, i16 -1, i16 -1, i16 -1 >
|
|
%B = or <8 x i16> %arg1, %A
|
|
ret <8 x i16> %B
|
|
}
|
|
|
|
define <8 x i16> @orc_v8i16_2(<8 x i16> %arg1, <8 x i16> %arg2) {
|
|
%A = xor <8 x i16> %arg1, < i16 -1, i16 -1, i16 -1, i16 -1,
|
|
i16 -1, i16 -1, i16 -1, i16 -1 >
|
|
%B = or <8 x i16> %arg2, %A
|
|
ret <8 x i16> %B
|
|
}
|
|
|
|
define <16 x i8> @orc_v16i8_1(<16 x i8> %arg1, <16 x i8> %arg2) {
|
|
%A = xor <16 x i8> %arg1, < i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1,
|
|
i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1,
|
|
i8 -1, i8 -1, i8 -1, i8 -1 >
|
|
%B = or <16 x i8> %arg2, %A
|
|
ret <16 x i8> %B
|
|
}
|
|
|
|
define <16 x i8> @orc_v16i8_2(<16 x i8> %arg1, <16 x i8> %arg2) {
|
|
%A = xor <16 x i8> %arg2, < i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1,
|
|
i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1,
|
|
i8 -1, i8 -1, i8 -1, i8 -1 >
|
|
%B = or <16 x i8> %arg1, %A
|
|
ret <16 x i8> %B
|
|
}
|
|
|
|
define <16 x i8> @orc_v16i8_3(<16 x i8> %arg1, <16 x i8> %arg2) {
|
|
%A = xor <16 x i8> %arg2, < i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1,
|
|
i8 -1, i8 -1, i8 -1, i8 -1, i8 -1, i8 -1,
|
|
i8 -1, i8 -1, i8 -1, i8 -1 >
|
|
%B = or <16 x i8> %A, %arg1
|
|
ret <16 x i8> %B
|
|
}
|
|
|
|
define i32 @orc_i32_1(i32 %arg1, i32 %arg2) {
|
|
%A = xor i32 %arg2, -1
|
|
%B = or i32 %A, %arg1
|
|
ret i32 %B
|
|
}
|
|
|
|
define i32 @orc_i32_2(i32 %arg1, i32 %arg2) {
|
|
%A = xor i32 %arg1, -1
|
|
%B = or i32 %A, %arg2
|
|
ret i32 %B
|
|
}
|
|
|
|
define i32 @orc_i32_3(i32 %arg1, i32 %arg2) {
|
|
%A = xor i32 %arg2, -1
|
|
%B = or i32 %arg1, %A
|
|
ret i32 %B
|
|
}
|
|
|
|
define i16 @orc_i16_1(i16 %arg1, i16 %arg2) {
|
|
%A = xor i16 %arg2, -1
|
|
%B = or i16 %A, %arg1
|
|
ret i16 %B
|
|
}
|
|
|
|
define i16 @orc_i16_2(i16 %arg1, i16 %arg2) {
|
|
%A = xor i16 %arg1, -1
|
|
%B = or i16 %A, %arg2
|
|
ret i16 %B
|
|
}
|
|
|
|
define i16 @orc_i16_3(i16 %arg1, i16 %arg2) {
|
|
%A = xor i16 %arg2, -1
|
|
%B = or i16 %arg1, %A
|
|
ret i16 %B
|
|
}
|
|
|
|
define i8 @orc_i8_1(i8 %arg1, i8 %arg2) {
|
|
%A = xor i8 %arg2, -1
|
|
%B = or i8 %A, %arg1
|
|
ret i8 %B
|
|
}
|
|
|
|
define i8 @orc_i8_2(i8 %arg1, i8 %arg2) {
|
|
%A = xor i8 %arg1, -1
|
|
%B = or i8 %A, %arg2
|
|
ret i8 %B
|
|
}
|
|
|
|
define i8 @orc_i8_3(i8 %arg1, i8 %arg2) {
|
|
%A = xor i8 %arg2, -1
|
|
%B = or i8 %arg1, %A
|
|
ret i8 %B
|
|
}
|
|
|
|
; ORI instruction generation (i32 data type):
|
|
define <4 x i32> @ori_v4i32_1(<4 x i32> %in) {
|
|
%tmp2 = or <4 x i32> %in, < i32 511, i32 511, i32 511, i32 511 >
|
|
ret <4 x i32> %tmp2
|
|
}
|
|
|
|
define <4 x i32> @ori_v4i32_2(<4 x i32> %in) {
|
|
%tmp2 = or <4 x i32> %in, < i32 510, i32 510, i32 510, i32 510 >
|
|
ret <4 x i32> %tmp2
|
|
}
|
|
|
|
define <4 x i32> @ori_v4i32_3(<4 x i32> %in) {
|
|
%tmp2 = or <4 x i32> %in, < i32 -1, i32 -1, i32 -1, i32 -1 >
|
|
ret <4 x i32> %tmp2
|
|
}
|
|
|
|
define <4 x i32> @ori_v4i32_4(<4 x i32> %in) {
|
|
%tmp2 = or <4 x i32> %in, < i32 -512, i32 -512, i32 -512, i32 -512 >
|
|
ret <4 x i32> %tmp2
|
|
}
|
|
|
|
define zeroext i32 @ori_u32(i32 zeroext %in) {
|
|
%tmp37 = or i32 %in, 37 ; <i32> [#uses=1]
|
|
ret i32 %tmp37
|
|
}
|
|
|
|
define signext i32 @ori_i32(i32 signext %in) {
|
|
%tmp38 = or i32 %in, 37 ; <i32> [#uses=1]
|
|
ret i32 %tmp38
|
|
}
|
|
|
|
define i32 @ori_i32_600(i32 %in) {
|
|
;600 does not fit into 'ori' immediate field
|
|
;CHECK: ori_i32_600
|
|
;CHECK: il
|
|
;CHECK: ori
|
|
%tmp = or i32 %in, 600
|
|
ret i32 %tmp
|
|
}
|
|
|
|
; ORHI instruction generation (i16 data type):
|
|
define <8 x i16> @orhi_v8i16_1(<8 x i16> %in) {
|
|
%tmp2 = or <8 x i16> %in, < i16 511, i16 511, i16 511, i16 511,
|
|
i16 511, i16 511, i16 511, i16 511 >
|
|
ret <8 x i16> %tmp2
|
|
}
|
|
|
|
define <8 x i16> @orhi_v8i16_2(<8 x i16> %in) {
|
|
%tmp2 = or <8 x i16> %in, < i16 510, i16 510, i16 510, i16 510,
|
|
i16 510, i16 510, i16 510, i16 510 >
|
|
ret <8 x i16> %tmp2
|
|
}
|
|
|
|
define <8 x i16> @orhi_v8i16_3(<8 x i16> %in) {
|
|
%tmp2 = or <8 x i16> %in, < i16 -1, i16 -1, i16 -1, i16 -1, i16 -1,
|
|
i16 -1, i16 -1, i16 -1 >
|
|
ret <8 x i16> %tmp2
|
|
}
|
|
|
|
define <8 x i16> @orhi_v8i16_4(<8 x i16> %in) {
|
|
%tmp2 = or <8 x i16> %in, < i16 -512, i16 -512, i16 -512, i16 -512,
|
|
i16 -512, i16 -512, i16 -512, i16 -512 >
|
|
ret <8 x i16> %tmp2
|
|
}
|
|
|
|
define zeroext i16 @orhi_u16(i16 zeroext %in) {
|
|
%tmp37 = or i16 %in, 37 ; <i16> [#uses=1]
|
|
ret i16 %tmp37
|
|
}
|
|
|
|
define signext i16 @orhi_i16(i16 signext %in) {
|
|
%tmp38 = or i16 %in, 37 ; <i16> [#uses=1]
|
|
ret i16 %tmp38
|
|
}
|
|
|
|
; ORBI instruction generation (i8 data type):
|
|
define <16 x i8> @orbi_v16i8(<16 x i8> %in) {
|
|
%tmp2 = or <16 x i8> %in, < i8 42, i8 42, i8 42, i8 42, i8 42, i8 42,
|
|
i8 42, i8 42, i8 42, i8 42, i8 42, i8 42,
|
|
i8 42, i8 42, i8 42, i8 42 >
|
|
ret <16 x i8> %tmp2
|
|
}
|
|
|
|
define zeroext i8 @orbi_u8(i8 zeroext %in) {
|
|
%tmp37 = or i8 %in, 37 ; <i8> [#uses=1]
|
|
ret i8 %tmp37
|
|
}
|
|
|
|
define signext i8 @orbi_i8(i8 signext %in) {
|
|
%tmp38 = or i8 %in, 37 ; <i8> [#uses=1]
|
|
ret i8 %tmp38
|
|
}
|