mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
ca795b61be
Summary: This patch (correctly) breaks some MSA tests by exposing the cases when SelectionDAG::getConstant() produces illegal types. These have been temporarily marked XFAIL and the XFAIL flag will be removed when SelectionDAG::getConstant() is fixed. There are three categories of failure: * Immediate instructions are not selected in one endian mode. * Immediates used in ldi.[bhwd] must be different according to endianness. (this only affects cases where the 'wrong' ldi is used to load the correct bitpattern. E.g. (bitcast:v2i64 (build_vector:v4i32 ...))) * Non-immediate instructions that rely on immediates affected by the previous two categories as part of their match pattern. For example, the bset match pattern is the vector equivalent of 'ws | (1 << wt)'. One test needed correcting to expect different output depending on whether big or little endian was in use. This test was test/CodeGen/Mips/msa/basic_operations.ll and experiences the second category of failure shown above. The little endian version of this test is named basic_operations_little.ll and will be merged back into basic_operations.ll in a follow up commit now that FileCheck supports multiple check prefixes. Reviewers: bkramer, jacksprat, dsanders Reviewed By: dsanders CC: llvm-commits Differential Revision: http://llvm-reviews.chandlerc.com/D1972 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194806 91177308-0d34-0410-b5e6-96231b3b80d8
48 lines
1.3 KiB
LLVM
48 lines
1.3 KiB
LLVM
; Test the MSA intrinsics that are encoded with the VECS10 instruction format.
|
|
|
|
; RUN: llc -march=mips -mattr=+msa,+fp64 < %s | FileCheck %s
|
|
; RUN: llc -march=mipsel -mattr=+msa,+fp64 < %s | FileCheck %s
|
|
|
|
@llvm_mips_bnz_v_ARG1 = global <16 x i8> <i8 0, i8 1, i8 2, i8 3, i8 4, i8 5, i8 6, i8 7, i8 8, i8 9, i8 10, i8 11, i8 12, i8 13, i8 14, i8 15>, align 16
|
|
|
|
define i32 @llvm_mips_bnz_v_test() nounwind {
|
|
entry:
|
|
%0 = load <16 x i8>* @llvm_mips_bnz_v_ARG1
|
|
%1 = tail call i32 @llvm.mips.bnz.v(<16 x i8> %0)
|
|
%2 = icmp eq i32 %1, 0
|
|
br i1 %2, label %true, label %false
|
|
true:
|
|
ret i32 2
|
|
false:
|
|
ret i32 3
|
|
}
|
|
|
|
declare i32 @llvm.mips.bnz.v(<16 x i8>) nounwind
|
|
|
|
; CHECK: llvm_mips_bnz_v_test:
|
|
; CHECK-DAG: ld.b [[R0:\$w[0-9]+]]
|
|
; CHECK-DAG: bnz.v [[R0]]
|
|
; CHECK: .size llvm_mips_bnz_v_test
|
|
|
|
@llvm_mips_bz_v_ARG1 = global <16 x i8> <i8 0, i8 1, i8 2, i8 3, i8 4, i8 5, i8 6, i8 7, i8 8, i8 9, i8 10, i8 11, i8 12, i8 13, i8 14, i8 15>, align 16
|
|
|
|
define i32 @llvm_mips_bz_v_test() nounwind {
|
|
entry:
|
|
%0 = load <16 x i8>* @llvm_mips_bz_v_ARG1
|
|
%1 = tail call i32 @llvm.mips.bz.v(<16 x i8> %0)
|
|
%2 = icmp eq i32 %1, 0
|
|
br i1 %2, label %true, label %false
|
|
true:
|
|
ret i32 2
|
|
false:
|
|
ret i32 3
|
|
}
|
|
|
|
declare i32 @llvm.mips.bz.v(<16 x i8>) nounwind
|
|
|
|
; CHECK: llvm_mips_bz_v_test:
|
|
; CHECK-DAG: ld.b [[R0:\$w[0-9]+]]
|
|
; CHECK-DAG: bz.v [[R0]]
|
|
; CHECK: .size llvm_mips_bz_v_test
|
|
;
|