Lines Matching full:arg1
922 (define-pmacro (-maddsl arg1 arg2) (saturate SI 32 (add arg1 arg2)))
929 (define-pmacro (-maddsub arg1 arg2) (usaturate QI 8 (add arg1 arg2)))
936 (define-pmacro (-maddsw arg1 arg2) (saturate HI 16 (add arg1 arg2)))
943 (define-pmacro (-mcmpeq mode arg1 arg2)
944 (if mode (eq arg1 arg2) (inv mode 0) (const mode 0)))
946 (define-pmacro (-mcmpeqb arg1 arg2) (-mcmpeq QI arg1 arg2))
953 (define-pmacro (-mcmpeql arg1 arg2) (-mcmpeq SI arg1 arg2))
960 (define-pmacro (-mcmpeqw arg1 arg2) (-mcmpeq HI arg1 arg2))
967 (define-pmacro (-mcmpgt mode arg1 arg2)
968 (if mode (gt arg1 arg2) (inv mode 0) (const mode 0)))
969 (define-pmacro (-mcmpgtu mode arg1 arg2)
970 (if mode (gtu arg1 arg2) (inv mode 0) (const mode 0)))
972 (define-pmacro (-mcmpgtl arg1 arg2) (-mcmpgt SI arg1 arg2))
979 (define-pmacro (-mcmpgtub arg1 arg2) (-mcmpgtu QI arg1 arg2))
986 (define-pmacro (-mcmpgtw arg1 arg2) (-mcmpgt HI arg1 arg2))
1364 (define-pmacro (-msubsl arg1 arg2) (saturate SI 32 (sub arg1 arg2)))
1371 (define-pmacro (-msubsub arg1 arg2) (usaturate QI 8 (sub arg1 arg2)))
1378 (define-pmacro (-msubsw arg1 arg2) (saturate HI 16 (sub arg1 arg2)))