Change HAVE_PPC64 to ARCH_PPC64.
As a side-effect this also gives it the correct value on e.g. PPC970FX-based PPC64 systems, thus fixing "make test" (mp2/mp3 decoding). Originally committed as revision 18953 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
71b0654cc6
commit
34d11b875f
6
configure
vendored
6
configure
vendored
@ -833,6 +833,7 @@ ARCH_LIST='
|
|||||||
mips64
|
mips64
|
||||||
parisc
|
parisc
|
||||||
ppc
|
ppc
|
||||||
|
ppc64
|
||||||
s390
|
s390
|
||||||
sh4
|
sh4
|
||||||
sparc
|
sparc
|
||||||
@ -906,7 +907,6 @@ HAVE_LIST="
|
|||||||
mkstemp
|
mkstemp
|
||||||
pld
|
pld
|
||||||
posix_memalign
|
posix_memalign
|
||||||
ppc64
|
|
||||||
round
|
round
|
||||||
roundf
|
roundf
|
||||||
sdl
|
sdl
|
||||||
@ -1514,6 +1514,7 @@ case "$arch" in
|
|||||||
;;
|
;;
|
||||||
ppc64)
|
ppc64)
|
||||||
arch="ppc"
|
arch="ppc"
|
||||||
|
subarch="ppc64"
|
||||||
enable fast_64bit
|
enable fast_64bit
|
||||||
enable fast_unaligned
|
enable fast_unaligned
|
||||||
;;
|
;;
|
||||||
@ -1807,12 +1808,11 @@ if test $cpu != "generic"; then
|
|||||||
G5|g5|970|ppc970|PowerPC970|power4*|Power4*)
|
G5|g5|970|ppc970|PowerPC970|power4*|Power4*)
|
||||||
add_cflags -mcpu=970 -mpowerpc-gfxopt -mpowerpc64
|
add_cflags -mcpu=970 -mpowerpc-gfxopt -mpowerpc64
|
||||||
warn_altivec disabled PPC970
|
warn_altivec disabled PPC970
|
||||||
enable ppc64
|
|
||||||
;;
|
;;
|
||||||
Cell|CELL|cell)
|
Cell|CELL|cell)
|
||||||
add_cflags -mcpu=cell
|
add_cflags -mcpu=cell
|
||||||
warn_altivec disabled Cell
|
warn_altivec disabled Cell
|
||||||
enable ppc64 ldbrx
|
enable ldbrx
|
||||||
;;
|
;;
|
||||||
# targets that do NOT support conditional mov (cmov)
|
# targets that do NOT support conditional mov (cmov)
|
||||||
i[345]86|pentium|pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
|
i[345]86|pentium|pentium-mmx|k6|k6-[23]|winchip-c6|winchip2|c3)
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
void powerpc_display_perf_report(void);
|
void powerpc_display_perf_report(void);
|
||||||
/* the 604* have 2, the G3* have 4, the G4s have 6,
|
/* the 604* have 2, the G3* have 4, the G4s have 6,
|
||||||
and the G5 are completely different (they MUST use
|
and the G5 are completely different (they MUST use
|
||||||
HAVE_PPC64, and let's hope all future 64 bis PPC
|
ARCH_PPC64, and let's hope all future 64 bis PPC
|
||||||
will use the same PMCs... */
|
will use the same PMCs... */
|
||||||
#define POWERPC_NUM_PMC_ENABLED 6
|
#define POWERPC_NUM_PMC_ENABLED 6
|
||||||
/* if you add to the enum below, also add to the perfname array
|
/* if you add to the enum below, also add to the perfname array
|
||||||
@ -70,7 +70,7 @@ enum powerpc_data_index {
|
|||||||
};
|
};
|
||||||
extern unsigned long long perfdata[POWERPC_NUM_PMC_ENABLED][powerpc_perf_total][powerpc_data_total];
|
extern unsigned long long perfdata[POWERPC_NUM_PMC_ENABLED][powerpc_perf_total][powerpc_data_total];
|
||||||
|
|
||||||
#if !HAVE_PPC64
|
#if !ARCH_PPC64
|
||||||
#define POWERP_PMC_DATATYPE unsigned long
|
#define POWERP_PMC_DATATYPE unsigned long
|
||||||
#define POWERPC_GET_PMC1(a) __asm__ volatile("mfspr %0, 937" : "=r" (a))
|
#define POWERPC_GET_PMC1(a) __asm__ volatile("mfspr %0, 937" : "=r" (a))
|
||||||
#define POWERPC_GET_PMC2(a) __asm__ volatile("mfspr %0, 938" : "=r" (a))
|
#define POWERPC_GET_PMC2(a) __asm__ volatile("mfspr %0, 938" : "=r" (a))
|
||||||
@ -88,7 +88,7 @@ extern unsigned long long perfdata[POWERPC_NUM_PMC_ENABLED][powerpc_perf_total][
|
|||||||
#define POWERPC_GET_PMC5(a) do {} while (0)
|
#define POWERPC_GET_PMC5(a) do {} while (0)
|
||||||
#define POWERPC_GET_PMC6(a) do {} while (0)
|
#define POWERPC_GET_PMC6(a) do {} while (0)
|
||||||
#endif
|
#endif
|
||||||
#else /* HAVE_PPC64 */
|
#else /* ARCH_PPC64 */
|
||||||
#define POWERP_PMC_DATATYPE unsigned long long
|
#define POWERP_PMC_DATATYPE unsigned long long
|
||||||
#define POWERPC_GET_PMC1(a) __asm__ volatile("mfspr %0, 771" : "=r" (a))
|
#define POWERPC_GET_PMC1(a) __asm__ volatile("mfspr %0, 771" : "=r" (a))
|
||||||
#define POWERPC_GET_PMC2(a) __asm__ volatile("mfspr %0, 772" : "=r" (a))
|
#define POWERPC_GET_PMC2(a) __asm__ volatile("mfspr %0, 772" : "=r" (a))
|
||||||
@ -106,7 +106,7 @@ extern unsigned long long perfdata[POWERPC_NUM_PMC_ENABLED][powerpc_perf_total][
|
|||||||
#define POWERPC_GET_PMC5(a) do {} while (0)
|
#define POWERPC_GET_PMC5(a) do {} while (0)
|
||||||
#define POWERPC_GET_PMC6(a) do {} while (0)
|
#define POWERPC_GET_PMC6(a) do {} while (0)
|
||||||
#endif
|
#endif
|
||||||
#endif /* HAVE_PPC64 */
|
#endif /* ARCH_PPC64 */
|
||||||
#define POWERPC_PERF_DECLARE(a, cond) \
|
#define POWERPC_PERF_DECLARE(a, cond) \
|
||||||
POWERP_PMC_DATATYPE \
|
POWERP_PMC_DATATYPE \
|
||||||
pmc_start[POWERPC_NUM_PMC_ENABLED], \
|
pmc_start[POWERPC_NUM_PMC_ENABLED], \
|
||||||
|
@ -44,7 +44,7 @@ static inline av_const int MULH(int a, int b){
|
|||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !HAVE_PPC64
|
#if !ARCH_PPC64
|
||||||
static inline av_const int64_t MAC64(int64_t d, int a, int b)
|
static inline av_const int64_t MAC64(int64_t d, int a, int b)
|
||||||
{
|
{
|
||||||
union { uint64_t x; unsigned hl[2]; } x = { d };
|
union { uint64_t x; unsigned hl[2]; } x = { d };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user