Lines Matching refs:opcodes
59 var opcodes = this.opcodes, opcode, nextCode;
62 for(var i=0, l=opcodes.length; i<l; i++) {
63 opcode = opcodes[i];
66 name = opcodes[++i];
67 value = opcodes[++i];
76 nextCode = opcodes[++i];
127 this.opcodes = [];
281 this.opcodes.push(Compiler.OPCODE_MAP[name]);
282 if(val1 !== undefined) { this.opcodes.push(val1); }
283 if(val2 !== undefined) { this.opcodes.push(val2); }
284 if(val3 !== undefined) { this.opcodes.push(val3); }
288 this.opcodes.push('DECLARE');
289 this.opcodes.push(name);
290 this.opcodes.push(value);
365 var opcodes = environment.opcodes, opcode;
369 for(l=opcodes.length; this.i<l; this.i++) {
385 var opcodes = this.environment.opcodes, opcode = opcodes[this.i + n], name, val;
389 name = opcodes[this.i + 1];
390 val = opcodes[this.i + 2];
399 codes.push(opcodes[this.i + j + 1 + n]);