/[svn]/linuxsampler/trunk/src/engines/gig/Synthesizer.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/gig/Synthesizer.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 325 by senkov, Tue Dec 21 04:54:37 2004 UTC revision 361 by schoenebeck, Wed Feb 9 01:22:18 2005 UTC
# Line 23  Line 23 
23  #ifndef __LS_GIG_SYNTHESIZER_H__  #ifndef __LS_GIG_SYNTHESIZER_H__
24  #define __LS_GIG_SYNTHESIZER_H__  #define __LS_GIG_SYNTHESIZER_H__
25    
26    #include "../../common/global.h"
27  #include "../../common/RTMath.h"  #include "../../common/RTMath.h"
28  #include "../common/Resampler.h"  #include "../common/Resampler.h"
29  #include "../common/BiquadFilter.h"  #include "../common/BiquadFilter.h"
30  #include "Filter.h"  #include "Filter.h"
31  #include "Voice.h"  #include "Voice.h"
32    
33  #define SYNTHESIS_MODE_SET_CONSTPITCH(iMode,bVal)       if (bVal) iMode |= 0x01; else iMode &= 0xfe   /* (un)set mode bit 0 */  #define SYNTHESIS_MODE_SET_CONSTPITCH(iMode,bVal)       if (bVal) iMode |= 0x01; else iMode &= ~0x01   /* (un)set mode bit 0 */
34  #define SYNTHESIS_MODE_SET_LOOP(iMode,bVal)             if (bVal) iMode |= 0x02; else iMode &= 0xfd   /* (un)set mode bit 1 */  #define SYNTHESIS_MODE_SET_LOOP(iMode,bVal)             if (bVal) iMode |= 0x02; else iMode &= ~0x02   /* (un)set mode bit 1 */
35  #define SYNTHESIS_MODE_SET_INTERPOLATE(iMode,bVal)      if (bVal) iMode |= 0x04; else iMode &= 0xfb   /* (un)set mode bit 2 */  #define SYNTHESIS_MODE_SET_INTERPOLATE(iMode,bVal)      if (bVal) iMode |= 0x04; else iMode &= ~0x04   /* (un)set mode bit 2 */
36  #define SYNTHESIS_MODE_SET_FILTER(iMode,bVal)           if (bVal) iMode |= 0x08; else iMode &= 0xf7   /* (un)set mode bit 3 */  #define SYNTHESIS_MODE_SET_FILTER(iMode,bVal)           if (bVal) iMode |= 0x08; else iMode &= ~0x08   /* (un)set mode bit 3 */
37  #define SYNTHESIS_MODE_SET_CHANNELS(iMode,bVal)         if (bVal) iMode |= 0x10; else iMode &= 0xef   /* (un)set mode bit 4 */  #define SYNTHESIS_MODE_SET_CHANNELS(iMode,bVal)         if (bVal) iMode |= 0x10; else iMode &= ~0x10   /* (un)set mode bit 4 */
38  #define SYNTHESIS_MODE_SET_IMPLEMENTATION(iMode,bVal)   if (bVal) iMode |= 0x20; else iMode &= 0xdf   /* (un)set mode bit 5 */  #define SYNTHESIS_MODE_SET_IMPLEMENTATION(iMode,bVal)   if (bVal) iMode |= 0x20; else iMode &= ~0x20   /* (un)set mode bit 5 */
39  #define SYNTHESIS_MODE_SET_PROFILING(iMode,bVal)        if (bVal) iMode |= 0x40; else iMode &= ~0x40   /* (un)set mode bit 6 */  #define SYNTHESIS_MODE_SET_PROFILING(iMode,bVal)        if (bVal) iMode |= 0x40; else iMode &= ~0x40   /* (un)set mode bit 6 */
40    
41  #define SYNTHESIS_MODE_GET_CONSTPITCH(iMode)            iMode & 0x01  #define SYNTHESIS_MODE_GET_CONSTPITCH(iMode)            iMode & 0x01
# Line 78  namespace LinuxSampler { namespace gig { Line 79  namespace LinuxSampler { namespace gig {
79                                         (void *)&fPos,                                         (void *)&fPos,
80                                         Voice.PitchBase,                                         Voice.PitchBase,
81                                         Voice.PitchBend);                                         Voice.PitchBend);
82                        #if  ARCH_X86
83                      if (INTERPOLATE) EMMS;                      if (INTERPOLATE) EMMS;
84                        #endif
85                      Voice.Pos = (double) fPos;                      Voice.Pos = (double) fPos;
86                  } else {                  } else {
87                      SynthesizeFragment(Voice, Samples, pSrc, i, Voice.pSample->LoopPlayCount,                      SynthesizeFragment(Voice, Samples, pSrc, i, Voice.pSample->LoopPlayCount,
# Line 152  namespace LinuxSampler { namespace gig { Line 155  namespace LinuxSampler { namespace gig {
155                      case CPP: {                      case CPP: {
156                          return uint((LoopEnd - *((double *)Pos)) / Pitch);                          return uint((LoopEnd - *((double *)Pos)) / Pitch);
157                      }                      }
158                        #if ARCH_X86
159                      case ASM_X86_MMX_SSE: {                      case ASM_X86_MMX_SSE: {
160                          int result;                          int result;
161                          __asm__ __volatile__ (                          __asm__ __volatile__ (
# Line 166  namespace LinuxSampler { namespace gig { Line 170  namespace LinuxSampler { namespace gig {
170                          );                          );
171                          return result;                          return result;
172                      }                      }
173                        #endif // ARCH_X86
174                  }                  }
175              }              }
176    
# Line 178  namespace LinuxSampler { namespace gig { Line 183  namespace LinuxSampler { namespace gig {
183                          *Pos = fmod(*Pos - LoopEnd, LoopSize) + LoopStart;                          *Pos = fmod(*Pos - LoopEnd, LoopSize) + LoopStart;
184                          return 1;                          return 1;
185                      }                      }
186                        #if ARCH_X86
187                      case ASM_X86_MMX_SSE: {                      case ASM_X86_MMX_SSE: {
188                          int result;                          int result = 0;
189                          __asm__ __volatile__ (                          __asm__ __volatile__ (
190                              "movss  (%2), %%xmm0          # load LoopEnd\n\t"                              "movss  (%2), %%xmm0          # load LoopEnd\n\t"
191                              "movss  (%1), %%xmm1          # load Pos\n\t"                              "movss  (%1), %%xmm1          # load Pos\n\t"
192                              "comiss %%xmm0, %%xmm1      # LoopEnd <> Pos\n\t"                              "comiss %%xmm0, %%xmm1      # LoopEnd <> Pos\n\t"
                             "movl    $0,%%eax            # result = 0\n\t"  
193                              "jb     1f                  # jump if no work needs to be done\n\t"                              "jb     1f                  # jump if no work needs to be done\n\t"
194                              "movss    (%3), %%xmm2        # load LoopSize\n\t"                              "movss    (%3), %%xmm2        # load LoopSize\n\t"
195                              "subss    %%xmm0, %%xmm1    # Pos - LoopEnd\n\t"                              "subss    %%xmm0, %%xmm1    # Pos - LoopEnd\n\t"
# Line 199  namespace LinuxSampler { namespace gig { Line 204  namespace LinuxSampler { namespace gig {
204                              //done with fmodf                              //done with fmodf
205                              "addss    %%xmm0, %%xmm3      # add LoopStart\n\t"                              "addss    %%xmm0, %%xmm3      # add LoopStart\n\t"
206                              "movss    %%xmm3, (%1)        # update Pos\n\t"                              "movss    %%xmm3, (%1)        # update Pos\n\t"
207                              "movl    $1,%%eax            # result = 1\n\t"                              "movl    $1, (%0)             # result = 1\n\t"
208                              ".balign 16 \n\t"                              ".balign 16 \n\t"
209                              "1:\n\t"                              "1:\n\t"
210                              : "=a" (result)     /* %0 */                              :: "r" (&result),   /* %0 */
211                              : "r"  (vPos),      /* %1 */                                "r"  (vPos),      /* %1 */
212                                "r"  (&LoopEnd),  /* %2 */                                "r"  (&LoopEnd),  /* %2 */
213                                "r"  (&LoopSize), /* %3 */                                "r"  (&LoopSize), /* %3 */
214                                "r"  (&LoopStart) /* %4 */                                "r"  (&LoopStart) /* %4 */
215                          );                          );
216                          return result;                          return result;
217                      }                      }
218                        #endif // ARCH_X86
219                  }                  }
220              }              }
221    
# Line 240  namespace LinuxSampler { namespace gig { Line 246  namespace LinuxSampler { namespace gig {
246                          }                          }
247                          break;                          break;
248                      }                      }
249                        #if ARCH_X86
250                      // Assembly optimization using the MMX & SSE(1) instruction set (thus only for x86)                      // Assembly optimization using the MMX & SSE(1) instruction set (thus only for x86)
251                      case ASM_X86_MMX_SSE: {                      case ASM_X86_MMX_SSE: {
252                          const int ii = i & 0xfffffffc;                          const int ii = i & 0xfffffffc;
# Line 325  namespace LinuxSampler { namespace gig { Line 332  namespace LinuxSampler { namespace gig {
332                                "r" (&pOutR[ii])  /* %1 - must be 16 byte aligned ! */                                "r" (&pOutR[ii])  /* %1 - must be 16 byte aligned ! */
333                          );                          );
334                      }                      }
335                        #endif // ARCH_X86
336                  }                  }
337              }              }
338      };      };

Legend:
Removed from v.325  
changed lines
  Added in v.361

  ViewVC Help
Powered by ViewVC