]> git.sesse.net Git - vlc/blob - plugins/memcpy/memcpy3dn.c
* Borrowed MPlayer's fast memcpy() routines. Best is autodetected, choose
[vlc] / plugins / memcpy / memcpy3dn.c
1 /*****************************************************************************
2  * memcpy3dn.c : 3D Now! memcpy module
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: memcpy3dn.c,v 1.1 2001/12/03 16:18:37 sam Exp $
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #define MODULE_NAME memcpy3dn
25 #include "modules_inner.h"
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include "defs.h"
31
32 #include <stdlib.h>
33 #include <string.h>
34
35 #include "config.h"
36 #include "common.h"
37 #include "intf_msg.h"
38 #include "threads.h"
39 #include "mtime.h"
40 #include "tests.h"
41
42 #include "modules.h"
43 #include "modules_export.h"
44
45 /*****************************************************************************
46  * Local and extern prototypes.
47  *****************************************************************************/
48 static void memcpy_getfunctions( function_list_t * p_function_list );
49 static int  memcpy_Probe       ( probedata_t *p_data );
50 void *      _M( fast_memcpy )  ( void * to, const void * from, size_t len );
51
52 #undef HAVE_MMX
53 #undef HAVE_MMX2
54 #undef HAVE_SSE
55 #undef HAVE_SSE2
56 #define HAVE_3DNOW
57 #include "fastmemcpy.h"
58
59 /*****************************************************************************
60  * Build configuration tree.
61  *****************************************************************************/
62 MODULE_CONFIG_START
63 ADD_WINDOW( "Configuration for 3D Now! memcpy module" )
64     ADD_COMMENT( "Ha, ha -- nothing to configure yet" )
65 MODULE_CONFIG_STOP
66
67 MODULE_INIT_START
68     p_module->i_capabilities = MODULE_CAPABILITY_NULL
69                                 | MODULE_CAPABILITY_MEMCPY;
70     p_module->psz_longname = "3D Now! memcpy module";
71 MODULE_INIT_STOP
72
73 MODULE_ACTIVATE_START
74     memcpy_getfunctions( &p_module->p_functions->memcpy );
75 MODULE_ACTIVATE_STOP
76
77 MODULE_DEACTIVATE_START
78 MODULE_DEACTIVATE_STOP
79
80 /* Following functions are local */
81
82 /*****************************************************************************
83  * Functions exported as capabilities. They are declared as static so that
84  * we don't pollute the namespace too much.
85  *****************************************************************************/
86 static void memcpy_getfunctions( function_list_t * p_function_list )
87 {
88     p_function_list->pf_probe = memcpy_Probe;
89 #define F p_function_list->functions.memcpy
90     F.pf_fast_memcpy = _M( fast_memcpy );
91 #undef F
92 }
93
94 /*****************************************************************************
95  * memcpy_Probe: returns a preference score
96  *****************************************************************************/
97 static int memcpy_Probe( probedata_t *p_data )
98 {
99     /* Test for 3D Now! support in the CPU */
100     if( !TestCPU( CPU_CAPABILITY_3DNOW ) )
101     {
102         return( 0 );
103     }
104
105     if( TestMethod( MEMCPY_METHOD_VAR, "memcpy3dn" )
106          || TestMethod( MEMCPY_METHOD_VAR, "3dn" ) )
107     {
108         return( 999 );
109     }
110
111     /* This plugin always works */
112     return( 100 );
113 }
114