Lines Matching refs:opcodes
690 var opcodes = this.opcodes, opcode, nextCode;
693 for(var i=0, l=opcodes.length; i<l; i++) {
694 opcode = opcodes[i];
697 name = opcodes[++i];
698 value = opcodes[++i];
707 nextCode = opcodes[++i];
758 this.opcodes = [];
912 this.opcodes.push(Compiler.OPCODE_MAP[name]);
913 if(val1 !== undefined) { this.opcodes.push(val1); }
914 if(val2 !== undefined) { this.opcodes.push(val2); }
915 if(val3 !== undefined) { this.opcodes.push(val3); }
919 this.opcodes.push('DECLARE');
920 this.opcodes.push(name);
921 this.opcodes.push(value);
996 var opcodes = environment.opcodes, opcode;
1000 for(l=opcodes.length; this.i<l; this.i++) {
1016 var opcodes = this.environment.opcodes, opcode = opcodes[this.i + n], name, val;
1020 name = opcodes[this.i + 1];
1021 val = opcodes[this.i + 2];
1030 codes.push(opcodes[this.i + j + 1 + n]);