/[svn]/linuxsampler/trunk/src/scriptvm/ScriptVM.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/scriptvm/ScriptVM.cpp

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

revision 3556 by schoenebeck, Thu Aug 1 10:22:56 2019 UTC revision 3557 by schoenebeck, Sun Aug 18 00:06:04 2019 UTC
# Line 67  namespace LinuxSampler { Line 67  namespace LinuxSampler {
67      }      }
68      #endif      #endif
69    
70      static int _requiredMaxStackSizeFor(Statement* statement, int depth = 0) {      static vmint _requiredMaxStackSizeFor(Statement* statement, vmint depth = 0) {
71          if (!statement) return 1;          if (!statement) return 1;
72    
73          switch (statement->statementType()) {          switch (statement->statementType()) {
# Line 84  namespace LinuxSampler { Line 84  namespace LinuxSampler {
84                  printf("-> STMT_LIST\n");                  printf("-> STMT_LIST\n");
85                  #endif                  #endif
86                  Statements* stmts = (Statements*) statement;                  Statements* stmts = (Statements*) statement;
87                  int max = 0;                  vmint max = 0;
88                  for (int i = 0; stmts->statement(i); ++i) {                  for (int i = 0; stmts->statement(i); ++i) {
89                      int size = _requiredMaxStackSizeFor( stmts->statement(i), depth+1 );                      vmint size = _requiredMaxStackSizeFor( stmts->statement(i), depth+1 );
90                      if (max < size) max = size;                      if (max < size) max = size;
91                  }                  }
92                  return max + 1;                  return max + 1;
# Line 98  namespace LinuxSampler { Line 98  namespace LinuxSampler {
98                  printf("-> STMT_BRANCH\n");                  printf("-> STMT_BRANCH\n");
99                  #endif                  #endif
100                  BranchStatement* branchStmt = (BranchStatement*) statement;                  BranchStatement* branchStmt = (BranchStatement*) statement;
101                  int max = 0;                  vmint max = 0;
102                  for (int i = 0; branchStmt->branch(i); ++i) {                  for (int i = 0; branchStmt->branch(i); ++i) {
103                      int size = _requiredMaxStackSizeFor( branchStmt->branch(i), depth+1 );                      vmint size = _requiredMaxStackSizeFor( branchStmt->branch(i), depth+1 );
104                      if (max < size) max = size;                      if (max < size) max = size;
105                  }                  }
106                  return max + 1;                  return max + 1;
# Line 129  namespace LinuxSampler { Line 129  namespace LinuxSampler {
129                  else                  else
130                      return 1;                      return 1;
131              }              }
132    
133                case STMT_NOOP:
134                    break; // no operation like the name suggests
135          }          }
136    
137          return 1; // actually just to avoid compiler warning          return 1; // actually just to avoid compiler warning
138      }      }
139    
140      static int _requiredMaxStackSizeFor(EventHandlers* handlers) {      static vmint _requiredMaxStackSizeFor(EventHandlers* handlers) {
141          int max = 1;          vmint max = 1;
142          for (int i = 0; i < handlers->size(); ++i) {          for (int i = 0; i < handlers->size(); ++i) {
143              int size = _requiredMaxStackSizeFor(handlers->eventHandler(i));              vmint size = _requiredMaxStackSizeFor(handlers->eventHandler(i));
144              if (max < size) max = size;              if (max < size) max = size;
145          }          }
146          return max;          return max;
# Line 205  namespace LinuxSampler { Line 208  namespace LinuxSampler {
208          context->createScanner(is);          context->createScanner(is);
209    
210          InstrScript_parse(context);          InstrScript_parse(context);
211          dmsg(2,("Allocating %ld bytes of global int VM memory.\n", long(context->globalIntVarCount * sizeof(int))));          dmsg(2,("Allocating %lld bytes of global int VM memory.\n", context->globalIntVarCount * sizeof(vmint)));
212          dmsg(2,("Allocating %d of global VM string variables.\n", context->globalStrVarCount));          dmsg(2,("Allocating %lld of global VM string variables.\n", context->globalStrVarCount));
213          if (!context->globalIntMemory)          if (!context->globalIntMemory)
214              context->globalIntMemory = new ArrayList<int>();              context->globalIntMemory = new ArrayList<vmint>();
215          if (!context->globalStrMemory)          if (!context->globalStrMemory)
216              context->globalStrMemory = new ArrayList<String>();              context->globalStrMemory = new ArrayList<String>();
217          context->globalIntMemory->resize(context->globalIntVarCount);          context->globalIntMemory->resize(context->globalIntVarCount);
218          memset(&((*context->globalIntMemory)[0]), 0, context->globalIntVarCount * sizeof(int));          memset(&((*context->globalIntMemory)[0]), 0, context->globalIntVarCount * sizeof(vmint));
219                    
220          context->globalStrMemory->resize(context->globalStrVarCount);          context->globalStrMemory->resize(context->globalStrVarCount);
221    
# Line 247  namespace LinuxSampler { Line 250  namespace LinuxSampler {
250                  _requiredMaxStackSizeFor(&*parserCtx->handlers);                  _requiredMaxStackSizeFor(&*parserCtx->handlers);
251          }          }
252          execCtx->stack.resize(parserCtx->requiredMaxStackSize);          execCtx->stack.resize(parserCtx->requiredMaxStackSize);
253          dmsg(2,("Created VM exec context with %ld bytes VM stack size.\n",          dmsg(2,("Created VM exec context with %lld bytes VM stack size.\n",
254                  long(parserCtx->requiredMaxStackSize * sizeof(ExecContext::StackFrame))));                  parserCtx->requiredMaxStackSize * sizeof(ExecContext::StackFrame)));
255          //printf("execCtx=0x%lx\n", (uint64_t)execCtx);          //printf("execCtx=0x%lx\n", (uint64_t)execCtx);
256          const int polySize = parserCtx->polyphonicIntVarCount;          const vmint polySize = parserCtx->polyphonicIntVarCount;
257          execCtx->polyphonicIntMemory.resize(polySize);          execCtx->polyphonicIntMemory.resize(polySize);
258          memset(&execCtx->polyphonicIntMemory[0], 0, polySize * sizeof(int));          memset(&execCtx->polyphonicIntMemory[0], 0, polySize * sizeof(vmint));
259    
260          dmsg(2,("Allocated %ld bytes polyphonic memory.\n", long(polySize * sizeof(int))));          dmsg(2,("Allocated %lld bytes polyphonic memory.\n", polySize * sizeof(vmint)));
261          return execCtx;          return execCtx;
262      }      }
263    
# Line 269  namespace LinuxSampler { Line 272  namespace LinuxSampler {
272              std::vector<SourceToken> tokens = scanner.tokens();              std::vector<SourceToken> tokens = scanner.tokens();
273              std::vector<VMSourceToken> result;              std::vector<VMSourceToken> result;
274              result.resize(tokens.size());              result.resize(tokens.size());
275              for (int i = 0; i < tokens.size(); ++i) {              for (vmint i = 0; i < tokens.size(); ++i) {
276                  SourceToken* st = new SourceToken;                  SourceToken* st = new SourceToken;
277                  *st = tokens[i];                  *st = tokens[i];
278                  result[i] = VMSourceToken(st);                  result[i] = VMSourceToken(st);
# Line 310  namespace LinuxSampler { Line 313  namespace LinuxSampler {
313          return false;          return false;
314      }      }
315    
316      std::map<String,VMIntRelPtr*> ScriptVM::builtInIntVariables() {      std::map<String,VMIntPtr*> ScriptVM::builtInIntVariables() {
317          return std::map<String,VMIntRelPtr*>();          return std::map<String,VMIntPtr*>();
318      }      }
319    
320      std::map<String,VMInt8Array*> ScriptVM::builtInIntArrayVariables() {      std::map<String,VMInt8Array*> ScriptVM::builtInIntArrayVariables() {
# Line 328  namespace LinuxSampler { Line 331  namespace LinuxSampler {
331          return m;          return m;
332      }      }
333    
334      std::map<String,int> ScriptVM::builtInConstIntVariables() {      std::map<String,vmint> ScriptVM::builtInConstIntVariables() {
335          std::map<String,int> m;          std::map<String,vmint> m;
336    
337          m["$NI_CB_TYPE_INIT"] = VM_EVENT_HANDLER_INIT;          m["$NI_CB_TYPE_INIT"] = VM_EVENT_HANDLER_INIT;
338          m["$NI_CB_TYPE_NOTE"] = VM_EVENT_HANDLER_NOTE;          m["$NI_CB_TYPE_NOTE"] = VM_EVENT_HANDLER_NOTE;
# Line 371  namespace LinuxSampler { Line 374  namespace LinuxSampler {
374      VMExecStatus_t ScriptVM::exec(VMParserContext* parserContext, VMExecContext* execContex, VMEventHandler* handler) {      VMExecStatus_t ScriptVM::exec(VMParserContext* parserContext, VMExecContext* execContex, VMEventHandler* handler) {
375          m_parserContext = dynamic_cast<ParserContext*>(parserContext);          m_parserContext = dynamic_cast<ParserContext*>(parserContext);
376          if (!m_parserContext) {          if (!m_parserContext) {
377              std::cerr << "No VM parser context provided. Did you load a script?.\n";              std::cerr << "No VM parser context provided. Did you load a script?\n";
378              return VMExecStatus_t(VM_EXEC_NOT_RUNNING | VM_EXEC_ERROR);              return VMExecStatus_t(VM_EXEC_NOT_RUNNING | VM_EXEC_ERROR);
379          }          }
380    
# Line 393  namespace LinuxSampler { Line 396  namespace LinuxSampler {
396          ctx->instructionsCount = 0;          ctx->instructionsCount = 0;
397          ctx->clearExitRes();          ctx->clearExitRes();
398          StmtFlags_t& flags = ctx->flags;          StmtFlags_t& flags = ctx->flags;
399          int instructionsCounter = 0;          vmint instructionsCounter = 0;
400          int synced = m_autoSuspend ? 0 : 1;          vmint synced = m_autoSuspend ? 0 : 1;
401    
402          int& frameIdx = ctx->stackFrame;          int& frameIdx = ctx->stackFrame;
403          if (frameIdx < 0) { // start condition ...          if (frameIdx < 0) { // start condition ...
# Line 450  namespace LinuxSampler { Line 453  namespace LinuxSampler {
453                      if (frame.subindex < 0) ctx->popStack();                      if (frame.subindex < 0) ctx->popStack();
454                      else {                      else {
455                          BranchStatement* branchStmt = (BranchStatement*) frame.statement;                          BranchStatement* branchStmt = (BranchStatement*) frame.statement;
456                          frame.subindex = branchStmt->evalBranch();                          frame.subindex =
457                                (decltype(frame.subindex))
458                                    branchStmt->evalBranch();
459                          if (frame.subindex >= 0) {                          if (frame.subindex >= 0) {
460                              ctx->pushStack(                              ctx->pushStack(
461                                  branchStmt->branch(frame.subindex)                                  branchStmt->branch(frame.subindex)
# Line 498  namespace LinuxSampler { Line 503  namespace LinuxSampler {
503                      }                      }
504                      break;                      break;
505                  }                  }
506    
507                    case STMT_NOOP:
508                        break; // no operation like the name suggests
509              }              }
510    
511              if (flags == STMT_SUCCESS && !synced &&              if (flags == STMT_SUCCESS && !synced &&

Legend:
Removed from v.3556  
changed lines
  Added in v.3557

  ViewVC Help
Powered by ViewVC