Lines Matching defs:opcode
69 ** op The opcode for this instruction
97 pOp->opcode = op;
112 ** Add an opcode that includes the p3 value.
121 ** Add multiple opcodes. The list is terminated by an opcode of 0.
126 int opcode, p1, p2;
129 while( (opcode = va_arg(ap,int))!=0 ){
132 sqliteVdbeAddOp(p, opcode, p1, p2);
226 pOut->opcode = pIn->opcode;
372 ** Search for the current program for the given opcode and P2
379 if( p->aOp[i].opcode==op && p->aOp[i].p2==p2 ) return i+1;
385 ** Return the opcode for a given address.
511 ** Print a single opcode. This routine is used for debugging only.
524 pc, sqliteOpcodeNames[pOp->opcode], pOp->p1, pOp->p2, zP3 ? zP3 : "");
543 "addr", "opcode", "p1", "p2", "p3",
576 p->zArgv[1] = sqliteOpcodeNames[p->aOp[i].opcode];
604 if( p->nOp==0 || (p->aOp && p->aOp[p->nOp-1].opcode!=OP_Halt) ){
900 fprintf(out, "%02x", p->aOp[i].opcode);