1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sqlite3api/SQLite/vdbe.c Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,5113 @@
1.4 +/*
1.5 +** 2001 September 15
1.6 +**
1.7 +** The author disclaims copyright to this source code. In place of
1.8 +** a legal notice, here is a blessing:
1.9 +**
1.10 +** May you do good and not evil.
1.11 +** May you find forgiveness for yourself and forgive others.
1.12 +** May you share freely, never taking more than you give.
1.13 +**
1.14 +*************************************************************************
1.15 +** The code in this file implements execution method of the
1.16 +** Virtual Database Engine (VDBE). A separate file ("vdbeaux.c")
1.17 +** handles housekeeping details such as creating and deleting
1.18 +** VDBE instances. This file is solely interested in executing
1.19 +** the VDBE program.
1.20 +**
1.21 +** In the external interface, an "sqlite3_stmt*" is an opaque pointer
1.22 +** to a VDBE.
1.23 +**
1.24 +** The SQL parser generates a program which is then executed by
1.25 +** the VDBE to do the work of the SQL statement. VDBE programs are
1.26 +** similar in form to assembly language. The program consists of
1.27 +** a linear sequence of operations. Each operation has an opcode
1.28 +** and 5 operands. Operands P1, P2, and P3 are integers. Operand P4
1.29 +** is a null-terminated string. Operand P5 is an unsigned character.
1.30 +** Few opcodes use all 5 operands.
1.31 +**
1.32 +** Computation results are stored on a set of registers numbered beginning
1.33 +** with 1 and going up to Vdbe.nMem. Each register can store
1.34 +** either an integer, a null-terminated string, a floating point
1.35 +** number, or the SQL "NULL" value. An implicit conversion from one
1.36 +** type to the other occurs as necessary.
1.37 +**
1.38 +** Most of the code in this file is taken up by the sqlite3VdbeExec()
1.39 +** function which does the work of interpreting a VDBE program.
1.40 +** But other routines are also provided to help in building up
1.41 +** a program instruction by instruction.
1.42 +**
1.43 +** Various scripts scan this source file in order to generate HTML
1.44 +** documentation, headers files, or other derived files. The formatting
1.45 +** of the code in this file is, therefore, important. See other comments
1.46 +** in this file for details. If in doubt, do not deviate from existing
1.47 +** commenting and indentation practices when changing or adding code.
1.48 +**
1.49 +** $Id: vdbe.c,v 1.779 2008/09/22 06:13:32 danielk1977 Exp $
1.50 +*/
1.51 +#include "sqliteInt.h"
1.52 +#include <ctype.h>
1.53 +#include "vdbeInt.h"
1.54 +
1.55 +/*
1.56 +** The following global variable is incremented every time a cursor
1.57 +** moves, either by the OP_MoveXX, OP_Next, or OP_Prev opcodes. The test
1.58 +** procedures use this information to make sure that indices are
1.59 +** working correctly. This variable has no function other than to
1.60 +** help verify the correct operation of the library.
1.61 +*/
1.62 +#ifdef SQLITE_TEST
1.63 +int sqlite3_search_count = 0;
1.64 +#endif
1.65 +
1.66 +/*
1.67 +** When this global variable is positive, it gets decremented once before
1.68 +** each instruction in the VDBE. When reaches zero, the u1.isInterrupted
1.69 +** field of the sqlite3 structure is set in order to simulate and interrupt.
1.70 +**
1.71 +** This facility is used for testing purposes only. It does not function
1.72 +** in an ordinary build.
1.73 +*/
1.74 +#ifdef SQLITE_TEST
1.75 +int sqlite3_interrupt_count = 0;
1.76 +#endif
1.77 +
1.78 +/*
1.79 +** The next global variable is incremented each type the OP_Sort opcode
1.80 +** is executed. The test procedures use this information to make sure that
1.81 +** sorting is occurring or not occurring at appropriate times. This variable
1.82 +** has no function other than to help verify the correct operation of the
1.83 +** library.
1.84 +*/
1.85 +#ifdef SQLITE_TEST
1.86 +int sqlite3_sort_count = 0;
1.87 +#endif
1.88 +
1.89 +/*
1.90 +** The next global variable records the size of the largest MEM_Blob
1.91 +** or MEM_Str that has been used by a VDBE opcode. The test procedures
1.92 +** use this information to make sure that the zero-blob functionality
1.93 +** is working correctly. This variable has no function other than to
1.94 +** help verify the correct operation of the library.
1.95 +*/
1.96 +#ifdef SQLITE_TEST
1.97 +int sqlite3_max_blobsize = 0;
1.98 +static void updateMaxBlobsize(Mem *p){
1.99 + if( (p->flags & (MEM_Str|MEM_Blob))!=0 && p->n>sqlite3_max_blobsize ){
1.100 + sqlite3_max_blobsize = p->n;
1.101 + }
1.102 +}
1.103 +#endif
1.104 +
1.105 +/*
1.106 +** Test a register to see if it exceeds the current maximum blob size.
1.107 +** If it does, record the new maximum blob size.
1.108 +*/
1.109 +#if defined(SQLITE_TEST) && !defined(SQLITE_OMIT_BUILTIN_TEST)
1.110 +# define UPDATE_MAX_BLOBSIZE(P) updateMaxBlobsize(P)
1.111 +#else
1.112 +# define UPDATE_MAX_BLOBSIZE(P)
1.113 +#endif
1.114 +
1.115 +/*
1.116 +** Convert the given register into a string if it isn't one
1.117 +** already. Return non-zero if a malloc() fails.
1.118 +*/
1.119 +#define Stringify(P, enc) \
1.120 + if(((P)->flags&(MEM_Str|MEM_Blob))==0 && sqlite3VdbeMemStringify(P,enc)) \
1.121 + { goto no_mem; }
1.122 +
1.123 +/*
1.124 +** An ephemeral string value (signified by the MEM_Ephem flag) contains
1.125 +** a pointer to a dynamically allocated string where some other entity
1.126 +** is responsible for deallocating that string. Because the register
1.127 +** does not control the string, it might be deleted without the register
1.128 +** knowing it.
1.129 +**
1.130 +** This routine converts an ephemeral string into a dynamically allocated
1.131 +** string that the register itself controls. In other words, it
1.132 +** converts an MEM_Ephem string into an MEM_Dyn string.
1.133 +*/
1.134 +#define Deephemeralize(P) \
1.135 + if( ((P)->flags&MEM_Ephem)!=0 \
1.136 + && sqlite3VdbeMemMakeWriteable(P) ){ goto no_mem;}
1.137 +
1.138 +/*
1.139 +** Call sqlite3VdbeMemExpandBlob() on the supplied value (type Mem*)
1.140 +** P if required.
1.141 +*/
1.142 +#define ExpandBlob(P) (((P)->flags&MEM_Zero)?sqlite3VdbeMemExpandBlob(P):0)
1.143 +
1.144 +/*
1.145 +** Argument pMem points at a register that will be passed to a
1.146 +** user-defined function or returned to the user as the result of a query.
1.147 +** The second argument, 'db_enc' is the text encoding used by the vdbe for
1.148 +** register variables. This routine sets the pMem->enc and pMem->type
1.149 +** variables used by the sqlite3_value_*() routines.
1.150 +*/
1.151 +#define storeTypeInfo(A,B) _storeTypeInfo(A)
1.152 +static void _storeTypeInfo(Mem *pMem){
1.153 + int flags = pMem->flags;
1.154 + if( flags & MEM_Null ){
1.155 + pMem->type = SQLITE_NULL;
1.156 + }
1.157 + else if( flags & MEM_Int ){
1.158 + pMem->type = SQLITE_INTEGER;
1.159 + }
1.160 + else if( flags & MEM_Real ){
1.161 + pMem->type = SQLITE_FLOAT;
1.162 + }
1.163 + else if( flags & MEM_Str ){
1.164 + pMem->type = SQLITE_TEXT;
1.165 + }else{
1.166 + pMem->type = SQLITE_BLOB;
1.167 + }
1.168 +}
1.169 +
1.170 +/*
1.171 +** Properties of opcodes. The OPFLG_INITIALIZER macro is
1.172 +** created by mkopcodeh.awk during compilation. Data is obtained
1.173 +** from the comments following the "case OP_xxxx:" statements in
1.174 +** this file.
1.175 +*/
1.176 +static const unsigned char opcodeProperty[] = OPFLG_INITIALIZER;
1.177 +
1.178 +/*
1.179 +** Return true if an opcode has any of the OPFLG_xxx properties
1.180 +** specified by mask.
1.181 +*/
1.182 +int sqlite3VdbeOpcodeHasProperty(int opcode, int mask){
1.183 + assert( opcode>0 && opcode<sizeof(opcodeProperty) );
1.184 + return (opcodeProperty[opcode]&mask)!=0;
1.185 +}
1.186 +
1.187 +/*
1.188 +** Allocate cursor number iCur. Return a pointer to it. Return NULL
1.189 +** if we run out of memory.
1.190 +*/
1.191 +static Cursor *allocateCursor(
1.192 + Vdbe *p,
1.193 + int iCur,
1.194 + Op *pOp,
1.195 + int iDb,
1.196 + int isBtreeCursor
1.197 +){
1.198 + /* Find the memory cell that will be used to store the blob of memory
1.199 + ** required for this Cursor structure. It is convenient to use a
1.200 + ** vdbe memory cell to manage the memory allocation required for a
1.201 + ** Cursor structure for the following reasons:
1.202 + **
1.203 + ** * Sometimes cursor numbers are used for a couple of different
1.204 + ** purposes in a vdbe program. The different uses might require
1.205 + ** different sized allocations. Memory cells provide growable
1.206 + ** allocations.
1.207 + **
1.208 + ** * When using ENABLE_MEMORY_MANAGEMENT, memory cell buffers can
1.209 + ** be freed lazily via the sqlite3_release_memory() API. This
1.210 + ** minimizes the number of malloc calls made by the system.
1.211 + **
1.212 + ** Memory cells for cursors are allocated at the top of the address
1.213 + ** space. Memory cell (p->nMem) corresponds to cursor 0. Space for
1.214 + ** cursor 1 is managed by memory cell (p->nMem-1), etc.
1.215 + */
1.216 + Mem *pMem = &p->aMem[p->nMem-iCur];
1.217 +
1.218 + int nByte;
1.219 + Cursor *pCx = 0;
1.220 + /* If the opcode of pOp is OP_SetNumColumns, then pOp->p2 contains
1.221 + ** the number of fields in the records contained in the table or
1.222 + ** index being opened. Use this to reserve space for the
1.223 + ** Cursor.aType[] array.
1.224 + */
1.225 + int nField = 0;
1.226 + if( pOp->opcode==OP_SetNumColumns || pOp->opcode==OP_OpenEphemeral ){
1.227 + nField = pOp->p2;
1.228 + }
1.229 + nByte =
1.230 + sizeof(Cursor) +
1.231 + (isBtreeCursor?sqlite3BtreeCursorSize():0) +
1.232 + 2*nField*sizeof(u32);
1.233 +
1.234 + assert( iCur<p->nCursor );
1.235 + if( p->apCsr[iCur] ){
1.236 + sqlite3VdbeFreeCursor(p, p->apCsr[iCur]);
1.237 + p->apCsr[iCur] = 0;
1.238 + }
1.239 + if( SQLITE_OK==sqlite3VdbeMemGrow(pMem, nByte, 0) ){
1.240 + p->apCsr[iCur] = pCx = (Cursor *)pMem->z;
1.241 + memset(pMem->z, 0, nByte);
1.242 + pCx->iDb = iDb;
1.243 + pCx->nField = nField;
1.244 + if( nField ){
1.245 + pCx->aType = (u32 *)&pMem->z[sizeof(Cursor)];
1.246 + }
1.247 + if( isBtreeCursor ){
1.248 + pCx->pCursor = (BtCursor *)&pMem->z[sizeof(Cursor)+2*nField*sizeof(u32)];
1.249 + }
1.250 + }
1.251 + return pCx;
1.252 +}
1.253 +
1.254 +/*
1.255 +** Try to convert a value into a numeric representation if we can
1.256 +** do so without loss of information. In other words, if the string
1.257 +** looks like a number, convert it into a number. If it does not
1.258 +** look like a number, leave it alone.
1.259 +*/
1.260 +static void applyNumericAffinity(Mem *pRec){
1.261 + if( (pRec->flags & (MEM_Real|MEM_Int))==0 ){
1.262 + int realnum;
1.263 + sqlite3VdbeMemNulTerminate(pRec);
1.264 + if( (pRec->flags&MEM_Str)
1.265 + && sqlite3IsNumber(pRec->z, &realnum, pRec->enc) ){
1.266 + i64 value;
1.267 + sqlite3VdbeChangeEncoding(pRec, SQLITE_UTF8);
1.268 + if( !realnum && sqlite3Atoi64(pRec->z, &value) ){
1.269 + pRec->u.i = value;
1.270 + MemSetTypeFlag(pRec, MEM_Int);
1.271 + }else{
1.272 + sqlite3VdbeMemRealify(pRec);
1.273 + }
1.274 + }
1.275 + }
1.276 +}
1.277 +
1.278 +/*
1.279 +** Processing is determine by the affinity parameter:
1.280 +**
1.281 +** SQLITE_AFF_INTEGER:
1.282 +** SQLITE_AFF_REAL:
1.283 +** SQLITE_AFF_NUMERIC:
1.284 +** Try to convert pRec to an integer representation or a
1.285 +** floating-point representation if an integer representation
1.286 +** is not possible. Note that the integer representation is
1.287 +** always preferred, even if the affinity is REAL, because
1.288 +** an integer representation is more space efficient on disk.
1.289 +**
1.290 +** SQLITE_AFF_TEXT:
1.291 +** Convert pRec to a text representation.
1.292 +**
1.293 +** SQLITE_AFF_NONE:
1.294 +** No-op. pRec is unchanged.
1.295 +*/
1.296 +static void applyAffinity(
1.297 + Mem *pRec, /* The value to apply affinity to */
1.298 + char affinity, /* The affinity to be applied */
1.299 + u8 enc /* Use this text encoding */
1.300 +){
1.301 + if( affinity==SQLITE_AFF_TEXT ){
1.302 + /* Only attempt the conversion to TEXT if there is an integer or real
1.303 + ** representation (blob and NULL do not get converted) but no string
1.304 + ** representation.
1.305 + */
1.306 + if( 0==(pRec->flags&MEM_Str) && (pRec->flags&(MEM_Real|MEM_Int)) ){
1.307 + sqlite3VdbeMemStringify(pRec, enc);
1.308 + }
1.309 + pRec->flags &= ~(MEM_Real|MEM_Int);
1.310 + }else if( affinity!=SQLITE_AFF_NONE ){
1.311 + assert( affinity==SQLITE_AFF_INTEGER || affinity==SQLITE_AFF_REAL
1.312 + || affinity==SQLITE_AFF_NUMERIC );
1.313 + applyNumericAffinity(pRec);
1.314 + if( pRec->flags & MEM_Real ){
1.315 + sqlite3VdbeIntegerAffinity(pRec);
1.316 + }
1.317 + }
1.318 +}
1.319 +
1.320 +/*
1.321 +** Try to convert the type of a function argument or a result column
1.322 +** into a numeric representation. Use either INTEGER or REAL whichever
1.323 +** is appropriate. But only do the conversion if it is possible without
1.324 +** loss of information and return the revised type of the argument.
1.325 +**
1.326 +** This is an EXPERIMENTAL api and is subject to change or removal.
1.327 +*/
1.328 +SQLITE_EXPORT int sqlite3_value_numeric_type(sqlite3_value *pVal){
1.329 + Mem *pMem = (Mem*)pVal;
1.330 + applyNumericAffinity(pMem);
1.331 + storeTypeInfo(pMem, 0);
1.332 + return pMem->type;
1.333 +}
1.334 +
1.335 +/*
1.336 +** Exported version of applyAffinity(). This one works on sqlite3_value*,
1.337 +** not the internal Mem* type.
1.338 +*/
1.339 +void sqlite3ValueApplyAffinity(
1.340 + sqlite3_value *pVal,
1.341 + u8 affinity,
1.342 + u8 enc
1.343 +){
1.344 + applyAffinity((Mem *)pVal, affinity, enc);
1.345 +}
1.346 +
1.347 +#ifdef SQLITE_DEBUG
1.348 +/*
1.349 +** Write a nice string representation of the contents of cell pMem
1.350 +** into buffer zBuf, length nBuf.
1.351 +*/
1.352 +void sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf){
1.353 + char *zCsr = zBuf;
1.354 + int f = pMem->flags;
1.355 +
1.356 + static const char *const encnames[] = {"(X)", "(8)", "(16LE)", "(16BE)"};
1.357 +
1.358 + if( f&MEM_Blob ){
1.359 + int i;
1.360 + char c;
1.361 + if( f & MEM_Dyn ){
1.362 + c = 'z';
1.363 + assert( (f & (MEM_Static|MEM_Ephem))==0 );
1.364 + }else if( f & MEM_Static ){
1.365 + c = 't';
1.366 + assert( (f & (MEM_Dyn|MEM_Ephem))==0 );
1.367 + }else if( f & MEM_Ephem ){
1.368 + c = 'e';
1.369 + assert( (f & (MEM_Static|MEM_Dyn))==0 );
1.370 + }else{
1.371 + c = 's';
1.372 + }
1.373 +
1.374 + sqlite3_snprintf(100, zCsr, "%c", c);
1.375 + zCsr += strlen(zCsr);
1.376 + sqlite3_snprintf(100, zCsr, "%d[", pMem->n);
1.377 + zCsr += strlen(zCsr);
1.378 + for(i=0; i<16 && i<pMem->n; i++){
1.379 + sqlite3_snprintf(100, zCsr, "%02X", ((int)pMem->z[i] & 0xFF));
1.380 + zCsr += strlen(zCsr);
1.381 + }
1.382 + for(i=0; i<16 && i<pMem->n; i++){
1.383 + char z = pMem->z[i];
1.384 + if( z<32 || z>126 ) *zCsr++ = '.';
1.385 + else *zCsr++ = z;
1.386 + }
1.387 +
1.388 + sqlite3_snprintf(100, zCsr, "]%s", encnames[pMem->enc]);
1.389 + zCsr += strlen(zCsr);
1.390 + if( f & MEM_Zero ){
1.391 + sqlite3_snprintf(100, zCsr,"+%lldz",pMem->u.i);
1.392 + zCsr += strlen(zCsr);
1.393 + }
1.394 + *zCsr = '\0';
1.395 + }else if( f & MEM_Str ){
1.396 + int j, k;
1.397 + zBuf[0] = ' ';
1.398 + if( f & MEM_Dyn ){
1.399 + zBuf[1] = 'z';
1.400 + assert( (f & (MEM_Static|MEM_Ephem))==0 );
1.401 + }else if( f & MEM_Static ){
1.402 + zBuf[1] = 't';
1.403 + assert( (f & (MEM_Dyn|MEM_Ephem))==0 );
1.404 + }else if( f & MEM_Ephem ){
1.405 + zBuf[1] = 'e';
1.406 + assert( (f & (MEM_Static|MEM_Dyn))==0 );
1.407 + }else{
1.408 + zBuf[1] = 's';
1.409 + }
1.410 + k = 2;
1.411 + sqlite3_snprintf(100, &zBuf[k], "%d", pMem->n);
1.412 + k += strlen(&zBuf[k]);
1.413 + zBuf[k++] = '[';
1.414 + for(j=0; j<15 && j<pMem->n; j++){
1.415 + u8 c = pMem->z[j];
1.416 + if( c>=0x20 && c<0x7f ){
1.417 + zBuf[k++] = c;
1.418 + }else{
1.419 + zBuf[k++] = '.';
1.420 + }
1.421 + }
1.422 + zBuf[k++] = ']';
1.423 + sqlite3_snprintf(100,&zBuf[k], encnames[pMem->enc]);
1.424 + k += strlen(&zBuf[k]);
1.425 + zBuf[k++] = 0;
1.426 + }
1.427 +}
1.428 +#endif
1.429 +
1.430 +#ifdef SQLITE_DEBUG
1.431 +/*
1.432 +** Print the value of a register for tracing purposes:
1.433 +*/
1.434 +static void memTracePrint(FILE *out, Mem *p){
1.435 + if( p->flags & MEM_Null ){
1.436 + fprintf(out, " NULL");
1.437 + }else if( (p->flags & (MEM_Int|MEM_Str))==(MEM_Int|MEM_Str) ){
1.438 + fprintf(out, " si:%lld", p->u.i);
1.439 + }else if( p->flags & MEM_Int ){
1.440 + fprintf(out, " i:%lld", p->u.i);
1.441 + }else if( p->flags & MEM_Real ){
1.442 + fprintf(out, " r:%g", p->r);
1.443 + }else{
1.444 + char zBuf[200];
1.445 + sqlite3VdbeMemPrettyPrint(p, zBuf);
1.446 + fprintf(out, " ");
1.447 + fprintf(out, "%s", zBuf);
1.448 + }
1.449 +}
1.450 +static void registerTrace(FILE *out, int iReg, Mem *p){
1.451 + fprintf(out, "REG[%d] = ", iReg);
1.452 + memTracePrint(out, p);
1.453 + fprintf(out, "\n");
1.454 +}
1.455 +#endif
1.456 +
1.457 +#ifdef SQLITE_DEBUG
1.458 +# define REGISTER_TRACE(R,M) if(p->trace)registerTrace(p->trace,R,M)
1.459 +#else
1.460 +# define REGISTER_TRACE(R,M)
1.461 +#endif
1.462 +
1.463 +
1.464 +#ifdef VDBE_PROFILE
1.465 +
1.466 +/*
1.467 +** hwtime.h contains inline assembler code for implementing
1.468 +** high-performance timing routines.
1.469 +*/
1.470 +#include "hwtime.h"
1.471 +
1.472 +#endif
1.473 +
1.474 +/*
1.475 +** The CHECK_FOR_INTERRUPT macro defined here looks to see if the
1.476 +** sqlite3_interrupt() routine has been called. If it has been, then
1.477 +** processing of the VDBE program is interrupted.
1.478 +**
1.479 +** This macro added to every instruction that does a jump in order to
1.480 +** implement a loop. This test used to be on every single instruction,
1.481 +** but that meant we more testing that we needed. By only testing the
1.482 +** flag on jump instructions, we get a (small) speed improvement.
1.483 +*/
1.484 +#define CHECK_FOR_INTERRUPT \
1.485 + if( db->u1.isInterrupted ) goto abort_due_to_interrupt;
1.486 +
1.487 +#ifdef SQLITE_DEBUG
1.488 +static int fileExists(sqlite3 *db, const char *zFile){
1.489 + int res = 0;
1.490 + int rc = SQLITE_OK;
1.491 +#ifdef SQLITE_TEST
1.492 + /* If we are currently testing IO errors, then do not call OsAccess() to
1.493 + ** test for the presence of zFile. This is because any IO error that
1.494 + ** occurs here will not be reported, causing the test to fail.
1.495 + */
1.496 + extern int sqlite3_io_error_pending;
1.497 + if( sqlite3_io_error_pending<=0 )
1.498 +#endif
1.499 + rc = sqlite3OsAccess(db->pVfs, zFile, SQLITE_ACCESS_EXISTS, &res);
1.500 + return (res && rc==SQLITE_OK);
1.501 +}
1.502 +#endif
1.503 +
1.504 +/*
1.505 +** Execute as much of a VDBE program as we can then return.
1.506 +**
1.507 +** sqlite3VdbeMakeReady() must be called before this routine in order to
1.508 +** close the program with a final OP_Halt and to set up the callbacks
1.509 +** and the error message pointer.
1.510 +**
1.511 +** Whenever a row or result data is available, this routine will either
1.512 +** invoke the result callback (if there is one) or return with
1.513 +** SQLITE_ROW.
1.514 +**
1.515 +** If an attempt is made to open a locked database, then this routine
1.516 +** will either invoke the busy callback (if there is one) or it will
1.517 +** return SQLITE_BUSY.
1.518 +**
1.519 +** If an error occurs, an error message is written to memory obtained
1.520 +** from sqlite3_malloc() and p->zErrMsg is made to point to that memory.
1.521 +** The error code is stored in p->rc and this routine returns SQLITE_ERROR.
1.522 +**
1.523 +** If the callback ever returns non-zero, then the program exits
1.524 +** immediately. There will be no error message but the p->rc field is
1.525 +** set to SQLITE_ABORT and this routine will return SQLITE_ERROR.
1.526 +**
1.527 +** A memory allocation error causes p->rc to be set to SQLITE_NOMEM and this
1.528 +** routine to return SQLITE_ERROR.
1.529 +**
1.530 +** Other fatal errors return SQLITE_ERROR.
1.531 +**
1.532 +** After this routine has finished, sqlite3VdbeFinalize() should be
1.533 +** used to clean up the mess that was left behind.
1.534 +*/
1.535 +int sqlite3VdbeExec(
1.536 + Vdbe *p /* The VDBE */
1.537 +){
1.538 + int pc; /* The program counter */
1.539 + Op *pOp; /* Current operation */
1.540 + int rc = SQLITE_OK; /* Value to return */
1.541 + sqlite3 *db = p->db; /* The database */
1.542 + u8 encoding = ENC(db); /* The database encoding */
1.543 + Mem *pIn1, *pIn2, *pIn3; /* Input operands */
1.544 + Mem *pOut; /* Output operand */
1.545 + u8 opProperty;
1.546 + int iCompare = 0; /* Result of last OP_Compare operation */
1.547 + int *aPermute = 0; /* Permuation of columns for OP_Compare */
1.548 +#ifdef VDBE_PROFILE
1.549 + u64 start; /* CPU clock count at start of opcode */
1.550 + int origPc; /* Program counter at start of opcode */
1.551 +#endif
1.552 +#ifndef SQLITE_OMIT_PROGRESS_CALLBACK
1.553 + int nProgressOps = 0; /* Opcodes executed since progress callback. */
1.554 +#endif
1.555 + UnpackedRecord aTempRec[16]; /* Space to hold a transient UnpackedRecord */
1.556 +
1.557 +
1.558 + assert( p->magic==VDBE_MAGIC_RUN ); /* sqlite3_step() verifies this */
1.559 + assert( db->magic==SQLITE_MAGIC_BUSY );
1.560 + sqlite3BtreeMutexArrayEnter(&p->aMutex);
1.561 + if( p->rc==SQLITE_NOMEM ){
1.562 + /* This happens if a malloc() inside a call to sqlite3_column_text() or
1.563 + ** sqlite3_column_text16() failed. */
1.564 + goto no_mem;
1.565 + }
1.566 + assert( p->rc==SQLITE_OK || p->rc==SQLITE_BUSY );
1.567 + p->rc = SQLITE_OK;
1.568 + assert( p->explain==0 );
1.569 + p->pResultSet = 0;
1.570 + db->busyHandler.nBusy = 0;
1.571 + CHECK_FOR_INTERRUPT;
1.572 + sqlite3VdbeIOTraceSql(p);
1.573 +#ifdef SQLITE_DEBUG
1.574 + sqlite3BeginBenignMalloc();
1.575 + if( p->pc==0
1.576 + && ((p->db->flags & SQLITE_VdbeListing) || fileExists(db, "vdbe_explain"))
1.577 + ){
1.578 + int i;
1.579 + printf("VDBE Program Listing:\n");
1.580 + sqlite3VdbePrintSql(p);
1.581 + for(i=0; i<p->nOp; i++){
1.582 + sqlite3VdbePrintOp(stdout, i, &p->aOp[i]);
1.583 + }
1.584 + }
1.585 + if( fileExists(db, "vdbe_trace") ){
1.586 + p->trace = stdout;
1.587 + }
1.588 + sqlite3EndBenignMalloc();
1.589 +#endif
1.590 + for(pc=p->pc; rc==SQLITE_OK; pc++){
1.591 + assert( pc>=0 && pc<p->nOp );
1.592 + if( db->mallocFailed ) goto no_mem;
1.593 +#ifdef VDBE_PROFILE
1.594 + origPc = pc;
1.595 + start = sqlite3Hwtime();
1.596 +#endif
1.597 + pOp = &p->aOp[pc];
1.598 +
1.599 + /* Only allow tracing if SQLITE_DEBUG is defined.
1.600 + */
1.601 +#ifdef SQLITE_DEBUG
1.602 + if( p->trace ){
1.603 + if( pc==0 ){
1.604 + printf("VDBE Execution Trace:\n");
1.605 + sqlite3VdbePrintSql(p);
1.606 + }
1.607 + sqlite3VdbePrintOp(p->trace, pc, pOp);
1.608 + }
1.609 + if( p->trace==0 && pc==0 ){
1.610 + sqlite3BeginBenignMalloc();
1.611 + if( fileExists(db, "vdbe_sqltrace") ){
1.612 + sqlite3VdbePrintSql(p);
1.613 + }
1.614 + sqlite3EndBenignMalloc();
1.615 + }
1.616 +#endif
1.617 +
1.618 +
1.619 + /* Check to see if we need to simulate an interrupt. This only happens
1.620 + ** if we have a special test build.
1.621 + */
1.622 +#ifdef SQLITE_TEST
1.623 + if( sqlite3_interrupt_count>0 ){
1.624 + sqlite3_interrupt_count--;
1.625 + if( sqlite3_interrupt_count==0 ){
1.626 + sqlite3_interrupt(db);
1.627 + }
1.628 + }
1.629 +#endif
1.630 +
1.631 +#ifndef SQLITE_OMIT_PROGRESS_CALLBACK
1.632 + /* Call the progress callback if it is configured and the required number
1.633 + ** of VDBE ops have been executed (either since this invocation of
1.634 + ** sqlite3VdbeExec() or since last time the progress callback was called).
1.635 + ** If the progress callback returns non-zero, exit the virtual machine with
1.636 + ** a return code SQLITE_ABORT.
1.637 + */
1.638 + if( db->xProgress ){
1.639 + if( db->nProgressOps==nProgressOps ){
1.640 + int prc;
1.641 + if( sqlite3SafetyOff(db) ) goto abort_due_to_misuse;
1.642 + prc =db->xProgress(db->pProgressArg);
1.643 + if( sqlite3SafetyOn(db) ) goto abort_due_to_misuse;
1.644 + if( prc!=0 ){
1.645 + rc = SQLITE_INTERRUPT;
1.646 + goto vdbe_error_halt;
1.647 + }
1.648 + nProgressOps = 0;
1.649 + }
1.650 + nProgressOps++;
1.651 + }
1.652 +#endif
1.653 +
1.654 + /* Do common setup processing for any opcode that is marked
1.655 + ** with the "out2-prerelease" tag. Such opcodes have a single
1.656 + ** output which is specified by the P2 parameter. The P2 register
1.657 + ** is initialized to a NULL.
1.658 + */
1.659 + opProperty = opcodeProperty[pOp->opcode];
1.660 + if( (opProperty & OPFLG_OUT2_PRERELEASE)!=0 ){
1.661 + assert( pOp->p2>0 );
1.662 + assert( pOp->p2<=p->nMem );
1.663 + pOut = &p->aMem[pOp->p2];
1.664 + sqlite3VdbeMemReleaseExternal(pOut);
1.665 + pOut->flags = MEM_Null;
1.666 + }else
1.667 +
1.668 + /* Do common setup for opcodes marked with one of the following
1.669 + ** combinations of properties.
1.670 + **
1.671 + ** in1
1.672 + ** in1 in2
1.673 + ** in1 in2 out3
1.674 + ** in1 in3
1.675 + **
1.676 + ** Variables pIn1, pIn2, and pIn3 are made to point to appropriate
1.677 + ** registers for inputs. Variable pOut points to the output register.
1.678 + */
1.679 + if( (opProperty & OPFLG_IN1)!=0 ){
1.680 + assert( pOp->p1>0 );
1.681 + assert( pOp->p1<=p->nMem );
1.682 + pIn1 = &p->aMem[pOp->p1];
1.683 + REGISTER_TRACE(pOp->p1, pIn1);
1.684 + if( (opProperty & OPFLG_IN2)!=0 ){
1.685 + assert( pOp->p2>0 );
1.686 + assert( pOp->p2<=p->nMem );
1.687 + pIn2 = &p->aMem[pOp->p2];
1.688 + REGISTER_TRACE(pOp->p2, pIn2);
1.689 + if( (opProperty & OPFLG_OUT3)!=0 ){
1.690 + assert( pOp->p3>0 );
1.691 + assert( pOp->p3<=p->nMem );
1.692 + pOut = &p->aMem[pOp->p3];
1.693 + }
1.694 + }else if( (opProperty & OPFLG_IN3)!=0 ){
1.695 + assert( pOp->p3>0 );
1.696 + assert( pOp->p3<=p->nMem );
1.697 + pIn3 = &p->aMem[pOp->p3];
1.698 + REGISTER_TRACE(pOp->p3, pIn3);
1.699 + }
1.700 + }else if( (opProperty & OPFLG_IN2)!=0 ){
1.701 + assert( pOp->p2>0 );
1.702 + assert( pOp->p2<=p->nMem );
1.703 + pIn2 = &p->aMem[pOp->p2];
1.704 + REGISTER_TRACE(pOp->p2, pIn2);
1.705 + }else if( (opProperty & OPFLG_IN3)!=0 ){
1.706 + assert( pOp->p3>0 );
1.707 + assert( pOp->p3<=p->nMem );
1.708 + pIn3 = &p->aMem[pOp->p3];
1.709 + REGISTER_TRACE(pOp->p3, pIn3);
1.710 + }
1.711 +
1.712 + switch( pOp->opcode ){
1.713 +
1.714 +/*****************************************************************************
1.715 +** What follows is a massive switch statement where each case implements a
1.716 +** separate instruction in the virtual machine. If we follow the usual
1.717 +** indentation conventions, each case should be indented by 6 spaces. But
1.718 +** that is a lot of wasted space on the left margin. So the code within
1.719 +** the switch statement will break with convention and be flush-left. Another
1.720 +** big comment (similar to this one) will mark the point in the code where
1.721 +** we transition back to normal indentation.
1.722 +**
1.723 +** The formatting of each case is important. The makefile for SQLite
1.724 +** generates two C files "opcodes.h" and "opcodes.c" by scanning this
1.725 +** file looking for lines that begin with "case OP_". The opcodes.h files
1.726 +** will be filled with #defines that give unique integer values to each
1.727 +** opcode and the opcodes.c file is filled with an array of strings where
1.728 +** each string is the symbolic name for the corresponding opcode. If the
1.729 +** case statement is followed by a comment of the form "/# same as ... #/"
1.730 +** that comment is used to determine the particular value of the opcode.
1.731 +**
1.732 +** Other keywords in the comment that follows each case are used to
1.733 +** construct the OPFLG_INITIALIZER value that initializes opcodeProperty[].
1.734 +** Keywords include: in1, in2, in3, out2_prerelease, out2, out3. See
1.735 +** the mkopcodeh.awk script for additional information.
1.736 +**
1.737 +** Documentation about VDBE opcodes is generated by scanning this file
1.738 +** for lines of that contain "Opcode:". That line and all subsequent
1.739 +** comment lines are used in the generation of the opcode.html documentation
1.740 +** file.
1.741 +**
1.742 +** SUMMARY:
1.743 +**
1.744 +** Formatting is important to scripts that scan this file.
1.745 +** Do not deviate from the formatting style currently in use.
1.746 +**
1.747 +*****************************************************************************/
1.748 +
1.749 +/* Opcode: Goto * P2 * * *
1.750 +**
1.751 +** An unconditional jump to address P2.
1.752 +** The next instruction executed will be
1.753 +** the one at index P2 from the beginning of
1.754 +** the program.
1.755 +*/
1.756 +case OP_Goto: { /* jump */
1.757 + CHECK_FOR_INTERRUPT;
1.758 + pc = pOp->p2 - 1;
1.759 + break;
1.760 +}
1.761 +
1.762 +/* Opcode: Gosub P1 P2 * * *
1.763 +**
1.764 +** Write the current address onto register P1
1.765 +** and then jump to address P2.
1.766 +*/
1.767 +case OP_Gosub: { /* jump */
1.768 + assert( pOp->p1>0 );
1.769 + assert( pOp->p1<=p->nMem );
1.770 + pIn1 = &p->aMem[pOp->p1];
1.771 + assert( (pIn1->flags & MEM_Dyn)==0 );
1.772 + pIn1->flags = MEM_Int;
1.773 + pIn1->u.i = pc;
1.774 + REGISTER_TRACE(pOp->p1, pIn1);
1.775 + pc = pOp->p2 - 1;
1.776 + break;
1.777 +}
1.778 +
1.779 +/* Opcode: Return P1 * * * *
1.780 +**
1.781 +** Jump to the next instruction after the address in register P1.
1.782 +*/
1.783 +case OP_Return: { /* in1 */
1.784 + assert( pIn1->flags & MEM_Int );
1.785 + pc = pIn1->u.i;
1.786 + break;
1.787 +}
1.788 +
1.789 +/* Opcode: Yield P1 * * * *
1.790 +**
1.791 +** Swap the program counter with the value in register P1.
1.792 +*/
1.793 +case OP_Yield: {
1.794 + int pcDest;
1.795 + assert( pOp->p1>0 );
1.796 + assert( pOp->p1<=p->nMem );
1.797 + pIn1 = &p->aMem[pOp->p1];
1.798 + assert( (pIn1->flags & MEM_Dyn)==0 );
1.799 + pIn1->flags = MEM_Int;
1.800 + pcDest = pIn1->u.i;
1.801 + pIn1->u.i = pc;
1.802 + REGISTER_TRACE(pOp->p1, pIn1);
1.803 + pc = pcDest;
1.804 + break;
1.805 +}
1.806 +
1.807 +
1.808 +/* Opcode: Halt P1 P2 * P4 *
1.809 +**
1.810 +** Exit immediately. All open cursors, Fifos, etc are closed
1.811 +** automatically.
1.812 +**
1.813 +** P1 is the result code returned by sqlite3_exec(), sqlite3_reset(),
1.814 +** or sqlite3_finalize(). For a normal halt, this should be SQLITE_OK (0).
1.815 +** For errors, it can be some other value. If P1!=0 then P2 will determine
1.816 +** whether or not to rollback the current transaction. Do not rollback
1.817 +** if P2==OE_Fail. Do the rollback if P2==OE_Rollback. If P2==OE_Abort,
1.818 +** then back out all changes that have occurred during this execution of the
1.819 +** VDBE, but do not rollback the transaction.
1.820 +**
1.821 +** If P4 is not null then it is an error message string.
1.822 +**
1.823 +** There is an implied "Halt 0 0 0" instruction inserted at the very end of
1.824 +** every program. So a jump past the last instruction of the program
1.825 +** is the same as executing Halt.
1.826 +*/
1.827 +case OP_Halt: {
1.828 + p->rc = pOp->p1;
1.829 + p->pc = pc;
1.830 + p->errorAction = pOp->p2;
1.831 + if( pOp->p4.z ){
1.832 + sqlite3SetString(&p->zErrMsg, db, "%s", pOp->p4.z);
1.833 + }
1.834 + rc = sqlite3VdbeHalt(p);
1.835 + assert( rc==SQLITE_BUSY || rc==SQLITE_OK );
1.836 + if( rc==SQLITE_BUSY ){
1.837 + p->rc = rc = SQLITE_BUSY;
1.838 + }else{
1.839 + rc = p->rc ? SQLITE_ERROR : SQLITE_DONE;
1.840 + }
1.841 + goto vdbe_return;
1.842 +}
1.843 +
1.844 +/* Opcode: Integer P1 P2 * * *
1.845 +**
1.846 +** The 32-bit integer value P1 is written into register P2.
1.847 +*/
1.848 +case OP_Integer: { /* out2-prerelease */
1.849 + pOut->flags = MEM_Int;
1.850 + pOut->u.i = pOp->p1;
1.851 + break;
1.852 +}
1.853 +
1.854 +/* Opcode: Int64 * P2 * P4 *
1.855 +**
1.856 +** P4 is a pointer to a 64-bit integer value.
1.857 +** Write that value into register P2.
1.858 +*/
1.859 +case OP_Int64: { /* out2-prerelease */
1.860 + assert( pOp->p4.pI64!=0 );
1.861 + pOut->flags = MEM_Int;
1.862 + pOut->u.i = *pOp->p4.pI64;
1.863 + break;
1.864 +}
1.865 +
1.866 +/* Opcode: Real * P2 * P4 *
1.867 +**
1.868 +** P4 is a pointer to a 64-bit floating point value.
1.869 +** Write that value into register P2.
1.870 +*/
1.871 +case OP_Real: { /* same as TK_FLOAT, out2-prerelease */
1.872 + pOut->flags = MEM_Real;
1.873 + assert( !sqlite3IsNaN(*pOp->p4.pReal) );
1.874 + pOut->r = *pOp->p4.pReal;
1.875 + break;
1.876 +}
1.877 +
1.878 +/* Opcode: String8 * P2 * P4 *
1.879 +**
1.880 +** P4 points to a nul terminated UTF-8 string. This opcode is transformed
1.881 +** into an OP_String before it is executed for the first time.
1.882 +*/
1.883 +case OP_String8: { /* same as TK_STRING, out2-prerelease */
1.884 + assert( pOp->p4.z!=0 );
1.885 + pOp->opcode = OP_String;
1.886 + pOp->p1 = strlen(pOp->p4.z);
1.887 +
1.888 +#ifndef SQLITE_OMIT_UTF16
1.889 + if( encoding!=SQLITE_UTF8 ){
1.890 + sqlite3VdbeMemSetStr(pOut, pOp->p4.z, -1, SQLITE_UTF8, SQLITE_STATIC);
1.891 + if( SQLITE_OK!=sqlite3VdbeChangeEncoding(pOut, encoding) ) goto no_mem;
1.892 + if( SQLITE_OK!=sqlite3VdbeMemMakeWriteable(pOut) ) goto no_mem;
1.893 + pOut->zMalloc = 0;
1.894 + pOut->flags |= MEM_Static;
1.895 + pOut->flags &= ~MEM_Dyn;
1.896 + if( pOp->p4type==P4_DYNAMIC ){
1.897 + sqlite3DbFree(db, pOp->p4.z);
1.898 + }
1.899 + pOp->p4type = P4_DYNAMIC;
1.900 + pOp->p4.z = pOut->z;
1.901 + pOp->p1 = pOut->n;
1.902 + if( pOp->p1>db->aLimit[SQLITE_LIMIT_LENGTH] ){
1.903 + goto too_big;
1.904 + }
1.905 + UPDATE_MAX_BLOBSIZE(pOut);
1.906 + break;
1.907 + }
1.908 +#endif
1.909 + if( pOp->p1>db->aLimit[SQLITE_LIMIT_LENGTH] ){
1.910 + goto too_big;
1.911 + }
1.912 + /* Fall through to the next case, OP_String */
1.913 +}
1.914 +
1.915 +/* Opcode: String P1 P2 * P4 *
1.916 +**
1.917 +** The string value P4 of length P1 (bytes) is stored in register P2.
1.918 +*/
1.919 +case OP_String: { /* out2-prerelease */
1.920 + assert( pOp->p4.z!=0 );
1.921 + pOut->flags = MEM_Str|MEM_Static|MEM_Term;
1.922 + pOut->z = pOp->p4.z;
1.923 + pOut->n = pOp->p1;
1.924 + pOut->enc = encoding;
1.925 + UPDATE_MAX_BLOBSIZE(pOut);
1.926 + break;
1.927 +}
1.928 +
1.929 +/* Opcode: Null * P2 * * *
1.930 +**
1.931 +** Write a NULL into register P2.
1.932 +*/
1.933 +case OP_Null: { /* out2-prerelease */
1.934 + break;
1.935 +}
1.936 +
1.937 +
1.938 +#ifndef SQLITE_OMIT_BLOB_LITERAL
1.939 +/* Opcode: Blob P1 P2 * P4
1.940 +**
1.941 +** P4 points to a blob of data P1 bytes long. Store this
1.942 +** blob in register P2. This instruction is not coded directly
1.943 +** by the compiler. Instead, the compiler layer specifies
1.944 +** an OP_HexBlob opcode, with the hex string representation of
1.945 +** the blob as P4. This opcode is transformed to an OP_Blob
1.946 +** the first time it is executed.
1.947 +*/
1.948 +case OP_Blob: { /* out2-prerelease */
1.949 + assert( pOp->p1 <= SQLITE_MAX_LENGTH );
1.950 + sqlite3VdbeMemSetStr(pOut, pOp->p4.z, pOp->p1, 0, 0);
1.951 + pOut->enc = encoding;
1.952 + UPDATE_MAX_BLOBSIZE(pOut);
1.953 + break;
1.954 +}
1.955 +#endif /* SQLITE_OMIT_BLOB_LITERAL */
1.956 +
1.957 +/* Opcode: Variable P1 P2 * * *
1.958 +**
1.959 +** The value of variable P1 is written into register P2. A variable is
1.960 +** an unknown in the original SQL string as handed to sqlite3_compile().
1.961 +** Any occurrence of the '?' character in the original SQL is considered
1.962 +** a variable. Variables in the SQL string are number from left to
1.963 +** right beginning with 1. The values of variables are set using the
1.964 +** sqlite3_bind() API.
1.965 +*/
1.966 +case OP_Variable: { /* out2-prerelease */
1.967 + int j = pOp->p1 - 1;
1.968 + Mem *pVar;
1.969 + assert( j>=0 && j<p->nVar );
1.970 +
1.971 + pVar = &p->aVar[j];
1.972 + if( sqlite3VdbeMemTooBig(pVar) ){
1.973 + goto too_big;
1.974 + }
1.975 + sqlite3VdbeMemShallowCopy(pOut, &p->aVar[j], MEM_Static);
1.976 + UPDATE_MAX_BLOBSIZE(pOut);
1.977 + break;
1.978 +}
1.979 +
1.980 +/* Opcode: Move P1 P2 P3 * *
1.981 +**
1.982 +** Move the values in register P1..P1+P3-1 over into
1.983 +** registers P2..P2+P3-1. Registers P1..P1+P1-1 are
1.984 +** left holding a NULL. It is an error for register ranges
1.985 +** P1..P1+P3-1 and P2..P2+P3-1 to overlap.
1.986 +*/
1.987 +case OP_Move: {
1.988 + char *zMalloc;
1.989 + int n = pOp->p3;
1.990 + int p1 = pOp->p1;
1.991 + int p2 = pOp->p2;
1.992 + assert( n>0 );
1.993 + assert( p1>0 );
1.994 + assert( p1+n<p->nMem );
1.995 + pIn1 = &p->aMem[p1];
1.996 + assert( p2>0 );
1.997 + assert( p2+n<p->nMem );
1.998 + pOut = &p->aMem[p2];
1.999 + assert( p1+n<=p2 || p2+n<=p1 );
1.1000 + while( n-- ){
1.1001 + zMalloc = pOut->zMalloc;
1.1002 + pOut->zMalloc = 0;
1.1003 + sqlite3VdbeMemMove(pOut, pIn1);
1.1004 + pIn1->zMalloc = zMalloc;
1.1005 + REGISTER_TRACE(p2++, pOut);
1.1006 + pIn1++;
1.1007 + pOut++;
1.1008 + }
1.1009 + break;
1.1010 +}
1.1011 +
1.1012 +/* Opcode: Copy P1 P2 * * *
1.1013 +**
1.1014 +** Make a copy of register P1 into register P2.
1.1015 +**
1.1016 +** This instruction makes a deep copy of the value. A duplicate
1.1017 +** is made of any string or blob constant. See also OP_SCopy.
1.1018 +*/
1.1019 +case OP_Copy: {
1.1020 + assert( pOp->p1>0 );
1.1021 + assert( pOp->p1<=p->nMem );
1.1022 + pIn1 = &p->aMem[pOp->p1];
1.1023 + assert( pOp->p2>0 );
1.1024 + assert( pOp->p2<=p->nMem );
1.1025 + pOut = &p->aMem[pOp->p2];
1.1026 + assert( pOut!=pIn1 );
1.1027 + sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem);
1.1028 + Deephemeralize(pOut);
1.1029 + REGISTER_TRACE(pOp->p2, pOut);
1.1030 + break;
1.1031 +}
1.1032 +
1.1033 +/* Opcode: SCopy P1 P2 * * *
1.1034 +**
1.1035 +** Make a shallow copy of register P1 into register P2.
1.1036 +**
1.1037 +** This instruction makes a shallow copy of the value. If the value
1.1038 +** is a string or blob, then the copy is only a pointer to the
1.1039 +** original and hence if the original changes so will the copy.
1.1040 +** Worse, if the original is deallocated, the copy becomes invalid.
1.1041 +** Thus the program must guarantee that the original will not change
1.1042 +** during the lifetime of the copy. Use OP_Copy to make a complete
1.1043 +** copy.
1.1044 +*/
1.1045 +case OP_SCopy: {
1.1046 + assert( pOp->p1>0 );
1.1047 + assert( pOp->p1<=p->nMem );
1.1048 + pIn1 = &p->aMem[pOp->p1];
1.1049 + REGISTER_TRACE(pOp->p1, pIn1);
1.1050 + assert( pOp->p2>0 );
1.1051 + assert( pOp->p2<=p->nMem );
1.1052 + pOut = &p->aMem[pOp->p2];
1.1053 + assert( pOut!=pIn1 );
1.1054 + sqlite3VdbeMemShallowCopy(pOut, pIn1, MEM_Ephem);
1.1055 + REGISTER_TRACE(pOp->p2, pOut);
1.1056 + break;
1.1057 +}
1.1058 +
1.1059 +/* Opcode: ResultRow P1 P2 * * *
1.1060 +**
1.1061 +** The registers P1 through P1+P2-1 contain a single row of
1.1062 +** results. This opcode causes the sqlite3_step() call to terminate
1.1063 +** with an SQLITE_ROW return code and it sets up the sqlite3_stmt
1.1064 +** structure to provide access to the top P1 values as the result
1.1065 +** row.
1.1066 +*/
1.1067 +case OP_ResultRow: {
1.1068 + Mem *pMem;
1.1069 + int i;
1.1070 + assert( p->nResColumn==pOp->p2 );
1.1071 + assert( pOp->p1>0 );
1.1072 + assert( pOp->p1+pOp->p2<=p->nMem );
1.1073 +
1.1074 + /* Invalidate all ephemeral cursor row caches */
1.1075 + p->cacheCtr = (p->cacheCtr + 2)|1;
1.1076 +
1.1077 + /* Make sure the results of the current row are \000 terminated
1.1078 + ** and have an assigned type. The results are de-ephemeralized as
1.1079 + ** as side effect.
1.1080 + */
1.1081 + pMem = p->pResultSet = &p->aMem[pOp->p1];
1.1082 + for(i=0; i<pOp->p2; i++){
1.1083 + sqlite3VdbeMemNulTerminate(&pMem[i]);
1.1084 + storeTypeInfo(&pMem[i], encoding);
1.1085 + REGISTER_TRACE(pOp->p1+i, &pMem[i]);
1.1086 + }
1.1087 + if( db->mallocFailed ) goto no_mem;
1.1088 +
1.1089 + /* Return SQLITE_ROW
1.1090 + */
1.1091 + p->nCallback++;
1.1092 + p->pc = pc + 1;
1.1093 + rc = SQLITE_ROW;
1.1094 + goto vdbe_return;
1.1095 +}
1.1096 +
1.1097 +/* Opcode: Concat P1 P2 P3 * *
1.1098 +**
1.1099 +** Add the text in register P1 onto the end of the text in
1.1100 +** register P2 and store the result in register P3.
1.1101 +** If either the P1 or P2 text are NULL then store NULL in P3.
1.1102 +**
1.1103 +** P3 = P2 || P1
1.1104 +**
1.1105 +** It is illegal for P1 and P3 to be the same register. Sometimes,
1.1106 +** if P3 is the same register as P2, the implementation is able
1.1107 +** to avoid a memcpy().
1.1108 +*/
1.1109 +case OP_Concat: { /* same as TK_CONCAT, in1, in2, out3 */
1.1110 + i64 nByte;
1.1111 +
1.1112 + assert( pIn1!=pOut );
1.1113 + if( (pIn1->flags | pIn2->flags) & MEM_Null ){
1.1114 + sqlite3VdbeMemSetNull(pOut);
1.1115 + break;
1.1116 + }
1.1117 + ExpandBlob(pIn1);
1.1118 + Stringify(pIn1, encoding);
1.1119 + ExpandBlob(pIn2);
1.1120 + Stringify(pIn2, encoding);
1.1121 + nByte = pIn1->n + pIn2->n;
1.1122 + if( nByte>db->aLimit[SQLITE_LIMIT_LENGTH] ){
1.1123 + goto too_big;
1.1124 + }
1.1125 + MemSetTypeFlag(pOut, MEM_Str);
1.1126 + if( sqlite3VdbeMemGrow(pOut, nByte+2, pOut==pIn2) ){
1.1127 + goto no_mem;
1.1128 + }
1.1129 + if( pOut!=pIn2 ){
1.1130 + memcpy(pOut->z, pIn2->z, pIn2->n);
1.1131 + }
1.1132 + memcpy(&pOut->z[pIn2->n], pIn1->z, pIn1->n);
1.1133 + pOut->z[nByte] = 0;
1.1134 + pOut->z[nByte+1] = 0;
1.1135 + pOut->flags |= MEM_Term;
1.1136 + pOut->n = nByte;
1.1137 + pOut->enc = encoding;
1.1138 + UPDATE_MAX_BLOBSIZE(pOut);
1.1139 + break;
1.1140 +}
1.1141 +
1.1142 +/* Opcode: Add P1 P2 P3 * *
1.1143 +**
1.1144 +** Add the value in register P1 to the value in register P2
1.1145 +** and store the result in register P3.
1.1146 +** If either input is NULL, the result is NULL.
1.1147 +*/
1.1148 +/* Opcode: Multiply P1 P2 P3 * *
1.1149 +**
1.1150 +**
1.1151 +** Multiply the value in register P1 by the value in register P2
1.1152 +** and store the result in register P3.
1.1153 +** If either input is NULL, the result is NULL.
1.1154 +*/
1.1155 +/* Opcode: Subtract P1 P2 P3 * *
1.1156 +**
1.1157 +** Subtract the value in register P1 from the value in register P2
1.1158 +** and store the result in register P3.
1.1159 +** If either input is NULL, the result is NULL.
1.1160 +*/
1.1161 +/* Opcode: Divide P1 P2 P3 * *
1.1162 +**
1.1163 +** Divide the value in register P1 by the value in register P2
1.1164 +** and store the result in register P3. If the value in register P2
1.1165 +** is zero, then the result is NULL.
1.1166 +** If either input is NULL, the result is NULL.
1.1167 +*/
1.1168 +/* Opcode: Remainder P1 P2 P3 * *
1.1169 +**
1.1170 +** Compute the remainder after integer division of the value in
1.1171 +** register P1 by the value in register P2 and store the result in P3.
1.1172 +** If the value in register P2 is zero the result is NULL.
1.1173 +** If either operand is NULL, the result is NULL.
1.1174 +*/
1.1175 +case OP_Add: /* same as TK_PLUS, in1, in2, out3 */
1.1176 +case OP_Subtract: /* same as TK_MINUS, in1, in2, out3 */
1.1177 +case OP_Multiply: /* same as TK_STAR, in1, in2, out3 */
1.1178 +case OP_Divide: /* same as TK_SLASH, in1, in2, out3 */
1.1179 +case OP_Remainder: { /* same as TK_REM, in1, in2, out3 */
1.1180 + int flags;
1.1181 + applyNumericAffinity(pIn1);
1.1182 + applyNumericAffinity(pIn2);
1.1183 + flags = pIn1->flags | pIn2->flags;
1.1184 + if( (flags & MEM_Null)!=0 ) goto arithmetic_result_is_null;
1.1185 + if( (pIn1->flags & pIn2->flags & MEM_Int)==MEM_Int ){
1.1186 + i64 a, b;
1.1187 + a = pIn1->u.i;
1.1188 + b = pIn2->u.i;
1.1189 + switch( pOp->opcode ){
1.1190 + case OP_Add: b += a; break;
1.1191 + case OP_Subtract: b -= a; break;
1.1192 + case OP_Multiply: b *= a; break;
1.1193 + case OP_Divide: {
1.1194 + if( a==0 ) goto arithmetic_result_is_null;
1.1195 + /* Dividing the largest possible negative 64-bit integer (1<<63) by
1.1196 + ** -1 returns an integer too large to store in a 64-bit data-type. On
1.1197 + ** some architectures, the value overflows to (1<<63). On others,
1.1198 + ** a SIGFPE is issued. The following statement normalizes this
1.1199 + ** behavior so that all architectures behave as if integer
1.1200 + ** overflow occurred.
1.1201 + */
1.1202 + if( a==-1 && b==SMALLEST_INT64 ) a = 1;
1.1203 + b /= a;
1.1204 + break;
1.1205 + }
1.1206 + default: {
1.1207 + if( a==0 ) goto arithmetic_result_is_null;
1.1208 + if( a==-1 ) a = 1;
1.1209 + b %= a;
1.1210 + break;
1.1211 + }
1.1212 + }
1.1213 + pOut->u.i = b;
1.1214 + MemSetTypeFlag(pOut, MEM_Int);
1.1215 + }else{
1.1216 + double a, b;
1.1217 + a = sqlite3VdbeRealValue(pIn1);
1.1218 + b = sqlite3VdbeRealValue(pIn2);
1.1219 + switch( pOp->opcode ){
1.1220 + case OP_Add: b += a; break;
1.1221 + case OP_Subtract: b -= a; break;
1.1222 + case OP_Multiply: b *= a; break;
1.1223 + case OP_Divide: {
1.1224 + if( a==0.0 ) goto arithmetic_result_is_null;
1.1225 + b /= a;
1.1226 + break;
1.1227 + }
1.1228 + default: {
1.1229 + i64 ia = (i64)a;
1.1230 + i64 ib = (i64)b;
1.1231 + if( ia==0 ) goto arithmetic_result_is_null;
1.1232 + if( ia==-1 ) ia = 1;
1.1233 + b = ib % ia;
1.1234 + break;
1.1235 + }
1.1236 + }
1.1237 + if( sqlite3IsNaN(b) ){
1.1238 + goto arithmetic_result_is_null;
1.1239 + }
1.1240 + pOut->r = b;
1.1241 + MemSetTypeFlag(pOut, MEM_Real);
1.1242 + if( (flags & MEM_Real)==0 ){
1.1243 + sqlite3VdbeIntegerAffinity(pOut);
1.1244 + }
1.1245 + }
1.1246 + break;
1.1247 +
1.1248 +arithmetic_result_is_null:
1.1249 + sqlite3VdbeMemSetNull(pOut);
1.1250 + break;
1.1251 +}
1.1252 +
1.1253 +/* Opcode: CollSeq * * P4
1.1254 +**
1.1255 +** P4 is a pointer to a CollSeq struct. If the next call to a user function
1.1256 +** or aggregate calls sqlite3GetFuncCollSeq(), this collation sequence will
1.1257 +** be returned. This is used by the built-in min(), max() and nullif()
1.1258 +** functions.
1.1259 +**
1.1260 +** The interface used by the implementation of the aforementioned functions
1.1261 +** to retrieve the collation sequence set by this opcode is not available
1.1262 +** publicly, only to user functions defined in func.c.
1.1263 +*/
1.1264 +case OP_CollSeq: {
1.1265 + assert( pOp->p4type==P4_COLLSEQ );
1.1266 + break;
1.1267 +}
1.1268 +
1.1269 +/* Opcode: Function P1 P2 P3 P4 P5
1.1270 +**
1.1271 +** Invoke a user function (P4 is a pointer to a Function structure that
1.1272 +** defines the function) with P5 arguments taken from register P2 and
1.1273 +** successors. The result of the function is stored in register P3.
1.1274 +** Register P3 must not be one of the function inputs.
1.1275 +**
1.1276 +** P1 is a 32-bit bitmask indicating whether or not each argument to the
1.1277 +** function was determined to be constant at compile time. If the first
1.1278 +** argument was constant then bit 0 of P1 is set. This is used to determine
1.1279 +** whether meta data associated with a user function argument using the
1.1280 +** sqlite3_set_auxdata() API may be safely retained until the next
1.1281 +** invocation of this opcode.
1.1282 +**
1.1283 +** See also: AggStep and AggFinal
1.1284 +*/
1.1285 +case OP_Function: {
1.1286 + int i;
1.1287 + Mem *pArg;
1.1288 + sqlite3_context ctx;
1.1289 + sqlite3_value **apVal;
1.1290 + int n = pOp->p5;
1.1291 +
1.1292 + apVal = p->apArg;
1.1293 + assert( apVal || n==0 );
1.1294 +
1.1295 + assert( n==0 || (pOp->p2>0 && pOp->p2+n<=p->nMem) );
1.1296 + assert( pOp->p3<pOp->p2 || pOp->p3>=pOp->p2+n );
1.1297 + pArg = &p->aMem[pOp->p2];
1.1298 + for(i=0; i<n; i++, pArg++){
1.1299 + apVal[i] = pArg;
1.1300 + storeTypeInfo(pArg, encoding);
1.1301 + REGISTER_TRACE(pOp->p2, pArg);
1.1302 + }
1.1303 +
1.1304 + assert( pOp->p4type==P4_FUNCDEF || pOp->p4type==P4_VDBEFUNC );
1.1305 + if( pOp->p4type==P4_FUNCDEF ){
1.1306 + ctx.pFunc = pOp->p4.pFunc;
1.1307 + ctx.pVdbeFunc = 0;
1.1308 + }else{
1.1309 + ctx.pVdbeFunc = (VdbeFunc*)pOp->p4.pVdbeFunc;
1.1310 + ctx.pFunc = ctx.pVdbeFunc->pFunc;
1.1311 + }
1.1312 +
1.1313 + assert( pOp->p3>0 && pOp->p3<=p->nMem );
1.1314 + pOut = &p->aMem[pOp->p3];
1.1315 + ctx.s.flags = MEM_Null;
1.1316 + ctx.s.db = db;
1.1317 + ctx.s.xDel = 0;
1.1318 + ctx.s.zMalloc = 0;
1.1319 +
1.1320 + /* The output cell may already have a buffer allocated. Move
1.1321 + ** the pointer to ctx.s so in case the user-function can use
1.1322 + ** the already allocated buffer instead of allocating a new one.
1.1323 + */
1.1324 + sqlite3VdbeMemMove(&ctx.s, pOut);
1.1325 + MemSetTypeFlag(&ctx.s, MEM_Null);
1.1326 +
1.1327 + ctx.isError = 0;
1.1328 + if( ctx.pFunc->needCollSeq ){
1.1329 + assert( pOp>p->aOp );
1.1330 + assert( pOp[-1].p4type==P4_COLLSEQ );
1.1331 + assert( pOp[-1].opcode==OP_CollSeq );
1.1332 + ctx.pColl = pOp[-1].p4.pColl;
1.1333 + }
1.1334 + if( sqlite3SafetyOff(db) ) goto abort_due_to_misuse;
1.1335 + (*ctx.pFunc->xFunc)(&ctx, n, apVal);
1.1336 + if( sqlite3SafetyOn(db) ){
1.1337 + sqlite3VdbeMemRelease(&ctx.s);
1.1338 + goto abort_due_to_misuse;
1.1339 + }
1.1340 + if( db->mallocFailed ){
1.1341 + /* Even though a malloc() has failed, the implementation of the
1.1342 + ** user function may have called an sqlite3_result_XXX() function
1.1343 + ** to return a value. The following call releases any resources
1.1344 + ** associated with such a value.
1.1345 + **
1.1346 + ** Note: Maybe MemRelease() should be called if sqlite3SafetyOn()
1.1347 + ** fails also (the if(...) statement above). But if people are
1.1348 + ** misusing sqlite, they have bigger problems than a leaked value.
1.1349 + */
1.1350 + sqlite3VdbeMemRelease(&ctx.s);
1.1351 + goto no_mem;
1.1352 + }
1.1353 +
1.1354 + /* If any auxiliary data functions have been called by this user function,
1.1355 + ** immediately call the destructor for any non-static values.
1.1356 + */
1.1357 + if( ctx.pVdbeFunc ){
1.1358 + sqlite3VdbeDeleteAuxData(ctx.pVdbeFunc, pOp->p1);
1.1359 + pOp->p4.pVdbeFunc = ctx.pVdbeFunc;
1.1360 + pOp->p4type = P4_VDBEFUNC;
1.1361 + }
1.1362 +
1.1363 + /* If the function returned an error, throw an exception */
1.1364 + if( ctx.isError ){
1.1365 + sqlite3SetString(&p->zErrMsg, db, "%s", sqlite3_value_text(&ctx.s));
1.1366 + rc = ctx.isError;
1.1367 + }
1.1368 +
1.1369 + /* Copy the result of the function into register P3 */
1.1370 + sqlite3VdbeChangeEncoding(&ctx.s, encoding);
1.1371 + sqlite3VdbeMemMove(pOut, &ctx.s);
1.1372 + if( sqlite3VdbeMemTooBig(pOut) ){
1.1373 + goto too_big;
1.1374 + }
1.1375 + REGISTER_TRACE(pOp->p3, pOut);
1.1376 + UPDATE_MAX_BLOBSIZE(pOut);
1.1377 + break;
1.1378 +}
1.1379 +
1.1380 +/* Opcode: BitAnd P1 P2 P3 * *
1.1381 +**
1.1382 +** Take the bit-wise AND of the values in register P1 and P2 and
1.1383 +** store the result in register P3.
1.1384 +** If either input is NULL, the result is NULL.
1.1385 +*/
1.1386 +/* Opcode: BitOr P1 P2 P3 * *
1.1387 +**
1.1388 +** Take the bit-wise OR of the values in register P1 and P2 and
1.1389 +** store the result in register P3.
1.1390 +** If either input is NULL, the result is NULL.
1.1391 +*/
1.1392 +/* Opcode: ShiftLeft P1 P2 P3 * *
1.1393 +**
1.1394 +** Shift the integer value in register P2 to the left by the
1.1395 +** number of bits specified by the integer in regiser P1.
1.1396 +** Store the result in register P3.
1.1397 +** If either input is NULL, the result is NULL.
1.1398 +*/
1.1399 +/* Opcode: ShiftRight P1 P2 P3 * *
1.1400 +**
1.1401 +** Shift the integer value in register P2 to the right by the
1.1402 +** number of bits specified by the integer in register P1.
1.1403 +** Store the result in register P3.
1.1404 +** If either input is NULL, the result is NULL.
1.1405 +*/
1.1406 +case OP_BitAnd: /* same as TK_BITAND, in1, in2, out3 */
1.1407 +case OP_BitOr: /* same as TK_BITOR, in1, in2, out3 */
1.1408 +case OP_ShiftLeft: /* same as TK_LSHIFT, in1, in2, out3 */
1.1409 +case OP_ShiftRight: { /* same as TK_RSHIFT, in1, in2, out3 */
1.1410 + i64 a, b;
1.1411 +
1.1412 + if( (pIn1->flags | pIn2->flags) & MEM_Null ){
1.1413 + sqlite3VdbeMemSetNull(pOut);
1.1414 + break;
1.1415 + }
1.1416 + a = sqlite3VdbeIntValue(pIn2);
1.1417 + b = sqlite3VdbeIntValue(pIn1);
1.1418 + switch( pOp->opcode ){
1.1419 + case OP_BitAnd: a &= b; break;
1.1420 + case OP_BitOr: a |= b; break;
1.1421 + case OP_ShiftLeft: a <<= b; break;
1.1422 + default: assert( pOp->opcode==OP_ShiftRight );
1.1423 + a >>= b; break;
1.1424 + }
1.1425 + pOut->u.i = a;
1.1426 + MemSetTypeFlag(pOut, MEM_Int);
1.1427 + break;
1.1428 +}
1.1429 +
1.1430 +/* Opcode: AddImm P1 P2 * * *
1.1431 +**
1.1432 +** Add the constant P2 to the value in register P1.
1.1433 +** The result is always an integer.
1.1434 +**
1.1435 +** To force any register to be an integer, just add 0.
1.1436 +*/
1.1437 +case OP_AddImm: { /* in1 */
1.1438 + sqlite3VdbeMemIntegerify(pIn1);
1.1439 + pIn1->u.i += pOp->p2;
1.1440 + break;
1.1441 +}
1.1442 +
1.1443 +/* Opcode: ForceInt P1 P2 P3 * *
1.1444 +**
1.1445 +** Convert value in register P1 into an integer. If the value
1.1446 +** in P1 is not numeric (meaning that is is a NULL or a string that
1.1447 +** does not look like an integer or floating point number) then
1.1448 +** jump to P2. If the value in P1 is numeric then
1.1449 +** convert it into the least integer that is greater than or equal to its
1.1450 +** current value if P3==0, or to the least integer that is strictly
1.1451 +** greater than its current value if P3==1.
1.1452 +*/
1.1453 +case OP_ForceInt: { /* jump, in1 */
1.1454 + i64 v;
1.1455 + applyAffinity(pIn1, SQLITE_AFF_NUMERIC, encoding);
1.1456 + if( (pIn1->flags & (MEM_Int|MEM_Real))==0 ){
1.1457 + pc = pOp->p2 - 1;
1.1458 + break;
1.1459 + }
1.1460 + if( pIn1->flags & MEM_Int ){
1.1461 + v = pIn1->u.i + (pOp->p3!=0);
1.1462 + }else{
1.1463 + assert( pIn1->flags & MEM_Real );
1.1464 + v = (sqlite3_int64)pIn1->r;
1.1465 + if( pIn1->r>(double)v ) v++;
1.1466 + if( pOp->p3 && pIn1->r==(double)v ) v++;
1.1467 + }
1.1468 + pIn1->u.i = v;
1.1469 + MemSetTypeFlag(pIn1, MEM_Int);
1.1470 + break;
1.1471 +}
1.1472 +
1.1473 +/* Opcode: MustBeInt P1 P2 * * *
1.1474 +**
1.1475 +** Force the value in register P1 to be an integer. If the value
1.1476 +** in P1 is not an integer and cannot be converted into an integer
1.1477 +** without data loss, then jump immediately to P2, or if P2==0
1.1478 +** raise an SQLITE_MISMATCH exception.
1.1479 +*/
1.1480 +case OP_MustBeInt: { /* jump, in1 */
1.1481 + applyAffinity(pIn1, SQLITE_AFF_NUMERIC, encoding);
1.1482 + if( (pIn1->flags & MEM_Int)==0 ){
1.1483 + if( pOp->p2==0 ){
1.1484 + rc = SQLITE_MISMATCH;
1.1485 + goto abort_due_to_error;
1.1486 + }else{
1.1487 + pc = pOp->p2 - 1;
1.1488 + }
1.1489 + }else{
1.1490 + MemSetTypeFlag(pIn1, MEM_Int);
1.1491 + }
1.1492 + break;
1.1493 +}
1.1494 +
1.1495 +/* Opcode: RealAffinity P1 * * * *
1.1496 +**
1.1497 +** If register P1 holds an integer convert it to a real value.
1.1498 +**
1.1499 +** This opcode is used when extracting information from a column that
1.1500 +** has REAL affinity. Such column values may still be stored as
1.1501 +** integers, for space efficiency, but after extraction we want them
1.1502 +** to have only a real value.
1.1503 +*/
1.1504 +case OP_RealAffinity: { /* in1 */
1.1505 + if( pIn1->flags & MEM_Int ){
1.1506 + sqlite3VdbeMemRealify(pIn1);
1.1507 + }
1.1508 + break;
1.1509 +}
1.1510 +
1.1511 +#ifndef SQLITE_OMIT_CAST
1.1512 +/* Opcode: ToText P1 * * * *
1.1513 +**
1.1514 +** Force the value in register P1 to be text.
1.1515 +** If the value is numeric, convert it to a string using the
1.1516 +** equivalent of printf(). Blob values are unchanged and
1.1517 +** are afterwards simply interpreted as text.
1.1518 +**
1.1519 +** A NULL value is not changed by this routine. It remains NULL.
1.1520 +*/
1.1521 +case OP_ToText: { /* same as TK_TO_TEXT, in1 */
1.1522 + if( pIn1->flags & MEM_Null ) break;
1.1523 + assert( MEM_Str==(MEM_Blob>>3) );
1.1524 + pIn1->flags |= (pIn1->flags&MEM_Blob)>>3;
1.1525 + applyAffinity(pIn1, SQLITE_AFF_TEXT, encoding);
1.1526 + rc = ExpandBlob(pIn1);
1.1527 + assert( pIn1->flags & MEM_Str || db->mallocFailed );
1.1528 + pIn1->flags &= ~(MEM_Int|MEM_Real|MEM_Blob);
1.1529 + UPDATE_MAX_BLOBSIZE(pIn1);
1.1530 + break;
1.1531 +}
1.1532 +
1.1533 +/* Opcode: ToBlob P1 * * * *
1.1534 +**
1.1535 +** Force the value in register P1 to be a BLOB.
1.1536 +** If the value is numeric, convert it to a string first.
1.1537 +** Strings are simply reinterpreted as blobs with no change
1.1538 +** to the underlying data.
1.1539 +**
1.1540 +** A NULL value is not changed by this routine. It remains NULL.
1.1541 +*/
1.1542 +case OP_ToBlob: { /* same as TK_TO_BLOB, in1 */
1.1543 + if( pIn1->flags & MEM_Null ) break;
1.1544 + if( (pIn1->flags & MEM_Blob)==0 ){
1.1545 + applyAffinity(pIn1, SQLITE_AFF_TEXT, encoding);
1.1546 + assert( pIn1->flags & MEM_Str || db->mallocFailed );
1.1547 + }
1.1548 + MemSetTypeFlag(pIn1, MEM_Blob);
1.1549 + UPDATE_MAX_BLOBSIZE(pIn1);
1.1550 + break;
1.1551 +}
1.1552 +
1.1553 +/* Opcode: ToNumeric P1 * * * *
1.1554 +**
1.1555 +** Force the value in register P1 to be numeric (either an
1.1556 +** integer or a floating-point number.)
1.1557 +** If the value is text or blob, try to convert it to an using the
1.1558 +** equivalent of atoi() or atof() and store 0 if no such conversion
1.1559 +** is possible.
1.1560 +**
1.1561 +** A NULL value is not changed by this routine. It remains NULL.
1.1562 +*/
1.1563 +case OP_ToNumeric: { /* same as TK_TO_NUMERIC, in1 */
1.1564 + if( (pIn1->flags & (MEM_Null|MEM_Int|MEM_Real))==0 ){
1.1565 + sqlite3VdbeMemNumerify(pIn1);
1.1566 + }
1.1567 + break;
1.1568 +}
1.1569 +#endif /* SQLITE_OMIT_CAST */
1.1570 +
1.1571 +/* Opcode: ToInt P1 * * * *
1.1572 +**
1.1573 +** Force the value in register P1 be an integer. If
1.1574 +** The value is currently a real number, drop its fractional part.
1.1575 +** If the value is text or blob, try to convert it to an integer using the
1.1576 +** equivalent of atoi() and store 0 if no such conversion is possible.
1.1577 +**
1.1578 +** A NULL value is not changed by this routine. It remains NULL.
1.1579 +*/
1.1580 +case OP_ToInt: { /* same as TK_TO_INT, in1 */
1.1581 + if( (pIn1->flags & MEM_Null)==0 ){
1.1582 + sqlite3VdbeMemIntegerify(pIn1);
1.1583 + }
1.1584 + break;
1.1585 +}
1.1586 +
1.1587 +#ifndef SQLITE_OMIT_CAST
1.1588 +/* Opcode: ToReal P1 * * * *
1.1589 +**
1.1590 +** Force the value in register P1 to be a floating point number.
1.1591 +** If The value is currently an integer, convert it.
1.1592 +** If the value is text or blob, try to convert it to an integer using the
1.1593 +** equivalent of atoi() and store 0.0 if no such conversion is possible.
1.1594 +**
1.1595 +** A NULL value is not changed by this routine. It remains NULL.
1.1596 +*/
1.1597 +case OP_ToReal: { /* same as TK_TO_REAL, in1 */
1.1598 + if( (pIn1->flags & MEM_Null)==0 ){
1.1599 + sqlite3VdbeMemRealify(pIn1);
1.1600 + }
1.1601 + break;
1.1602 +}
1.1603 +#endif /* SQLITE_OMIT_CAST */
1.1604 +
1.1605 +/* Opcode: Lt P1 P2 P3 P4 P5
1.1606 +**
1.1607 +** Compare the values in register P1 and P3. If reg(P3)<reg(P1) then
1.1608 +** jump to address P2.
1.1609 +**
1.1610 +** If the SQLITE_JUMPIFNULL bit of P5 is set and either reg(P1) or
1.1611 +** reg(P3) is NULL then take the jump. If the SQLITE_JUMPIFNULL
1.1612 +** bit is clear then fall thru if either operand is NULL.
1.1613 +**
1.1614 +** The SQLITE_AFF_MASK portion of P5 must be an affinity character -
1.1615 +** SQLITE_AFF_TEXT, SQLITE_AFF_INTEGER, and so forth. An attempt is made
1.1616 +** to coerce both inputs according to this affinity before the
1.1617 +** comparison is made. If the SQLITE_AFF_MASK is 0x00, then numeric
1.1618 +** affinity is used. Note that the affinity conversions are stored
1.1619 +** back into the input registers P1 and P3. So this opcode can cause
1.1620 +** persistent changes to registers P1 and P3.
1.1621 +**
1.1622 +** Once any conversions have taken place, and neither value is NULL,
1.1623 +** the values are compared. If both values are blobs then memcmp() is
1.1624 +** used to determine the results of the comparison. If both values
1.1625 +** are text, then the appropriate collating function specified in
1.1626 +** P4 is used to do the comparison. If P4 is not specified then
1.1627 +** memcmp() is used to compare text string. If both values are
1.1628 +** numeric, then a numeric comparison is used. If the two values
1.1629 +** are of different types, then numbers are considered less than
1.1630 +** strings and strings are considered less than blobs.
1.1631 +**
1.1632 +** If the SQLITE_STOREP2 bit of P5 is set, then do not jump. Instead,
1.1633 +** store a boolean result (either 0, or 1, or NULL) in register P2.
1.1634 +*/
1.1635 +/* Opcode: Ne P1 P2 P3 P4 P5
1.1636 +**
1.1637 +** This works just like the Lt opcode except that the jump is taken if
1.1638 +** the operands in registers P1 and P3 are not equal. See the Lt opcode for
1.1639 +** additional information.
1.1640 +*/
1.1641 +/* Opcode: Eq P1 P2 P3 P4 P5
1.1642 +**
1.1643 +** This works just like the Lt opcode except that the jump is taken if
1.1644 +** the operands in registers P1 and P3 are equal.
1.1645 +** See the Lt opcode for additional information.
1.1646 +*/
1.1647 +/* Opcode: Le P1 P2 P3 P4 P5
1.1648 +**
1.1649 +** This works just like the Lt opcode except that the jump is taken if
1.1650 +** the content of register P3 is less than or equal to the content of
1.1651 +** register P1. See the Lt opcode for additional information.
1.1652 +*/
1.1653 +/* Opcode: Gt P1 P2 P3 P4 P5
1.1654 +**
1.1655 +** This works just like the Lt opcode except that the jump is taken if
1.1656 +** the content of register P3 is greater than the content of
1.1657 +** register P1. See the Lt opcode for additional information.
1.1658 +*/
1.1659 +/* Opcode: Ge P1 P2 P3 P4 P5
1.1660 +**
1.1661 +** This works just like the Lt opcode except that the jump is taken if
1.1662 +** the content of register P3 is greater than or equal to the content of
1.1663 +** register P1. See the Lt opcode for additional information.
1.1664 +*/
1.1665 +case OP_Eq: /* same as TK_EQ, jump, in1, in3 */
1.1666 +case OP_Ne: /* same as TK_NE, jump, in1, in3 */
1.1667 +case OP_Lt: /* same as TK_LT, jump, in1, in3 */
1.1668 +case OP_Le: /* same as TK_LE, jump, in1, in3 */
1.1669 +case OP_Gt: /* same as TK_GT, jump, in1, in3 */
1.1670 +case OP_Ge: { /* same as TK_GE, jump, in1, in3 */
1.1671 + int flags;
1.1672 + int res;
1.1673 + char affinity;
1.1674 +
1.1675 + flags = pIn1->flags|pIn3->flags;
1.1676 +
1.1677 + if( flags&MEM_Null ){
1.1678 + /* If either operand is NULL then the result is always NULL.
1.1679 + ** The jump is taken if the SQLITE_JUMPIFNULL bit is set.
1.1680 + */
1.1681 + if( pOp->p5 & SQLITE_STOREP2 ){
1.1682 + pOut = &p->aMem[pOp->p2];
1.1683 + MemSetTypeFlag(pOut, MEM_Null);
1.1684 + REGISTER_TRACE(pOp->p2, pOut);
1.1685 + }else if( pOp->p5 & SQLITE_JUMPIFNULL ){
1.1686 + pc = pOp->p2-1;
1.1687 + }
1.1688 + break;
1.1689 + }
1.1690 +
1.1691 + affinity = pOp->p5 & SQLITE_AFF_MASK;
1.1692 + if( affinity ){
1.1693 + applyAffinity(pIn1, affinity, encoding);
1.1694 + applyAffinity(pIn3, affinity, encoding);
1.1695 + }
1.1696 +
1.1697 + assert( pOp->p4type==P4_COLLSEQ || pOp->p4.pColl==0 );
1.1698 + ExpandBlob(pIn1);
1.1699 + ExpandBlob(pIn3);
1.1700 + res = sqlite3MemCompare(pIn3, pIn1, pOp->p4.pColl);
1.1701 + switch( pOp->opcode ){
1.1702 + case OP_Eq: res = res==0; break;
1.1703 + case OP_Ne: res = res!=0; break;
1.1704 + case OP_Lt: res = res<0; break;
1.1705 + case OP_Le: res = res<=0; break;
1.1706 + case OP_Gt: res = res>0; break;
1.1707 + default: res = res>=0; break;
1.1708 + }
1.1709 +
1.1710 + if( pOp->p5 & SQLITE_STOREP2 ){
1.1711 + pOut = &p->aMem[pOp->p2];
1.1712 + MemSetTypeFlag(pOut, MEM_Int);
1.1713 + pOut->u.i = res;
1.1714 + REGISTER_TRACE(pOp->p2, pOut);
1.1715 + }else if( res ){
1.1716 + pc = pOp->p2-1;
1.1717 + }
1.1718 + break;
1.1719 +}
1.1720 +
1.1721 +/* Opcode: Permutation * * * P4 *
1.1722 +**
1.1723 +** Set the permuation used by the OP_Compare operator to be the array
1.1724 +** of integers in P4.
1.1725 +**
1.1726 +** The permutation is only valid until the next OP_Permutation, OP_Compare,
1.1727 +** OP_Halt, or OP_ResultRow. Typically the OP_Permutation should occur
1.1728 +** immediately prior to the OP_Compare.
1.1729 +*/
1.1730 +case OP_Permutation: {
1.1731 + assert( pOp->p4type==P4_INTARRAY );
1.1732 + assert( pOp->p4.ai );
1.1733 + aPermute = pOp->p4.ai;
1.1734 + break;
1.1735 +}
1.1736 +
1.1737 +/* Opcode: Compare P1 P2 P3 P4 *
1.1738 +**
1.1739 +** Compare to vectors of registers in reg(P1)..reg(P1+P3-1) (all this
1.1740 +** one "A") and in reg(P2)..reg(P2+P3-1) ("B"). Save the result of
1.1741 +** the comparison for use by the next OP_Jump instruct.
1.1742 +**
1.1743 +** P4 is a KeyInfo structure that defines collating sequences and sort
1.1744 +** orders for the comparison. The permutation applies to registers
1.1745 +** only. The KeyInfo elements are used sequentially.
1.1746 +**
1.1747 +** The comparison is a sort comparison, so NULLs compare equal,
1.1748 +** NULLs are less than numbers, numbers are less than strings,
1.1749 +** and strings are less than blobs.
1.1750 +*/
1.1751 +case OP_Compare: {
1.1752 + int n = pOp->p3;
1.1753 + int i, p1, p2;
1.1754 + const KeyInfo *pKeyInfo = pOp->p4.pKeyInfo;
1.1755 + assert( n>0 );
1.1756 + assert( pKeyInfo!=0 );
1.1757 + p1 = pOp->p1;
1.1758 + assert( p1>0 && p1+n-1<p->nMem );
1.1759 + p2 = pOp->p2;
1.1760 + assert( p2>0 && p2+n-1<p->nMem );
1.1761 + for(i=0; i<n; i++){
1.1762 + int idx = aPermute ? aPermute[i] : i;
1.1763 + CollSeq *pColl; /* Collating sequence to use on this term */
1.1764 + int bRev; /* True for DESCENDING sort order */
1.1765 + REGISTER_TRACE(p1+idx, &p->aMem[p1+idx]);
1.1766 + REGISTER_TRACE(p2+idx, &p->aMem[p2+idx]);
1.1767 + assert( i<pKeyInfo->nField );
1.1768 + pColl = pKeyInfo->aColl[i];
1.1769 + bRev = pKeyInfo->aSortOrder[i];
1.1770 + iCompare = sqlite3MemCompare(&p->aMem[p1+idx], &p->aMem[p2+idx], pColl);
1.1771 + if( iCompare ){
1.1772 + if( bRev ) iCompare = -iCompare;
1.1773 + break;
1.1774 + }
1.1775 + }
1.1776 + aPermute = 0;
1.1777 + break;
1.1778 +}
1.1779 +
1.1780 +/* Opcode: Jump P1 P2 P3 * *
1.1781 +**
1.1782 +** Jump to the instruction at address P1, P2, or P3 depending on whether
1.1783 +** in the most recent OP_Compare instruction the P1 vector was less than
1.1784 +** equal to, or greater than the P2 vector, respectively.
1.1785 +*/
1.1786 +case OP_Jump: { /* jump */
1.1787 + if( iCompare<0 ){
1.1788 + pc = pOp->p1 - 1;
1.1789 + }else if( iCompare==0 ){
1.1790 + pc = pOp->p2 - 1;
1.1791 + }else{
1.1792 + pc = pOp->p3 - 1;
1.1793 + }
1.1794 + break;
1.1795 +}
1.1796 +
1.1797 +/* Opcode: And P1 P2 P3 * *
1.1798 +**
1.1799 +** Take the logical AND of the values in registers P1 and P2 and
1.1800 +** write the result into register P3.
1.1801 +**
1.1802 +** If either P1 or P2 is 0 (false) then the result is 0 even if
1.1803 +** the other input is NULL. A NULL and true or two NULLs give
1.1804 +** a NULL output.
1.1805 +*/
1.1806 +/* Opcode: Or P1 P2 P3 * *
1.1807 +**
1.1808 +** Take the logical OR of the values in register P1 and P2 and
1.1809 +** store the answer in register P3.
1.1810 +**
1.1811 +** If either P1 or P2 is nonzero (true) then the result is 1 (true)
1.1812 +** even if the other input is NULL. A NULL and false or two NULLs
1.1813 +** give a NULL output.
1.1814 +*/
1.1815 +case OP_And: /* same as TK_AND, in1, in2, out3 */
1.1816 +case OP_Or: { /* same as TK_OR, in1, in2, out3 */
1.1817 + int v1, v2; /* 0==FALSE, 1==TRUE, 2==UNKNOWN or NULL */
1.1818 +
1.1819 + if( pIn1->flags & MEM_Null ){
1.1820 + v1 = 2;
1.1821 + }else{
1.1822 + v1 = sqlite3VdbeIntValue(pIn1)!=0;
1.1823 + }
1.1824 + if( pIn2->flags & MEM_Null ){
1.1825 + v2 = 2;
1.1826 + }else{
1.1827 + v2 = sqlite3VdbeIntValue(pIn2)!=0;
1.1828 + }
1.1829 + if( pOp->opcode==OP_And ){
1.1830 + static const unsigned char and_logic[] = { 0, 0, 0, 0, 1, 2, 0, 2, 2 };
1.1831 + v1 = and_logic[v1*3+v2];
1.1832 + }else{
1.1833 + static const unsigned char or_logic[] = { 0, 1, 2, 1, 1, 1, 2, 1, 2 };
1.1834 + v1 = or_logic[v1*3+v2];
1.1835 + }
1.1836 + if( v1==2 ){
1.1837 + MemSetTypeFlag(pOut, MEM_Null);
1.1838 + }else{
1.1839 + pOut->u.i = v1;
1.1840 + MemSetTypeFlag(pOut, MEM_Int);
1.1841 + }
1.1842 + break;
1.1843 +}
1.1844 +
1.1845 +/* Opcode: Not P1 * * * *
1.1846 +**
1.1847 +** Interpret the value in register P1 as a boolean value. Replace it
1.1848 +** with its complement. If the value in register P1 is NULL its value
1.1849 +** is unchanged.
1.1850 +*/
1.1851 +case OP_Not: { /* same as TK_NOT, in1 */
1.1852 + if( pIn1->flags & MEM_Null ) break; /* Do nothing to NULLs */
1.1853 + sqlite3VdbeMemIntegerify(pIn1);
1.1854 + pIn1->u.i = !pIn1->u.i;
1.1855 + assert( pIn1->flags&MEM_Int );
1.1856 + break;
1.1857 +}
1.1858 +
1.1859 +/* Opcode: BitNot P1 * * * *
1.1860 +**
1.1861 +** Interpret the content of register P1 as an integer. Replace it
1.1862 +** with its ones-complement. If the value is originally NULL, leave
1.1863 +** it unchanged.
1.1864 +*/
1.1865 +case OP_BitNot: { /* same as TK_BITNOT, in1 */
1.1866 + if( pIn1->flags & MEM_Null ) break; /* Do nothing to NULLs */
1.1867 + sqlite3VdbeMemIntegerify(pIn1);
1.1868 + pIn1->u.i = ~pIn1->u.i;
1.1869 + assert( pIn1->flags&MEM_Int );
1.1870 + break;
1.1871 +}
1.1872 +
1.1873 +/* Opcode: If P1 P2 P3 * *
1.1874 +**
1.1875 +** Jump to P2 if the value in register P1 is true. The value is
1.1876 +** is considered true if it is numeric and non-zero. If the value
1.1877 +** in P1 is NULL then take the jump if P3 is true.
1.1878 +*/
1.1879 +/* Opcode: IfNot P1 P2 P3 * *
1.1880 +**
1.1881 +** Jump to P2 if the value in register P1 is False. The value is
1.1882 +** is considered true if it has a numeric value of zero. If the value
1.1883 +** in P1 is NULL then take the jump if P3 is true.
1.1884 +*/
1.1885 +case OP_If: /* jump, in1 */
1.1886 +case OP_IfNot: { /* jump, in1 */
1.1887 + int c;
1.1888 + if( pIn1->flags & MEM_Null ){
1.1889 + c = pOp->p3;
1.1890 + }else{
1.1891 +#ifdef SQLITE_OMIT_FLOATING_POINT
1.1892 + c = sqlite3VdbeIntValue(pIn1);
1.1893 +#else
1.1894 + c = sqlite3VdbeRealValue(pIn1)!=0.0;
1.1895 +#endif
1.1896 + if( pOp->opcode==OP_IfNot ) c = !c;
1.1897 + }
1.1898 + if( c ){
1.1899 + pc = pOp->p2-1;
1.1900 + }
1.1901 + break;
1.1902 +}
1.1903 +
1.1904 +/* Opcode: IsNull P1 P2 P3 * *
1.1905 +**
1.1906 +** Jump to P2 if the value in register P1 is NULL. If P3 is greater
1.1907 +** than zero, then check all values reg(P1), reg(P1+1),
1.1908 +** reg(P1+2), ..., reg(P1+P3-1).
1.1909 +*/
1.1910 +case OP_IsNull: { /* same as TK_ISNULL, jump, in1 */
1.1911 + int n = pOp->p3;
1.1912 + assert( pOp->p3==0 || pOp->p1>0 );
1.1913 + do{
1.1914 + if( (pIn1->flags & MEM_Null)!=0 ){
1.1915 + pc = pOp->p2 - 1;
1.1916 + break;
1.1917 + }
1.1918 + pIn1++;
1.1919 + }while( --n > 0 );
1.1920 + break;
1.1921 +}
1.1922 +
1.1923 +/* Opcode: NotNull P1 P2 * * *
1.1924 +**
1.1925 +** Jump to P2 if the value in register P1 is not NULL.
1.1926 +*/
1.1927 +case OP_NotNull: { /* same as TK_NOTNULL, jump, in1 */
1.1928 + if( (pIn1->flags & MEM_Null)==0 ){
1.1929 + pc = pOp->p2 - 1;
1.1930 + }
1.1931 + break;
1.1932 +}
1.1933 +
1.1934 +/* Opcode: SetNumColumns * P2 * * *
1.1935 +**
1.1936 +** This opcode sets the number of columns for the cursor opened by the
1.1937 +** following instruction to P2.
1.1938 +**
1.1939 +** An OP_SetNumColumns is only useful if it occurs immediately before
1.1940 +** one of the following opcodes:
1.1941 +**
1.1942 +** OpenRead
1.1943 +** OpenWrite
1.1944 +** OpenPseudo
1.1945 +**
1.1946 +** If the OP_Column opcode is to be executed on a cursor, then
1.1947 +** this opcode must be present immediately before the opcode that
1.1948 +** opens the cursor.
1.1949 +*/
1.1950 +case OP_SetNumColumns: {
1.1951 + break;
1.1952 +}
1.1953 +
1.1954 +/* Opcode: Column P1 P2 P3 P4 *
1.1955 +**
1.1956 +** Interpret the data that cursor P1 points to as a structure built using
1.1957 +** the MakeRecord instruction. (See the MakeRecord opcode for additional
1.1958 +** information about the format of the data.) Extract the P2-th column
1.1959 +** from this record. If there are less that (P2+1)
1.1960 +** values in the record, extract a NULL.
1.1961 +**
1.1962 +** The value extracted is stored in register P3.
1.1963 +**
1.1964 +** If the KeyAsData opcode has previously executed on this cursor, then the
1.1965 +** field might be extracted from the key rather than the data.
1.1966 +**
1.1967 +** If the column contains fewer than P2 fields, then extract a NULL. Or,
1.1968 +** if the P4 argument is a P4_MEM use the value of the P4 argument as
1.1969 +** the result.
1.1970 +*/
1.1971 +case OP_Column: {
1.1972 + u32 payloadSize; /* Number of bytes in the record */
1.1973 + int p1 = pOp->p1; /* P1 value of the opcode */
1.1974 + int p2 = pOp->p2; /* column number to retrieve */
1.1975 + Cursor *pC = 0; /* The VDBE cursor */
1.1976 + char *zRec; /* Pointer to complete record-data */
1.1977 + BtCursor *pCrsr; /* The BTree cursor */
1.1978 + u32 *aType; /* aType[i] holds the numeric type of the i-th column */
1.1979 + u32 *aOffset; /* aOffset[i] is offset to start of data for i-th column */
1.1980 + u32 nField; /* number of fields in the record */
1.1981 + int len; /* The length of the serialized data for the column */
1.1982 + int i; /* Loop counter */
1.1983 + char *zData; /* Part of the record being decoded */
1.1984 + Mem *pDest; /* Where to write the extracted value */
1.1985 + Mem sMem; /* For storing the record being decoded */
1.1986 +
1.1987 + sMem.flags = 0;
1.1988 + sMem.db = 0;
1.1989 + sMem.zMalloc = 0;
1.1990 + assert( p1<p->nCursor );
1.1991 + assert( pOp->p3>0 && pOp->p3<=p->nMem );
1.1992 + pDest = &p->aMem[pOp->p3];
1.1993 + MemSetTypeFlag(pDest, MEM_Null);
1.1994 +
1.1995 + /* This block sets the variable payloadSize to be the total number of
1.1996 + ** bytes in the record.
1.1997 + **
1.1998 + ** zRec is set to be the complete text of the record if it is available.
1.1999 + ** The complete record text is always available for pseudo-tables
1.2000 + ** If the record is stored in a cursor, the complete record text
1.2001 + ** might be available in the pC->aRow cache. Or it might not be.
1.2002 + ** If the data is unavailable, zRec is set to NULL.
1.2003 + **
1.2004 + ** We also compute the number of columns in the record. For cursors,
1.2005 + ** the number of columns is stored in the Cursor.nField element.
1.2006 + */
1.2007 + pC = p->apCsr[p1];
1.2008 + assert( pC!=0 );
1.2009 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.2010 + assert( pC->pVtabCursor==0 );
1.2011 +#endif
1.2012 + if( pC->pCursor!=0 ){
1.2013 + /* The record is stored in a B-Tree */
1.2014 + rc = sqlite3VdbeCursorMoveto(pC);
1.2015 + if( rc ) goto abort_due_to_error;
1.2016 + zRec = 0;
1.2017 + pCrsr = pC->pCursor;
1.2018 + if( pC->nullRow ){
1.2019 + payloadSize = 0;
1.2020 + }else if( pC->cacheStatus==p->cacheCtr ){
1.2021 + payloadSize = pC->payloadSize;
1.2022 + zRec = (char*)pC->aRow;
1.2023 + }else if( pC->isIndex ){
1.2024 + i64 payloadSize64;
1.2025 + sqlite3BtreeKeySize(pCrsr, &payloadSize64);
1.2026 + payloadSize = payloadSize64;
1.2027 + }else{
1.2028 + sqlite3BtreeDataSize(pCrsr, &payloadSize);
1.2029 + }
1.2030 + nField = pC->nField;
1.2031 + }else{
1.2032 + assert( pC->pseudoTable );
1.2033 + /* The record is the sole entry of a pseudo-table */
1.2034 + payloadSize = pC->nData;
1.2035 + zRec = pC->pData;
1.2036 + pC->cacheStatus = CACHE_STALE;
1.2037 + assert( payloadSize==0 || zRec!=0 );
1.2038 + nField = pC->nField;
1.2039 + pCrsr = 0;
1.2040 + }
1.2041 +
1.2042 + /* If payloadSize is 0, then just store a NULL */
1.2043 + if( payloadSize==0 ){
1.2044 + assert( pDest->flags&MEM_Null );
1.2045 + goto op_column_out;
1.2046 + }
1.2047 + if( payloadSize>db->aLimit[SQLITE_LIMIT_LENGTH] ){
1.2048 + goto too_big;
1.2049 + }
1.2050 +
1.2051 + assert( p2<nField );
1.2052 +
1.2053 + /* Read and parse the table header. Store the results of the parse
1.2054 + ** into the record header cache fields of the cursor.
1.2055 + */
1.2056 + aType = pC->aType;
1.2057 + if( pC->cacheStatus==p->cacheCtr ){
1.2058 + aOffset = pC->aOffset;
1.2059 + }else{
1.2060 + u8 *zIdx; /* Index into header */
1.2061 + u8 *zEndHdr; /* Pointer to first byte after the header */
1.2062 + u32 offset; /* Offset into the data */
1.2063 + int szHdrSz; /* Size of the header size field at start of record */
1.2064 + int avail; /* Number of bytes of available data */
1.2065 +
1.2066 + assert(aType);
1.2067 + pC->aOffset = aOffset = &aType[nField];
1.2068 + pC->payloadSize = payloadSize;
1.2069 + pC->cacheStatus = p->cacheCtr;
1.2070 +
1.2071 + /* Figure out how many bytes are in the header */
1.2072 + if( zRec ){
1.2073 + zData = zRec;
1.2074 + }else{
1.2075 + if( pC->isIndex ){
1.2076 + zData = (char*)sqlite3BtreeKeyFetch(pCrsr, &avail);
1.2077 + }else{
1.2078 + zData = (char*)sqlite3BtreeDataFetch(pCrsr, &avail);
1.2079 + }
1.2080 + /* If KeyFetch()/DataFetch() managed to get the entire payload,
1.2081 + ** save the payload in the pC->aRow cache. That will save us from
1.2082 + ** having to make additional calls to fetch the content portion of
1.2083 + ** the record.
1.2084 + */
1.2085 + if( avail>=payloadSize ){
1.2086 + zRec = zData;
1.2087 + pC->aRow = (u8*)zData;
1.2088 + }else{
1.2089 + pC->aRow = 0;
1.2090 + }
1.2091 + }
1.2092 + /* The following assert is true in all cases accept when
1.2093 + ** the database file has been corrupted externally.
1.2094 + ** assert( zRec!=0 || avail>=payloadSize || avail>=9 ); */
1.2095 + szHdrSz = getVarint32((u8*)zData, offset);
1.2096 +
1.2097 + /* The KeyFetch() or DataFetch() above are fast and will get the entire
1.2098 + ** record header in most cases. But they will fail to get the complete
1.2099 + ** record header if the record header does not fit on a single page
1.2100 + ** in the B-Tree. When that happens, use sqlite3VdbeMemFromBtree() to
1.2101 + ** acquire the complete header text.
1.2102 + */
1.2103 + if( !zRec && avail<offset ){
1.2104 + sMem.flags = 0;
1.2105 + sMem.db = 0;
1.2106 + rc = sqlite3VdbeMemFromBtree(pCrsr, 0, offset, pC->isIndex, &sMem);
1.2107 + if( rc!=SQLITE_OK ){
1.2108 + goto op_column_out;
1.2109 + }
1.2110 + zData = sMem.z;
1.2111 + }
1.2112 + zEndHdr = (u8 *)&zData[offset];
1.2113 + zIdx = (u8 *)&zData[szHdrSz];
1.2114 +
1.2115 + /* Scan the header and use it to fill in the aType[] and aOffset[]
1.2116 + ** arrays. aType[i] will contain the type integer for the i-th
1.2117 + ** column and aOffset[i] will contain the offset from the beginning
1.2118 + ** of the record to the start of the data for the i-th column
1.2119 + */
1.2120 + for(i=0; i<nField; i++){
1.2121 + if( zIdx<zEndHdr ){
1.2122 + aOffset[i] = offset;
1.2123 + zIdx += getVarint32(zIdx, aType[i]);
1.2124 + offset += sqlite3VdbeSerialTypeLen(aType[i]);
1.2125 + }else{
1.2126 + /* If i is less that nField, then there are less fields in this
1.2127 + ** record than SetNumColumns indicated there are columns in the
1.2128 + ** table. Set the offset for any extra columns not present in
1.2129 + ** the record to 0. This tells code below to store a NULL
1.2130 + ** instead of deserializing a value from the record.
1.2131 + */
1.2132 + aOffset[i] = 0;
1.2133 + }
1.2134 + }
1.2135 + sqlite3VdbeMemRelease(&sMem);
1.2136 + sMem.flags = MEM_Null;
1.2137 +
1.2138 + /* If we have read more header data than was contained in the header,
1.2139 + ** or if the end of the last field appears to be past the end of the
1.2140 + ** record, or if the end of the last field appears to be before the end
1.2141 + ** of the record (when all fields present), then we must be dealing
1.2142 + ** with a corrupt database.
1.2143 + */
1.2144 + if( zIdx>zEndHdr || offset>payloadSize
1.2145 + || (zIdx==zEndHdr && offset!=payloadSize) ){
1.2146 + rc = SQLITE_CORRUPT_BKPT;
1.2147 + goto op_column_out;
1.2148 + }
1.2149 + }
1.2150 +
1.2151 + /* Get the column information. If aOffset[p2] is non-zero, then
1.2152 + ** deserialize the value from the record. If aOffset[p2] is zero,
1.2153 + ** then there are not enough fields in the record to satisfy the
1.2154 + ** request. In this case, set the value NULL or to P4 if P4 is
1.2155 + ** a pointer to a Mem object.
1.2156 + */
1.2157 + if( aOffset[p2] ){
1.2158 + assert( rc==SQLITE_OK );
1.2159 + if( zRec ){
1.2160 + sqlite3VdbeMemReleaseExternal(pDest);
1.2161 + sqlite3VdbeSerialGet((u8 *)&zRec[aOffset[p2]], aType[p2], pDest);
1.2162 + }else{
1.2163 + len = sqlite3VdbeSerialTypeLen(aType[p2]);
1.2164 + sqlite3VdbeMemMove(&sMem, pDest);
1.2165 + rc = sqlite3VdbeMemFromBtree(pCrsr, aOffset[p2], len, pC->isIndex, &sMem);
1.2166 + if( rc!=SQLITE_OK ){
1.2167 + goto op_column_out;
1.2168 + }
1.2169 + zData = sMem.z;
1.2170 + sqlite3VdbeSerialGet((u8*)zData, aType[p2], pDest);
1.2171 + }
1.2172 + pDest->enc = encoding;
1.2173 + }else{
1.2174 + if( pOp->p4type==P4_MEM ){
1.2175 + sqlite3VdbeMemShallowCopy(pDest, pOp->p4.pMem, MEM_Static);
1.2176 + }else{
1.2177 + assert( pDest->flags&MEM_Null );
1.2178 + }
1.2179 + }
1.2180 +
1.2181 + /* If we dynamically allocated space to hold the data (in the
1.2182 + ** sqlite3VdbeMemFromBtree() call above) then transfer control of that
1.2183 + ** dynamically allocated space over to the pDest structure.
1.2184 + ** This prevents a memory copy.
1.2185 + */
1.2186 + if( sMem.zMalloc ){
1.2187 + assert( sMem.z==sMem.zMalloc );
1.2188 + assert( !(pDest->flags & MEM_Dyn) );
1.2189 + assert( !(pDest->flags & (MEM_Blob|MEM_Str)) || pDest->z==sMem.z );
1.2190 + pDest->flags &= ~(MEM_Ephem|MEM_Static);
1.2191 + pDest->flags |= MEM_Term;
1.2192 + pDest->z = sMem.z;
1.2193 + pDest->zMalloc = sMem.zMalloc;
1.2194 + }
1.2195 +
1.2196 + rc = sqlite3VdbeMemMakeWriteable(pDest);
1.2197 +
1.2198 +op_column_out:
1.2199 + UPDATE_MAX_BLOBSIZE(pDest);
1.2200 + REGISTER_TRACE(pOp->p3, pDest);
1.2201 + break;
1.2202 +}
1.2203 +
1.2204 +/* Opcode: Affinity P1 P2 * P4 *
1.2205 +**
1.2206 +** Apply affinities to a range of P2 registers starting with P1.
1.2207 +**
1.2208 +** P4 is a string that is P2 characters long. The nth character of the
1.2209 +** string indicates the column affinity that should be used for the nth
1.2210 +** memory cell in the range.
1.2211 +*/
1.2212 +case OP_Affinity: {
1.2213 + char *zAffinity = pOp->p4.z;
1.2214 + Mem *pData0 = &p->aMem[pOp->p1];
1.2215 + Mem *pLast = &pData0[pOp->p2-1];
1.2216 + Mem *pRec;
1.2217 +
1.2218 + for(pRec=pData0; pRec<=pLast; pRec++){
1.2219 + ExpandBlob(pRec);
1.2220 + applyAffinity(pRec, zAffinity[pRec-pData0], encoding);
1.2221 + }
1.2222 + break;
1.2223 +}
1.2224 +
1.2225 +/* Opcode: MakeRecord P1 P2 P3 P4 *
1.2226 +**
1.2227 +** Convert P2 registers beginning with P1 into a single entry
1.2228 +** suitable for use as a data record in a database table or as a key
1.2229 +** in an index. The details of the format are irrelevant as long as
1.2230 +** the OP_Column opcode can decode the record later.
1.2231 +** Refer to source code comments for the details of the record
1.2232 +** format.
1.2233 +**
1.2234 +** P4 may be a string that is P2 characters long. The nth character of the
1.2235 +** string indicates the column affinity that should be used for the nth
1.2236 +** field of the index key.
1.2237 +**
1.2238 +** The mapping from character to affinity is given by the SQLITE_AFF_
1.2239 +** macros defined in sqliteInt.h.
1.2240 +**
1.2241 +** If P4 is NULL then all index fields have the affinity NONE.
1.2242 +*/
1.2243 +case OP_MakeRecord: {
1.2244 + /* Assuming the record contains N fields, the record format looks
1.2245 + ** like this:
1.2246 + **
1.2247 + ** ------------------------------------------------------------------------
1.2248 + ** | hdr-size | type 0 | type 1 | ... | type N-1 | data0 | ... | data N-1 |
1.2249 + ** ------------------------------------------------------------------------
1.2250 + **
1.2251 + ** Data(0) is taken from register P1. Data(1) comes from register P1+1
1.2252 + ** and so froth.
1.2253 + **
1.2254 + ** Each type field is a varint representing the serial type of the
1.2255 + ** corresponding data element (see sqlite3VdbeSerialType()). The
1.2256 + ** hdr-size field is also a varint which is the offset from the beginning
1.2257 + ** of the record to data0.
1.2258 + */
1.2259 + u8 *zNewRecord; /* A buffer to hold the data for the new record */
1.2260 + Mem *pRec; /* The new record */
1.2261 + u64 nData = 0; /* Number of bytes of data space */
1.2262 + int nHdr = 0; /* Number of bytes of header space */
1.2263 + u64 nByte = 0; /* Data space required for this record */
1.2264 + int nZero = 0; /* Number of zero bytes at the end of the record */
1.2265 + int nVarint; /* Number of bytes in a varint */
1.2266 + u32 serial_type; /* Type field */
1.2267 + Mem *pData0; /* First field to be combined into the record */
1.2268 + Mem *pLast; /* Last field of the record */
1.2269 + int nField; /* Number of fields in the record */
1.2270 + char *zAffinity; /* The affinity string for the record */
1.2271 + int file_format; /* File format to use for encoding */
1.2272 + int i; /* Space used in zNewRecord[] */
1.2273 +
1.2274 + nField = pOp->p1;
1.2275 + zAffinity = pOp->p4.z;
1.2276 + assert( nField>0 && pOp->p2>0 && pOp->p2+nField<=p->nMem );
1.2277 + pData0 = &p->aMem[nField];
1.2278 + nField = pOp->p2;
1.2279 + pLast = &pData0[nField-1];
1.2280 + file_format = p->minWriteFileFormat;
1.2281 +
1.2282 + /* Loop through the elements that will make up the record to figure
1.2283 + ** out how much space is required for the new record.
1.2284 + */
1.2285 + for(pRec=pData0; pRec<=pLast; pRec++){
1.2286 + int len;
1.2287 + if( zAffinity ){
1.2288 + applyAffinity(pRec, zAffinity[pRec-pData0], encoding);
1.2289 + }
1.2290 + if( pRec->flags&MEM_Zero && pRec->n>0 ){
1.2291 + sqlite3VdbeMemExpandBlob(pRec);
1.2292 + }
1.2293 + serial_type = sqlite3VdbeSerialType(pRec, file_format);
1.2294 + len = sqlite3VdbeSerialTypeLen(serial_type);
1.2295 + nData += len;
1.2296 + nHdr += sqlite3VarintLen(serial_type);
1.2297 + if( pRec->flags & MEM_Zero ){
1.2298 + /* Only pure zero-filled BLOBs can be input to this Opcode.
1.2299 + ** We do not allow blobs with a prefix and a zero-filled tail. */
1.2300 + nZero += pRec->u.i;
1.2301 + }else if( len ){
1.2302 + nZero = 0;
1.2303 + }
1.2304 + }
1.2305 +
1.2306 + /* Add the initial header varint and total the size */
1.2307 + nHdr += nVarint = sqlite3VarintLen(nHdr);
1.2308 + if( nVarint<sqlite3VarintLen(nHdr) ){
1.2309 + nHdr++;
1.2310 + }
1.2311 + nByte = nHdr+nData-nZero;
1.2312 + if( nByte>db->aLimit[SQLITE_LIMIT_LENGTH] ){
1.2313 + goto too_big;
1.2314 + }
1.2315 +
1.2316 + /* Make sure the output register has a buffer large enough to store
1.2317 + ** the new record. The output register (pOp->p3) is not allowed to
1.2318 + ** be one of the input registers (because the following call to
1.2319 + ** sqlite3VdbeMemGrow() could clobber the value before it is used).
1.2320 + */
1.2321 + assert( pOp->p3<pOp->p1 || pOp->p3>=pOp->p1+pOp->p2 );
1.2322 + pOut = &p->aMem[pOp->p3];
1.2323 + if( sqlite3VdbeMemGrow(pOut, nByte, 0) ){
1.2324 + goto no_mem;
1.2325 + }
1.2326 + zNewRecord = (u8 *)pOut->z;
1.2327 +
1.2328 + /* Write the record */
1.2329 + i = putVarint32(zNewRecord, nHdr);
1.2330 + for(pRec=pData0; pRec<=pLast; pRec++){
1.2331 + serial_type = sqlite3VdbeSerialType(pRec, file_format);
1.2332 + i += putVarint32(&zNewRecord[i], serial_type); /* serial type */
1.2333 + }
1.2334 + for(pRec=pData0; pRec<=pLast; pRec++){ /* serial data */
1.2335 + i += sqlite3VdbeSerialPut(&zNewRecord[i], nByte-i, pRec, file_format);
1.2336 + }
1.2337 + assert( i==nByte );
1.2338 +
1.2339 + assert( pOp->p3>0 && pOp->p3<=p->nMem );
1.2340 + pOut->n = nByte;
1.2341 + pOut->flags = MEM_Blob | MEM_Dyn;
1.2342 + pOut->xDel = 0;
1.2343 + if( nZero ){
1.2344 + pOut->u.i = nZero;
1.2345 + pOut->flags |= MEM_Zero;
1.2346 + }
1.2347 + pOut->enc = SQLITE_UTF8; /* In case the blob is ever converted to text */
1.2348 + REGISTER_TRACE(pOp->p3, pOut);
1.2349 + UPDATE_MAX_BLOBSIZE(pOut);
1.2350 + break;
1.2351 +}
1.2352 +
1.2353 +/* Opcode: Statement P1 * * * *
1.2354 +**
1.2355 +** Begin an individual statement transaction which is part of a larger
1.2356 +** transaction. This is needed so that the statement
1.2357 +** can be rolled back after an error without having to roll back the
1.2358 +** entire transaction. The statement transaction will automatically
1.2359 +** commit when the VDBE halts.
1.2360 +**
1.2361 +** If the database connection is currently in autocommit mode (that
1.2362 +** is to say, if it is in between BEGIN and COMMIT)
1.2363 +** and if there are no other active statements on the same database
1.2364 +** connection, then this operation is a no-op. No statement transaction
1.2365 +** is needed since any error can use the normal ROLLBACK process to
1.2366 +** undo changes.
1.2367 +**
1.2368 +** If a statement transaction is started, then a statement journal file
1.2369 +** will be allocated and initialized.
1.2370 +**
1.2371 +** The statement is begun on the database file with index P1. The main
1.2372 +** database file has an index of 0 and the file used for temporary tables
1.2373 +** has an index of 1.
1.2374 +*/
1.2375 +case OP_Statement: {
1.2376 + if( db->autoCommit==0 || db->activeVdbeCnt>1 ){
1.2377 + int i = pOp->p1;
1.2378 + Btree *pBt;
1.2379 + assert( i>=0 && i<db->nDb );
1.2380 + assert( db->aDb[i].pBt!=0 );
1.2381 + pBt = db->aDb[i].pBt;
1.2382 + assert( sqlite3BtreeIsInTrans(pBt) );
1.2383 + assert( (p->btreeMask & (1<<i))!=0 );
1.2384 + if( !sqlite3BtreeIsInStmt(pBt) ){
1.2385 + rc = sqlite3BtreeBeginStmt(pBt);
1.2386 + p->openedStatement = 1;
1.2387 + }
1.2388 + }
1.2389 + break;
1.2390 +}
1.2391 +
1.2392 +/* Opcode: AutoCommit P1 P2 * * *
1.2393 +**
1.2394 +** Set the database auto-commit flag to P1 (1 or 0). If P2 is true, roll
1.2395 +** back any currently active btree transactions. If there are any active
1.2396 +** VMs (apart from this one), then the COMMIT or ROLLBACK statement fails.
1.2397 +**
1.2398 +** This instruction causes the VM to halt.
1.2399 +*/
1.2400 +case OP_AutoCommit: {
1.2401 + u8 i = pOp->p1;
1.2402 + u8 rollback = pOp->p2;
1.2403 +
1.2404 + assert( i==1 || i==0 );
1.2405 + assert( i==1 || rollback==0 );
1.2406 +
1.2407 + assert( db->activeVdbeCnt>0 ); /* At least this one VM is active */
1.2408 +
1.2409 + if( db->activeVdbeCnt>1 && i && !db->autoCommit ){
1.2410 + /* If this instruction implements a COMMIT or ROLLBACK, other VMs are
1.2411 + ** still running, and a transaction is active, return an error indicating
1.2412 + ** that the other VMs must complete first.
1.2413 + */
1.2414 + sqlite3SetString(&p->zErrMsg, db, "cannot %s transaction - "
1.2415 + "SQL statements in progress",
1.2416 + rollback ? "rollback" : "commit");
1.2417 + rc = SQLITE_ERROR;
1.2418 + }else if( i!=db->autoCommit ){
1.2419 + if( pOp->p2 ){
1.2420 + assert( i==1 );
1.2421 + sqlite3RollbackAll(db);
1.2422 + db->autoCommit = 1;
1.2423 + }else{
1.2424 + db->autoCommit = i;
1.2425 + if( sqlite3VdbeHalt(p)==SQLITE_BUSY ){
1.2426 + p->pc = pc;
1.2427 + db->autoCommit = 1-i;
1.2428 + p->rc = rc = SQLITE_BUSY;
1.2429 + goto vdbe_return;
1.2430 + }
1.2431 + }
1.2432 + if( p->rc==SQLITE_OK ){
1.2433 + rc = SQLITE_DONE;
1.2434 + }else{
1.2435 + rc = SQLITE_ERROR;
1.2436 + }
1.2437 + goto vdbe_return;
1.2438 + }else{
1.2439 + sqlite3SetString(&p->zErrMsg, db,
1.2440 + (!i)?"cannot start a transaction within a transaction":(
1.2441 + (rollback)?"cannot rollback - no transaction is active":
1.2442 + "cannot commit - no transaction is active"));
1.2443 +
1.2444 + rc = SQLITE_ERROR;
1.2445 + }
1.2446 + break;
1.2447 +}
1.2448 +
1.2449 +/* Opcode: Transaction P1 P2 * * *
1.2450 +**
1.2451 +** Begin a transaction. The transaction ends when a Commit or Rollback
1.2452 +** opcode is encountered. Depending on the ON CONFLICT setting, the
1.2453 +** transaction might also be rolled back if an error is encountered.
1.2454 +**
1.2455 +** P1 is the index of the database file on which the transaction is
1.2456 +** started. Index 0 is the main database file and index 1 is the
1.2457 +** file used for temporary tables. Indices of 2 or more are used for
1.2458 +** attached databases.
1.2459 +**
1.2460 +** If P2 is non-zero, then a write-transaction is started. A RESERVED lock is
1.2461 +** obtained on the database file when a write-transaction is started. No
1.2462 +** other process can start another write transaction while this transaction is
1.2463 +** underway. Starting a write transaction also creates a rollback journal. A
1.2464 +** write transaction must be started before any changes can be made to the
1.2465 +** database. If P2 is 2 or greater then an EXCLUSIVE lock is also obtained
1.2466 +** on the file.
1.2467 +**
1.2468 +** If P2 is zero, then a read-lock is obtained on the database file.
1.2469 +*/
1.2470 +case OP_Transaction: {
1.2471 + int i = pOp->p1;
1.2472 + Btree *pBt;
1.2473 +
1.2474 + assert( i>=0 && i<db->nDb );
1.2475 + assert( (p->btreeMask & (1<<i))!=0 );
1.2476 + pBt = db->aDb[i].pBt;
1.2477 +
1.2478 + if( pBt ){
1.2479 + rc = sqlite3BtreeBeginTrans(pBt, pOp->p2);
1.2480 + if( rc==SQLITE_BUSY ){
1.2481 + p->pc = pc;
1.2482 + p->rc = rc = SQLITE_BUSY;
1.2483 + goto vdbe_return;
1.2484 + }
1.2485 + if( rc!=SQLITE_OK && rc!=SQLITE_READONLY /* && rc!=SQLITE_BUSY */ ){
1.2486 + goto abort_due_to_error;
1.2487 + }
1.2488 + }
1.2489 + break;
1.2490 +}
1.2491 +
1.2492 +/* Opcode: ReadCookie P1 P2 P3 * *
1.2493 +**
1.2494 +** Read cookie number P3 from database P1 and write it into register P2.
1.2495 +** P3==0 is the schema version. P3==1 is the database format.
1.2496 +** P3==2 is the recommended pager cache size, and so forth. P1==0 is
1.2497 +** the main database file and P1==1 is the database file used to store
1.2498 +** temporary tables.
1.2499 +**
1.2500 +** If P1 is negative, then this is a request to read the size of a
1.2501 +** databases free-list. P3 must be set to 1 in this case. The actual
1.2502 +** database accessed is ((P1+1)*-1). For example, a P1 parameter of -1
1.2503 +** corresponds to database 0 ("main"), a P1 of -2 is database 1 ("temp").
1.2504 +**
1.2505 +** There must be a read-lock on the database (either a transaction
1.2506 +** must be started or there must be an open cursor) before
1.2507 +** executing this instruction.
1.2508 +*/
1.2509 +case OP_ReadCookie: { /* out2-prerelease */
1.2510 + int iMeta;
1.2511 + int iDb = pOp->p1;
1.2512 + int iCookie = pOp->p3;
1.2513 +
1.2514 + assert( pOp->p3<SQLITE_N_BTREE_META );
1.2515 + if( iDb<0 ){
1.2516 + iDb = (-1*(iDb+1));
1.2517 + iCookie *= -1;
1.2518 + }
1.2519 + assert( iDb>=0 && iDb<db->nDb );
1.2520 + assert( db->aDb[iDb].pBt!=0 );
1.2521 + assert( (p->btreeMask & (1<<iDb))!=0 );
1.2522 + /* The indexing of meta values at the schema layer is off by one from
1.2523 + ** the indexing in the btree layer. The btree considers meta[0] to
1.2524 + ** be the number of free pages in the database (a read-only value)
1.2525 + ** and meta[1] to be the schema cookie. The schema layer considers
1.2526 + ** meta[1] to be the schema cookie. So we have to shift the index
1.2527 + ** by one in the following statement.
1.2528 + */
1.2529 + rc = sqlite3BtreeGetMeta(db->aDb[iDb].pBt, 1 + iCookie, (u32 *)&iMeta);
1.2530 + pOut->u.i = iMeta;
1.2531 + MemSetTypeFlag(pOut, MEM_Int);
1.2532 + break;
1.2533 +}
1.2534 +
1.2535 +/* Opcode: SetCookie P1 P2 P3 * *
1.2536 +**
1.2537 +** Write the content of register P3 (interpreted as an integer)
1.2538 +** into cookie number P2 of database P1.
1.2539 +** P2==0 is the schema version. P2==1 is the database format.
1.2540 +** P2==2 is the recommended pager cache size, and so forth. P1==0 is
1.2541 +** the main database file and P1==1 is the database file used to store
1.2542 +** temporary tables.
1.2543 +**
1.2544 +** A transaction must be started before executing this opcode.
1.2545 +*/
1.2546 +case OP_SetCookie: { /* in3 */
1.2547 + Db *pDb;
1.2548 + assert( pOp->p2<SQLITE_N_BTREE_META );
1.2549 + assert( pOp->p1>=0 && pOp->p1<db->nDb );
1.2550 + assert( (p->btreeMask & (1<<pOp->p1))!=0 );
1.2551 + pDb = &db->aDb[pOp->p1];
1.2552 + assert( pDb->pBt!=0 );
1.2553 + sqlite3VdbeMemIntegerify(pIn3);
1.2554 + /* See note about index shifting on OP_ReadCookie */
1.2555 + rc = sqlite3BtreeUpdateMeta(pDb->pBt, 1+pOp->p2, (int)pIn3->u.i);
1.2556 + if( pOp->p2==0 ){
1.2557 + /* When the schema cookie changes, record the new cookie internally */
1.2558 + pDb->pSchema->schema_cookie = pIn3->u.i;
1.2559 + db->flags |= SQLITE_InternChanges;
1.2560 + }else if( pOp->p2==1 ){
1.2561 + /* Record changes in the file format */
1.2562 + pDb->pSchema->file_format = pIn3->u.i;
1.2563 + }
1.2564 + if( pOp->p1==1 ){
1.2565 + /* Invalidate all prepared statements whenever the TEMP database
1.2566 + ** schema is changed. Ticket #1644 */
1.2567 + sqlite3ExpirePreparedStatements(db);
1.2568 + }
1.2569 + break;
1.2570 +}
1.2571 +
1.2572 +/* Opcode: VerifyCookie P1 P2 *
1.2573 +**
1.2574 +** Check the value of global database parameter number 0 (the
1.2575 +** schema version) and make sure it is equal to P2.
1.2576 +** P1 is the database number which is 0 for the main database file
1.2577 +** and 1 for the file holding temporary tables and some higher number
1.2578 +** for auxiliary databases.
1.2579 +**
1.2580 +** The cookie changes its value whenever the database schema changes.
1.2581 +** This operation is used to detect when that the cookie has changed
1.2582 +** and that the current process needs to reread the schema.
1.2583 +**
1.2584 +** Either a transaction needs to have been started or an OP_Open needs
1.2585 +** to be executed (to establish a read lock) before this opcode is
1.2586 +** invoked.
1.2587 +*/
1.2588 +case OP_VerifyCookie: {
1.2589 + int iMeta;
1.2590 + Btree *pBt;
1.2591 + assert( pOp->p1>=0 && pOp->p1<db->nDb );
1.2592 + assert( (p->btreeMask & (1<<pOp->p1))!=0 );
1.2593 + pBt = db->aDb[pOp->p1].pBt;
1.2594 + if( pBt ){
1.2595 + rc = sqlite3BtreeGetMeta(pBt, 1, (u32 *)&iMeta);
1.2596 + }else{
1.2597 + rc = SQLITE_OK;
1.2598 + iMeta = 0;
1.2599 + }
1.2600 + if( rc==SQLITE_OK && iMeta!=pOp->p2 ){
1.2601 + sqlite3DbFree(db, p->zErrMsg);
1.2602 + p->zErrMsg = sqlite3DbStrDup(db, "database schema has changed");
1.2603 + /* If the schema-cookie from the database file matches the cookie
1.2604 + ** stored with the in-memory representation of the schema, do
1.2605 + ** not reload the schema from the database file.
1.2606 + **
1.2607 + ** If virtual-tables are in use, this is not just an optimization.
1.2608 + ** Often, v-tables store their data in other SQLite tables, which
1.2609 + ** are queried from within xNext() and other v-table methods using
1.2610 + ** prepared queries. If such a query is out-of-date, we do not want to
1.2611 + ** discard the database schema, as the user code implementing the
1.2612 + ** v-table would have to be ready for the sqlite3_vtab structure itself
1.2613 + ** to be invalidated whenever sqlite3_step() is called from within
1.2614 + ** a v-table method.
1.2615 + */
1.2616 + if( db->aDb[pOp->p1].pSchema->schema_cookie!=iMeta ){
1.2617 + sqlite3ResetInternalSchema(db, pOp->p1);
1.2618 + }
1.2619 +
1.2620 + sqlite3ExpirePreparedStatements(db);
1.2621 + rc = SQLITE_SCHEMA;
1.2622 + }
1.2623 + break;
1.2624 +}
1.2625 +
1.2626 +/* Opcode: OpenRead P1 P2 P3 P4 P5
1.2627 +**
1.2628 +** Open a read-only cursor for the database table whose root page is
1.2629 +** P2 in a database file. The database file is determined by P3.
1.2630 +** P3==0 means the main database, P3==1 means the database used for
1.2631 +** temporary tables, and P3>1 means used the corresponding attached
1.2632 +** database. Give the new cursor an identifier of P1. The P1
1.2633 +** values need not be contiguous but all P1 values should be small integers.
1.2634 +** It is an error for P1 to be negative.
1.2635 +**
1.2636 +** If P5!=0 then use the content of register P2 as the root page, not
1.2637 +** the value of P2 itself.
1.2638 +**
1.2639 +** There will be a read lock on the database whenever there is an
1.2640 +** open cursor. If the database was unlocked prior to this instruction
1.2641 +** then a read lock is acquired as part of this instruction. A read
1.2642 +** lock allows other processes to read the database but prohibits
1.2643 +** any other process from modifying the database. The read lock is
1.2644 +** released when all cursors are closed. If this instruction attempts
1.2645 +** to get a read lock but fails, the script terminates with an
1.2646 +** SQLITE_BUSY error code.
1.2647 +**
1.2648 +** The P4 value is a pointer to a KeyInfo structure that defines the
1.2649 +** content and collating sequence of indices. P4 is NULL for cursors
1.2650 +** that are not pointing to indices.
1.2651 +**
1.2652 +** See also OpenWrite.
1.2653 +*/
1.2654 +/* Opcode: OpenWrite P1 P2 P3 P4 P5
1.2655 +**
1.2656 +** Open a read/write cursor named P1 on the table or index whose root
1.2657 +** page is P2. Or if P5!=0 use the content of register P2 to find the
1.2658 +** root page.
1.2659 +**
1.2660 +** The P4 value is a pointer to a KeyInfo structure that defines the
1.2661 +** content and collating sequence of indices. P4 is NULL for cursors
1.2662 +** that are not pointing to indices.
1.2663 +**
1.2664 +** This instruction works just like OpenRead except that it opens the cursor
1.2665 +** in read/write mode. For a given table, there can be one or more read-only
1.2666 +** cursors or a single read/write cursor but not both.
1.2667 +**
1.2668 +** See also OpenRead.
1.2669 +*/
1.2670 +case OP_OpenRead:
1.2671 +case OP_OpenWrite: {
1.2672 + int i = pOp->p1;
1.2673 + int p2 = pOp->p2;
1.2674 + int iDb = pOp->p3;
1.2675 + int wrFlag;
1.2676 + Btree *pX;
1.2677 + Cursor *pCur;
1.2678 + Db *pDb;
1.2679 +
1.2680 + assert( iDb>=0 && iDb<db->nDb );
1.2681 + assert( (p->btreeMask & (1<<iDb))!=0 );
1.2682 + pDb = &db->aDb[iDb];
1.2683 + pX = pDb->pBt;
1.2684 + assert( pX!=0 );
1.2685 + if( pOp->opcode==OP_OpenWrite ){
1.2686 + wrFlag = 1;
1.2687 + if( pDb->pSchema->file_format < p->minWriteFileFormat ){
1.2688 + p->minWriteFileFormat = pDb->pSchema->file_format;
1.2689 + }
1.2690 + }else{
1.2691 + wrFlag = 0;
1.2692 + }
1.2693 + if( pOp->p5 ){
1.2694 + assert( p2>0 );
1.2695 + assert( p2<=p->nMem );
1.2696 + pIn2 = &p->aMem[p2];
1.2697 + sqlite3VdbeMemIntegerify(pIn2);
1.2698 + p2 = pIn2->u.i;
1.2699 + assert( p2>=2 );
1.2700 + }
1.2701 + assert( i>=0 );
1.2702 + pCur = allocateCursor(p, i, &pOp[-1], iDb, 1);
1.2703 + if( pCur==0 ) goto no_mem;
1.2704 + pCur->nullRow = 1;
1.2705 + rc = sqlite3BtreeCursor(pX, p2, wrFlag, pOp->p4.p, pCur->pCursor);
1.2706 + if( pOp->p4type==P4_KEYINFO ){
1.2707 + pCur->pKeyInfo = pOp->p4.pKeyInfo;
1.2708 + pCur->pKeyInfo->enc = ENC(p->db);
1.2709 + }else{
1.2710 + pCur->pKeyInfo = 0;
1.2711 + }
1.2712 + switch( rc ){
1.2713 + case SQLITE_BUSY: {
1.2714 + p->pc = pc;
1.2715 + p->rc = rc = SQLITE_BUSY;
1.2716 + goto vdbe_return;
1.2717 + }
1.2718 + case SQLITE_OK: {
1.2719 + int flags = sqlite3BtreeFlags(pCur->pCursor);
1.2720 + /* Sanity checking. Only the lower four bits of the flags byte should
1.2721 + ** be used. Bit 3 (mask 0x08) is unpredictable. The lower 3 bits
1.2722 + ** (mask 0x07) should be either 5 (intkey+leafdata for tables) or
1.2723 + ** 2 (zerodata for indices). If these conditions are not met it can
1.2724 + ** only mean that we are dealing with a corrupt database file
1.2725 + */
1.2726 + if( (flags & 0xf0)!=0 || ((flags & 0x07)!=5 && (flags & 0x07)!=2) ){
1.2727 + rc = SQLITE_CORRUPT_BKPT;
1.2728 + goto abort_due_to_error;
1.2729 + }
1.2730 + pCur->isTable = (flags & BTREE_INTKEY)!=0;
1.2731 + pCur->isIndex = (flags & BTREE_ZERODATA)!=0;
1.2732 + /* If P4==0 it means we are expected to open a table. If P4!=0 then
1.2733 + ** we expect to be opening an index. If this is not what happened,
1.2734 + ** then the database is corrupt
1.2735 + */
1.2736 + if( (pCur->isTable && pOp->p4type==P4_KEYINFO)
1.2737 + || (pCur->isIndex && pOp->p4type!=P4_KEYINFO) ){
1.2738 + rc = SQLITE_CORRUPT_BKPT;
1.2739 + goto abort_due_to_error;
1.2740 + }
1.2741 + break;
1.2742 + }
1.2743 + case SQLITE_EMPTY: {
1.2744 + pCur->isTable = pOp->p4type!=P4_KEYINFO;
1.2745 + pCur->isIndex = !pCur->isTable;
1.2746 + pCur->pCursor = 0;
1.2747 + rc = SQLITE_OK;
1.2748 + break;
1.2749 + }
1.2750 + default: {
1.2751 + goto abort_due_to_error;
1.2752 + }
1.2753 + }
1.2754 + break;
1.2755 +}
1.2756 +
1.2757 +/* Opcode: OpenEphemeral P1 P2 * P4 *
1.2758 +**
1.2759 +** Open a new cursor P1 to a transient table.
1.2760 +** The cursor is always opened read/write even if
1.2761 +** the main database is read-only. The transient or virtual
1.2762 +** table is deleted automatically when the cursor is closed.
1.2763 +**
1.2764 +** P2 is the number of columns in the virtual table.
1.2765 +** The cursor points to a BTree table if P4==0 and to a BTree index
1.2766 +** if P4 is not 0. If P4 is not NULL, it points to a KeyInfo structure
1.2767 +** that defines the format of keys in the index.
1.2768 +**
1.2769 +** This opcode was once called OpenTemp. But that created
1.2770 +** confusion because the term "temp table", might refer either
1.2771 +** to a TEMP table at the SQL level, or to a table opened by
1.2772 +** this opcode. Then this opcode was call OpenVirtual. But
1.2773 +** that created confusion with the whole virtual-table idea.
1.2774 +*/
1.2775 +case OP_OpenEphemeral: {
1.2776 + int i = pOp->p1;
1.2777 + Cursor *pCx;
1.2778 + static const int openFlags =
1.2779 + SQLITE_OPEN_READWRITE |
1.2780 + SQLITE_OPEN_CREATE |
1.2781 + SQLITE_OPEN_EXCLUSIVE |
1.2782 + SQLITE_OPEN_DELETEONCLOSE |
1.2783 + SQLITE_OPEN_TRANSIENT_DB;
1.2784 +
1.2785 + assert( i>=0 );
1.2786 + pCx = allocateCursor(p, i, pOp, -1, 1);
1.2787 + if( pCx==0 ) goto no_mem;
1.2788 + pCx->nullRow = 1;
1.2789 + rc = sqlite3BtreeFactory(db, 0, 1, SQLITE_DEFAULT_TEMP_CACHE_SIZE, openFlags,
1.2790 + &pCx->pBt);
1.2791 + if( rc==SQLITE_OK ){
1.2792 + rc = sqlite3BtreeBeginTrans(pCx->pBt, 1);
1.2793 + }
1.2794 + if( rc==SQLITE_OK ){
1.2795 + /* If a transient index is required, create it by calling
1.2796 + ** sqlite3BtreeCreateTable() with the BTREE_ZERODATA flag before
1.2797 + ** opening it. If a transient table is required, just use the
1.2798 + ** automatically created table with root-page 1 (an INTKEY table).
1.2799 + */
1.2800 + if( pOp->p4.pKeyInfo ){
1.2801 + int pgno;
1.2802 + assert( pOp->p4type==P4_KEYINFO );
1.2803 + rc = sqlite3BtreeCreateTable(pCx->pBt, &pgno, BTREE_ZERODATA);
1.2804 + if( rc==SQLITE_OK ){
1.2805 + assert( pgno==MASTER_ROOT+1 );
1.2806 + rc = sqlite3BtreeCursor(pCx->pBt, pgno, 1,
1.2807 + (KeyInfo*)pOp->p4.z, pCx->pCursor);
1.2808 + pCx->pKeyInfo = pOp->p4.pKeyInfo;
1.2809 + pCx->pKeyInfo->enc = ENC(p->db);
1.2810 + }
1.2811 + pCx->isTable = 0;
1.2812 + }else{
1.2813 + rc = sqlite3BtreeCursor(pCx->pBt, MASTER_ROOT, 1, 0, pCx->pCursor);
1.2814 + pCx->isTable = 1;
1.2815 + }
1.2816 + }
1.2817 + pCx->isIndex = !pCx->isTable;
1.2818 + break;
1.2819 +}
1.2820 +
1.2821 +/* Opcode: OpenPseudo P1 P2 * * *
1.2822 +**
1.2823 +** Open a new cursor that points to a fake table that contains a single
1.2824 +** row of data. Any attempt to write a second row of data causes the
1.2825 +** first row to be deleted. All data is deleted when the cursor is
1.2826 +** closed.
1.2827 +**
1.2828 +** A pseudo-table created by this opcode is useful for holding the
1.2829 +** NEW or OLD tables in a trigger. Also used to hold the a single
1.2830 +** row output from the sorter so that the row can be decomposed into
1.2831 +** individual columns using the OP_Column opcode.
1.2832 +**
1.2833 +** When OP_Insert is executed to insert a row in to the pseudo table,
1.2834 +** the pseudo-table cursor may or may not make it's own copy of the
1.2835 +** original row data. If P2 is 0, then the pseudo-table will copy the
1.2836 +** original row data. Otherwise, a pointer to the original memory cell
1.2837 +** is stored. In this case, the vdbe program must ensure that the
1.2838 +** memory cell containing the row data is not overwritten until the
1.2839 +** pseudo table is closed (or a new row is inserted into it).
1.2840 +*/
1.2841 +case OP_OpenPseudo: {
1.2842 + int i = pOp->p1;
1.2843 + Cursor *pCx;
1.2844 + assert( i>=0 );
1.2845 + pCx = allocateCursor(p, i, &pOp[-1], -1, 0);
1.2846 + if( pCx==0 ) goto no_mem;
1.2847 + pCx->nullRow = 1;
1.2848 + pCx->pseudoTable = 1;
1.2849 + pCx->ephemPseudoTable = pOp->p2;
1.2850 + pCx->isTable = 1;
1.2851 + pCx->isIndex = 0;
1.2852 + break;
1.2853 +}
1.2854 +
1.2855 +/* Opcode: Close P1 * * * *
1.2856 +**
1.2857 +** Close a cursor previously opened as P1. If P1 is not
1.2858 +** currently open, this instruction is a no-op.
1.2859 +*/
1.2860 +case OP_Close: {
1.2861 + int i = pOp->p1;
1.2862 + assert( i>=0 && i<p->nCursor );
1.2863 + sqlite3VdbeFreeCursor(p, p->apCsr[i]);
1.2864 + p->apCsr[i] = 0;
1.2865 + break;
1.2866 +}
1.2867 +
1.2868 +/* Opcode: MoveGe P1 P2 P3 P4 *
1.2869 +**
1.2870 +** If cursor P1 refers to an SQL table (B-Tree that uses integer keys),
1.2871 +** use the integer value in register P3 as a key. If cursor P1 refers
1.2872 +** to an SQL index, then P3 is the first in an array of P4 registers
1.2873 +** that are used as an unpacked index key.
1.2874 +**
1.2875 +** Reposition cursor P1 so that it points to the smallest entry that
1.2876 +** is greater than or equal to the key value. If there are no records
1.2877 +** greater than or equal to the key and P2 is not zero, then jump to P2.
1.2878 +**
1.2879 +** A special feature of this opcode (and different from the
1.2880 +** related OP_MoveGt, OP_MoveLt, and OP_MoveLe) is that if P2 is
1.2881 +** zero and P1 is an SQL table (a b-tree with integer keys) then
1.2882 +** the seek is deferred until it is actually needed. It might be
1.2883 +** the case that the cursor is never accessed. By deferring the
1.2884 +** seek, we avoid unnecessary seeks.
1.2885 +**
1.2886 +** See also: Found, NotFound, Distinct, MoveLt, MoveGt, MoveLe
1.2887 +*/
1.2888 +/* Opcode: MoveGt P1 P2 P3 P4 *
1.2889 +**
1.2890 +** If cursor P1 refers to an SQL table (B-Tree that uses integer keys),
1.2891 +** use the integer value in register P3 as a key. If cursor P1 refers
1.2892 +** to an SQL index, then P3 is the first in an array of P4 registers
1.2893 +** that are used as an unpacked index key.
1.2894 +**
1.2895 +** Reposition cursor P1 so that it points to the smallest entry that
1.2896 +** is greater than the key value. If there are no records greater than
1.2897 +** the key and P2 is not zero, then jump to P2.
1.2898 +**
1.2899 +** See also: Found, NotFound, Distinct, MoveLt, MoveGe, MoveLe
1.2900 +*/
1.2901 +/* Opcode: MoveLt P1 P2 P3 P4 *
1.2902 +**
1.2903 +** If cursor P1 refers to an SQL table (B-Tree that uses integer keys),
1.2904 +** use the integer value in register P3 as a key. If cursor P1 refers
1.2905 +** to an SQL index, then P3 is the first in an array of P4 registers
1.2906 +** that are used as an unpacked index key.
1.2907 +**
1.2908 +** Reposition cursor P1 so that it points to the largest entry that
1.2909 +** is less than the key value. If there are no records less than
1.2910 +** the key and P2 is not zero, then jump to P2.
1.2911 +**
1.2912 +** See also: Found, NotFound, Distinct, MoveGt, MoveGe, MoveLe
1.2913 +*/
1.2914 +/* Opcode: MoveLe P1 P2 P3 P4 *
1.2915 +**
1.2916 +** If cursor P1 refers to an SQL table (B-Tree that uses integer keys),
1.2917 +** use the integer value in register P3 as a key. If cursor P1 refers
1.2918 +** to an SQL index, then P3 is the first in an array of P4 registers
1.2919 +** that are used as an unpacked index key.
1.2920 +**
1.2921 +** Reposition cursor P1 so that it points to the largest entry that
1.2922 +** is less than or equal to the key value. If there are no records
1.2923 +** less than or equal to the key and P2 is not zero, then jump to P2.
1.2924 +**
1.2925 +** See also: Found, NotFound, Distinct, MoveGt, MoveGe, MoveLt
1.2926 +*/
1.2927 +case OP_MoveLt: /* jump, in3 */
1.2928 +case OP_MoveLe: /* jump, in3 */
1.2929 +case OP_MoveGe: /* jump, in3 */
1.2930 +case OP_MoveGt: { /* jump, in3 */
1.2931 + int i = pOp->p1;
1.2932 + Cursor *pC;
1.2933 +
1.2934 + assert( i>=0 && i<p->nCursor );
1.2935 + pC = p->apCsr[i];
1.2936 + assert( pC!=0 );
1.2937 + if( pC->pCursor!=0 ){
1.2938 + int res, oc;
1.2939 + oc = pOp->opcode;
1.2940 + pC->nullRow = 0;
1.2941 + if( pC->isTable ){
1.2942 + i64 iKey = sqlite3VdbeIntValue(pIn3);
1.2943 + if( pOp->p2==0 ){
1.2944 + assert( pOp->opcode==OP_MoveGe );
1.2945 + pC->movetoTarget = iKey;
1.2946 + pC->rowidIsValid = 0;
1.2947 + pC->deferredMoveto = 1;
1.2948 + break;
1.2949 + }
1.2950 + rc = sqlite3BtreeMovetoUnpacked(pC->pCursor, 0, (u64)iKey, 0, &res);
1.2951 + if( rc!=SQLITE_OK ){
1.2952 + goto abort_due_to_error;
1.2953 + }
1.2954 + pC->lastRowid = iKey;
1.2955 + pC->rowidIsValid = res==0;
1.2956 + }else{
1.2957 + UnpackedRecord r;
1.2958 + int nField = pOp->p4.i;
1.2959 + assert( pOp->p4type==P4_INT32 );
1.2960 + assert( nField>0 );
1.2961 + r.pKeyInfo = pC->pKeyInfo;
1.2962 + r.nField = nField;
1.2963 + if( oc==OP_MoveGt || oc==OP_MoveLe ){
1.2964 + r.flags = UNPACKED_INCRKEY;
1.2965 + }else{
1.2966 + r.flags = 0;
1.2967 + }
1.2968 + r.aMem = &p->aMem[pOp->p3];
1.2969 + rc = sqlite3BtreeMovetoUnpacked(pC->pCursor, &r, 0, 0, &res);
1.2970 + if( rc!=SQLITE_OK ){
1.2971 + goto abort_due_to_error;
1.2972 + }
1.2973 + pC->rowidIsValid = 0;
1.2974 + }
1.2975 + pC->deferredMoveto = 0;
1.2976 + pC->cacheStatus = CACHE_STALE;
1.2977 +#ifdef SQLITE_TEST
1.2978 + sqlite3_search_count++;
1.2979 +#endif
1.2980 + if( oc==OP_MoveGe || oc==OP_MoveGt ){
1.2981 + if( res<0 ){
1.2982 + rc = sqlite3BtreeNext(pC->pCursor, &res);
1.2983 + if( rc!=SQLITE_OK ) goto abort_due_to_error;
1.2984 + pC->rowidIsValid = 0;
1.2985 + }else{
1.2986 + res = 0;
1.2987 + }
1.2988 + }else{
1.2989 + assert( oc==OP_MoveLt || oc==OP_MoveLe );
1.2990 + if( res>=0 ){
1.2991 + rc = sqlite3BtreePrevious(pC->pCursor, &res);
1.2992 + if( rc!=SQLITE_OK ) goto abort_due_to_error;
1.2993 + pC->rowidIsValid = 0;
1.2994 + }else{
1.2995 + /* res might be negative because the table is empty. Check to
1.2996 + ** see if this is the case.
1.2997 + */
1.2998 + res = sqlite3BtreeEof(pC->pCursor);
1.2999 + }
1.3000 + }
1.3001 + assert( pOp->p2>0 );
1.3002 + if( res ){
1.3003 + pc = pOp->p2 - 1;
1.3004 + }
1.3005 + }else if( !pC->pseudoTable ){
1.3006 + /* This happens when attempting to open the sqlite3_master table
1.3007 + ** for read access returns SQLITE_EMPTY. In this case always
1.3008 + ** take the jump (since there are no records in the table).
1.3009 + */
1.3010 + pc = pOp->p2 - 1;
1.3011 + }
1.3012 + break;
1.3013 +}
1.3014 +
1.3015 +/* Opcode: Found P1 P2 P3 * *
1.3016 +**
1.3017 +** Register P3 holds a blob constructed by MakeRecord. P1 is an index.
1.3018 +** If an entry that matches the value in register p3 exists in P1 then
1.3019 +** jump to P2. If the P3 value does not match any entry in P1
1.3020 +** then fall thru. The P1 cursor is left pointing at the matching entry
1.3021 +** if it exists.
1.3022 +**
1.3023 +** This instruction is used to implement the IN operator where the
1.3024 +** left-hand side is a SELECT statement. P1 may be a true index, or it
1.3025 +** may be a temporary index that holds the results of the SELECT
1.3026 +** statement. This instruction is also used to implement the
1.3027 +** DISTINCT keyword in SELECT statements.
1.3028 +**
1.3029 +** This instruction checks if index P1 contains a record for which
1.3030 +** the first N serialized values exactly match the N serialized values
1.3031 +** in the record in register P3, where N is the total number of values in
1.3032 +** the P3 record (the P3 record is a prefix of the P1 record).
1.3033 +**
1.3034 +** See also: NotFound, IsUnique, NotExists
1.3035 +*/
1.3036 +/* Opcode: NotFound P1 P2 P3 * *
1.3037 +**
1.3038 +** Register P3 holds a blob constructed by MakeRecord. P1 is
1.3039 +** an index. If no entry exists in P1 that matches the blob then jump
1.3040 +** to P2. If an entry does existing, fall through. The cursor is left
1.3041 +** pointing to the entry that matches.
1.3042 +**
1.3043 +** See also: Found, NotExists, IsUnique
1.3044 +*/
1.3045 +case OP_NotFound: /* jump, in3 */
1.3046 +case OP_Found: { /* jump, in3 */
1.3047 + int i = pOp->p1;
1.3048 + int alreadyExists = 0;
1.3049 + Cursor *pC;
1.3050 + assert( i>=0 && i<p->nCursor );
1.3051 + assert( p->apCsr[i]!=0 );
1.3052 + if( (pC = p->apCsr[i])->pCursor!=0 ){
1.3053 + int res;
1.3054 + UnpackedRecord *pIdxKey;
1.3055 +
1.3056 + assert( pC->isTable==0 );
1.3057 + assert( pIn3->flags & MEM_Blob );
1.3058 + pIdxKey = sqlite3VdbeRecordUnpack(pC->pKeyInfo, pIn3->n, pIn3->z,
1.3059 + aTempRec, sizeof(aTempRec));
1.3060 + if( pIdxKey==0 ){
1.3061 + goto no_mem;
1.3062 + }
1.3063 + if( pOp->opcode==OP_Found ){
1.3064 + pIdxKey->flags |= UNPACKED_PREFIX_MATCH;
1.3065 + }
1.3066 + rc = sqlite3BtreeMovetoUnpacked(pC->pCursor, pIdxKey, 0, 0, &res);
1.3067 + sqlite3VdbeDeleteUnpackedRecord(pIdxKey);
1.3068 + if( rc!=SQLITE_OK ){
1.3069 + break;
1.3070 + }
1.3071 + alreadyExists = (res==0);
1.3072 + pC->deferredMoveto = 0;
1.3073 + pC->cacheStatus = CACHE_STALE;
1.3074 + }
1.3075 + if( pOp->opcode==OP_Found ){
1.3076 + if( alreadyExists ) pc = pOp->p2 - 1;
1.3077 + }else{
1.3078 + if( !alreadyExists ) pc = pOp->p2 - 1;
1.3079 + }
1.3080 + break;
1.3081 +}
1.3082 +
1.3083 +/* Opcode: IsUnique P1 P2 P3 P4 *
1.3084 +**
1.3085 +** The P3 register contains an integer record number. Call this
1.3086 +** record number R. The P4 register contains an index key created
1.3087 +** using MakeRecord. Call it K.
1.3088 +**
1.3089 +** P1 is an index. So it has no data and its key consists of a
1.3090 +** record generated by OP_MakeRecord where the last field is the
1.3091 +** rowid of the entry that the index refers to.
1.3092 +**
1.3093 +** This instruction asks if there is an entry in P1 where the
1.3094 +** fields matches K but the rowid is different from R.
1.3095 +** If there is no such entry, then there is an immediate
1.3096 +** jump to P2. If any entry does exist where the index string
1.3097 +** matches K but the record number is not R, then the record
1.3098 +** number for that entry is written into P3 and control
1.3099 +** falls through to the next instruction.
1.3100 +**
1.3101 +** See also: NotFound, NotExists, Found
1.3102 +*/
1.3103 +case OP_IsUnique: { /* jump, in3 */
1.3104 + int i = pOp->p1;
1.3105 + Cursor *pCx;
1.3106 + BtCursor *pCrsr;
1.3107 + Mem *pK;
1.3108 + i64 R;
1.3109 +
1.3110 + /* Pop the value R off the top of the stack
1.3111 + */
1.3112 + assert( pOp->p4type==P4_INT32 );
1.3113 + assert( pOp->p4.i>0 && pOp->p4.i<=p->nMem );
1.3114 + pK = &p->aMem[pOp->p4.i];
1.3115 + sqlite3VdbeMemIntegerify(pIn3);
1.3116 + R = pIn3->u.i;
1.3117 + assert( i>=0 && i<p->nCursor );
1.3118 + pCx = p->apCsr[i];
1.3119 + assert( pCx!=0 );
1.3120 + pCrsr = pCx->pCursor;
1.3121 + if( pCrsr!=0 ){
1.3122 + int res;
1.3123 + i64 v; /* The record number that matches K */
1.3124 + UnpackedRecord *pIdxKey; /* Unpacked version of P4 */
1.3125 +
1.3126 + /* Make sure K is a string and make zKey point to K
1.3127 + */
1.3128 + assert( pK->flags & MEM_Blob );
1.3129 + pIdxKey = sqlite3VdbeRecordUnpack(pCx->pKeyInfo, pK->n, pK->z,
1.3130 + aTempRec, sizeof(aTempRec));
1.3131 + if( pIdxKey==0 ){
1.3132 + goto no_mem;
1.3133 + }
1.3134 + pIdxKey->flags |= UNPACKED_IGNORE_ROWID;
1.3135 +
1.3136 + /* Search for an entry in P1 where all but the last rowid match K
1.3137 + ** If there is no such entry, jump immediately to P2.
1.3138 + */
1.3139 + assert( pCx->deferredMoveto==0 );
1.3140 + pCx->cacheStatus = CACHE_STALE;
1.3141 + rc = sqlite3BtreeMovetoUnpacked(pCrsr, pIdxKey, 0, 0, &res);
1.3142 + if( rc!=SQLITE_OK ){
1.3143 + sqlite3VdbeDeleteUnpackedRecord(pIdxKey);
1.3144 + goto abort_due_to_error;
1.3145 + }
1.3146 + if( res<0 ){
1.3147 + rc = sqlite3BtreeNext(pCrsr, &res);
1.3148 + if( res ){
1.3149 + pc = pOp->p2 - 1;
1.3150 + sqlite3VdbeDeleteUnpackedRecord(pIdxKey);
1.3151 + break;
1.3152 + }
1.3153 + }
1.3154 + rc = sqlite3VdbeIdxKeyCompare(pCx, pIdxKey, &res);
1.3155 + sqlite3VdbeDeleteUnpackedRecord(pIdxKey);
1.3156 + if( rc!=SQLITE_OK ) goto abort_due_to_error;
1.3157 + if( res>0 ){
1.3158 + pc = pOp->p2 - 1;
1.3159 + break;
1.3160 + }
1.3161 +
1.3162 + /* At this point, pCrsr is pointing to an entry in P1 where all but
1.3163 + ** the final entry (the rowid) matches K. Check to see if the
1.3164 + ** final rowid column is different from R. If it equals R then jump
1.3165 + ** immediately to P2.
1.3166 + */
1.3167 + rc = sqlite3VdbeIdxRowid(pCrsr, &v);
1.3168 + if( rc!=SQLITE_OK ){
1.3169 + goto abort_due_to_error;
1.3170 + }
1.3171 + if( v==R ){
1.3172 + pc = pOp->p2 - 1;
1.3173 + break;
1.3174 + }
1.3175 +
1.3176 + /* The final varint of the key is different from R. Store it back
1.3177 + ** into register R3. (The record number of an entry that violates
1.3178 + ** a UNIQUE constraint.)
1.3179 + */
1.3180 + pIn3->u.i = v;
1.3181 + assert( pIn3->flags&MEM_Int );
1.3182 + }
1.3183 + break;
1.3184 +}
1.3185 +
1.3186 +/* Opcode: NotExists P1 P2 P3 * *
1.3187 +**
1.3188 +** Use the content of register P3 as a integer key. If a record
1.3189 +** with that key does not exist in table of P1, then jump to P2.
1.3190 +** If the record does exist, then fall thru. The cursor is left
1.3191 +** pointing to the record if it exists.
1.3192 +**
1.3193 +** The difference between this operation and NotFound is that this
1.3194 +** operation assumes the key is an integer and that P1 is a table whereas
1.3195 +** NotFound assumes key is a blob constructed from MakeRecord and
1.3196 +** P1 is an index.
1.3197 +**
1.3198 +** See also: Found, NotFound, IsUnique
1.3199 +*/
1.3200 +case OP_NotExists: { /* jump, in3 */
1.3201 + int i = pOp->p1;
1.3202 + Cursor *pC;
1.3203 + BtCursor *pCrsr;
1.3204 + assert( i>=0 && i<p->nCursor );
1.3205 + assert( p->apCsr[i]!=0 );
1.3206 + if( (pCrsr = (pC = p->apCsr[i])->pCursor)!=0 ){
1.3207 + int res;
1.3208 + u64 iKey;
1.3209 + assert( pIn3->flags & MEM_Int );
1.3210 + assert( p->apCsr[i]->isTable );
1.3211 + iKey = intToKey(pIn3->u.i);
1.3212 + rc = sqlite3BtreeMovetoUnpacked(pCrsr, 0, iKey, 0,&res);
1.3213 + pC->lastRowid = pIn3->u.i;
1.3214 + pC->rowidIsValid = res==0;
1.3215 + pC->nullRow = 0;
1.3216 + pC->cacheStatus = CACHE_STALE;
1.3217 + /* res might be uninitialized if rc!=SQLITE_OK. But if rc!=SQLITE_OK
1.3218 + ** processing is about to abort so we really do not care whether or not
1.3219 + ** the following jump is taken. (In other words, do not stress over
1.3220 + ** the error that valgrind sometimes shows on the next statement when
1.3221 + ** running ioerr.test and similar failure-recovery test scripts.) */
1.3222 + if( res!=0 ){
1.3223 + pc = pOp->p2 - 1;
1.3224 + assert( pC->rowidIsValid==0 );
1.3225 + }
1.3226 + }else if( !pC->pseudoTable ){
1.3227 + /* This happens when an attempt to open a read cursor on the
1.3228 + ** sqlite_master table returns SQLITE_EMPTY.
1.3229 + */
1.3230 + assert( pC->isTable );
1.3231 + pc = pOp->p2 - 1;
1.3232 + assert( pC->rowidIsValid==0 );
1.3233 + }
1.3234 + break;
1.3235 +}
1.3236 +
1.3237 +/* Opcode: Sequence P1 P2 * * *
1.3238 +**
1.3239 +** Find the next available sequence number for cursor P1.
1.3240 +** Write the sequence number into register P2.
1.3241 +** The sequence number on the cursor is incremented after this
1.3242 +** instruction.
1.3243 +*/
1.3244 +case OP_Sequence: { /* out2-prerelease */
1.3245 + int i = pOp->p1;
1.3246 + assert( i>=0 && i<p->nCursor );
1.3247 + assert( p->apCsr[i]!=0 );
1.3248 + pOut->u.i = p->apCsr[i]->seqCount++;
1.3249 + MemSetTypeFlag(pOut, MEM_Int);
1.3250 + break;
1.3251 +}
1.3252 +
1.3253 +
1.3254 +/* Opcode: NewRowid P1 P2 P3 * *
1.3255 +**
1.3256 +** Get a new integer record number (a.k.a "rowid") used as the key to a table.
1.3257 +** The record number is not previously used as a key in the database
1.3258 +** table that cursor P1 points to. The new record number is written
1.3259 +** written to register P2.
1.3260 +**
1.3261 +** If P3>0 then P3 is a register that holds the largest previously
1.3262 +** generated record number. No new record numbers are allowed to be less
1.3263 +** than this value. When this value reaches its maximum, a SQLITE_FULL
1.3264 +** error is generated. The P3 register is updated with the generated
1.3265 +** record number. This P3 mechanism is used to help implement the
1.3266 +** AUTOINCREMENT feature.
1.3267 +*/
1.3268 +case OP_NewRowid: { /* out2-prerelease */
1.3269 + int i = pOp->p1;
1.3270 + i64 v = 0;
1.3271 + Cursor *pC;
1.3272 + assert( i>=0 && i<p->nCursor );
1.3273 + assert( p->apCsr[i]!=0 );
1.3274 + if( (pC = p->apCsr[i])->pCursor==0 ){
1.3275 + /* The zero initialization above is all that is needed */
1.3276 + }else{
1.3277 + /* The next rowid or record number (different terms for the same
1.3278 + ** thing) is obtained in a two-step algorithm.
1.3279 + **
1.3280 + ** First we attempt to find the largest existing rowid and add one
1.3281 + ** to that. But if the largest existing rowid is already the maximum
1.3282 + ** positive integer, we have to fall through to the second
1.3283 + ** probabilistic algorithm
1.3284 + **
1.3285 + ** The second algorithm is to select a rowid at random and see if
1.3286 + ** it already exists in the table. If it does not exist, we have
1.3287 + ** succeeded. If the random rowid does exist, we select a new one
1.3288 + ** and try again, up to 1000 times.
1.3289 + **
1.3290 + ** For a table with less than 2 billion entries, the probability
1.3291 + ** of not finding a unused rowid is about 1.0e-300. This is a
1.3292 + ** non-zero probability, but it is still vanishingly small and should
1.3293 + ** never cause a problem. You are much, much more likely to have a
1.3294 + ** hardware failure than for this algorithm to fail.
1.3295 + **
1.3296 + ** The analysis in the previous paragraph assumes that you have a good
1.3297 + ** source of random numbers. Is a library function like lrand48()
1.3298 + ** good enough? Maybe. Maybe not. It's hard to know whether there
1.3299 + ** might be subtle bugs is some implementations of lrand48() that
1.3300 + ** could cause problems. To avoid uncertainty, SQLite uses its own
1.3301 + ** random number generator based on the RC4 algorithm.
1.3302 + **
1.3303 + ** To promote locality of reference for repetitive inserts, the
1.3304 + ** first few attempts at choosing a random rowid pick values just a little
1.3305 + ** larger than the previous rowid. This has been shown experimentally
1.3306 + ** to double the speed of the COPY operation.
1.3307 + */
1.3308 + int res, rx=SQLITE_OK, cnt;
1.3309 + i64 x;
1.3310 + cnt = 0;
1.3311 + if( (sqlite3BtreeFlags(pC->pCursor)&(BTREE_INTKEY|BTREE_ZERODATA)) !=
1.3312 + BTREE_INTKEY ){
1.3313 + rc = SQLITE_CORRUPT_BKPT;
1.3314 + goto abort_due_to_error;
1.3315 + }
1.3316 + assert( (sqlite3BtreeFlags(pC->pCursor) & BTREE_INTKEY)!=0 );
1.3317 + assert( (sqlite3BtreeFlags(pC->pCursor) & BTREE_ZERODATA)==0 );
1.3318 +
1.3319 +#ifdef SQLITE_32BIT_ROWID
1.3320 +# define MAX_ROWID 0x7fffffff
1.3321 +#else
1.3322 + /* Some compilers complain about constants of the form 0x7fffffffffffffff.
1.3323 + ** Others complain about 0x7ffffffffffffffffLL. The following macro seems
1.3324 + ** to provide the constant while making all compilers happy.
1.3325 + */
1.3326 +# define MAX_ROWID ( (((u64)0x7fffffff)<<32) | (u64)0xffffffff )
1.3327 +#endif
1.3328 +
1.3329 + if( !pC->useRandomRowid ){
1.3330 + if( pC->nextRowidValid ){
1.3331 + v = pC->nextRowid;
1.3332 + }else{
1.3333 + rc = sqlite3BtreeLast(pC->pCursor, &res);
1.3334 + if( rc!=SQLITE_OK ){
1.3335 + goto abort_due_to_error;
1.3336 + }
1.3337 + if( res ){
1.3338 + v = 1;
1.3339 + }else{
1.3340 + sqlite3BtreeKeySize(pC->pCursor, &v);
1.3341 + v = keyToInt(v);
1.3342 + if( v==MAX_ROWID ){
1.3343 + pC->useRandomRowid = 1;
1.3344 + }else{
1.3345 + v++;
1.3346 + }
1.3347 + }
1.3348 + }
1.3349 +
1.3350 +#ifndef SQLITE_OMIT_AUTOINCREMENT
1.3351 + if( pOp->p3 ){
1.3352 + Mem *pMem;
1.3353 + assert( pOp->p3>0 && pOp->p3<=p->nMem ); /* P3 is a valid memory cell */
1.3354 + pMem = &p->aMem[pOp->p3];
1.3355 + REGISTER_TRACE(pOp->p3, pMem);
1.3356 + sqlite3VdbeMemIntegerify(pMem);
1.3357 + assert( (pMem->flags & MEM_Int)!=0 ); /* mem(P3) holds an integer */
1.3358 + if( pMem->u.i==MAX_ROWID || pC->useRandomRowid ){
1.3359 + rc = SQLITE_FULL;
1.3360 + goto abort_due_to_error;
1.3361 + }
1.3362 + if( v<pMem->u.i+1 ){
1.3363 + v = pMem->u.i + 1;
1.3364 + }
1.3365 + pMem->u.i = v;
1.3366 + }
1.3367 +#endif
1.3368 +
1.3369 + if( v<MAX_ROWID ){
1.3370 + pC->nextRowidValid = 1;
1.3371 + pC->nextRowid = v+1;
1.3372 + }else{
1.3373 + pC->nextRowidValid = 0;
1.3374 + }
1.3375 + }
1.3376 + if( pC->useRandomRowid ){
1.3377 + assert( pOp->p3==0 ); /* SQLITE_FULL must have occurred prior to this */
1.3378 + v = db->priorNewRowid;
1.3379 + cnt = 0;
1.3380 + do{
1.3381 + if( cnt==0 && (v&0xffffff)==v ){
1.3382 + v++;
1.3383 + }else{
1.3384 + sqlite3_randomness(sizeof(v), &v);
1.3385 + if( cnt<5 ) v &= 0xffffff;
1.3386 + }
1.3387 + if( v==0 ) continue;
1.3388 + x = intToKey(v);
1.3389 + rx = sqlite3BtreeMovetoUnpacked(pC->pCursor, 0, (u64)x, 0, &res);
1.3390 + cnt++;
1.3391 + }while( cnt<100 && rx==SQLITE_OK && res==0 );
1.3392 + db->priorNewRowid = v;
1.3393 + if( rx==SQLITE_OK && res==0 ){
1.3394 + rc = SQLITE_FULL;
1.3395 + goto abort_due_to_error;
1.3396 + }
1.3397 + }
1.3398 + pC->rowidIsValid = 0;
1.3399 + pC->deferredMoveto = 0;
1.3400 + pC->cacheStatus = CACHE_STALE;
1.3401 + }
1.3402 + MemSetTypeFlag(pOut, MEM_Int);
1.3403 + pOut->u.i = v;
1.3404 + break;
1.3405 +}
1.3406 +
1.3407 +/* Opcode: Insert P1 P2 P3 P4 P5
1.3408 +**
1.3409 +** Write an entry into the table of cursor P1. A new entry is
1.3410 +** created if it doesn't already exist or the data for an existing
1.3411 +** entry is overwritten. The data is the value stored register
1.3412 +** number P2. The key is stored in register P3. The key must
1.3413 +** be an integer.
1.3414 +**
1.3415 +** If the OPFLAG_NCHANGE flag of P5 is set, then the row change count is
1.3416 +** incremented (otherwise not). If the OPFLAG_LASTROWID flag of P5 is set,
1.3417 +** then rowid is stored for subsequent return by the
1.3418 +** sqlite3_last_insert_rowid() function (otherwise it is unmodified).
1.3419 +**
1.3420 +** Parameter P4 may point to a string containing the table-name, or
1.3421 +** may be NULL. If it is not NULL, then the update-hook
1.3422 +** (sqlite3.xUpdateCallback) is invoked following a successful insert.
1.3423 +**
1.3424 +** (WARNING/TODO: If P1 is a pseudo-cursor and P2 is dynamically
1.3425 +** allocated, then ownership of P2 is transferred to the pseudo-cursor
1.3426 +** and register P2 becomes ephemeral. If the cursor is changed, the
1.3427 +** value of register P2 will then change. Make sure this does not
1.3428 +** cause any problems.)
1.3429 +**
1.3430 +** This instruction only works on tables. The equivalent instruction
1.3431 +** for indices is OP_IdxInsert.
1.3432 +*/
1.3433 +case OP_Insert: {
1.3434 + Mem *pData = &p->aMem[pOp->p2];
1.3435 + Mem *pKey = &p->aMem[pOp->p3];
1.3436 +
1.3437 + i64 iKey; /* The integer ROWID or key for the record to be inserted */
1.3438 + int i = pOp->p1;
1.3439 + Cursor *pC;
1.3440 + assert( i>=0 && i<p->nCursor );
1.3441 + pC = p->apCsr[i];
1.3442 + assert( pC!=0 );
1.3443 + assert( pC->pCursor!=0 || pC->pseudoTable );
1.3444 + assert( pKey->flags & MEM_Int );
1.3445 + assert( pC->isTable );
1.3446 + REGISTER_TRACE(pOp->p2, pData);
1.3447 + REGISTER_TRACE(pOp->p3, pKey);
1.3448 +
1.3449 + iKey = intToKey(pKey->u.i);
1.3450 + if( pOp->p5 & OPFLAG_NCHANGE ) p->nChange++;
1.3451 + if( pOp->p5 & OPFLAG_LASTROWID ) db->lastRowid = pKey->u.i;
1.3452 + if( pC->nextRowidValid && pKey->u.i>=pC->nextRowid ){
1.3453 + pC->nextRowidValid = 0;
1.3454 + }
1.3455 + if( pData->flags & MEM_Null ){
1.3456 + pData->z = 0;
1.3457 + pData->n = 0;
1.3458 + }else{
1.3459 + assert( pData->flags & (MEM_Blob|MEM_Str) );
1.3460 + }
1.3461 + if( pC->pseudoTable ){
1.3462 + if( !pC->ephemPseudoTable ){
1.3463 + sqlite3DbFree(db, pC->pData);
1.3464 + }
1.3465 + pC->iKey = iKey;
1.3466 + pC->nData = pData->n;
1.3467 + if( pData->z==pData->zMalloc || pC->ephemPseudoTable ){
1.3468 + pC->pData = pData->z;
1.3469 + if( !pC->ephemPseudoTable ){
1.3470 + pData->flags &= ~MEM_Dyn;
1.3471 + pData->flags |= MEM_Ephem;
1.3472 + pData->zMalloc = 0;
1.3473 + }
1.3474 + }else{
1.3475 + pC->pData = sqlite3Malloc( pC->nData+2 );
1.3476 + if( !pC->pData ) goto no_mem;
1.3477 + memcpy(pC->pData, pData->z, pC->nData);
1.3478 + pC->pData[pC->nData] = 0;
1.3479 + pC->pData[pC->nData+1] = 0;
1.3480 + }
1.3481 + pC->nullRow = 0;
1.3482 + }else{
1.3483 + int nZero;
1.3484 + if( pData->flags & MEM_Zero ){
1.3485 + nZero = pData->u.i;
1.3486 + }else{
1.3487 + nZero = 0;
1.3488 + }
1.3489 + rc = sqlite3BtreeInsert(pC->pCursor, 0, iKey,
1.3490 + pData->z, pData->n, nZero,
1.3491 + pOp->p5 & OPFLAG_APPEND);
1.3492 + }
1.3493 +
1.3494 + pC->rowidIsValid = 0;
1.3495 + pC->deferredMoveto = 0;
1.3496 + pC->cacheStatus = CACHE_STALE;
1.3497 +
1.3498 + /* Invoke the update-hook if required. */
1.3499 + if( rc==SQLITE_OK && db->xUpdateCallback && pOp->p4.z ){
1.3500 + const char *zDb = db->aDb[pC->iDb].zName;
1.3501 + const char *zTbl = pOp->p4.z;
1.3502 + int op = ((pOp->p5 & OPFLAG_ISUPDATE) ? SQLITE_UPDATE : SQLITE_INSERT);
1.3503 + assert( pC->isTable );
1.3504 + db->xUpdateCallback(db->pUpdateArg, op, zDb, zTbl, iKey);
1.3505 + assert( pC->iDb>=0 );
1.3506 + }
1.3507 + break;
1.3508 +}
1.3509 +
1.3510 +/* Opcode: Delete P1 P2 * P4 *
1.3511 +**
1.3512 +** Delete the record at which the P1 cursor is currently pointing.
1.3513 +**
1.3514 +** The cursor will be left pointing at either the next or the previous
1.3515 +** record in the table. If it is left pointing at the next record, then
1.3516 +** the next Next instruction will be a no-op. Hence it is OK to delete
1.3517 +** a record from within an Next loop.
1.3518 +**
1.3519 +** If the OPFLAG_NCHANGE flag of P2 is set, then the row change count is
1.3520 +** incremented (otherwise not).
1.3521 +**
1.3522 +** P1 must not be pseudo-table. It has to be a real table with
1.3523 +** multiple rows.
1.3524 +**
1.3525 +** If P4 is not NULL, then it is the name of the table that P1 is
1.3526 +** pointing to. The update hook will be invoked, if it exists.
1.3527 +** If P4 is not NULL then the P1 cursor must have been positioned
1.3528 +** using OP_NotFound prior to invoking this opcode.
1.3529 +*/
1.3530 +case OP_Delete: {
1.3531 + int i = pOp->p1;
1.3532 + i64 iKey;
1.3533 + Cursor *pC;
1.3534 +
1.3535 + assert( i>=0 && i<p->nCursor );
1.3536 + pC = p->apCsr[i];
1.3537 + assert( pC!=0 );
1.3538 + assert( pC->pCursor!=0 ); /* Only valid for real tables, no pseudotables */
1.3539 +
1.3540 + /* If the update-hook will be invoked, set iKey to the rowid of the
1.3541 + ** row being deleted.
1.3542 + */
1.3543 + if( db->xUpdateCallback && pOp->p4.z ){
1.3544 + assert( pC->isTable );
1.3545 + assert( pC->rowidIsValid ); /* lastRowid set by previous OP_NotFound */
1.3546 + iKey = pC->lastRowid;
1.3547 + }
1.3548 +
1.3549 + rc = sqlite3VdbeCursorMoveto(pC);
1.3550 + if( rc ) goto abort_due_to_error;
1.3551 + rc = sqlite3BtreeDelete(pC->pCursor);
1.3552 + pC->nextRowidValid = 0;
1.3553 + pC->cacheStatus = CACHE_STALE;
1.3554 +
1.3555 + /* Invoke the update-hook if required. */
1.3556 + if( rc==SQLITE_OK && db->xUpdateCallback && pOp->p4.z ){
1.3557 + const char *zDb = db->aDb[pC->iDb].zName;
1.3558 + const char *zTbl = pOp->p4.z;
1.3559 + db->xUpdateCallback(db->pUpdateArg, SQLITE_DELETE, zDb, zTbl, iKey);
1.3560 + assert( pC->iDb>=0 );
1.3561 + }
1.3562 + if( pOp->p2 & OPFLAG_NCHANGE ) p->nChange++;
1.3563 + break;
1.3564 +}
1.3565 +
1.3566 +/* Opcode: ResetCount P1 * *
1.3567 +**
1.3568 +** This opcode resets the VMs internal change counter to 0. If P1 is true,
1.3569 +** then the value of the change counter is copied to the database handle
1.3570 +** change counter (returned by subsequent calls to sqlite3_changes())
1.3571 +** before it is reset. This is used by trigger programs.
1.3572 +*/
1.3573 +case OP_ResetCount: {
1.3574 + if( pOp->p1 ){
1.3575 + sqlite3VdbeSetChanges(db, p->nChange);
1.3576 + }
1.3577 + p->nChange = 0;
1.3578 + break;
1.3579 +}
1.3580 +
1.3581 +/* Opcode: RowData P1 P2 * * *
1.3582 +**
1.3583 +** Write into register P2 the complete row data for cursor P1.
1.3584 +** There is no interpretation of the data.
1.3585 +** It is just copied onto the P2 register exactly as
1.3586 +** it is found in the database file.
1.3587 +**
1.3588 +** If the P1 cursor must be pointing to a valid row (not a NULL row)
1.3589 +** of a real table, not a pseudo-table.
1.3590 +*/
1.3591 +/* Opcode: RowKey P1 P2 * * *
1.3592 +**
1.3593 +** Write into register P2 the complete row key for cursor P1.
1.3594 +** There is no interpretation of the data.
1.3595 +** The key is copied onto the P3 register exactly as
1.3596 +** it is found in the database file.
1.3597 +**
1.3598 +** If the P1 cursor must be pointing to a valid row (not a NULL row)
1.3599 +** of a real table, not a pseudo-table.
1.3600 +*/
1.3601 +case OP_RowKey:
1.3602 +case OP_RowData: {
1.3603 + int i = pOp->p1;
1.3604 + Cursor *pC;
1.3605 + BtCursor *pCrsr;
1.3606 + u32 n;
1.3607 +
1.3608 + pOut = &p->aMem[pOp->p2];
1.3609 +
1.3610 + /* Note that RowKey and RowData are really exactly the same instruction */
1.3611 + assert( i>=0 && i<p->nCursor );
1.3612 + pC = p->apCsr[i];
1.3613 + assert( pC->isTable || pOp->opcode==OP_RowKey );
1.3614 + assert( pC->isIndex || pOp->opcode==OP_RowData );
1.3615 + assert( pC!=0 );
1.3616 + assert( pC->nullRow==0 );
1.3617 + assert( pC->pseudoTable==0 );
1.3618 + assert( pC->pCursor!=0 );
1.3619 + pCrsr = pC->pCursor;
1.3620 + rc = sqlite3VdbeCursorMoveto(pC);
1.3621 + if( rc ) goto abort_due_to_error;
1.3622 + if( pC->isIndex ){
1.3623 + i64 n64;
1.3624 + assert( !pC->isTable );
1.3625 + sqlite3BtreeKeySize(pCrsr, &n64);
1.3626 + if( n64>db->aLimit[SQLITE_LIMIT_LENGTH] ){
1.3627 + goto too_big;
1.3628 + }
1.3629 + n = n64;
1.3630 + }else{
1.3631 + sqlite3BtreeDataSize(pCrsr, &n);
1.3632 + if( n>db->aLimit[SQLITE_LIMIT_LENGTH] ){
1.3633 + goto too_big;
1.3634 + }
1.3635 + }
1.3636 + if( sqlite3VdbeMemGrow(pOut, n, 0) ){
1.3637 + goto no_mem;
1.3638 + }
1.3639 + pOut->n = n;
1.3640 + MemSetTypeFlag(pOut, MEM_Blob);
1.3641 + if( pC->isIndex ){
1.3642 + rc = sqlite3BtreeKey(pCrsr, 0, n, pOut->z);
1.3643 + }else{
1.3644 + rc = sqlite3BtreeData(pCrsr, 0, n, pOut->z);
1.3645 + }
1.3646 + pOut->enc = SQLITE_UTF8; /* In case the blob is ever cast to text */
1.3647 + UPDATE_MAX_BLOBSIZE(pOut);
1.3648 + break;
1.3649 +}
1.3650 +
1.3651 +/* Opcode: Rowid P1 P2 * * *
1.3652 +**
1.3653 +** Store in register P2 an integer which is the key of the table entry that
1.3654 +** P1 is currently point to.
1.3655 +*/
1.3656 +case OP_Rowid: { /* out2-prerelease */
1.3657 + int i = pOp->p1;
1.3658 + Cursor *pC;
1.3659 + i64 v;
1.3660 +
1.3661 + assert( i>=0 && i<p->nCursor );
1.3662 + pC = p->apCsr[i];
1.3663 + assert( pC!=0 );
1.3664 + rc = sqlite3VdbeCursorMoveto(pC);
1.3665 + if( rc ) goto abort_due_to_error;
1.3666 + if( pC->rowidIsValid ){
1.3667 + v = pC->lastRowid;
1.3668 + }else if( pC->pseudoTable ){
1.3669 + v = keyToInt(pC->iKey);
1.3670 + }else if( pC->nullRow ){
1.3671 + /* Leave the rowid set to a NULL */
1.3672 + break;
1.3673 + }else{
1.3674 + assert( pC->pCursor!=0 );
1.3675 + sqlite3BtreeKeySize(pC->pCursor, &v);
1.3676 + v = keyToInt(v);
1.3677 + }
1.3678 + pOut->u.i = v;
1.3679 + MemSetTypeFlag(pOut, MEM_Int);
1.3680 + break;
1.3681 +}
1.3682 +
1.3683 +/* Opcode: NullRow P1 * * * *
1.3684 +**
1.3685 +** Move the cursor P1 to a null row. Any OP_Column operations
1.3686 +** that occur while the cursor is on the null row will always
1.3687 +** write a NULL.
1.3688 +*/
1.3689 +case OP_NullRow: {
1.3690 + int i = pOp->p1;
1.3691 + Cursor *pC;
1.3692 +
1.3693 + assert( i>=0 && i<p->nCursor );
1.3694 + pC = p->apCsr[i];
1.3695 + assert( pC!=0 );
1.3696 + pC->nullRow = 1;
1.3697 + pC->rowidIsValid = 0;
1.3698 + break;
1.3699 +}
1.3700 +
1.3701 +/* Opcode: Last P1 P2 * * *
1.3702 +**
1.3703 +** The next use of the Rowid or Column or Next instruction for P1
1.3704 +** will refer to the last entry in the database table or index.
1.3705 +** If the table or index is empty and P2>0, then jump immediately to P2.
1.3706 +** If P2 is 0 or if the table or index is not empty, fall through
1.3707 +** to the following instruction.
1.3708 +*/
1.3709 +case OP_Last: { /* jump */
1.3710 + int i = pOp->p1;
1.3711 + Cursor *pC;
1.3712 + BtCursor *pCrsr;
1.3713 + int res;
1.3714 +
1.3715 + assert( i>=0 && i<p->nCursor );
1.3716 + pC = p->apCsr[i];
1.3717 + assert( pC!=0 );
1.3718 + pCrsr = pC->pCursor;
1.3719 + assert( pCrsr!=0 );
1.3720 + rc = sqlite3BtreeLast(pCrsr, &res);
1.3721 + pC->nullRow = res;
1.3722 + pC->deferredMoveto = 0;
1.3723 + pC->cacheStatus = CACHE_STALE;
1.3724 + if( res && pOp->p2>0 ){
1.3725 + pc = pOp->p2 - 1;
1.3726 + }
1.3727 + break;
1.3728 +}
1.3729 +
1.3730 +
1.3731 +/* Opcode: Sort P1 P2 * * *
1.3732 +**
1.3733 +** This opcode does exactly the same thing as OP_Rewind except that
1.3734 +** it increments an undocumented global variable used for testing.
1.3735 +**
1.3736 +** Sorting is accomplished by writing records into a sorting index,
1.3737 +** then rewinding that index and playing it back from beginning to
1.3738 +** end. We use the OP_Sort opcode instead of OP_Rewind to do the
1.3739 +** rewinding so that the global variable will be incremented and
1.3740 +** regression tests can determine whether or not the optimizer is
1.3741 +** correctly optimizing out sorts.
1.3742 +*/
1.3743 +case OP_Sort: { /* jump */
1.3744 +#ifdef SQLITE_TEST
1.3745 + sqlite3_sort_count++;
1.3746 + sqlite3_search_count--;
1.3747 +#endif
1.3748 + /* Fall through into OP_Rewind */
1.3749 +}
1.3750 +/* Opcode: Rewind P1 P2 * * *
1.3751 +**
1.3752 +** The next use of the Rowid or Column or Next instruction for P1
1.3753 +** will refer to the first entry in the database table or index.
1.3754 +** If the table or index is empty and P2>0, then jump immediately to P2.
1.3755 +** If P2 is 0 or if the table or index is not empty, fall through
1.3756 +** to the following instruction.
1.3757 +*/
1.3758 +case OP_Rewind: { /* jump */
1.3759 + int i = pOp->p1;
1.3760 + Cursor *pC;
1.3761 + BtCursor *pCrsr;
1.3762 + int res;
1.3763 +
1.3764 + assert( i>=0 && i<p->nCursor );
1.3765 + pC = p->apCsr[i];
1.3766 + assert( pC!=0 );
1.3767 + if( (pCrsr = pC->pCursor)!=0 ){
1.3768 + rc = sqlite3BtreeFirst(pCrsr, &res);
1.3769 + pC->atFirst = res==0;
1.3770 + pC->deferredMoveto = 0;
1.3771 + pC->cacheStatus = CACHE_STALE;
1.3772 + }else{
1.3773 + res = 1;
1.3774 + }
1.3775 + pC->nullRow = res;
1.3776 + assert( pOp->p2>0 && pOp->p2<p->nOp );
1.3777 + if( res ){
1.3778 + pc = pOp->p2 - 1;
1.3779 + }
1.3780 + break;
1.3781 +}
1.3782 +
1.3783 +/* Opcode: Next P1 P2 * * *
1.3784 +**
1.3785 +** Advance cursor P1 so that it points to the next key/data pair in its
1.3786 +** table or index. If there are no more key/value pairs then fall through
1.3787 +** to the following instruction. But if the cursor advance was successful,
1.3788 +** jump immediately to P2.
1.3789 +**
1.3790 +** The P1 cursor must be for a real table, not a pseudo-table.
1.3791 +**
1.3792 +** See also: Prev
1.3793 +*/
1.3794 +/* Opcode: Prev P1 P2 * * *
1.3795 +**
1.3796 +** Back up cursor P1 so that it points to the previous key/data pair in its
1.3797 +** table or index. If there is no previous key/value pairs then fall through
1.3798 +** to the following instruction. But if the cursor backup was successful,
1.3799 +** jump immediately to P2.
1.3800 +**
1.3801 +** The P1 cursor must be for a real table, not a pseudo-table.
1.3802 +*/
1.3803 +case OP_Prev: /* jump */
1.3804 +case OP_Next: { /* jump */
1.3805 + Cursor *pC;
1.3806 + BtCursor *pCrsr;
1.3807 + int res;
1.3808 +
1.3809 + CHECK_FOR_INTERRUPT;
1.3810 + assert( pOp->p1>=0 && pOp->p1<p->nCursor );
1.3811 + pC = p->apCsr[pOp->p1];
1.3812 + if( pC==0 ){
1.3813 + break; /* See ticket #2273 */
1.3814 + }
1.3815 + pCrsr = pC->pCursor;
1.3816 + assert( pCrsr );
1.3817 + res = 1;
1.3818 + assert( pC->deferredMoveto==0 );
1.3819 + rc = pOp->opcode==OP_Next ? sqlite3BtreeNext(pCrsr, &res) :
1.3820 + sqlite3BtreePrevious(pCrsr, &res);
1.3821 + pC->nullRow = res;
1.3822 + pC->cacheStatus = CACHE_STALE;
1.3823 + if( res==0 ){
1.3824 + pc = pOp->p2 - 1;
1.3825 +#ifdef SQLITE_TEST
1.3826 + sqlite3_search_count++;
1.3827 +#endif
1.3828 + }
1.3829 + pC->rowidIsValid = 0;
1.3830 + break;
1.3831 +}
1.3832 +
1.3833 +/* Opcode: IdxInsert P1 P2 P3 * *
1.3834 +**
1.3835 +** Register P2 holds a SQL index key made using the
1.3836 +** MakeIdxRec instructions. This opcode writes that key
1.3837 +** into the index P1. Data for the entry is nil.
1.3838 +**
1.3839 +** P3 is a flag that provides a hint to the b-tree layer that this
1.3840 +** insert is likely to be an append.
1.3841 +**
1.3842 +** This instruction only works for indices. The equivalent instruction
1.3843 +** for tables is OP_Insert.
1.3844 +*/
1.3845 +case OP_IdxInsert: { /* in2 */
1.3846 + int i = pOp->p1;
1.3847 + Cursor *pC;
1.3848 + BtCursor *pCrsr;
1.3849 + assert( i>=0 && i<p->nCursor );
1.3850 + assert( p->apCsr[i]!=0 );
1.3851 + assert( pIn2->flags & MEM_Blob );
1.3852 + if( (pCrsr = (pC = p->apCsr[i])->pCursor)!=0 ){
1.3853 + assert( pC->isTable==0 );
1.3854 + rc = ExpandBlob(pIn2);
1.3855 + if( rc==SQLITE_OK ){
1.3856 + int nKey = pIn2->n;
1.3857 + const char *zKey = pIn2->z;
1.3858 + rc = sqlite3BtreeInsert(pCrsr, zKey, nKey, "", 0, 0, pOp->p3);
1.3859 + assert( pC->deferredMoveto==0 );
1.3860 + pC->cacheStatus = CACHE_STALE;
1.3861 + }
1.3862 + }
1.3863 + break;
1.3864 +}
1.3865 +
1.3866 +/* Opcode: IdxDeleteM P1 P2 P3 * *
1.3867 +**
1.3868 +** The content of P3 registers starting at register P2 form
1.3869 +** an unpacked index key. This opcode removes that entry from the
1.3870 +** index opened by cursor P1.
1.3871 +*/
1.3872 +case OP_IdxDelete: {
1.3873 + int i = pOp->p1;
1.3874 + Cursor *pC;
1.3875 + BtCursor *pCrsr;
1.3876 + assert( pOp->p3>0 );
1.3877 + assert( pOp->p2>0 && pOp->p2+pOp->p3<=p->nMem );
1.3878 + assert( i>=0 && i<p->nCursor );
1.3879 + assert( p->apCsr[i]!=0 );
1.3880 + if( (pCrsr = (pC = p->apCsr[i])->pCursor)!=0 ){
1.3881 + int res;
1.3882 + UnpackedRecord r;
1.3883 + r.pKeyInfo = pC->pKeyInfo;
1.3884 + r.nField = pOp->p3;
1.3885 + r.flags = 0;
1.3886 + r.aMem = &p->aMem[pOp->p2];
1.3887 + rc = sqlite3BtreeMovetoUnpacked(pCrsr, &r, 0, 0, &res);
1.3888 + if( rc==SQLITE_OK && res==0 ){
1.3889 + rc = sqlite3BtreeDelete(pCrsr);
1.3890 + }
1.3891 + assert( pC->deferredMoveto==0 );
1.3892 + pC->cacheStatus = CACHE_STALE;
1.3893 + }
1.3894 + break;
1.3895 +}
1.3896 +
1.3897 +/* Opcode: IdxRowid P1 P2 * * *
1.3898 +**
1.3899 +** Write into register P2 an integer which is the last entry in the record at
1.3900 +** the end of the index key pointed to by cursor P1. This integer should be
1.3901 +** the rowid of the table entry to which this index entry points.
1.3902 +**
1.3903 +** See also: Rowid, MakeIdxRec.
1.3904 +*/
1.3905 +case OP_IdxRowid: { /* out2-prerelease */
1.3906 + int i = pOp->p1;
1.3907 + BtCursor *pCrsr;
1.3908 + Cursor *pC;
1.3909 +
1.3910 + assert( i>=0 && i<p->nCursor );
1.3911 + assert( p->apCsr[i]!=0 );
1.3912 + if( (pCrsr = (pC = p->apCsr[i])->pCursor)!=0 ){
1.3913 + i64 rowid;
1.3914 +
1.3915 + assert( pC->deferredMoveto==0 );
1.3916 + assert( pC->isTable==0 );
1.3917 + if( !pC->nullRow ){
1.3918 + rc = sqlite3VdbeIdxRowid(pCrsr, &rowid);
1.3919 + if( rc!=SQLITE_OK ){
1.3920 + goto abort_due_to_error;
1.3921 + }
1.3922 + MemSetTypeFlag(pOut, MEM_Int);
1.3923 + pOut->u.i = rowid;
1.3924 + }
1.3925 + }
1.3926 + break;
1.3927 +}
1.3928 +
1.3929 +/* Opcode: IdxGE P1 P2 P3 P4 P5
1.3930 +**
1.3931 +** The P4 register values beginning with P3 form an unpacked index
1.3932 +** key that omits the ROWID. Compare this key value against the index
1.3933 +** that P1 is currently pointing to, ignoring the ROWID on the P1 index.
1.3934 +**
1.3935 +** If the P1 index entry is greater than or equal to the key value
1.3936 +** then jump to P2. Otherwise fall through to the next instruction.
1.3937 +**
1.3938 +** If P5 is non-zero then the key value is increased by an epsilon
1.3939 +** prior to the comparison. This make the opcode work like IdxGT except
1.3940 +** that if the key from register P3 is a prefix of the key in the cursor,
1.3941 +** the result is false whereas it would be true with IdxGT.
1.3942 +*/
1.3943 +/* Opcode: IdxLT P1 P2 P3 * P5
1.3944 +**
1.3945 +** The P4 register values beginning with P3 form an unpacked index
1.3946 +** key that omits the ROWID. Compare this key value against the index
1.3947 +** that P1 is currently pointing to, ignoring the ROWID on the P1 index.
1.3948 +**
1.3949 +** If the P1 index entry is less than the key value then jump to P2.
1.3950 +** Otherwise fall through to the next instruction.
1.3951 +**
1.3952 +** If P5 is non-zero then the key value is increased by an epsilon prior
1.3953 +** to the comparison. This makes the opcode work like IdxLE.
1.3954 +*/
1.3955 +case OP_IdxLT: /* jump, in3 */
1.3956 +case OP_IdxGE: { /* jump, in3 */
1.3957 + int i= pOp->p1;
1.3958 + Cursor *pC;
1.3959 +
1.3960 + assert( i>=0 && i<p->nCursor );
1.3961 + assert( p->apCsr[i]!=0 );
1.3962 + if( (pC = p->apCsr[i])->pCursor!=0 ){
1.3963 + int res;
1.3964 + UnpackedRecord r;
1.3965 + assert( pC->deferredMoveto==0 );
1.3966 + assert( pOp->p5==0 || pOp->p5==1 );
1.3967 + assert( pOp->p4type==P4_INT32 );
1.3968 + r.pKeyInfo = pC->pKeyInfo;
1.3969 + r.nField = pOp->p4.i;
1.3970 + if( pOp->p5 ){
1.3971 + r.flags = UNPACKED_INCRKEY | UNPACKED_IGNORE_ROWID;
1.3972 + }else{
1.3973 + r.flags = UNPACKED_IGNORE_ROWID;
1.3974 + }
1.3975 + r.aMem = &p->aMem[pOp->p3];
1.3976 + rc = sqlite3VdbeIdxKeyCompare(pC, &r, &res);
1.3977 + if( pOp->opcode==OP_IdxLT ){
1.3978 + res = -res;
1.3979 + }else{
1.3980 + assert( pOp->opcode==OP_IdxGE );
1.3981 + res++;
1.3982 + }
1.3983 + if( res>0 ){
1.3984 + pc = pOp->p2 - 1 ;
1.3985 + }
1.3986 + }
1.3987 + break;
1.3988 +}
1.3989 +
1.3990 +/* Opcode: Destroy P1 P2 P3 * *
1.3991 +**
1.3992 +** Delete an entire database table or index whose root page in the database
1.3993 +** file is given by P1.
1.3994 +**
1.3995 +** The table being destroyed is in the main database file if P3==0. If
1.3996 +** P3==1 then the table to be clear is in the auxiliary database file
1.3997 +** that is used to store tables create using CREATE TEMPORARY TABLE.
1.3998 +**
1.3999 +** If AUTOVACUUM is enabled then it is possible that another root page
1.4000 +** might be moved into the newly deleted root page in order to keep all
1.4001 +** root pages contiguous at the beginning of the database. The former
1.4002 +** value of the root page that moved - its value before the move occurred -
1.4003 +** is stored in register P2. If no page
1.4004 +** movement was required (because the table being dropped was already
1.4005 +** the last one in the database) then a zero is stored in register P2.
1.4006 +** If AUTOVACUUM is disabled then a zero is stored in register P2.
1.4007 +**
1.4008 +** See also: Clear
1.4009 +*/
1.4010 +case OP_Destroy: { /* out2-prerelease */
1.4011 + int iMoved;
1.4012 + int iCnt;
1.4013 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.4014 + Vdbe *pVdbe;
1.4015 + iCnt = 0;
1.4016 + for(pVdbe=db->pVdbe; pVdbe; pVdbe=pVdbe->pNext){
1.4017 + if( pVdbe->magic==VDBE_MAGIC_RUN && pVdbe->inVtabMethod<2 && pVdbe->pc>=0 ){
1.4018 + iCnt++;
1.4019 + }
1.4020 + }
1.4021 +#else
1.4022 + iCnt = db->activeVdbeCnt;
1.4023 +#endif
1.4024 + if( iCnt>1 ){
1.4025 + rc = SQLITE_LOCKED;
1.4026 + p->errorAction = OE_Abort;
1.4027 + }else{
1.4028 + int iDb = pOp->p3;
1.4029 + assert( iCnt==1 );
1.4030 + assert( (p->btreeMask & (1<<iDb))!=0 );
1.4031 + rc = sqlite3BtreeDropTable(db->aDb[iDb].pBt, pOp->p1, &iMoved);
1.4032 + MemSetTypeFlag(pOut, MEM_Int);
1.4033 + pOut->u.i = iMoved;
1.4034 +#ifndef SQLITE_OMIT_AUTOVACUUM
1.4035 + if( rc==SQLITE_OK && iMoved!=0 ){
1.4036 + sqlite3RootPageMoved(&db->aDb[iDb], iMoved, pOp->p1);
1.4037 + }
1.4038 +#endif
1.4039 + }
1.4040 + break;
1.4041 +}
1.4042 +
1.4043 +/* Opcode: Clear P1 P2 *
1.4044 +**
1.4045 +** Delete all contents of the database table or index whose root page
1.4046 +** in the database file is given by P1. But, unlike Destroy, do not
1.4047 +** remove the table or index from the database file.
1.4048 +**
1.4049 +** The table being clear is in the main database file if P2==0. If
1.4050 +** P2==1 then the table to be clear is in the auxiliary database file
1.4051 +** that is used to store tables create using CREATE TEMPORARY TABLE.
1.4052 +**
1.4053 +** See also: Destroy
1.4054 +*/
1.4055 +case OP_Clear: {
1.4056 + assert( (p->btreeMask & (1<<pOp->p2))!=0 );
1.4057 + rc = sqlite3BtreeClearTable(db->aDb[pOp->p2].pBt, pOp->p1);
1.4058 + break;
1.4059 +}
1.4060 +
1.4061 +/* Opcode: CreateTable P1 P2 * * *
1.4062 +**
1.4063 +** Allocate a new table in the main database file if P1==0 or in the
1.4064 +** auxiliary database file if P1==1 or in an attached database if
1.4065 +** P1>1. Write the root page number of the new table into
1.4066 +** register P2
1.4067 +**
1.4068 +** The difference between a table and an index is this: A table must
1.4069 +** have a 4-byte integer key and can have arbitrary data. An index
1.4070 +** has an arbitrary key but no data.
1.4071 +**
1.4072 +** See also: CreateIndex
1.4073 +*/
1.4074 +/* Opcode: CreateIndex P1 P2 * * *
1.4075 +**
1.4076 +** Allocate a new index in the main database file if P1==0 or in the
1.4077 +** auxiliary database file if P1==1 or in an attached database if
1.4078 +** P1>1. Write the root page number of the new table into
1.4079 +** register P2.
1.4080 +**
1.4081 +** See documentation on OP_CreateTable for additional information.
1.4082 +*/
1.4083 +case OP_CreateIndex: /* out2-prerelease */
1.4084 +case OP_CreateTable: { /* out2-prerelease */
1.4085 + int pgno;
1.4086 + int flags;
1.4087 + Db *pDb;
1.4088 + assert( pOp->p1>=0 && pOp->p1<db->nDb );
1.4089 + assert( (p->btreeMask & (1<<pOp->p1))!=0 );
1.4090 + pDb = &db->aDb[pOp->p1];
1.4091 + assert( pDb->pBt!=0 );
1.4092 + if( pOp->opcode==OP_CreateTable ){
1.4093 + /* flags = BTREE_INTKEY; */
1.4094 + flags = BTREE_LEAFDATA|BTREE_INTKEY;
1.4095 + }else{
1.4096 + flags = BTREE_ZERODATA;
1.4097 + }
1.4098 + rc = sqlite3BtreeCreateTable(pDb->pBt, &pgno, flags);
1.4099 + if( rc==SQLITE_OK ){
1.4100 + pOut->u.i = pgno;
1.4101 + MemSetTypeFlag(pOut, MEM_Int);
1.4102 + }
1.4103 + break;
1.4104 +}
1.4105 +
1.4106 +/* Opcode: ParseSchema P1 P2 * P4 *
1.4107 +**
1.4108 +** Read and parse all entries from the SQLITE_MASTER table of database P1
1.4109 +** that match the WHERE clause P4. P2 is the "force" flag. Always do
1.4110 +** the parsing if P2 is true. If P2 is false, then this routine is a
1.4111 +** no-op if the schema is not currently loaded. In other words, if P2
1.4112 +** is false, the SQLITE_MASTER table is only parsed if the rest of the
1.4113 +** schema is already loaded into the symbol table.
1.4114 +**
1.4115 +** This opcode invokes the parser to create a new virtual machine,
1.4116 +** then runs the new virtual machine. It is thus a re-entrant opcode.
1.4117 +*/
1.4118 +case OP_ParseSchema: {
1.4119 + char *zSql;
1.4120 + int iDb = pOp->p1;
1.4121 + const char *zMaster;
1.4122 + InitData initData;
1.4123 +
1.4124 + assert( iDb>=0 && iDb<db->nDb );
1.4125 + if( !pOp->p2 && !DbHasProperty(db, iDb, DB_SchemaLoaded) ){
1.4126 + break;
1.4127 + }
1.4128 + zMaster = SCHEMA_TABLE(iDb);
1.4129 + initData.db = db;
1.4130 + initData.iDb = pOp->p1;
1.4131 + initData.pzErrMsg = &p->zErrMsg;
1.4132 + zSql = sqlite3MPrintf(db,
1.4133 + "SELECT name, rootpage, sql FROM '%q'.%s WHERE %s",
1.4134 + db->aDb[iDb].zName, zMaster, pOp->p4.z);
1.4135 + if( zSql==0 ) goto no_mem;
1.4136 + (void)sqlite3SafetyOff(db);
1.4137 + assert( db->init.busy==0 );
1.4138 + db->init.busy = 1;
1.4139 + initData.rc = SQLITE_OK;
1.4140 + assert( !db->mallocFailed );
1.4141 + rc = sqlite3_exec(db, zSql, sqlite3InitCallback, &initData, 0);
1.4142 + if( rc==SQLITE_OK ) rc = initData.rc;
1.4143 + sqlite3DbFree(db, zSql);
1.4144 + db->init.busy = 0;
1.4145 + (void)sqlite3SafetyOn(db);
1.4146 + if( rc==SQLITE_NOMEM ){
1.4147 + goto no_mem;
1.4148 + }
1.4149 + break;
1.4150 +}
1.4151 +
1.4152 +#if !defined(SQLITE_OMIT_ANALYZE) && !defined(SQLITE_OMIT_PARSER)
1.4153 +/* Opcode: LoadAnalysis P1 * * * *
1.4154 +**
1.4155 +** Read the sqlite_stat1 table for database P1 and load the content
1.4156 +** of that table into the internal index hash table. This will cause
1.4157 +** the analysis to be used when preparing all subsequent queries.
1.4158 +*/
1.4159 +case OP_LoadAnalysis: {
1.4160 + int iDb = pOp->p1;
1.4161 + assert( iDb>=0 && iDb<db->nDb );
1.4162 + rc = sqlite3AnalysisLoad(db, iDb);
1.4163 + break;
1.4164 +}
1.4165 +#endif /* !defined(SQLITE_OMIT_ANALYZE) && !defined(SQLITE_OMIT_PARSER) */
1.4166 +
1.4167 +/* Opcode: DropTable P1 * * P4 *
1.4168 +**
1.4169 +** Remove the internal (in-memory) data structures that describe
1.4170 +** the table named P4 in database P1. This is called after a table
1.4171 +** is dropped in order to keep the internal representation of the
1.4172 +** schema consistent with what is on disk.
1.4173 +*/
1.4174 +case OP_DropTable: {
1.4175 + sqlite3UnlinkAndDeleteTable(db, pOp->p1, pOp->p4.z);
1.4176 + break;
1.4177 +}
1.4178 +
1.4179 +/* Opcode: DropIndex P1 * * P4 *
1.4180 +**
1.4181 +** Remove the internal (in-memory) data structures that describe
1.4182 +** the index named P4 in database P1. This is called after an index
1.4183 +** is dropped in order to keep the internal representation of the
1.4184 +** schema consistent with what is on disk.
1.4185 +*/
1.4186 +case OP_DropIndex: {
1.4187 + sqlite3UnlinkAndDeleteIndex(db, pOp->p1, pOp->p4.z);
1.4188 + break;
1.4189 +}
1.4190 +
1.4191 +/* Opcode: DropTrigger P1 * * P4 *
1.4192 +**
1.4193 +** Remove the internal (in-memory) data structures that describe
1.4194 +** the trigger named P4 in database P1. This is called after a trigger
1.4195 +** is dropped in order to keep the internal representation of the
1.4196 +** schema consistent with what is on disk.
1.4197 +*/
1.4198 +case OP_DropTrigger: {
1.4199 + sqlite3UnlinkAndDeleteTrigger(db, pOp->p1, pOp->p4.z);
1.4200 + break;
1.4201 +}
1.4202 +
1.4203 +
1.4204 +#ifndef SQLITE_OMIT_INTEGRITY_CHECK
1.4205 +/* Opcode: IntegrityCk P1 P2 P3 * P5
1.4206 +**
1.4207 +** Do an analysis of the currently open database. Store in
1.4208 +** register P1 the text of an error message describing any problems.
1.4209 +** If no problems are found, store a NULL in register P1.
1.4210 +**
1.4211 +** The register P3 contains the maximum number of allowed errors.
1.4212 +** At most reg(P3) errors will be reported.
1.4213 +** In other words, the analysis stops as soon as reg(P1) errors are
1.4214 +** seen. Reg(P1) is updated with the number of errors remaining.
1.4215 +**
1.4216 +** The root page numbers of all tables in the database are integer
1.4217 +** stored in reg(P1), reg(P1+1), reg(P1+2), .... There are P2 tables
1.4218 +** total.
1.4219 +**
1.4220 +** If P5 is not zero, the check is done on the auxiliary database
1.4221 +** file, not the main database file.
1.4222 +**
1.4223 +** This opcode is used to implement the integrity_check pragma.
1.4224 +*/
1.4225 +case OP_IntegrityCk: {
1.4226 + int nRoot; /* Number of tables to check. (Number of root pages.) */
1.4227 + int *aRoot; /* Array of rootpage numbers for tables to be checked */
1.4228 + int j; /* Loop counter */
1.4229 + int nErr; /* Number of errors reported */
1.4230 + char *z; /* Text of the error report */
1.4231 + Mem *pnErr; /* Register keeping track of errors remaining */
1.4232 +
1.4233 + nRoot = pOp->p2;
1.4234 + assert( nRoot>0 );
1.4235 + aRoot = sqlite3DbMallocRaw(db, sizeof(int)*(nRoot+1) );
1.4236 + if( aRoot==0 ) goto no_mem;
1.4237 + assert( pOp->p3>0 && pOp->p3<=p->nMem );
1.4238 + pnErr = &p->aMem[pOp->p3];
1.4239 + assert( (pnErr->flags & MEM_Int)!=0 );
1.4240 + assert( (pnErr->flags & (MEM_Str|MEM_Blob))==0 );
1.4241 + pIn1 = &p->aMem[pOp->p1];
1.4242 + for(j=0; j<nRoot; j++){
1.4243 + aRoot[j] = sqlite3VdbeIntValue(&pIn1[j]);
1.4244 + }
1.4245 + aRoot[j] = 0;
1.4246 + assert( pOp->p5<db->nDb );
1.4247 + assert( (p->btreeMask & (1<<pOp->p5))!=0 );
1.4248 + z = sqlite3BtreeIntegrityCheck(db->aDb[pOp->p5].pBt, aRoot, nRoot,
1.4249 + pnErr->u.i, &nErr);
1.4250 + sqlite3DbFree(db, aRoot);
1.4251 + pnErr->u.i -= nErr;
1.4252 + sqlite3VdbeMemSetNull(pIn1);
1.4253 + if( nErr==0 ){
1.4254 + assert( z==0 );
1.4255 + }else if( z==0 ){
1.4256 + goto no_mem;
1.4257 + }else{
1.4258 + sqlite3VdbeMemSetStr(pIn1, z, -1, SQLITE_UTF8, sqlite3_free);
1.4259 + }
1.4260 + UPDATE_MAX_BLOBSIZE(pIn1);
1.4261 + sqlite3VdbeChangeEncoding(pIn1, encoding);
1.4262 + break;
1.4263 +}
1.4264 +#endif /* SQLITE_OMIT_INTEGRITY_CHECK */
1.4265 +
1.4266 +/* Opcode: FifoWrite P1 * * * *
1.4267 +**
1.4268 +** Write the integer from register P1 into the Fifo.
1.4269 +*/
1.4270 +case OP_FifoWrite: { /* in1 */
1.4271 + p->sFifo.db = db;
1.4272 + if( sqlite3VdbeFifoPush(&p->sFifo, sqlite3VdbeIntValue(pIn1))==SQLITE_NOMEM ){
1.4273 + goto no_mem;
1.4274 + }
1.4275 + break;
1.4276 +}
1.4277 +
1.4278 +/* Opcode: FifoRead P1 P2 * * *
1.4279 +**
1.4280 +** Attempt to read a single integer from the Fifo. Store that
1.4281 +** integer in register P1.
1.4282 +**
1.4283 +** If the Fifo is empty jump to P2.
1.4284 +*/
1.4285 +case OP_FifoRead: { /* jump */
1.4286 + CHECK_FOR_INTERRUPT;
1.4287 + assert( pOp->p1>0 && pOp->p1<=p->nMem );
1.4288 + pOut = &p->aMem[pOp->p1];
1.4289 + MemSetTypeFlag(pOut, MEM_Int);
1.4290 + if( sqlite3VdbeFifoPop(&p->sFifo, &pOut->u.i)==SQLITE_DONE ){
1.4291 + pc = pOp->p2 - 1;
1.4292 + }
1.4293 + break;
1.4294 +}
1.4295 +
1.4296 +#ifndef SQLITE_OMIT_TRIGGER
1.4297 +/* Opcode: ContextPush * * *
1.4298 +**
1.4299 +** Save the current Vdbe context such that it can be restored by a ContextPop
1.4300 +** opcode. The context stores the last insert row id, the last statement change
1.4301 +** count, and the current statement change count.
1.4302 +*/
1.4303 +case OP_ContextPush: {
1.4304 + int i = p->contextStackTop++;
1.4305 + Context *pContext;
1.4306 +
1.4307 + assert( i>=0 );
1.4308 + /* FIX ME: This should be allocated as part of the vdbe at compile-time */
1.4309 + if( i>=p->contextStackDepth ){
1.4310 + p->contextStackDepth = i+1;
1.4311 + p->contextStack = sqlite3DbReallocOrFree(db, p->contextStack,
1.4312 + sizeof(Context)*(i+1));
1.4313 + if( p->contextStack==0 ) goto no_mem;
1.4314 + }
1.4315 + pContext = &p->contextStack[i];
1.4316 + pContext->lastRowid = db->lastRowid;
1.4317 + pContext->nChange = p->nChange;
1.4318 + pContext->sFifo = p->sFifo;
1.4319 + sqlite3VdbeFifoInit(&p->sFifo, db);
1.4320 + break;
1.4321 +}
1.4322 +
1.4323 +/* Opcode: ContextPop * * *
1.4324 +**
1.4325 +** Restore the Vdbe context to the state it was in when contextPush was last
1.4326 +** executed. The context stores the last insert row id, the last statement
1.4327 +** change count, and the current statement change count.
1.4328 +*/
1.4329 +case OP_ContextPop: {
1.4330 + Context *pContext = &p->contextStack[--p->contextStackTop];
1.4331 + assert( p->contextStackTop>=0 );
1.4332 + db->lastRowid = pContext->lastRowid;
1.4333 + p->nChange = pContext->nChange;
1.4334 + sqlite3VdbeFifoClear(&p->sFifo);
1.4335 + p->sFifo = pContext->sFifo;
1.4336 + break;
1.4337 +}
1.4338 +#endif /* #ifndef SQLITE_OMIT_TRIGGER */
1.4339 +
1.4340 +#ifndef SQLITE_OMIT_AUTOINCREMENT
1.4341 +/* Opcode: MemMax P1 P2 * * *
1.4342 +**
1.4343 +** Set the value of register P1 to the maximum of its current value
1.4344 +** and the value in register P2.
1.4345 +**
1.4346 +** This instruction throws an error if the memory cell is not initially
1.4347 +** an integer.
1.4348 +*/
1.4349 +case OP_MemMax: { /* in1, in2 */
1.4350 + sqlite3VdbeMemIntegerify(pIn1);
1.4351 + sqlite3VdbeMemIntegerify(pIn2);
1.4352 + if( pIn1->u.i<pIn2->u.i){
1.4353 + pIn1->u.i = pIn2->u.i;
1.4354 + }
1.4355 + break;
1.4356 +}
1.4357 +#endif /* SQLITE_OMIT_AUTOINCREMENT */
1.4358 +
1.4359 +/* Opcode: IfPos P1 P2 * * *
1.4360 +**
1.4361 +** If the value of register P1 is 1 or greater, jump to P2.
1.4362 +**
1.4363 +** It is illegal to use this instruction on a register that does
1.4364 +** not contain an integer. An assertion fault will result if you try.
1.4365 +*/
1.4366 +case OP_IfPos: { /* jump, in1 */
1.4367 + assert( pIn1->flags&MEM_Int );
1.4368 + if( pIn1->u.i>0 ){
1.4369 + pc = pOp->p2 - 1;
1.4370 + }
1.4371 + break;
1.4372 +}
1.4373 +
1.4374 +/* Opcode: IfNeg P1 P2 * * *
1.4375 +**
1.4376 +** If the value of register P1 is less than zero, jump to P2.
1.4377 +**
1.4378 +** It is illegal to use this instruction on a register that does
1.4379 +** not contain an integer. An assertion fault will result if you try.
1.4380 +*/
1.4381 +case OP_IfNeg: { /* jump, in1 */
1.4382 + assert( pIn1->flags&MEM_Int );
1.4383 + if( pIn1->u.i<0 ){
1.4384 + pc = pOp->p2 - 1;
1.4385 + }
1.4386 + break;
1.4387 +}
1.4388 +
1.4389 +/* Opcode: IfZero P1 P2 * * *
1.4390 +**
1.4391 +** If the value of register P1 is exactly 0, jump to P2.
1.4392 +**
1.4393 +** It is illegal to use this instruction on a register that does
1.4394 +** not contain an integer. An assertion fault will result if you try.
1.4395 +*/
1.4396 +case OP_IfZero: { /* jump, in1 */
1.4397 + assert( pIn1->flags&MEM_Int );
1.4398 + if( pIn1->u.i==0 ){
1.4399 + pc = pOp->p2 - 1;
1.4400 + }
1.4401 + break;
1.4402 +}
1.4403 +
1.4404 +/* Opcode: AggStep * P2 P3 P4 P5
1.4405 +**
1.4406 +** Execute the step function for an aggregate. The
1.4407 +** function has P5 arguments. P4 is a pointer to the FuncDef
1.4408 +** structure that specifies the function. Use register
1.4409 +** P3 as the accumulator.
1.4410 +**
1.4411 +** The P5 arguments are taken from register P2 and its
1.4412 +** successors.
1.4413 +*/
1.4414 +case OP_AggStep: {
1.4415 + int n = pOp->p5;
1.4416 + int i;
1.4417 + Mem *pMem, *pRec;
1.4418 + sqlite3_context ctx;
1.4419 + sqlite3_value **apVal;
1.4420 +
1.4421 + assert( n>=0 );
1.4422 + pRec = &p->aMem[pOp->p2];
1.4423 + apVal = p->apArg;
1.4424 + assert( apVal || n==0 );
1.4425 + for(i=0; i<n; i++, pRec++){
1.4426 + apVal[i] = pRec;
1.4427 + storeTypeInfo(pRec, encoding);
1.4428 + }
1.4429 + ctx.pFunc = pOp->p4.pFunc;
1.4430 + assert( pOp->p3>0 && pOp->p3<=p->nMem );
1.4431 + ctx.pMem = pMem = &p->aMem[pOp->p3];
1.4432 + pMem->n++;
1.4433 + ctx.s.flags = MEM_Null;
1.4434 + ctx.s.z = 0;
1.4435 + ctx.s.zMalloc = 0;
1.4436 + ctx.s.xDel = 0;
1.4437 + ctx.s.db = db;
1.4438 + ctx.isError = 0;
1.4439 + ctx.pColl = 0;
1.4440 + if( ctx.pFunc->needCollSeq ){
1.4441 + assert( pOp>p->aOp );
1.4442 + assert( pOp[-1].p4type==P4_COLLSEQ );
1.4443 + assert( pOp[-1].opcode==OP_CollSeq );
1.4444 + ctx.pColl = pOp[-1].p4.pColl;
1.4445 + }
1.4446 + (ctx.pFunc->xStep)(&ctx, n, apVal);
1.4447 + if( ctx.isError ){
1.4448 + sqlite3SetString(&p->zErrMsg, db, "%s", sqlite3_value_text(&ctx.s));
1.4449 + rc = ctx.isError;
1.4450 + }
1.4451 + sqlite3VdbeMemRelease(&ctx.s);
1.4452 + break;
1.4453 +}
1.4454 +
1.4455 +/* Opcode: AggFinal P1 P2 * P4 *
1.4456 +**
1.4457 +** Execute the finalizer function for an aggregate. P1 is
1.4458 +** the memory location that is the accumulator for the aggregate.
1.4459 +**
1.4460 +** P2 is the number of arguments that the step function takes and
1.4461 +** P4 is a pointer to the FuncDef for this function. The P2
1.4462 +** argument is not used by this opcode. It is only there to disambiguate
1.4463 +** functions that can take varying numbers of arguments. The
1.4464 +** P4 argument is only needed for the degenerate case where
1.4465 +** the step function was not previously called.
1.4466 +*/
1.4467 +case OP_AggFinal: {
1.4468 + Mem *pMem;
1.4469 + assert( pOp->p1>0 && pOp->p1<=p->nMem );
1.4470 + pMem = &p->aMem[pOp->p1];
1.4471 + assert( (pMem->flags & ~(MEM_Null|MEM_Agg))==0 );
1.4472 + rc = sqlite3VdbeMemFinalize(pMem, pOp->p4.pFunc);
1.4473 + if( rc==SQLITE_ERROR ){
1.4474 + sqlite3SetString(&p->zErrMsg, db, "%s", sqlite3_value_text(pMem));
1.4475 + }
1.4476 + sqlite3VdbeChangeEncoding(pMem, encoding);
1.4477 + UPDATE_MAX_BLOBSIZE(pMem);
1.4478 + if( sqlite3VdbeMemTooBig(pMem) ){
1.4479 + goto too_big;
1.4480 + }
1.4481 + break;
1.4482 +}
1.4483 +
1.4484 +
1.4485 +#if !defined(SQLITE_OMIT_VACUUM) && !defined(SQLITE_OMIT_ATTACH)
1.4486 +/* Opcode: Vacuum * * * * *
1.4487 +**
1.4488 +** Vacuum the entire database. This opcode will cause other virtual
1.4489 +** machines to be created and run. It may not be called from within
1.4490 +** a transaction.
1.4491 +*/
1.4492 +case OP_Vacuum: {
1.4493 + if( sqlite3SafetyOff(db) ) goto abort_due_to_misuse;
1.4494 + rc = sqlite3RunVacuum(&p->zErrMsg, db);
1.4495 + if( sqlite3SafetyOn(db) ) goto abort_due_to_misuse;
1.4496 + break;
1.4497 +}
1.4498 +#endif
1.4499 +
1.4500 +#if !defined(SQLITE_OMIT_AUTOVACUUM)
1.4501 +/* Opcode: IncrVacuum P1 P2 * * *
1.4502 +**
1.4503 +** Perform a single step of the incremental vacuum procedure on
1.4504 +** the P1 database. If the vacuum has finished, jump to instruction
1.4505 +** P2. Otherwise, fall through to the next instruction.
1.4506 +*/
1.4507 +case OP_IncrVacuum: { /* jump */
1.4508 + Btree *pBt;
1.4509 +
1.4510 + assert( pOp->p1>=0 && pOp->p1<db->nDb );
1.4511 + assert( (p->btreeMask & (1<<pOp->p1))!=0 );
1.4512 + pBt = db->aDb[pOp->p1].pBt;
1.4513 + rc = sqlite3BtreeIncrVacuum(pBt);
1.4514 + if( rc==SQLITE_DONE ){
1.4515 + pc = pOp->p2 - 1;
1.4516 + rc = SQLITE_OK;
1.4517 + }
1.4518 + break;
1.4519 +}
1.4520 +#endif
1.4521 +
1.4522 +/* Opcode: Expire P1 * * * *
1.4523 +**
1.4524 +** Cause precompiled statements to become expired. An expired statement
1.4525 +** fails with an error code of SQLITE_SCHEMA if it is ever executed
1.4526 +** (via sqlite3_step()).
1.4527 +**
1.4528 +** If P1 is 0, then all SQL statements become expired. If P1 is non-zero,
1.4529 +** then only the currently executing statement is affected.
1.4530 +*/
1.4531 +case OP_Expire: {
1.4532 + if( !pOp->p1 ){
1.4533 + sqlite3ExpirePreparedStatements(db);
1.4534 + }else{
1.4535 + p->expired = 1;
1.4536 + }
1.4537 + break;
1.4538 +}
1.4539 +
1.4540 +#ifndef SQLITE_OMIT_SHARED_CACHE
1.4541 +/* Opcode: TableLock P1 P2 P3 P4 *
1.4542 +**
1.4543 +** Obtain a lock on a particular table. This instruction is only used when
1.4544 +** the shared-cache feature is enabled.
1.4545 +**
1.4546 +** If P1 is the index of the database in sqlite3.aDb[] of the database
1.4547 +** on which the lock is acquired. A readlock is obtained if P3==0 or
1.4548 +** a write lock if P3==1.
1.4549 +**
1.4550 +** P2 contains the root-page of the table to lock.
1.4551 +**
1.4552 +** P4 contains a pointer to the name of the table being locked. This is only
1.4553 +** used to generate an error message if the lock cannot be obtained.
1.4554 +*/
1.4555 +case OP_TableLock: {
1.4556 + int p1 = pOp->p1;
1.4557 + u8 isWriteLock = pOp->p3;
1.4558 + assert( p1>=0 && p1<db->nDb );
1.4559 + assert( (p->btreeMask & (1<<p1))!=0 );
1.4560 + assert( isWriteLock==0 || isWriteLock==1 );
1.4561 + rc = sqlite3BtreeLockTable(db->aDb[p1].pBt, pOp->p2, isWriteLock);
1.4562 + if( rc==SQLITE_LOCKED ){
1.4563 + const char *z = pOp->p4.z;
1.4564 + sqlite3SetString(&p->zErrMsg, db, "database table is locked: %s", z);
1.4565 + }
1.4566 + break;
1.4567 +}
1.4568 +#endif /* SQLITE_OMIT_SHARED_CACHE */
1.4569 +
1.4570 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.4571 +/* Opcode: VBegin * * * P4 *
1.4572 +**
1.4573 +** P4 may be a pointer to an sqlite3_vtab structure. If so, call the
1.4574 +** xBegin method for that table.
1.4575 +**
1.4576 +** Also, whether or not P4 is set, check that this is not being called from
1.4577 +** within a callback to a virtual table xSync() method. If it is, set the
1.4578 +** error code to SQLITE_LOCKED.
1.4579 +*/
1.4580 +case OP_VBegin: {
1.4581 + sqlite3_vtab *pVtab = pOp->p4.pVtab;
1.4582 + rc = sqlite3VtabBegin(db, pVtab);
1.4583 + if( pVtab ){
1.4584 + sqlite3DbFree(db, p->zErrMsg);
1.4585 + p->zErrMsg = pVtab->zErrMsg;
1.4586 + pVtab->zErrMsg = 0;
1.4587 + }
1.4588 + break;
1.4589 +}
1.4590 +#endif /* SQLITE_OMIT_VIRTUALTABLE */
1.4591 +
1.4592 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.4593 +/* Opcode: VCreate P1 * * P4 *
1.4594 +**
1.4595 +** P4 is the name of a virtual table in database P1. Call the xCreate method
1.4596 +** for that table.
1.4597 +*/
1.4598 +case OP_VCreate: {
1.4599 + rc = sqlite3VtabCallCreate(db, pOp->p1, pOp->p4.z, &p->zErrMsg);
1.4600 + break;
1.4601 +}
1.4602 +#endif /* SQLITE_OMIT_VIRTUALTABLE */
1.4603 +
1.4604 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.4605 +/* Opcode: VDestroy P1 * * P4 *
1.4606 +**
1.4607 +** P4 is the name of a virtual table in database P1. Call the xDestroy method
1.4608 +** of that table.
1.4609 +*/
1.4610 +case OP_VDestroy: {
1.4611 + p->inVtabMethod = 2;
1.4612 + rc = sqlite3VtabCallDestroy(db, pOp->p1, pOp->p4.z);
1.4613 + p->inVtabMethod = 0;
1.4614 + break;
1.4615 +}
1.4616 +#endif /* SQLITE_OMIT_VIRTUALTABLE */
1.4617 +
1.4618 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.4619 +/* Opcode: VOpen P1 * * P4 *
1.4620 +**
1.4621 +** P4 is a pointer to a virtual table object, an sqlite3_vtab structure.
1.4622 +** P1 is a cursor number. This opcode opens a cursor to the virtual
1.4623 +** table and stores that cursor in P1.
1.4624 +*/
1.4625 +case OP_VOpen: {
1.4626 + Cursor *pCur = 0;
1.4627 + sqlite3_vtab_cursor *pVtabCursor = 0;
1.4628 +
1.4629 + sqlite3_vtab *pVtab = pOp->p4.pVtab;
1.4630 + sqlite3_module *pModule = (sqlite3_module *)pVtab->pModule;
1.4631 +
1.4632 + assert(pVtab && pModule);
1.4633 + if( sqlite3SafetyOff(db) ) goto abort_due_to_misuse;
1.4634 + rc = pModule->xOpen(pVtab, &pVtabCursor);
1.4635 + sqlite3DbFree(db, p->zErrMsg);
1.4636 + p->zErrMsg = pVtab->zErrMsg;
1.4637 + pVtab->zErrMsg = 0;
1.4638 + if( sqlite3SafetyOn(db) ) goto abort_due_to_misuse;
1.4639 + if( SQLITE_OK==rc ){
1.4640 + /* Initialize sqlite3_vtab_cursor base class */
1.4641 + pVtabCursor->pVtab = pVtab;
1.4642 +
1.4643 + /* Initialise vdbe cursor object */
1.4644 + pCur = allocateCursor(p, pOp->p1, &pOp[-1], -1, 0);
1.4645 + if( pCur ){
1.4646 + pCur->pVtabCursor = pVtabCursor;
1.4647 + pCur->pModule = pVtabCursor->pVtab->pModule;
1.4648 + }else{
1.4649 + db->mallocFailed = 1;
1.4650 + pModule->xClose(pVtabCursor);
1.4651 + }
1.4652 + }
1.4653 + break;
1.4654 +}
1.4655 +#endif /* SQLITE_OMIT_VIRTUALTABLE */
1.4656 +
1.4657 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.4658 +/* Opcode: VFilter P1 P2 P3 P4 *
1.4659 +**
1.4660 +** P1 is a cursor opened using VOpen. P2 is an address to jump to if
1.4661 +** the filtered result set is empty.
1.4662 +**
1.4663 +** P4 is either NULL or a string that was generated by the xBestIndex
1.4664 +** method of the module. The interpretation of the P4 string is left
1.4665 +** to the module implementation.
1.4666 +**
1.4667 +** This opcode invokes the xFilter method on the virtual table specified
1.4668 +** by P1. The integer query plan parameter to xFilter is stored in register
1.4669 +** P3. Register P3+1 stores the argc parameter to be passed to the
1.4670 +** xFilter method. Registers P3+2..P3+1+argc are the argc
1.4671 +** additional parameters which are passed to
1.4672 +** xFilter as argv. Register P3+2 becomes argv[0] when passed to xFilter.
1.4673 +**
1.4674 +** A jump is made to P2 if the result set after filtering would be empty.
1.4675 +*/
1.4676 +case OP_VFilter: { /* jump */
1.4677 + int nArg;
1.4678 + int iQuery;
1.4679 + const sqlite3_module *pModule;
1.4680 + Mem *pQuery = &p->aMem[pOp->p3];
1.4681 + Mem *pArgc = &pQuery[1];
1.4682 + sqlite3_vtab_cursor *pVtabCursor;
1.4683 + sqlite3_vtab *pVtab;
1.4684 +
1.4685 + Cursor *pCur = p->apCsr[pOp->p1];
1.4686 +
1.4687 + REGISTER_TRACE(pOp->p3, pQuery);
1.4688 + assert( pCur->pVtabCursor );
1.4689 + pVtabCursor = pCur->pVtabCursor;
1.4690 + pVtab = pVtabCursor->pVtab;
1.4691 + pModule = pVtab->pModule;
1.4692 +
1.4693 + /* Grab the index number and argc parameters */
1.4694 + assert( (pQuery->flags&MEM_Int)!=0 && pArgc->flags==MEM_Int );
1.4695 + nArg = pArgc->u.i;
1.4696 + iQuery = pQuery->u.i;
1.4697 +
1.4698 + /* Invoke the xFilter method */
1.4699 + {
1.4700 + int res = 0;
1.4701 + int i;
1.4702 + Mem **apArg = p->apArg;
1.4703 + for(i = 0; i<nArg; i++){
1.4704 + apArg[i] = &pArgc[i+1];
1.4705 + storeTypeInfo(apArg[i], 0);
1.4706 + }
1.4707 +
1.4708 + if( sqlite3SafetyOff(db) ) goto abort_due_to_misuse;
1.4709 + sqlite3VtabLock(pVtab);
1.4710 + p->inVtabMethod = 1;
1.4711 + rc = pModule->xFilter(pVtabCursor, iQuery, pOp->p4.z, nArg, apArg);
1.4712 + p->inVtabMethod = 0;
1.4713 + sqlite3DbFree(db, p->zErrMsg);
1.4714 + p->zErrMsg = pVtab->zErrMsg;
1.4715 + pVtab->zErrMsg = 0;
1.4716 + sqlite3VtabUnlock(db, pVtab);
1.4717 + if( rc==SQLITE_OK ){
1.4718 + res = pModule->xEof(pVtabCursor);
1.4719 + }
1.4720 + if( sqlite3SafetyOn(db) ) goto abort_due_to_misuse;
1.4721 +
1.4722 + if( res ){
1.4723 + pc = pOp->p2 - 1;
1.4724 + }
1.4725 + }
1.4726 + pCur->nullRow = 0;
1.4727 +
1.4728 + break;
1.4729 +}
1.4730 +#endif /* SQLITE_OMIT_VIRTUALTABLE */
1.4731 +
1.4732 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.4733 +/* Opcode: VRowid P1 P2 * * *
1.4734 +**
1.4735 +** Store into register P2 the rowid of
1.4736 +** the virtual-table that the P1 cursor is pointing to.
1.4737 +*/
1.4738 +case OP_VRowid: { /* out2-prerelease */
1.4739 + sqlite3_vtab *pVtab;
1.4740 + const sqlite3_module *pModule;
1.4741 + sqlite_int64 iRow;
1.4742 + Cursor *pCur = p->apCsr[pOp->p1];
1.4743 +
1.4744 + assert( pCur->pVtabCursor );
1.4745 + if( pCur->nullRow ){
1.4746 + break;
1.4747 + }
1.4748 + pVtab = pCur->pVtabCursor->pVtab;
1.4749 + pModule = pVtab->pModule;
1.4750 + assert( pModule->xRowid );
1.4751 + if( sqlite3SafetyOff(db) ) goto abort_due_to_misuse;
1.4752 + rc = pModule->xRowid(pCur->pVtabCursor, &iRow);
1.4753 + sqlite3DbFree(db, p->zErrMsg);
1.4754 + p->zErrMsg = pVtab->zErrMsg;
1.4755 + pVtab->zErrMsg = 0;
1.4756 + if( sqlite3SafetyOn(db) ) goto abort_due_to_misuse;
1.4757 + MemSetTypeFlag(pOut, MEM_Int);
1.4758 + pOut->u.i = iRow;
1.4759 + break;
1.4760 +}
1.4761 +#endif /* SQLITE_OMIT_VIRTUALTABLE */
1.4762 +
1.4763 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.4764 +/* Opcode: VColumn P1 P2 P3 * *
1.4765 +**
1.4766 +** Store the value of the P2-th column of
1.4767 +** the row of the virtual-table that the
1.4768 +** P1 cursor is pointing to into register P3.
1.4769 +*/
1.4770 +case OP_VColumn: {
1.4771 + sqlite3_vtab *pVtab;
1.4772 + const sqlite3_module *pModule;
1.4773 + Mem *pDest;
1.4774 + sqlite3_context sContext;
1.4775 +
1.4776 + Cursor *pCur = p->apCsr[pOp->p1];
1.4777 + assert( pCur->pVtabCursor );
1.4778 + assert( pOp->p3>0 && pOp->p3<=p->nMem );
1.4779 + pDest = &p->aMem[pOp->p3];
1.4780 + if( pCur->nullRow ){
1.4781 + sqlite3VdbeMemSetNull(pDest);
1.4782 + break;
1.4783 + }
1.4784 + pVtab = pCur->pVtabCursor->pVtab;
1.4785 + pModule = pVtab->pModule;
1.4786 + assert( pModule->xColumn );
1.4787 + memset(&sContext, 0, sizeof(sContext));
1.4788 +
1.4789 + /* The output cell may already have a buffer allocated. Move
1.4790 + ** the current contents to sContext.s so in case the user-function
1.4791 + ** can use the already allocated buffer instead of allocating a
1.4792 + ** new one.
1.4793 + */
1.4794 + sqlite3VdbeMemMove(&sContext.s, pDest);
1.4795 + MemSetTypeFlag(&sContext.s, MEM_Null);
1.4796 +
1.4797 + if( sqlite3SafetyOff(db) ) goto abort_due_to_misuse;
1.4798 + rc = pModule->xColumn(pCur->pVtabCursor, &sContext, pOp->p2);
1.4799 + sqlite3DbFree(db, p->zErrMsg);
1.4800 + p->zErrMsg = pVtab->zErrMsg;
1.4801 + pVtab->zErrMsg = 0;
1.4802 +
1.4803 + /* Copy the result of the function to the P3 register. We
1.4804 + ** do this regardless of whether or not an error occured to ensure any
1.4805 + ** dynamic allocation in sContext.s (a Mem struct) is released.
1.4806 + */
1.4807 + sqlite3VdbeChangeEncoding(&sContext.s, encoding);
1.4808 + REGISTER_TRACE(pOp->p3, pDest);
1.4809 + sqlite3VdbeMemMove(pDest, &sContext.s);
1.4810 + UPDATE_MAX_BLOBSIZE(pDest);
1.4811 +
1.4812 + if( sqlite3SafetyOn(db) ){
1.4813 + goto abort_due_to_misuse;
1.4814 + }
1.4815 + if( sqlite3VdbeMemTooBig(pDest) ){
1.4816 + goto too_big;
1.4817 + }
1.4818 + break;
1.4819 +}
1.4820 +#endif /* SQLITE_OMIT_VIRTUALTABLE */
1.4821 +
1.4822 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.4823 +/* Opcode: VNext P1 P2 * * *
1.4824 +**
1.4825 +** Advance virtual table P1 to the next row in its result set and
1.4826 +** jump to instruction P2. Or, if the virtual table has reached
1.4827 +** the end of its result set, then fall through to the next instruction.
1.4828 +*/
1.4829 +case OP_VNext: { /* jump */
1.4830 + sqlite3_vtab *pVtab;
1.4831 + const sqlite3_module *pModule;
1.4832 + int res = 0;
1.4833 +
1.4834 + Cursor *pCur = p->apCsr[pOp->p1];
1.4835 + assert( pCur->pVtabCursor );
1.4836 + if( pCur->nullRow ){
1.4837 + break;
1.4838 + }
1.4839 + pVtab = pCur->pVtabCursor->pVtab;
1.4840 + pModule = pVtab->pModule;
1.4841 + assert( pModule->xNext );
1.4842 +
1.4843 + /* Invoke the xNext() method of the module. There is no way for the
1.4844 + ** underlying implementation to return an error if one occurs during
1.4845 + ** xNext(). Instead, if an error occurs, true is returned (indicating that
1.4846 + ** data is available) and the error code returned when xColumn or
1.4847 + ** some other method is next invoked on the save virtual table cursor.
1.4848 + */
1.4849 + if( sqlite3SafetyOff(db) ) goto abort_due_to_misuse;
1.4850 + sqlite3VtabLock(pVtab);
1.4851 + p->inVtabMethod = 1;
1.4852 + rc = pModule->xNext(pCur->pVtabCursor);
1.4853 + p->inVtabMethod = 0;
1.4854 + sqlite3DbFree(db, p->zErrMsg);
1.4855 + p->zErrMsg = pVtab->zErrMsg;
1.4856 + pVtab->zErrMsg = 0;
1.4857 + sqlite3VtabUnlock(db, pVtab);
1.4858 + if( rc==SQLITE_OK ){
1.4859 + res = pModule->xEof(pCur->pVtabCursor);
1.4860 + }
1.4861 + if( sqlite3SafetyOn(db) ) goto abort_due_to_misuse;
1.4862 +
1.4863 + if( !res ){
1.4864 + /* If there is data, jump to P2 */
1.4865 + pc = pOp->p2 - 1;
1.4866 + }
1.4867 + break;
1.4868 +}
1.4869 +#endif /* SQLITE_OMIT_VIRTUALTABLE */
1.4870 +
1.4871 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.4872 +/* Opcode: VRename P1 * * P4 *
1.4873 +**
1.4874 +** P4 is a pointer to a virtual table object, an sqlite3_vtab structure.
1.4875 +** This opcode invokes the corresponding xRename method. The value
1.4876 +** in register P1 is passed as the zName argument to the xRename method.
1.4877 +*/
1.4878 +case OP_VRename: {
1.4879 + sqlite3_vtab *pVtab = pOp->p4.pVtab;
1.4880 + Mem *pName = &p->aMem[pOp->p1];
1.4881 + assert( pVtab->pModule->xRename );
1.4882 + REGISTER_TRACE(pOp->p1, pName);
1.4883 +
1.4884 + Stringify(pName, encoding);
1.4885 +
1.4886 + if( sqlite3SafetyOff(db) ) goto abort_due_to_misuse;
1.4887 + sqlite3VtabLock(pVtab);
1.4888 + rc = pVtab->pModule->xRename(pVtab, pName->z);
1.4889 + sqlite3DbFree(db, p->zErrMsg);
1.4890 + p->zErrMsg = pVtab->zErrMsg;
1.4891 + pVtab->zErrMsg = 0;
1.4892 + sqlite3VtabUnlock(db, pVtab);
1.4893 + if( sqlite3SafetyOn(db) ) goto abort_due_to_misuse;
1.4894 +
1.4895 + break;
1.4896 +}
1.4897 +#endif
1.4898 +
1.4899 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.4900 +/* Opcode: VUpdate P1 P2 P3 P4 *
1.4901 +**
1.4902 +** P4 is a pointer to a virtual table object, an sqlite3_vtab structure.
1.4903 +** This opcode invokes the corresponding xUpdate method. P2 values
1.4904 +** are contiguous memory cells starting at P3 to pass to the xUpdate
1.4905 +** invocation. The value in register (P3+P2-1) corresponds to the
1.4906 +** p2th element of the argv array passed to xUpdate.
1.4907 +**
1.4908 +** The xUpdate method will do a DELETE or an INSERT or both.
1.4909 +** The argv[0] element (which corresponds to memory cell P3)
1.4910 +** is the rowid of a row to delete. If argv[0] is NULL then no
1.4911 +** deletion occurs. The argv[1] element is the rowid of the new
1.4912 +** row. This can be NULL to have the virtual table select the new
1.4913 +** rowid for itself. The subsequent elements in the array are
1.4914 +** the values of columns in the new row.
1.4915 +**
1.4916 +** If P2==1 then no insert is performed. argv[0] is the rowid of
1.4917 +** a row to delete.
1.4918 +**
1.4919 +** P1 is a boolean flag. If it is set to true and the xUpdate call
1.4920 +** is successful, then the value returned by sqlite3_last_insert_rowid()
1.4921 +** is set to the value of the rowid for the row just inserted.
1.4922 +*/
1.4923 +case OP_VUpdate: {
1.4924 + sqlite3_vtab *pVtab = pOp->p4.pVtab;
1.4925 + sqlite3_module *pModule = (sqlite3_module *)pVtab->pModule;
1.4926 + int nArg = pOp->p2;
1.4927 + assert( pOp->p4type==P4_VTAB );
1.4928 + if( pModule->xUpdate==0 ){
1.4929 + sqlite3SetString(&p->zErrMsg, db, "read-only table");
1.4930 + rc = SQLITE_ERROR;
1.4931 + }else{
1.4932 + int i;
1.4933 + sqlite_int64 rowid;
1.4934 + Mem **apArg = p->apArg;
1.4935 + Mem *pX = &p->aMem[pOp->p3];
1.4936 + for(i=0; i<nArg; i++){
1.4937 + storeTypeInfo(pX, 0);
1.4938 + apArg[i] = pX;
1.4939 + pX++;
1.4940 + }
1.4941 + if( sqlite3SafetyOff(db) ) goto abort_due_to_misuse;
1.4942 + sqlite3VtabLock(pVtab);
1.4943 + rc = pModule->xUpdate(pVtab, nArg, apArg, &rowid);
1.4944 + sqlite3DbFree(db, p->zErrMsg);
1.4945 + p->zErrMsg = pVtab->zErrMsg;
1.4946 + pVtab->zErrMsg = 0;
1.4947 + sqlite3VtabUnlock(db, pVtab);
1.4948 + if( sqlite3SafetyOn(db) ) goto abort_due_to_misuse;
1.4949 + if( pOp->p1 && rc==SQLITE_OK ){
1.4950 + assert( nArg>1 && apArg[0] && (apArg[0]->flags&MEM_Null) );
1.4951 + db->lastRowid = rowid;
1.4952 + }
1.4953 + p->nChange++;
1.4954 + }
1.4955 + break;
1.4956 +}
1.4957 +#endif /* SQLITE_OMIT_VIRTUALTABLE */
1.4958 +
1.4959 +#ifndef SQLITE_OMIT_PAGER_PRAGMAS
1.4960 +/* Opcode: Pagecount P1 P2 * * *
1.4961 +**
1.4962 +** Write the current number of pages in database P1 to memory cell P2.
1.4963 +*/
1.4964 +case OP_Pagecount: { /* out2-prerelease */
1.4965 + int p1 = pOp->p1;
1.4966 + int nPage;
1.4967 + Pager *pPager = sqlite3BtreePager(db->aDb[p1].pBt);
1.4968 +
1.4969 + rc = sqlite3PagerPagecount(pPager, &nPage);
1.4970 + if( rc==SQLITE_OK ){
1.4971 + pOut->flags = MEM_Int;
1.4972 + pOut->u.i = nPage;
1.4973 + }
1.4974 + break;
1.4975 +}
1.4976 +#endif
1.4977 +
1.4978 +#ifndef SQLITE_OMIT_TRACE
1.4979 +/* Opcode: Trace * * * P4 *
1.4980 +**
1.4981 +** If tracing is enabled (by the sqlite3_trace()) interface, then
1.4982 +** the UTF-8 string contained in P4 is emitted on the trace callback.
1.4983 +*/
1.4984 +case OP_Trace: {
1.4985 + if( pOp->p4.z ){
1.4986 + if( db->xTrace ){
1.4987 + db->xTrace(db->pTraceArg, pOp->p4.z);
1.4988 + }
1.4989 +#ifdef SQLITE_DEBUG
1.4990 + if( (db->flags & SQLITE_SqlTrace)!=0 ){
1.4991 + sqlite3DebugPrintf("SQL-trace: %s\n", pOp->p4.z);
1.4992 + }
1.4993 +#endif /* SQLITE_DEBUG */
1.4994 + }
1.4995 + break;
1.4996 +}
1.4997 +#endif
1.4998 +
1.4999 +
1.5000 +/* Opcode: Noop * * * * *
1.5001 +**
1.5002 +** Do nothing. This instruction is often useful as a jump
1.5003 +** destination.
1.5004 +*/
1.5005 +/*
1.5006 +** The magic Explain opcode are only inserted when explain==2 (which
1.5007 +** is to say when the EXPLAIN QUERY PLAN syntax is used.)
1.5008 +** This opcode records information from the optimizer. It is the
1.5009 +** the same as a no-op. This opcodesnever appears in a real VM program.
1.5010 +*/
1.5011 +default: { /* This is really OP_Noop and OP_Explain */
1.5012 + break;
1.5013 +}
1.5014 +
1.5015 +/*****************************************************************************
1.5016 +** The cases of the switch statement above this line should all be indented
1.5017 +** by 6 spaces. But the left-most 6 spaces have been removed to improve the
1.5018 +** readability. From this point on down, the normal indentation rules are
1.5019 +** restored.
1.5020 +*****************************************************************************/
1.5021 + }
1.5022 +
1.5023 +#ifdef VDBE_PROFILE
1.5024 + {
1.5025 + u64 elapsed = sqlite3Hwtime() - start;
1.5026 + pOp->cycles += elapsed;
1.5027 + pOp->cnt++;
1.5028 +#if 0
1.5029 + fprintf(stdout, "%10llu ", elapsed);
1.5030 + sqlite3VdbePrintOp(stdout, origPc, &p->aOp[origPc]);
1.5031 +#endif
1.5032 + }
1.5033 +#endif
1.5034 +
1.5035 + /* The following code adds nothing to the actual functionality
1.5036 + ** of the program. It is only here for testing and debugging.
1.5037 + ** On the other hand, it does burn CPU cycles every time through
1.5038 + ** the evaluator loop. So we can leave it out when NDEBUG is defined.
1.5039 + */
1.5040 +#ifndef NDEBUG
1.5041 + assert( pc>=-1 && pc<p->nOp );
1.5042 +
1.5043 +#ifdef SQLITE_DEBUG
1.5044 + if( p->trace ){
1.5045 + if( rc!=0 ) fprintf(p->trace,"rc=%d\n",rc);
1.5046 + if( opProperty & OPFLG_OUT2_PRERELEASE ){
1.5047 + registerTrace(p->trace, pOp->p2, pOut);
1.5048 + }
1.5049 + if( opProperty & OPFLG_OUT3 ){
1.5050 + registerTrace(p->trace, pOp->p3, pOut);
1.5051 + }
1.5052 + }
1.5053 +#endif /* SQLITE_DEBUG */
1.5054 +#endif /* NDEBUG */
1.5055 + } /* The end of the for(;;) loop the loops through opcodes */
1.5056 +
1.5057 + /* If we reach this point, it means that execution is finished with
1.5058 + ** an error of some kind.
1.5059 + */
1.5060 +vdbe_error_halt:
1.5061 + assert( rc );
1.5062 + p->rc = rc;
1.5063 + sqlite3VdbeHalt(p);
1.5064 + if( rc==SQLITE_IOERR_NOMEM ) db->mallocFailed = 1;
1.5065 + rc = SQLITE_ERROR;
1.5066 +
1.5067 + /* This is the only way out of this procedure. We have to
1.5068 + ** release the mutexes on btrees that were acquired at the
1.5069 + ** top. */
1.5070 +vdbe_return:
1.5071 + sqlite3BtreeMutexArrayLeave(&p->aMutex);
1.5072 + return rc;
1.5073 +
1.5074 + /* Jump to here if a string or blob larger than SQLITE_MAX_LENGTH
1.5075 + ** is encountered.
1.5076 + */
1.5077 +too_big:
1.5078 + sqlite3SetString(&p->zErrMsg, db, "string or blob too big");
1.5079 + rc = SQLITE_TOOBIG;
1.5080 + goto vdbe_error_halt;
1.5081 +
1.5082 + /* Jump to here if a malloc() fails.
1.5083 + */
1.5084 +no_mem:
1.5085 + db->mallocFailed = 1;
1.5086 + sqlite3SetString(&p->zErrMsg, db, "out of memory");
1.5087 + rc = SQLITE_NOMEM;
1.5088 + goto vdbe_error_halt;
1.5089 +
1.5090 + /* Jump to here for an SQLITE_MISUSE error.
1.5091 + */
1.5092 +abort_due_to_misuse:
1.5093 + rc = SQLITE_MISUSE;
1.5094 + /* Fall thru into abort_due_to_error */
1.5095 +
1.5096 + /* Jump to here for any other kind of fatal error. The "rc" variable
1.5097 + ** should hold the error number.
1.5098 + */
1.5099 +abort_due_to_error:
1.5100 + assert( p->zErrMsg==0 );
1.5101 + if( db->mallocFailed ) rc = SQLITE_NOMEM;
1.5102 + if( rc!=SQLITE_IOERR_NOMEM ){
1.5103 + sqlite3SetString(&p->zErrMsg, db, "%s", sqlite3ErrStr(rc));
1.5104 + }
1.5105 + goto vdbe_error_halt;
1.5106 +
1.5107 + /* Jump to here if the sqlite3_interrupt() API sets the interrupt
1.5108 + ** flag.
1.5109 + */
1.5110 +abort_due_to_interrupt:
1.5111 + assert( db->u1.isInterrupted );
1.5112 + rc = SQLITE_INTERRUPT;
1.5113 + p->rc = rc;
1.5114 + sqlite3SetString(&p->zErrMsg, db, "%s", sqlite3ErrStr(rc));
1.5115 + goto vdbe_error_halt;
1.5116 +}