mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 22:20:37 +00:00
Make Test More Thorough
Check that all ADD patters are processed. Add a SUB test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141314 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3ef12348d7
commit
2f0722c105
@ -83,9 +83,12 @@ def Decls : decls;
|
||||
// Define intrinsics
|
||||
def int_x86_sse2_add_ps : Intrinsic<"addps">;
|
||||
def int_x86_sse2_add_pd : Intrinsic<"addpd">;
|
||||
def int_x86_sse2_sub_ps : Intrinsic<"subps">;
|
||||
def int_x86_sse2_sub_pd : Intrinsic<"subpd">;
|
||||
def INTRINSIC : Intrinsic<"Dummy">;
|
||||
def bitconvert;
|
||||
def add;
|
||||
def sub;
|
||||
|
||||
class MakePatImpl<list<dag> patterns> : Pat<patterns[0], patterns[1]>;
|
||||
class MakePat<list<dag> patterns,
|
||||
@ -126,3 +129,12 @@ defm ADD : arith<0x58, "add", "int_x86_sse2_addSUFFIX",
|
||||
|
||||
// CHECK: [(set VR128:$dst, (int_x86_sse2_add_pd VR128:$src1, VR128:$src2))]
|
||||
// CHECK: [(set VR128:$dst, (int_x86_sse2_add_ps VR128:$src1, VR128:$src2))]
|
||||
// CHECK: (set VR128:$dst, (add (int_x86_sse2_add_ps VR128:$src1, VR128:$src2)))
|
||||
// CHECK: (set VR128:$dst, (add (int_x86_sse2_add_pd VR128:$src1, VR128:$src2)))
|
||||
|
||||
defm SUB : arith<0x59, "sub", "int_x86_sse2_subSUFFIX",
|
||||
// rr Patterns
|
||||
[[(set REGCLASS:$dst, (INTRINSIC REGCLASS:$src1, REGCLASS:$src2))]]>;
|
||||
|
||||
// CHECK: [(set VR128:$dst, (int_x86_sse2_sub_pd VR128:$src1, VR128:$src2))]
|
||||
// CHECK: [(set VR128:$dst, (int_x86_sse2_sub_ps VR128:$src1, VR128:$src2))]
|
||||
|
Loading…
Reference in New Issue
Block a user