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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3311 - (show annotations) (download)
Sat Jul 15 16:24:59 2017 UTC (6 years, 9 months ago) by schoenebeck
File size: 19159 byte(s)
* NKSP: Added built-in preprocessor condition NKSP_NO_MESSAGE,
  which can be set to disable all subsequent built-in "message()"
  function calls on preprocessor level.
* Bumped version (2.0.0.svn71).

1 /*
2 * Copyright (c) 2014 - 2017 Christian Schoenebeck
3 *
4 * http://www.linuxsampler.org
5 *
6 * This file is part of LinuxSampler and released under the same terms.
7 * See README file for details.
8 */
9
10 #include "ScriptVM.h"
11
12 #include <string.h>
13 #include <assert.h>
14 #include "../common/global_private.h"
15 #include "tree.h"
16 #include "CoreVMFunctions.h"
17 #include "CoreVMDynVars.h"
18 #include "editor/NkspScanner.h"
19
20 #define DEBUG_SCRIPTVM_CORE 0
21
22 /**
23 * Maximum amount of VM instructions to be executed per ScriptVM::exec() call
24 * in case loops are involved, before the script got automatically suspended
25 * for a certain amount of time to avoid any RT instability issues.
26 *
27 * The following value takes a max. execution time of 300 microseconds as aimed
28 * target, assuming an execution time of approximately 5 microseconds per
29 * instruction this leads to the very approximate value set below.
30 */
31 #define SCRIPTVM_MAX_INSTR_PER_CYCLE_SOFT 70
32
33 /**
34 * Absolute maximum amount of VM instructions to be executed per
35 * ScriptVM::exec() call (even if no loops are involved), before the script got
36 * automatically suspended for a certain amount of time to avoid any RT
37 * instability issues.
38 *
39 * A distinction between "soft" and "hard" limit is done here ATM because a
40 * script author typically expects that his script might be interrupted
41 * automatically if he is using while() loops, however he might not be
42 * prepared that his script might also be interrupted if no loop is involved
43 * (i.e. on very large scripts).
44 *
45 * The following value takes a max. execution time of 1000 microseconds as
46 * aimed target, assuming an execution time of approximately 5 microseconds per
47 * instruction this leads to the very approximate value set below.
48 */
49 #define SCRIPTVM_MAX_INSTR_PER_CYCLE_HARD 210
50
51 /**
52 * In case either SCRIPTVM_MAX_INSTR_PER_CYCLE_SOFT or
53 * SCRIPTVM_MAX_INSTR_PER_CYCLE_HARD was exceeded when calling
54 * ScriptVM::exec() : the amount of microseconds the respective script
55 * execution instance should be automatically suspended by the VM.
56 */
57 #define SCRIPT_VM_FORCE_SUSPENSION_MICROSECONDS 1000
58
59 int InstrScript_parse(LinuxSampler::ParserContext*);
60
61 namespace LinuxSampler {
62
63 #if DEBUG_SCRIPTVM_CORE
64 static void _printIndents(int n) {
65 for (int i = 0; i < n; ++i) printf(" ");
66 fflush(stdout);
67 }
68 #endif
69
70 static int _requiredMaxStackSizeFor(Statement* statement, int depth = 0) {
71 if (!statement) return 1;
72
73 switch (statement->statementType()) {
74 case STMT_LEAF:
75 #if DEBUG_SCRIPTVM_CORE
76 _printIndents(depth);
77 printf("-> STMT_LEAF\n");
78 #endif
79 return 1;
80
81 case STMT_LIST: {
82 #if DEBUG_SCRIPTVM_CORE
83 _printIndents(depth);
84 printf("-> STMT_LIST\n");
85 #endif
86 Statements* stmts = (Statements*) statement;
87 int max = 0;
88 for (int i = 0; stmts->statement(i); ++i) {
89 int size = _requiredMaxStackSizeFor( stmts->statement(i), depth+1 );
90 if (max < size) max = size;
91 }
92 return max + 1;
93 }
94
95 case STMT_BRANCH: {
96 #if DEBUG_SCRIPTVM_CORE
97 _printIndents(depth);
98 printf("-> STMT_BRANCH\n");
99 #endif
100 BranchStatement* branchStmt = (BranchStatement*) statement;
101 int max = 0;
102 for (int i = 0; branchStmt->branch(i); ++i) {
103 int size = _requiredMaxStackSizeFor( branchStmt->branch(i), depth+1 );
104 if (max < size) max = size;
105 }
106 return max + 1;
107 }
108
109 case STMT_LOOP: {
110 #if DEBUG_SCRIPTVM_CORE
111 _printIndents(depth);
112 printf("-> STMT_LOOP\n");
113 #endif
114 While* whileStmt = (While*) statement;
115 if (whileStmt->statements())
116 return _requiredMaxStackSizeFor( whileStmt->statements() ) + 1;
117 else
118 return 1;
119 }
120
121 case STMT_SYNC: {
122 #if DEBUG_SCRIPTVM_CORE
123 _printIndents(depth);
124 printf("-> STMT_SYNC\n");
125 #endif
126 SyncBlock* syncStmt = (SyncBlock*) statement;
127 if (syncStmt->statements())
128 return _requiredMaxStackSizeFor( syncStmt->statements() ) + 1;
129 else
130 return 1;
131 }
132 }
133
134 return 1; // actually just to avoid compiler warning
135 }
136
137 static int _requiredMaxStackSizeFor(EventHandlers* handlers) {
138 int max = 1;
139 for (int i = 0; i < handlers->size(); ++i) {
140 int size = _requiredMaxStackSizeFor(handlers->eventHandler(i));
141 if (max < size) max = size;
142 }
143 return max;
144 }
145
146 ScriptVM::ScriptVM() : m_eventHandler(NULL), m_parserContext(NULL), m_autoSuspend(true) {
147 m_fnMessage = new CoreVMFunction_message;
148 m_fnExit = new CoreVMFunction_exit;
149 m_fnWait = new CoreVMFunction_wait(this);
150 m_fnAbs = new CoreVMFunction_abs;
151 m_fnRandom = new CoreVMFunction_random;
152 m_fnNumElements = new CoreVMFunction_num_elements;
153 m_fnInc = new CoreVMFunction_inc;
154 m_fnDec = new CoreVMFunction_dec;
155 m_fnInRange = new CoreVMFunction_in_range;
156 m_varRealTimer = new CoreVMDynVar_NKSP_REAL_TIMER;
157 m_varPerfTimer = new CoreVMDynVar_NKSP_PERF_TIMER;
158 m_fnShLeft = new CoreVMFunction_sh_left;
159 m_fnShRight = new CoreVMFunction_sh_right;
160 m_fnMin = new CoreVMFunction_min;
161 m_fnMax = new CoreVMFunction_max;
162 m_fnArrayEqual = new CoreVMFunction_array_equal;
163 m_fnSearch = new CoreVMFunction_search;
164 m_fnSort = new CoreVMFunction_sort;
165 }
166
167 ScriptVM::~ScriptVM() {
168 delete m_fnMessage;
169 delete m_fnExit;
170 delete m_fnWait;
171 delete m_fnAbs;
172 delete m_fnRandom;
173 delete m_fnNumElements;
174 delete m_fnInc;
175 delete m_fnDec;
176 delete m_fnInRange;
177 delete m_fnShLeft;
178 delete m_fnShRight;
179 delete m_fnMin;
180 delete m_fnMax;
181 delete m_fnArrayEqual;
182 delete m_fnSearch;
183 delete m_fnSort;
184 delete m_varRealTimer;
185 delete m_varPerfTimer;
186 }
187
188 VMParserContext* ScriptVM::loadScript(const String& s) {
189 std::istringstream iss(s);
190 return loadScript(&iss);
191 }
192
193 VMParserContext* ScriptVM::loadScript(std::istream* is) {
194 ParserContext* context = new ParserContext(this);
195 //printf("parserCtx=0x%lx\n", (uint64_t)context);
196
197 context->registerBuiltInConstIntVariables( builtInConstIntVariables() );
198 context->registerBuiltInIntVariables( builtInIntVariables() );
199 context->registerBuiltInIntArrayVariables( builtInIntArrayVariables() );
200 context->registerBuiltInDynVariables( builtInDynamicVariables() );
201
202 context->createScanner(is);
203
204 InstrScript_parse(context);
205 dmsg(2,("Allocating %ld bytes of global int VM memory.\n", long(context->globalIntVarCount * sizeof(int))));
206 dmsg(2,("Allocating %d of global VM string variables.\n", context->globalStrVarCount));
207 if (!context->globalIntMemory)
208 context->globalIntMemory = new ArrayList<int>();
209 if (!context->globalStrMemory)
210 context->globalStrMemory = new ArrayList<String>();
211 context->globalIntMemory->resize(context->globalIntVarCount);
212 memset(&((*context->globalIntMemory)[0]), 0, context->globalIntVarCount * sizeof(int));
213
214 context->globalStrMemory->resize(context->globalStrVarCount);
215
216 context->destroyScanner();
217
218 return context;
219 }
220
221 void ScriptVM::dumpParsedScript(VMParserContext* context) {
222 ParserContext* ctx = dynamic_cast<ParserContext*>(context);
223 if (!ctx) {
224 std::cerr << "No VM context. So nothing to dump.\n";
225 return;
226 }
227 if (!ctx->handlers) {
228 std::cerr << "No event handlers defined in script. So nothing to dump.\n";
229 return;
230 }
231 if (!ctx->globalIntMemory) {
232 std::cerr << "Internal error: no global memory assigend to script VM.\n";
233 return;
234 }
235 ctx->handlers->dump();
236 }
237
238 VMExecContext* ScriptVM::createExecContext(VMParserContext* parserContext) {
239 ParserContext* parserCtx = dynamic_cast<ParserContext*>(parserContext);
240 ExecContext* execCtx = new ExecContext();
241
242 if (parserCtx->requiredMaxStackSize < 0) {
243 parserCtx->requiredMaxStackSize =
244 _requiredMaxStackSizeFor(&*parserCtx->handlers);
245 }
246 execCtx->stack.resize(parserCtx->requiredMaxStackSize);
247 dmsg(2,("Created VM exec context with %ld bytes VM stack size.\n",
248 long(parserCtx->requiredMaxStackSize * sizeof(ExecContext::StackFrame))));
249 //printf("execCtx=0x%lx\n", (uint64_t)execCtx);
250 const int polySize = parserCtx->polyphonicIntVarCount;
251 execCtx->polyphonicIntMemory.resize(polySize);
252 memset(&execCtx->polyphonicIntMemory[0], 0, polySize * sizeof(int));
253
254 dmsg(2,("Allocated %ld bytes polyphonic memory.\n", long(polySize * sizeof(int))));
255 return execCtx;
256 }
257
258 std::vector<VMSourceToken> ScriptVM::syntaxHighlighting(const String& s) {
259 std::istringstream iss(s);
260 return syntaxHighlighting(&iss);
261 }
262
263 std::vector<VMSourceToken> ScriptVM::syntaxHighlighting(std::istream* is) {
264 NkspScanner scanner(is);
265 std::vector<SourceToken> tokens = scanner.tokens();
266 std::vector<VMSourceToken> result;
267 result.resize(tokens.size());
268 for (int i = 0; i < tokens.size(); ++i) {
269 SourceToken* st = new SourceToken;
270 *st = tokens[i];
271 result[i] = VMSourceToken(st);
272 }
273 return result;
274 }
275
276 VMFunction* ScriptVM::functionByName(const String& name) {
277 if (name == "message") return m_fnMessage;
278 else if (name == "exit") return m_fnExit;
279 else if (name == "wait") return m_fnWait;
280 else if (name == "abs") return m_fnAbs;
281 else if (name == "random") return m_fnRandom;
282 else if (name == "num_elements") return m_fnNumElements;
283 else if (name == "inc") return m_fnInc;
284 else if (name == "dec") return m_fnDec;
285 else if (name == "in_range") return m_fnInRange;
286 else if (name == "sh_left") return m_fnShLeft;
287 else if (name == "sh_right") return m_fnShRight;
288 else if (name == "min") return m_fnMin;
289 else if (name == "max") return m_fnMax;
290 else if (name == "array_equal") return m_fnArrayEqual;
291 else if (name == "search") return m_fnSearch;
292 else if (name == "sort") return m_fnSort;
293 return NULL;
294 }
295
296 bool ScriptVM::isFunctionDisabled(VMFunction* fn, VMParserContext* ctx) {
297 ParserContext* parserCtx = dynamic_cast<ParserContext*>(ctx);
298 if (!parserCtx) return false;
299
300 if (fn == m_fnMessage && parserCtx->userPreprocessorConditions.count("NKSP_NO_MESSAGE"))
301 return true;
302
303 return false;
304 }
305
306 std::map<String,VMIntRelPtr*> ScriptVM::builtInIntVariables() {
307 return std::map<String,VMIntRelPtr*>();
308 }
309
310 std::map<String,VMInt8Array*> ScriptVM::builtInIntArrayVariables() {
311 return std::map<String,VMInt8Array*>();
312 }
313
314 std::map<String,VMDynVar*> ScriptVM::builtInDynamicVariables() {
315 std::map<String,VMDynVar*> m;
316
317 m["$NKSP_PERF_TIMER"] = m_varPerfTimer;
318 m["$NKSP_REAL_TIMER"] = m_varRealTimer;
319 m["$KSP_TIMER"] = m_varRealTimer;
320
321 return m;
322 }
323
324 std::map<String,int> ScriptVM::builtInConstIntVariables() {
325 std::map<String,int> m;
326
327 m["$NI_CB_TYPE_INIT"] = VM_EVENT_HANDLER_INIT;
328 m["$NI_CB_TYPE_NOTE"] = VM_EVENT_HANDLER_NOTE;
329 m["$NI_CB_TYPE_RELEASE"] = VM_EVENT_HANDLER_RELEASE;
330 m["$NI_CB_TYPE_CONTROLLER"] = VM_EVENT_HANDLER_CONTROLLER;
331
332 return m;
333 }
334
335 VMEventHandler* ScriptVM::currentVMEventHandler() {
336 return m_eventHandler;
337 }
338
339 VMParserContext* ScriptVM::currentVMParserContext() {
340 return m_parserContext;
341 }
342
343 VMExecContext* ScriptVM::currentVMExecContext() {
344 if (!m_parserContext) return NULL;
345 return m_parserContext->execContext;
346 }
347
348 void ScriptVM::setAutoSuspendEnabled(bool b) {
349 m_autoSuspend = b;
350 }
351
352 bool ScriptVM::isAutoSuspendEnabled() const {
353 return m_autoSuspend;
354 }
355
356 VMExecStatus_t ScriptVM::exec(VMParserContext* parserContext, VMExecContext* execContex, VMEventHandler* handler) {
357 m_parserContext = dynamic_cast<ParserContext*>(parserContext);
358 if (!m_parserContext) {
359 std::cerr << "No VM parser context provided. Did you load a script?.\n";
360 return VMExecStatus_t(VM_EXEC_NOT_RUNNING | VM_EXEC_ERROR);
361 }
362
363 // a ParserContext object is always tied to exactly one ScriptVM object
364 assert(m_parserContext->functionProvider == this);
365
366 ExecContext* ctx = dynamic_cast<ExecContext*>(execContex);
367 if (!ctx) {
368 std::cerr << "Invalid VM exec context.\n";
369 return VMExecStatus_t(VM_EXEC_NOT_RUNNING | VM_EXEC_ERROR);
370 }
371 EventHandler* h = dynamic_cast<EventHandler*>(handler);
372 if (!h) return VM_EXEC_NOT_RUNNING;
373 m_eventHandler = handler;
374
375 m_parserContext->execContext = ctx;
376
377 ctx->status = VM_EXEC_RUNNING;
378 ctx->instructionsCount = 0;
379 StmtFlags_t& flags = ctx->flags;
380 int instructionsCounter = 0;
381 int synced = m_autoSuspend ? 0 : 1;
382
383 int& frameIdx = ctx->stackFrame;
384 if (frameIdx < 0) { // start condition ...
385 frameIdx = -1;
386 ctx->pushStack(h);
387 }
388
389 while (flags == STMT_SUCCESS && frameIdx >= 0) {
390 if (frameIdx >= ctx->stack.size()) { // should never happen, otherwise it's a bug ...
391 std::cerr << "CRITICAL: VM stack overflow! (" << frameIdx << ")\n";
392 flags = StmtFlags_t(STMT_ABORT_SIGNALLED | STMT_ERROR_OCCURRED);
393 break;
394 }
395
396 ExecContext::StackFrame& frame = ctx->stack[frameIdx];
397 switch (frame.statement->statementType()) {
398 case STMT_LEAF: {
399 #if DEBUG_SCRIPTVM_CORE
400 _printIndents(frameIdx);
401 printf("-> STMT_LEAF\n");
402 #endif
403 LeafStatement* leaf = (LeafStatement*) frame.statement;
404 flags = leaf->exec();
405 ctx->popStack();
406 break;
407 }
408
409 case STMT_LIST: {
410 #if DEBUG_SCRIPTVM_CORE
411 _printIndents(frameIdx);
412 printf("-> STMT_LIST subidx=%d\n", frame.subindex);
413 #endif
414 Statements* stmts = (Statements*) frame.statement;
415 if (stmts->statement(frame.subindex)) {
416 ctx->pushStack(
417 stmts->statement(frame.subindex++)
418 );
419 } else {
420 #if DEBUG_SCRIPTVM_CORE
421 _printIndents(frameIdx);
422 printf("[END OF LIST] subidx=%d\n", frame.subindex);
423 #endif
424 ctx->popStack();
425 }
426 break;
427 }
428
429 case STMT_BRANCH: {
430 #if DEBUG_SCRIPTVM_CORE
431 _printIndents(frameIdx);
432 printf("-> STMT_BRANCH\n");
433 #endif
434 if (frame.subindex < 0) ctx->popStack();
435 else {
436 BranchStatement* branchStmt = (BranchStatement*) frame.statement;
437 frame.subindex = branchStmt->evalBranch();
438 if (frame.subindex >= 0) {
439 ctx->pushStack(
440 branchStmt->branch(frame.subindex)
441 );
442 frame.subindex = -1;
443 } else ctx->popStack();
444 }
445 break;
446 }
447
448 case STMT_LOOP: {
449 #if DEBUG_SCRIPTVM_CORE
450 _printIndents(frameIdx);
451 printf("-> STMT_LOOP\n");
452 #endif
453 While* whileStmt = (While*) frame.statement;
454 if (whileStmt->evalLoopStartCondition() && whileStmt->statements()) {
455 ctx->pushStack(
456 whileStmt->statements()
457 );
458 if (flags == STMT_SUCCESS && !synced &&
459 instructionsCounter > SCRIPTVM_MAX_INSTR_PER_CYCLE_SOFT)
460 {
461 flags = StmtFlags_t(STMT_SUSPEND_SIGNALLED);
462 ctx->suspendMicroseconds = SCRIPT_VM_FORCE_SUSPENSION_MICROSECONDS;
463 }
464 } else ctx->popStack();
465 break;
466 }
467
468 case STMT_SYNC: {
469 #if DEBUG_SCRIPTVM_CORE
470 _printIndents(frameIdx);
471 printf("-> STMT_SYNC\n");
472 #endif
473 SyncBlock* syncStmt = (SyncBlock*) frame.statement;
474 if (!frame.subindex++ && syncStmt->statements()) {
475 ++synced;
476 ctx->pushStack(
477 syncStmt->statements()
478 );
479 } else {
480 ctx->popStack();
481 --synced;
482 }
483 break;
484 }
485 }
486
487 if (flags == STMT_SUCCESS && !synced &&
488 instructionsCounter > SCRIPTVM_MAX_INSTR_PER_CYCLE_HARD)
489 {
490 flags = StmtFlags_t(STMT_SUSPEND_SIGNALLED);
491 ctx->suspendMicroseconds = SCRIPT_VM_FORCE_SUSPENSION_MICROSECONDS;
492 }
493
494 ++instructionsCounter;
495 }
496
497 if ((flags & STMT_SUSPEND_SIGNALLED) && !(flags & STMT_ABORT_SIGNALLED)) {
498 ctx->status = VM_EXEC_SUSPENDED;
499 ctx->flags = STMT_SUCCESS;
500 } else {
501 ctx->status = VM_EXEC_NOT_RUNNING;
502 if (flags & STMT_ERROR_OCCURRED)
503 ctx->status = VM_EXEC_ERROR;
504 ctx->reset();
505 }
506
507 ctx->instructionsCount = instructionsCounter;
508
509 m_eventHandler = NULL;
510 m_parserContext->execContext = NULL;
511 m_parserContext = NULL;
512 return ctx->status;
513 }
514
515 } // namespace LinuxSampler

  ViewVC Help
Powered by ViewVC