Lines Matching refs:arg2
917 (define-pmacro (-maddsl arg1 arg2) (saturate SI 32 (add arg1 arg2)))
924 (define-pmacro (-maddsub arg1 arg2) (usaturate QI 8 (add arg1 arg2)))
931 (define-pmacro (-maddsw arg1 arg2) (saturate HI 16 (add arg1 arg2)))
938 (define-pmacro (-mcmpeq mode arg1 arg2)
939 (if mode (eq arg1 arg2) (inv mode 0) (const mode 0)))
941 (define-pmacro (-mcmpeqb arg1 arg2) (-mcmpeq QI arg1 arg2))
948 (define-pmacro (-mcmpeql arg1 arg2) (-mcmpeq SI arg1 arg2))
955 (define-pmacro (-mcmpeqw arg1 arg2) (-mcmpeq HI arg1 arg2))
962 (define-pmacro (-mcmpgt mode arg1 arg2)
963 (if mode (gt arg1 arg2) (inv mode 0) (const mode 0)))
964 (define-pmacro (-mcmpgtu mode arg1 arg2)
965 (if mode (gtu arg1 arg2) (inv mode 0) (const mode 0)))
967 (define-pmacro (-mcmpgtl arg1 arg2) (-mcmpgt SI arg1 arg2))
974 (define-pmacro (-mcmpgtub arg1 arg2) (-mcmpgtu QI arg1 arg2))
981 (define-pmacro (-mcmpgtw arg1 arg2) (-mcmpgt HI arg1 arg2))
1359 (define-pmacro (-msubsl arg1 arg2) (saturate SI 32 (sub arg1 arg2)))
1366 (define-pmacro (-msubsub arg1 arg2) (usaturate QI 8 (sub arg1 arg2)))
1373 (define-pmacro (-msubsw arg1 arg2) (saturate HI 16 (sub arg1 arg2)))