change {rsqrt,rcp}_double to {rsqrt,rcp}d_decl

This commit is contained in:
evghenii
2014-02-05 13:05:04 +01:00
parent 732a315a4b
commit 09e8381ec7
14 changed files with 28 additions and 34 deletions

View File

@@ -691,6 +691,6 @@ define <16 x double> @__max_varying_double(<16 x double>, <16 x double>) nounwin
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reciprocals in double precision, if supported
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -562,6 +562,5 @@ gen_scatter(double)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reciprocals in double precision, if supported
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -511,5 +511,5 @@ define <4 x double> @__max_varying_double(<4 x double>, <4 x double>) nounwind r
ret <4 x double> %call
}
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -995,6 +995,5 @@ define_avgs()
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reciprocals in double precision, if supported
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -519,5 +519,5 @@ define <8 x i16> @__avg_down_int16(<8 x i16>, <8 x i16>) nounwind readnone {
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reciprocals in double precision, if supported
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -489,5 +489,5 @@ define <4 x i16> @__avg_down_int16(<4 x i16>, <4 x i16>) nounwind readnone {
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reciprocals in double precision, if supported
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -585,5 +585,5 @@ define <16 x i16> @__avg_down_int16(<16 x i16>, <16 x i16>) nounwind readnone {
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reciprocals in double precision, if supported
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -656,5 +656,5 @@ define <8 x double> @__max_varying_double(<8 x double>, <8 x double>) nounwind r
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reciprocals in double precision, if supported
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -591,5 +591,5 @@ gen_scatter(double)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reciprocals in double precision, if supported
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -492,6 +492,5 @@ define_down_avgs()
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reciprocals in double precision, if supported
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -494,6 +494,5 @@ define_down_avgs()
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reciprocals in double precision, if supported
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -595,6 +595,5 @@ define_avgs()
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reciprocals in double precision, if supported
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -518,6 +518,5 @@ define_avgs()
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; reciprocals in double precision, if supported
rsqrt_double()
rcp_double()
rsqrtd_decl()
rcpd_decl()

View File

@@ -4532,12 +4532,12 @@ define_up_avgs()
define_down_avgs()
')
define(`rsqrt_double', `
define(`rsqrtd_decl', `
declare double @__rsqrt_uniform_double(double)
declare <WIDTH x double> @__rsqrt_varying_double(<WIDTH x double>)
')
define(`rcp_double', `
define(`rcpd_decl', `
declare double @__rcp_uniform_double(double)
declare <WIDTH x double> @__rcp_varying_double(<WIDTH x double>)
')