/[svn]/linuxsampler/trunk/src/common/Features.cpp
ViewVC logotype

Annotation of /linuxsampler/trunk/src/common/Features.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1832 - (hide annotations) (download)
Thu Feb 5 17:48:54 2009 UTC (15 years, 2 months ago) by iliev
File size: 3416 byte(s)
* CoreAudio: Improved hardware detection
* CoreAudio: Added new driver parameter DEVICE
* CoreAudio: Restart the audio queue when the device
  is changed, for example when headphones are plugged

1 schoenebeck 320 /***************************************************************************
2     * *
3     * LinuxSampler - modular, streaming capable sampler *
4     * *
5     * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 schoenebeck 1723 * Copyright (C) 2005 - 2008 Christian Schoenebeck *
7 schoenebeck 320 * *
8     * This program is free software; you can redistribute it and/or modify *
9     * it under the terms of the GNU General Public License as published by *
10     * the Free Software Foundation; either version 2 of the License, or *
11     * (at your option) any later version. *
12     * *
13     * This program is distributed in the hope that it will be useful, *
14     * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16     * GNU General Public License for more details. *
17     * *
18     * You should have received a copy of the GNU General Public License *
19     * along with this program; if not, write to the Free Software *
20     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21     * MA 02111-1307 USA *
22     ***************************************************************************/
23    
24     #include "Features.h"
25    
26 schoenebeck 617 #if CONFIG_ASM && ARCH_X86
27 schoenebeck 320 bool Features::bMMX(false);
28     bool Features::bSSE(false);
29 persson 425 bool Features::bSSE2(false);
30 schoenebeck 320
31     void Features::detect() {
32 persson 1825 #ifdef __x86_64__
33     int64_t edx;
34     __asm__ __volatile__ (
35     "mov %%rbx,%%rdi\n\t" /*save PIC register*/
36     "movl $1,%%eax\n\t"
37     "cpuid\n\t"
38     "mov %%rdi,%%rbx\n\t" /*restore PIC register*/
39     : "=d" (edx)
40     : : "%rax", "%rcx", "%rdi"
41     );
42     #else
43 schoenebeck 1314 int edx;
44 schoenebeck 579 __asm__ __volatile__ (
45 schoenebeck 1314 "movl %%ebx,%%edi\n\t" /*save PIC register*/
46     "movl $1,%%eax\n\t"
47 schoenebeck 579 "cpuid\n\t"
48 schoenebeck 1314 "movl %%edi,%%ebx\n\t" /*restore PIC register*/
49     : "=d" (edx)
50     : : "%eax", "%ecx", "%edi"
51 schoenebeck 579 );
52 persson 1825 #endif
53 schoenebeck 320 bMMX = (edx & 0x00800000);
54     bSSE = (edx & 0x02000000);
55 persson 425 bSSE2 = (edx & 0x04000000);
56 schoenebeck 320 }
57 schoenebeck 361 #else
58     void Features::detect() {}
59 schoenebeck 617 #endif // CONFIG_ASM && ARCH_X86
60 schoenebeck 579
61 schoenebeck 1723 bool Features::enableDenormalsAreZeroMode() {
62 schoenebeck 617 #if CONFIG_ASM && ARCH_X86
63 schoenebeck 579 if (supportsSSE2()) {
64     int x;
65     __asm__ __volatile__ (
66     "stmxcsr %0\n\t"
67     "movl %0, %%eax\n\t"
68     "orl $0x40, %%eax\n\t"
69     "movl %%eax, %0\n\t"
70     "ldmxcsr %0\n\t"
71     :: "m" (x)
72     : "%eax"
73     );
74 schoenebeck 1723 return true;
75 schoenebeck 579 }
76 schoenebeck 1723 return false;
77 iliev 1832 #else
78    
79     return false;
80 schoenebeck 617 #endif // CONFIG_ASM && ARCH_X86
81 schoenebeck 579 }
82    
83     String Features::featuresAsString() {
84     String sFeatures = "none";
85 schoenebeck 617 #if CONFIG_ASM && ARCH_X86
86 schoenebeck 579 if (supportsMMX()) sFeatures = "MMX";
87     if (supportsSSE()) sFeatures += " SSE";
88     if (supportsSSE2()) sFeatures += " SSE2";
89 schoenebeck 617 #else
90     sFeatures = "disabled at compile time";
91     #endif // CONFIG_ASM && ARCH_X86
92 schoenebeck 579 return sFeatures;
93     }

  ViewVC Help
Powered by ViewVC