1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sql/SQLite364/expr.c Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,3100 @@
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 +** This file contains routines used for analyzing expressions and
1.16 +** for generating VDBE code that evaluates expressions in SQLite.
1.17 +**
1.18 +** $Id: expr.c,v 1.399 2008/10/11 16:47:36 drh Exp $
1.19 +*/
1.20 +#include "sqliteInt.h"
1.21 +#include <ctype.h>
1.22 +
1.23 +/*
1.24 +** Return the 'affinity' of the expression pExpr if any.
1.25 +**
1.26 +** If pExpr is a column, a reference to a column via an 'AS' alias,
1.27 +** or a sub-select with a column as the return value, then the
1.28 +** affinity of that column is returned. Otherwise, 0x00 is returned,
1.29 +** indicating no affinity for the expression.
1.30 +**
1.31 +** i.e. the WHERE clause expresssions in the following statements all
1.32 +** have an affinity:
1.33 +**
1.34 +** CREATE TABLE t1(a);
1.35 +** SELECT * FROM t1 WHERE a;
1.36 +** SELECT a AS b FROM t1 WHERE b;
1.37 +** SELECT * FROM t1 WHERE (select a from t1);
1.38 +*/
1.39 +char sqlite3ExprAffinity(Expr *pExpr){
1.40 + int op = pExpr->op;
1.41 + if( op==TK_SELECT ){
1.42 + return sqlite3ExprAffinity(pExpr->pSelect->pEList->a[0].pExpr);
1.43 + }
1.44 +#ifndef SQLITE_OMIT_CAST
1.45 + if( op==TK_CAST ){
1.46 + return sqlite3AffinityType(&pExpr->token);
1.47 + }
1.48 +#endif
1.49 + if( (op==TK_COLUMN || op==TK_REGISTER) && pExpr->pTab!=0 ){
1.50 + /* op==TK_REGISTER && pExpr->pTab!=0 happens when pExpr was originally
1.51 + ** a TK_COLUMN but was previously evaluated and cached in a register */
1.52 + int j = pExpr->iColumn;
1.53 + if( j<0 ) return SQLITE_AFF_INTEGER;
1.54 + assert( pExpr->pTab && j<pExpr->pTab->nCol );
1.55 + return pExpr->pTab->aCol[j].affinity;
1.56 + }
1.57 + return pExpr->affinity;
1.58 +}
1.59 +
1.60 +/*
1.61 +** Set the collating sequence for expression pExpr to be the collating
1.62 +** sequence named by pToken. Return a pointer to the revised expression.
1.63 +** The collating sequence is marked as "explicit" using the EP_ExpCollate
1.64 +** flag. An explicit collating sequence will override implicit
1.65 +** collating sequences.
1.66 +*/
1.67 +Expr *sqlite3ExprSetColl(Parse *pParse, Expr *pExpr, Token *pCollName){
1.68 + char *zColl = 0; /* Dequoted name of collation sequence */
1.69 + CollSeq *pColl;
1.70 + sqlite3 *db = pParse->db;
1.71 + zColl = sqlite3NameFromToken(db, pCollName);
1.72 + if( pExpr && zColl ){
1.73 + pColl = sqlite3LocateCollSeq(pParse, zColl, -1);
1.74 + if( pColl ){
1.75 + pExpr->pColl = pColl;
1.76 + pExpr->flags |= EP_ExpCollate;
1.77 + }
1.78 + }
1.79 + sqlite3DbFree(db, zColl);
1.80 + return pExpr;
1.81 +}
1.82 +
1.83 +/*
1.84 +** Return the default collation sequence for the expression pExpr. If
1.85 +** there is no default collation type, return 0.
1.86 +*/
1.87 +CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){
1.88 + CollSeq *pColl = 0;
1.89 + Expr *p = pExpr;
1.90 + while( p ){
1.91 + int op;
1.92 + pColl = p->pColl;
1.93 + if( pColl ) break;
1.94 + op = p->op;
1.95 + if( (op==TK_COLUMN || op==TK_REGISTER) && p->pTab!=0 ){
1.96 + /* op==TK_REGISTER && p->pTab!=0 happens when pExpr was originally
1.97 + ** a TK_COLUMN but was previously evaluated and cached in a register */
1.98 + const char *zColl;
1.99 + int j = p->iColumn;
1.100 + if( j>=0 ){
1.101 + sqlite3 *db = pParse->db;
1.102 + zColl = p->pTab->aCol[j].zColl;
1.103 + pColl = sqlite3FindCollSeq(db, ENC(db), zColl, -1, 0);
1.104 + pExpr->pColl = pColl;
1.105 + }
1.106 + break;
1.107 + }
1.108 + if( op!=TK_CAST && op!=TK_UPLUS ){
1.109 + break;
1.110 + }
1.111 + p = p->pLeft;
1.112 + }
1.113 + if( sqlite3CheckCollSeq(pParse, pColl) ){
1.114 + pColl = 0;
1.115 + }
1.116 + return pColl;
1.117 +}
1.118 +
1.119 +/*
1.120 +** pExpr is an operand of a comparison operator. aff2 is the
1.121 +** type affinity of the other operand. This routine returns the
1.122 +** type affinity that should be used for the comparison operator.
1.123 +*/
1.124 +char sqlite3CompareAffinity(Expr *pExpr, char aff2){
1.125 + char aff1 = sqlite3ExprAffinity(pExpr);
1.126 + if( aff1 && aff2 ){
1.127 + /* Both sides of the comparison are columns. If one has numeric
1.128 + ** affinity, use that. Otherwise use no affinity.
1.129 + */
1.130 + if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){
1.131 + return SQLITE_AFF_NUMERIC;
1.132 + }else{
1.133 + return SQLITE_AFF_NONE;
1.134 + }
1.135 + }else if( !aff1 && !aff2 ){
1.136 + /* Neither side of the comparison is a column. Compare the
1.137 + ** results directly.
1.138 + */
1.139 + return SQLITE_AFF_NONE;
1.140 + }else{
1.141 + /* One side is a column, the other is not. Use the columns affinity. */
1.142 + assert( aff1==0 || aff2==0 );
1.143 + return (aff1 + aff2);
1.144 + }
1.145 +}
1.146 +
1.147 +/*
1.148 +** pExpr is a comparison operator. Return the type affinity that should
1.149 +** be applied to both operands prior to doing the comparison.
1.150 +*/
1.151 +static char comparisonAffinity(Expr *pExpr){
1.152 + char aff;
1.153 + assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT ||
1.154 + pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
1.155 + pExpr->op==TK_NE );
1.156 + assert( pExpr->pLeft );
1.157 + aff = sqlite3ExprAffinity(pExpr->pLeft);
1.158 + if( pExpr->pRight ){
1.159 + aff = sqlite3CompareAffinity(pExpr->pRight, aff);
1.160 + }
1.161 + else if( pExpr->pSelect ){
1.162 + aff = sqlite3CompareAffinity(pExpr->pSelect->pEList->a[0].pExpr, aff);
1.163 + }
1.164 + else if( !aff ){
1.165 + aff = SQLITE_AFF_NONE;
1.166 + }
1.167 + return aff;
1.168 +}
1.169 +
1.170 +/*
1.171 +** pExpr is a comparison expression, eg. '=', '<', IN(...) etc.
1.172 +** idx_affinity is the affinity of an indexed column. Return true
1.173 +** if the index with affinity idx_affinity may be used to implement
1.174 +** the comparison in pExpr.
1.175 +*/
1.176 +int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){
1.177 + char aff = comparisonAffinity(pExpr);
1.178 + switch( aff ){
1.179 + case SQLITE_AFF_NONE:
1.180 + return 1;
1.181 + case SQLITE_AFF_TEXT:
1.182 + return idx_affinity==SQLITE_AFF_TEXT;
1.183 + default:
1.184 + return sqlite3IsNumericAffinity(idx_affinity);
1.185 + }
1.186 +}
1.187 +
1.188 +/*
1.189 +** Return the P5 value that should be used for a binary comparison
1.190 +** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2.
1.191 +*/
1.192 +static u8 binaryCompareP5(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){
1.193 + u8 aff = (char)sqlite3ExprAffinity(pExpr2);
1.194 + aff = sqlite3CompareAffinity(pExpr1, aff) | jumpIfNull;
1.195 + return aff;
1.196 +}
1.197 +
1.198 +/*
1.199 +** Return a pointer to the collation sequence that should be used by
1.200 +** a binary comparison operator comparing pLeft and pRight.
1.201 +**
1.202 +** If the left hand expression has a collating sequence type, then it is
1.203 +** used. Otherwise the collation sequence for the right hand expression
1.204 +** is used, or the default (BINARY) if neither expression has a collating
1.205 +** type.
1.206 +**
1.207 +** Argument pRight (but not pLeft) may be a null pointer. In this case,
1.208 +** it is not considered.
1.209 +*/
1.210 +CollSeq *sqlite3BinaryCompareCollSeq(
1.211 + Parse *pParse,
1.212 + Expr *pLeft,
1.213 + Expr *pRight
1.214 +){
1.215 + CollSeq *pColl;
1.216 + assert( pLeft );
1.217 + if( pLeft->flags & EP_ExpCollate ){
1.218 + assert( pLeft->pColl );
1.219 + pColl = pLeft->pColl;
1.220 + }else if( pRight && pRight->flags & EP_ExpCollate ){
1.221 + assert( pRight->pColl );
1.222 + pColl = pRight->pColl;
1.223 + }else{
1.224 + pColl = sqlite3ExprCollSeq(pParse, pLeft);
1.225 + if( !pColl ){
1.226 + pColl = sqlite3ExprCollSeq(pParse, pRight);
1.227 + }
1.228 + }
1.229 + return pColl;
1.230 +}
1.231 +
1.232 +/*
1.233 +** Generate the operands for a comparison operation. Before
1.234 +** generating the code for each operand, set the EP_AnyAff
1.235 +** flag on the expression so that it will be able to used a
1.236 +** cached column value that has previously undergone an
1.237 +** affinity change.
1.238 +*/
1.239 +static void codeCompareOperands(
1.240 + Parse *pParse, /* Parsing and code generating context */
1.241 + Expr *pLeft, /* The left operand */
1.242 + int *pRegLeft, /* Register where left operand is stored */
1.243 + int *pFreeLeft, /* Free this register when done */
1.244 + Expr *pRight, /* The right operand */
1.245 + int *pRegRight, /* Register where right operand is stored */
1.246 + int *pFreeRight /* Write temp register for right operand there */
1.247 +){
1.248 + while( pLeft->op==TK_UPLUS ) pLeft = pLeft->pLeft;
1.249 + pLeft->flags |= EP_AnyAff;
1.250 + *pRegLeft = sqlite3ExprCodeTemp(pParse, pLeft, pFreeLeft);
1.251 + while( pRight->op==TK_UPLUS ) pRight = pRight->pLeft;
1.252 + pRight->flags |= EP_AnyAff;
1.253 + *pRegRight = sqlite3ExprCodeTemp(pParse, pRight, pFreeRight);
1.254 +}
1.255 +
1.256 +/*
1.257 +** Generate code for a comparison operator.
1.258 +*/
1.259 +static int codeCompare(
1.260 + Parse *pParse, /* The parsing (and code generating) context */
1.261 + Expr *pLeft, /* The left operand */
1.262 + Expr *pRight, /* The right operand */
1.263 + int opcode, /* The comparison opcode */
1.264 + int in1, int in2, /* Register holding operands */
1.265 + int dest, /* Jump here if true. */
1.266 + int jumpIfNull /* If true, jump if either operand is NULL */
1.267 +){
1.268 + int p5;
1.269 + int addr;
1.270 + CollSeq *p4;
1.271 +
1.272 + p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight);
1.273 + p5 = binaryCompareP5(pLeft, pRight, jumpIfNull);
1.274 + addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1,
1.275 + (void*)p4, P4_COLLSEQ);
1.276 + sqlite3VdbeChangeP5(pParse->pVdbe, p5);
1.277 + if( (p5 & SQLITE_AFF_MASK)!=SQLITE_AFF_NONE ){
1.278 + sqlite3ExprCacheAffinityChange(pParse, in1, 1);
1.279 + sqlite3ExprCacheAffinityChange(pParse, in2, 1);
1.280 + }
1.281 + return addr;
1.282 +}
1.283 +
1.284 +#if SQLITE_MAX_EXPR_DEPTH>0
1.285 +/*
1.286 +** Check that argument nHeight is less than or equal to the maximum
1.287 +** expression depth allowed. If it is not, leave an error message in
1.288 +** pParse.
1.289 +*/
1.290 +int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){
1.291 + int rc = SQLITE_OK;
1.292 + int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH];
1.293 + if( nHeight>mxHeight ){
1.294 + sqlite3ErrorMsg(pParse,
1.295 + "Expression tree is too large (maximum depth %d)", mxHeight
1.296 + );
1.297 + rc = SQLITE_ERROR;
1.298 + }
1.299 + return rc;
1.300 +}
1.301 +
1.302 +/* The following three functions, heightOfExpr(), heightOfExprList()
1.303 +** and heightOfSelect(), are used to determine the maximum height
1.304 +** of any expression tree referenced by the structure passed as the
1.305 +** first argument.
1.306 +**
1.307 +** If this maximum height is greater than the current value pointed
1.308 +** to by pnHeight, the second parameter, then set *pnHeight to that
1.309 +** value.
1.310 +*/
1.311 +static void heightOfExpr(Expr *p, int *pnHeight){
1.312 + if( p ){
1.313 + if( p->nHeight>*pnHeight ){
1.314 + *pnHeight = p->nHeight;
1.315 + }
1.316 + }
1.317 +}
1.318 +static void heightOfExprList(ExprList *p, int *pnHeight){
1.319 + if( p ){
1.320 + int i;
1.321 + for(i=0; i<p->nExpr; i++){
1.322 + heightOfExpr(p->a[i].pExpr, pnHeight);
1.323 + }
1.324 + }
1.325 +}
1.326 +static void heightOfSelect(Select *p, int *pnHeight){
1.327 + if( p ){
1.328 + heightOfExpr(p->pWhere, pnHeight);
1.329 + heightOfExpr(p->pHaving, pnHeight);
1.330 + heightOfExpr(p->pLimit, pnHeight);
1.331 + heightOfExpr(p->pOffset, pnHeight);
1.332 + heightOfExprList(p->pEList, pnHeight);
1.333 + heightOfExprList(p->pGroupBy, pnHeight);
1.334 + heightOfExprList(p->pOrderBy, pnHeight);
1.335 + heightOfSelect(p->pPrior, pnHeight);
1.336 + }
1.337 +}
1.338 +
1.339 +/*
1.340 +** Set the Expr.nHeight variable in the structure passed as an
1.341 +** argument. An expression with no children, Expr.pList or
1.342 +** Expr.pSelect member has a height of 1. Any other expression
1.343 +** has a height equal to the maximum height of any other
1.344 +** referenced Expr plus one.
1.345 +*/
1.346 +static void exprSetHeight(Expr *p){
1.347 + int nHeight = 0;
1.348 + heightOfExpr(p->pLeft, &nHeight);
1.349 + heightOfExpr(p->pRight, &nHeight);
1.350 + heightOfExprList(p->pList, &nHeight);
1.351 + heightOfSelect(p->pSelect, &nHeight);
1.352 + p->nHeight = nHeight + 1;
1.353 +}
1.354 +
1.355 +/*
1.356 +** Set the Expr.nHeight variable using the exprSetHeight() function. If
1.357 +** the height is greater than the maximum allowed expression depth,
1.358 +** leave an error in pParse.
1.359 +*/
1.360 +void sqlite3ExprSetHeight(Parse *pParse, Expr *p){
1.361 + exprSetHeight(p);
1.362 + sqlite3ExprCheckHeight(pParse, p->nHeight);
1.363 +}
1.364 +
1.365 +/*
1.366 +** Return the maximum height of any expression tree referenced
1.367 +** by the select statement passed as an argument.
1.368 +*/
1.369 +int sqlite3SelectExprHeight(Select *p){
1.370 + int nHeight = 0;
1.371 + heightOfSelect(p, &nHeight);
1.372 + return nHeight;
1.373 +}
1.374 +#else
1.375 + #define exprSetHeight(y)
1.376 +#endif /* SQLITE_MAX_EXPR_DEPTH>0 */
1.377 +
1.378 +/*
1.379 +** Construct a new expression node and return a pointer to it. Memory
1.380 +** for this node is obtained from sqlite3_malloc(). The calling function
1.381 +** is responsible for making sure the node eventually gets freed.
1.382 +*/
1.383 +Expr *sqlite3Expr(
1.384 + sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */
1.385 + int op, /* Expression opcode */
1.386 + Expr *pLeft, /* Left operand */
1.387 + Expr *pRight, /* Right operand */
1.388 + const Token *pToken /* Argument token */
1.389 +){
1.390 + Expr *pNew;
1.391 + pNew = sqlite3DbMallocZero(db, sizeof(Expr));
1.392 + if( pNew==0 ){
1.393 + /* When malloc fails, delete pLeft and pRight. Expressions passed to
1.394 + ** this function must always be allocated with sqlite3Expr() for this
1.395 + ** reason.
1.396 + */
1.397 + sqlite3ExprDelete(db, pLeft);
1.398 + sqlite3ExprDelete(db, pRight);
1.399 + return 0;
1.400 + }
1.401 + pNew->op = op;
1.402 + pNew->pLeft = pLeft;
1.403 + pNew->pRight = pRight;
1.404 + pNew->iAgg = -1;
1.405 + pNew->span.z = (u8*)"";
1.406 + if( pToken ){
1.407 + assert( pToken->dyn==0 );
1.408 + pNew->span = pNew->token = *pToken;
1.409 + }else if( pLeft ){
1.410 + if( pRight ){
1.411 + if( pRight->span.dyn==0 && pLeft->span.dyn==0 ){
1.412 + sqlite3ExprSpan(pNew, &pLeft->span, &pRight->span);
1.413 + }
1.414 + if( pRight->flags & EP_ExpCollate ){
1.415 + pNew->flags |= EP_ExpCollate;
1.416 + pNew->pColl = pRight->pColl;
1.417 + }
1.418 + }
1.419 + if( pLeft->flags & EP_ExpCollate ){
1.420 + pNew->flags |= EP_ExpCollate;
1.421 + pNew->pColl = pLeft->pColl;
1.422 + }
1.423 + }
1.424 +
1.425 + exprSetHeight(pNew);
1.426 + return pNew;
1.427 +}
1.428 +
1.429 +/*
1.430 +** Works like sqlite3Expr() except that it takes an extra Parse*
1.431 +** argument and notifies the associated connection object if malloc fails.
1.432 +*/
1.433 +Expr *sqlite3PExpr(
1.434 + Parse *pParse, /* Parsing context */
1.435 + int op, /* Expression opcode */
1.436 + Expr *pLeft, /* Left operand */
1.437 + Expr *pRight, /* Right operand */
1.438 + const Token *pToken /* Argument token */
1.439 +){
1.440 + Expr *p = sqlite3Expr(pParse->db, op, pLeft, pRight, pToken);
1.441 + if( p ){
1.442 + sqlite3ExprCheckHeight(pParse, p->nHeight);
1.443 + }
1.444 + return p;
1.445 +}
1.446 +
1.447 +/*
1.448 +** When doing a nested parse, you can include terms in an expression
1.449 +** that look like this: #1 #2 ... These terms refer to registers
1.450 +** in the virtual machine. #N is the N-th register.
1.451 +**
1.452 +** This routine is called by the parser to deal with on of those terms.
1.453 +** It immediately generates code to store the value in a memory location.
1.454 +** The returns an expression that will code to extract the value from
1.455 +** that memory location as needed.
1.456 +*/
1.457 +Expr *sqlite3RegisterExpr(Parse *pParse, Token *pToken){
1.458 + Vdbe *v = pParse->pVdbe;
1.459 + Expr *p;
1.460 + if( pParse->nested==0 ){
1.461 + sqlite3ErrorMsg(pParse, "near \"%T\": syntax error", pToken);
1.462 + return sqlite3PExpr(pParse, TK_NULL, 0, 0, 0);
1.463 + }
1.464 + if( v==0 ) return 0;
1.465 + p = sqlite3PExpr(pParse, TK_REGISTER, 0, 0, pToken);
1.466 + if( p==0 ){
1.467 + return 0; /* Malloc failed */
1.468 + }
1.469 + p->iTable = atoi((char*)&pToken->z[1]);
1.470 + return p;
1.471 +}
1.472 +
1.473 +/*
1.474 +** Join two expressions using an AND operator. If either expression is
1.475 +** NULL, then just return the other expression.
1.476 +*/
1.477 +Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){
1.478 + if( pLeft==0 ){
1.479 + return pRight;
1.480 + }else if( pRight==0 ){
1.481 + return pLeft;
1.482 + }else{
1.483 + return sqlite3Expr(db, TK_AND, pLeft, pRight, 0);
1.484 + }
1.485 +}
1.486 +
1.487 +/*
1.488 +** Set the Expr.span field of the given expression to span all
1.489 +** text between the two given tokens. Both tokens must be pointing
1.490 +** at the same string.
1.491 +*/
1.492 +void sqlite3ExprSpan(Expr *pExpr, Token *pLeft, Token *pRight){
1.493 + assert( pRight!=0 );
1.494 + assert( pLeft!=0 );
1.495 + if( pExpr ){
1.496 + pExpr->span.z = pLeft->z;
1.497 + pExpr->span.n = pRight->n + (pRight->z - pLeft->z);
1.498 + }
1.499 +}
1.500 +
1.501 +/*
1.502 +** Construct a new expression node for a function with multiple
1.503 +** arguments.
1.504 +*/
1.505 +Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){
1.506 + Expr *pNew;
1.507 + sqlite3 *db = pParse->db;
1.508 + assert( pToken );
1.509 + pNew = sqlite3DbMallocZero(db, sizeof(Expr) );
1.510 + if( pNew==0 ){
1.511 + sqlite3ExprListDelete(db, pList); /* Avoid leaking memory when malloc fails */
1.512 + return 0;
1.513 + }
1.514 + pNew->op = TK_FUNCTION;
1.515 + pNew->pList = pList;
1.516 + assert( pToken->dyn==0 );
1.517 + pNew->token = *pToken;
1.518 + pNew->span = pNew->token;
1.519 +
1.520 + sqlite3ExprSetHeight(pParse, pNew);
1.521 + return pNew;
1.522 +}
1.523 +
1.524 +/*
1.525 +** Assign a variable number to an expression that encodes a wildcard
1.526 +** in the original SQL statement.
1.527 +**
1.528 +** Wildcards consisting of a single "?" are assigned the next sequential
1.529 +** variable number.
1.530 +**
1.531 +** Wildcards of the form "?nnn" are assigned the number "nnn". We make
1.532 +** sure "nnn" is not too be to avoid a denial of service attack when
1.533 +** the SQL statement comes from an external source.
1.534 +**
1.535 +** Wildcards of the form ":aaa" or "$aaa" are assigned the same number
1.536 +** as the previous instance of the same wildcard. Or if this is the first
1.537 +** instance of the wildcard, the next sequenial variable number is
1.538 +** assigned.
1.539 +*/
1.540 +void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){
1.541 + Token *pToken;
1.542 + sqlite3 *db = pParse->db;
1.543 +
1.544 + if( pExpr==0 ) return;
1.545 + pToken = &pExpr->token;
1.546 + assert( pToken->n>=1 );
1.547 + assert( pToken->z!=0 );
1.548 + assert( pToken->z[0]!=0 );
1.549 + if( pToken->n==1 ){
1.550 + /* Wildcard of the form "?". Assign the next variable number */
1.551 + pExpr->iTable = ++pParse->nVar;
1.552 + }else if( pToken->z[0]=='?' ){
1.553 + /* Wildcard of the form "?nnn". Convert "nnn" to an integer and
1.554 + ** use it as the variable number */
1.555 + int i;
1.556 + pExpr->iTable = i = atoi((char*)&pToken->z[1]);
1.557 + testcase( i==0 );
1.558 + testcase( i==1 );
1.559 + testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 );
1.560 + testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] );
1.561 + if( i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){
1.562 + sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d",
1.563 + db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]);
1.564 + }
1.565 + if( i>pParse->nVar ){
1.566 + pParse->nVar = i;
1.567 + }
1.568 + }else{
1.569 + /* Wildcards of the form ":aaa" or "$aaa". Reuse the same variable
1.570 + ** number as the prior appearance of the same name, or if the name
1.571 + ** has never appeared before, reuse the same variable number
1.572 + */
1.573 + int i, n;
1.574 + n = pToken->n;
1.575 + for(i=0; i<pParse->nVarExpr; i++){
1.576 + Expr *pE;
1.577 + if( (pE = pParse->apVarExpr[i])!=0
1.578 + && pE->token.n==n
1.579 + && memcmp(pE->token.z, pToken->z, n)==0 ){
1.580 + pExpr->iTable = pE->iTable;
1.581 + break;
1.582 + }
1.583 + }
1.584 + if( i>=pParse->nVarExpr ){
1.585 + pExpr->iTable = ++pParse->nVar;
1.586 + if( pParse->nVarExpr>=pParse->nVarExprAlloc-1 ){
1.587 + pParse->nVarExprAlloc += pParse->nVarExprAlloc + 10;
1.588 + pParse->apVarExpr =
1.589 + sqlite3DbReallocOrFree(
1.590 + db,
1.591 + pParse->apVarExpr,
1.592 + pParse->nVarExprAlloc*sizeof(pParse->apVarExpr[0])
1.593 + );
1.594 + }
1.595 + if( !db->mallocFailed ){
1.596 + assert( pParse->apVarExpr!=0 );
1.597 + pParse->apVarExpr[pParse->nVarExpr++] = pExpr;
1.598 + }
1.599 + }
1.600 + }
1.601 + if( !pParse->nErr && pParse->nVar>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){
1.602 + sqlite3ErrorMsg(pParse, "too many SQL variables");
1.603 + }
1.604 +}
1.605 +
1.606 +/*
1.607 +** Clear an expression structure without deleting the structure itself.
1.608 +** Substructure is deleted.
1.609 +*/
1.610 +void sqlite3ExprClear(sqlite3 *db, Expr *p){
1.611 + if( p->span.dyn ) sqlite3DbFree(db, (char*)p->span.z);
1.612 + if( p->token.dyn ) sqlite3DbFree(db, (char*)p->token.z);
1.613 + sqlite3ExprDelete(db, p->pLeft);
1.614 + sqlite3ExprDelete(db, p->pRight);
1.615 + sqlite3ExprListDelete(db, p->pList);
1.616 + sqlite3SelectDelete(db, p->pSelect);
1.617 +}
1.618 +
1.619 +/*
1.620 +** Recursively delete an expression tree.
1.621 +*/
1.622 +void sqlite3ExprDelete(sqlite3 *db, Expr *p){
1.623 + if( p==0 ) return;
1.624 + sqlite3ExprClear(db, p);
1.625 + sqlite3DbFree(db, p);
1.626 +}
1.627 +
1.628 +/*
1.629 +** The Expr.token field might be a string literal that is quoted.
1.630 +** If so, remove the quotation marks.
1.631 +*/
1.632 +void sqlite3DequoteExpr(sqlite3 *db, Expr *p){
1.633 + if( ExprHasAnyProperty(p, EP_Dequoted) ){
1.634 + return;
1.635 + }
1.636 + ExprSetProperty(p, EP_Dequoted);
1.637 + if( p->token.dyn==0 ){
1.638 + sqlite3TokenCopy(db, &p->token, &p->token);
1.639 + }
1.640 + sqlite3Dequote((char*)p->token.z);
1.641 +}
1.642 +
1.643 +/*
1.644 +** The following group of routines make deep copies of expressions,
1.645 +** expression lists, ID lists, and select statements. The copies can
1.646 +** be deleted (by being passed to their respective ...Delete() routines)
1.647 +** without effecting the originals.
1.648 +**
1.649 +** The expression list, ID, and source lists return by sqlite3ExprListDup(),
1.650 +** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded
1.651 +** by subsequent calls to sqlite*ListAppend() routines.
1.652 +**
1.653 +** Any tables that the SrcList might point to are not duplicated.
1.654 +*/
1.655 +Expr *sqlite3ExprDup(sqlite3 *db, Expr *p){
1.656 + Expr *pNew;
1.657 + if( p==0 ) return 0;
1.658 + pNew = sqlite3DbMallocRaw(db, sizeof(*p) );
1.659 + if( pNew==0 ) return 0;
1.660 + memcpy(pNew, p, sizeof(*pNew));
1.661 + if( p->token.z!=0 ){
1.662 + pNew->token.z = (u8*)sqlite3DbStrNDup(db, (char*)p->token.z, p->token.n);
1.663 + pNew->token.dyn = 1;
1.664 + }else{
1.665 + assert( pNew->token.z==0 );
1.666 + }
1.667 + pNew->span.z = 0;
1.668 + pNew->pLeft = sqlite3ExprDup(db, p->pLeft);
1.669 + pNew->pRight = sqlite3ExprDup(db, p->pRight);
1.670 + pNew->pList = sqlite3ExprListDup(db, p->pList);
1.671 + pNew->pSelect = sqlite3SelectDup(db, p->pSelect);
1.672 + return pNew;
1.673 +}
1.674 +void sqlite3TokenCopy(sqlite3 *db, Token *pTo, Token *pFrom){
1.675 + if( pTo->dyn ) sqlite3DbFree(db, (char*)pTo->z);
1.676 + if( pFrom->z ){
1.677 + pTo->n = pFrom->n;
1.678 + pTo->z = (u8*)sqlite3DbStrNDup(db, (char*)pFrom->z, pFrom->n);
1.679 + pTo->dyn = 1;
1.680 + }else{
1.681 + pTo->z = 0;
1.682 + }
1.683 +}
1.684 +ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p){
1.685 + ExprList *pNew;
1.686 + struct ExprList_item *pItem, *pOldItem;
1.687 + int i;
1.688 + if( p==0 ) return 0;
1.689 + pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) );
1.690 + if( pNew==0 ) return 0;
1.691 + pNew->iECursor = 0;
1.692 + pNew->nExpr = pNew->nAlloc = p->nExpr;
1.693 + pNew->a = pItem = sqlite3DbMallocRaw(db, p->nExpr*sizeof(p->a[0]) );
1.694 + if( pItem==0 ){
1.695 + sqlite3DbFree(db, pNew);
1.696 + return 0;
1.697 + }
1.698 + pOldItem = p->a;
1.699 + for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){
1.700 + Expr *pNewExpr, *pOldExpr;
1.701 + pItem->pExpr = pNewExpr = sqlite3ExprDup(db, pOldExpr = pOldItem->pExpr);
1.702 + if( pOldExpr->span.z!=0 && pNewExpr ){
1.703 + /* Always make a copy of the span for top-level expressions in the
1.704 + ** expression list. The logic in SELECT processing that determines
1.705 + ** the names of columns in the result set needs this information */
1.706 + sqlite3TokenCopy(db, &pNewExpr->span, &pOldExpr->span);
1.707 + }
1.708 + assert( pNewExpr==0 || pNewExpr->span.z!=0
1.709 + || pOldExpr->span.z==0
1.710 + || db->mallocFailed );
1.711 + pItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
1.712 + pItem->sortOrder = pOldItem->sortOrder;
1.713 + pItem->done = 0;
1.714 + pItem->iCol = pOldItem->iCol;
1.715 + pItem->iAlias = pOldItem->iAlias;
1.716 + }
1.717 + return pNew;
1.718 +}
1.719 +
1.720 +/*
1.721 +** If cursors, triggers, views and subqueries are all omitted from
1.722 +** the build, then none of the following routines, except for
1.723 +** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes
1.724 +** called with a NULL argument.
1.725 +*/
1.726 +#if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \
1.727 + || !defined(SQLITE_OMIT_SUBQUERY)
1.728 +SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p){
1.729 + SrcList *pNew;
1.730 + int i;
1.731 + int nByte;
1.732 + if( p==0 ) return 0;
1.733 + nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0);
1.734 + pNew = sqlite3DbMallocRaw(db, nByte );
1.735 + if( pNew==0 ) return 0;
1.736 + pNew->nSrc = pNew->nAlloc = p->nSrc;
1.737 + for(i=0; i<p->nSrc; i++){
1.738 + struct SrcList_item *pNewItem = &pNew->a[i];
1.739 + struct SrcList_item *pOldItem = &p->a[i];
1.740 + Table *pTab;
1.741 + pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase);
1.742 + pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
1.743 + pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias);
1.744 + pNewItem->jointype = pOldItem->jointype;
1.745 + pNewItem->iCursor = pOldItem->iCursor;
1.746 + pNewItem->isPopulated = pOldItem->isPopulated;
1.747 + pNewItem->zIndex = sqlite3DbStrDup(db, pOldItem->zIndex);
1.748 + pNewItem->notIndexed = pOldItem->notIndexed;
1.749 + pNewItem->pIndex = pOldItem->pIndex;
1.750 + pTab = pNewItem->pTab = pOldItem->pTab;
1.751 + if( pTab ){
1.752 + pTab->nRef++;
1.753 + }
1.754 + pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect);
1.755 + pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn);
1.756 + pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing);
1.757 + pNewItem->colUsed = pOldItem->colUsed;
1.758 + }
1.759 + return pNew;
1.760 +}
1.761 +IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){
1.762 + IdList *pNew;
1.763 + int i;
1.764 + if( p==0 ) return 0;
1.765 + pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) );
1.766 + if( pNew==0 ) return 0;
1.767 + pNew->nId = pNew->nAlloc = p->nId;
1.768 + pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) );
1.769 + if( pNew->a==0 ){
1.770 + sqlite3DbFree(db, pNew);
1.771 + return 0;
1.772 + }
1.773 + for(i=0; i<p->nId; i++){
1.774 + struct IdList_item *pNewItem = &pNew->a[i];
1.775 + struct IdList_item *pOldItem = &p->a[i];
1.776 + pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName);
1.777 + pNewItem->idx = pOldItem->idx;
1.778 + }
1.779 + return pNew;
1.780 +}
1.781 +Select *sqlite3SelectDup(sqlite3 *db, Select *p){
1.782 + Select *pNew;
1.783 + if( p==0 ) return 0;
1.784 + pNew = sqlite3DbMallocRaw(db, sizeof(*p) );
1.785 + if( pNew==0 ) return 0;
1.786 + pNew->pEList = sqlite3ExprListDup(db, p->pEList);
1.787 + pNew->pSrc = sqlite3SrcListDup(db, p->pSrc);
1.788 + pNew->pWhere = sqlite3ExprDup(db, p->pWhere);
1.789 + pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy);
1.790 + pNew->pHaving = sqlite3ExprDup(db, p->pHaving);
1.791 + pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy);
1.792 + pNew->op = p->op;
1.793 + pNew->pPrior = sqlite3SelectDup(db, p->pPrior);
1.794 + pNew->pLimit = sqlite3ExprDup(db, p->pLimit);
1.795 + pNew->pOffset = sqlite3ExprDup(db, p->pOffset);
1.796 + pNew->iLimit = 0;
1.797 + pNew->iOffset = 0;
1.798 + pNew->selFlags = p->selFlags & ~SF_UsesEphemeral;
1.799 + pNew->pRightmost = 0;
1.800 + pNew->addrOpenEphm[0] = -1;
1.801 + pNew->addrOpenEphm[1] = -1;
1.802 + pNew->addrOpenEphm[2] = -1;
1.803 + return pNew;
1.804 +}
1.805 +#else
1.806 +Select *sqlite3SelectDup(sqlite3 *db, Select *p){
1.807 + assert( p==0 );
1.808 + return 0;
1.809 +}
1.810 +#endif
1.811 +
1.812 +
1.813 +/*
1.814 +** Add a new element to the end of an expression list. If pList is
1.815 +** initially NULL, then create a new expression list.
1.816 +*/
1.817 +ExprList *sqlite3ExprListAppend(
1.818 + Parse *pParse, /* Parsing context */
1.819 + ExprList *pList, /* List to which to append. Might be NULL */
1.820 + Expr *pExpr, /* Expression to be appended */
1.821 + Token *pName /* AS keyword for the expression */
1.822 +){
1.823 + sqlite3 *db = pParse->db;
1.824 + if( pList==0 ){
1.825 + pList = sqlite3DbMallocZero(db, sizeof(ExprList) );
1.826 + if( pList==0 ){
1.827 + goto no_mem;
1.828 + }
1.829 + assert( pList->nAlloc==0 );
1.830 + }
1.831 + if( pList->nAlloc<=pList->nExpr ){
1.832 + struct ExprList_item *a;
1.833 + int n = pList->nAlloc*2 + 4;
1.834 + a = sqlite3DbRealloc(db, pList->a, n*sizeof(pList->a[0]));
1.835 + if( a==0 ){
1.836 + goto no_mem;
1.837 + }
1.838 + pList->a = a;
1.839 + pList->nAlloc = n;
1.840 + }
1.841 + assert( pList->a!=0 );
1.842 + if( pExpr || pName ){
1.843 + struct ExprList_item *pItem = &pList->a[pList->nExpr++];
1.844 + memset(pItem, 0, sizeof(*pItem));
1.845 + pItem->zName = sqlite3NameFromToken(db, pName);
1.846 + pItem->pExpr = pExpr;
1.847 + pItem->iAlias = 0;
1.848 + }
1.849 + return pList;
1.850 +
1.851 +no_mem:
1.852 + /* Avoid leaking memory if malloc has failed. */
1.853 + sqlite3ExprDelete(db, pExpr);
1.854 + sqlite3ExprListDelete(db, pList);
1.855 + return 0;
1.856 +}
1.857 +
1.858 +/*
1.859 +** If the expression list pEList contains more than iLimit elements,
1.860 +** leave an error message in pParse.
1.861 +*/
1.862 +void sqlite3ExprListCheckLength(
1.863 + Parse *pParse,
1.864 + ExprList *pEList,
1.865 + const char *zObject
1.866 +){
1.867 + int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN];
1.868 + testcase( pEList && pEList->nExpr==mx );
1.869 + testcase( pEList && pEList->nExpr==mx+1 );
1.870 + if( pEList && pEList->nExpr>mx ){
1.871 + sqlite3ErrorMsg(pParse, "too many columns in %s", zObject);
1.872 + }
1.873 +}
1.874 +
1.875 +/*
1.876 +** Delete an entire expression list.
1.877 +*/
1.878 +void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){
1.879 + int i;
1.880 + struct ExprList_item *pItem;
1.881 + if( pList==0 ) return;
1.882 + assert( pList->a!=0 || (pList->nExpr==0 && pList->nAlloc==0) );
1.883 + assert( pList->nExpr<=pList->nAlloc );
1.884 + for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){
1.885 + sqlite3ExprDelete(db, pItem->pExpr);
1.886 + sqlite3DbFree(db, pItem->zName);
1.887 + }
1.888 + sqlite3DbFree(db, pList->a);
1.889 + sqlite3DbFree(db, pList);
1.890 +}
1.891 +
1.892 +/*
1.893 +** These routines are Walker callbacks. Walker.u.pi is a pointer
1.894 +** to an integer. These routines are checking an expression to see
1.895 +** if it is a constant. Set *Walker.u.pi to 0 if the expression is
1.896 +** not constant.
1.897 +**
1.898 +** These callback routines are used to implement the following:
1.899 +**
1.900 +** sqlite3ExprIsConstant()
1.901 +** sqlite3ExprIsConstantNotJoin()
1.902 +** sqlite3ExprIsConstantOrFunction()
1.903 +**
1.904 +*/
1.905 +static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){
1.906 +
1.907 + /* If pWalker->u.i is 3 then any term of the expression that comes from
1.908 + ** the ON or USING clauses of a join disqualifies the expression
1.909 + ** from being considered constant. */
1.910 + if( pWalker->u.i==3 && ExprHasAnyProperty(pExpr, EP_FromJoin) ){
1.911 + pWalker->u.i = 0;
1.912 + return WRC_Abort;
1.913 + }
1.914 +
1.915 + switch( pExpr->op ){
1.916 + /* Consider functions to be constant if all their arguments are constant
1.917 + ** and pWalker->u.i==2 */
1.918 + case TK_FUNCTION:
1.919 + if( pWalker->u.i==2 ) return 0;
1.920 + /* Fall through */
1.921 + case TK_ID:
1.922 + case TK_COLUMN:
1.923 + case TK_DOT:
1.924 + case TK_AGG_FUNCTION:
1.925 + case TK_AGG_COLUMN:
1.926 +#ifndef SQLITE_OMIT_SUBQUERY
1.927 + case TK_SELECT:
1.928 + case TK_EXISTS:
1.929 + testcase( pExpr->op==TK_SELECT );
1.930 + testcase( pExpr->op==TK_EXISTS );
1.931 +#endif
1.932 + testcase( pExpr->op==TK_ID );
1.933 + testcase( pExpr->op==TK_COLUMN );
1.934 + testcase( pExpr->op==TK_DOT );
1.935 + testcase( pExpr->op==TK_AGG_FUNCTION );
1.936 + testcase( pExpr->op==TK_AGG_COLUMN );
1.937 + pWalker->u.i = 0;
1.938 + return WRC_Abort;
1.939 + default:
1.940 + return WRC_Continue;
1.941 + }
1.942 +}
1.943 +static int selectNodeIsConstant(Walker *pWalker, Select *pSelect){
1.944 + pWalker->u.i = 0;
1.945 + return WRC_Abort;
1.946 +}
1.947 +static int exprIsConst(Expr *p, int initFlag){
1.948 + Walker w;
1.949 + w.u.i = initFlag;
1.950 + w.xExprCallback = exprNodeIsConstant;
1.951 + w.xSelectCallback = selectNodeIsConstant;
1.952 + sqlite3WalkExpr(&w, p);
1.953 + return w.u.i;
1.954 +}
1.955 +
1.956 +/*
1.957 +** Walk an expression tree. Return 1 if the expression is constant
1.958 +** and 0 if it involves variables or function calls.
1.959 +**
1.960 +** For the purposes of this function, a double-quoted string (ex: "abc")
1.961 +** is considered a variable but a single-quoted string (ex: 'abc') is
1.962 +** a constant.
1.963 +*/
1.964 +int sqlite3ExprIsConstant(Expr *p){
1.965 + return exprIsConst(p, 1);
1.966 +}
1.967 +
1.968 +/*
1.969 +** Walk an expression tree. Return 1 if the expression is constant
1.970 +** that does no originate from the ON or USING clauses of a join.
1.971 +** Return 0 if it involves variables or function calls or terms from
1.972 +** an ON or USING clause.
1.973 +*/
1.974 +int sqlite3ExprIsConstantNotJoin(Expr *p){
1.975 + return exprIsConst(p, 3);
1.976 +}
1.977 +
1.978 +/*
1.979 +** Walk an expression tree. Return 1 if the expression is constant
1.980 +** or a function call with constant arguments. Return and 0 if there
1.981 +** are any variables.
1.982 +**
1.983 +** For the purposes of this function, a double-quoted string (ex: "abc")
1.984 +** is considered a variable but a single-quoted string (ex: 'abc') is
1.985 +** a constant.
1.986 +*/
1.987 +int sqlite3ExprIsConstantOrFunction(Expr *p){
1.988 + return exprIsConst(p, 2);
1.989 +}
1.990 +
1.991 +/*
1.992 +** If the expression p codes a constant integer that is small enough
1.993 +** to fit in a 32-bit integer, return 1 and put the value of the integer
1.994 +** in *pValue. If the expression is not an integer or if it is too big
1.995 +** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged.
1.996 +*/
1.997 +int sqlite3ExprIsInteger(Expr *p, int *pValue){
1.998 + int rc = 0;
1.999 + if( p->flags & EP_IntValue ){
1.1000 + *pValue = p->iTable;
1.1001 + return 1;
1.1002 + }
1.1003 + switch( p->op ){
1.1004 + case TK_INTEGER: {
1.1005 + rc = sqlite3GetInt32((char*)p->token.z, pValue);
1.1006 + break;
1.1007 + }
1.1008 + case TK_UPLUS: {
1.1009 + rc = sqlite3ExprIsInteger(p->pLeft, pValue);
1.1010 + break;
1.1011 + }
1.1012 + case TK_UMINUS: {
1.1013 + int v;
1.1014 + if( sqlite3ExprIsInteger(p->pLeft, &v) ){
1.1015 + *pValue = -v;
1.1016 + rc = 1;
1.1017 + }
1.1018 + break;
1.1019 + }
1.1020 + default: break;
1.1021 + }
1.1022 + if( rc ){
1.1023 + p->op = TK_INTEGER;
1.1024 + p->flags |= EP_IntValue;
1.1025 + p->iTable = *pValue;
1.1026 + }
1.1027 + return rc;
1.1028 +}
1.1029 +
1.1030 +/*
1.1031 +** Return TRUE if the given string is a row-id column name.
1.1032 +*/
1.1033 +int sqlite3IsRowid(const char *z){
1.1034 + if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1;
1.1035 + if( sqlite3StrICmp(z, "ROWID")==0 ) return 1;
1.1036 + if( sqlite3StrICmp(z, "OID")==0 ) return 1;
1.1037 + return 0;
1.1038 +}
1.1039 +
1.1040 +#ifdef SQLITE_TEST
1.1041 + int sqlite3_enable_in_opt = 1;
1.1042 +#else
1.1043 + #define sqlite3_enable_in_opt 1
1.1044 +#endif
1.1045 +
1.1046 +/*
1.1047 +** Return true if the IN operator optimization is enabled and
1.1048 +** the SELECT statement p exists and is of the
1.1049 +** simple form:
1.1050 +**
1.1051 +** SELECT <column> FROM <table>
1.1052 +**
1.1053 +** If this is the case, it may be possible to use an existing table
1.1054 +** or index instead of generating an epheremal table.
1.1055 +*/
1.1056 +#ifndef SQLITE_OMIT_SUBQUERY
1.1057 +static int isCandidateForInOpt(Select *p){
1.1058 + SrcList *pSrc;
1.1059 + ExprList *pEList;
1.1060 + Table *pTab;
1.1061 + if( !sqlite3_enable_in_opt ) return 0; /* IN optimization must be enabled */
1.1062 + if( p==0 ) return 0; /* right-hand side of IN is SELECT */
1.1063 + if( p->pPrior ) return 0; /* Not a compound SELECT */
1.1064 + if( p->selFlags & (SF_Distinct|SF_Aggregate) ){
1.1065 + return 0; /* No DISTINCT keyword and no aggregate functions */
1.1066 + }
1.1067 + if( p->pGroupBy ) return 0; /* Has no GROUP BY clause */
1.1068 + if( p->pLimit ) return 0; /* Has no LIMIT clause */
1.1069 + if( p->pOffset ) return 0;
1.1070 + if( p->pWhere ) return 0; /* Has no WHERE clause */
1.1071 + pSrc = p->pSrc;
1.1072 + if( pSrc==0 ) return 0; /* A single table in the FROM clause */
1.1073 + if( pSrc->nSrc!=1 ) return 0;
1.1074 + if( pSrc->a[0].pSelect ) return 0; /* FROM clause is not a subquery */
1.1075 + pTab = pSrc->a[0].pTab;
1.1076 + if( pTab==0 ) return 0;
1.1077 + if( pTab->pSelect ) return 0; /* FROM clause is not a view */
1.1078 + if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */
1.1079 + pEList = p->pEList;
1.1080 + if( pEList->nExpr!=1 ) return 0; /* One column in the result set */
1.1081 + if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */
1.1082 + return 1;
1.1083 +}
1.1084 +#endif /* SQLITE_OMIT_SUBQUERY */
1.1085 +
1.1086 +/*
1.1087 +** This function is used by the implementation of the IN (...) operator.
1.1088 +** It's job is to find or create a b-tree structure that may be used
1.1089 +** either to test for membership of the (...) set or to iterate through
1.1090 +** its members, skipping duplicates.
1.1091 +**
1.1092 +** The cursor opened on the structure (database table, database index
1.1093 +** or ephermal table) is stored in pX->iTable before this function returns.
1.1094 +** The returned value indicates the structure type, as follows:
1.1095 +**
1.1096 +** IN_INDEX_ROWID - The cursor was opened on a database table.
1.1097 +** IN_INDEX_INDEX - The cursor was opened on a database index.
1.1098 +** IN_INDEX_EPH - The cursor was opened on a specially created and
1.1099 +** populated epheremal table.
1.1100 +**
1.1101 +** An existing structure may only be used if the SELECT is of the simple
1.1102 +** form:
1.1103 +**
1.1104 +** SELECT <column> FROM <table>
1.1105 +**
1.1106 +** If prNotFound parameter is 0, then the structure will be used to iterate
1.1107 +** through the set members, skipping any duplicates. In this case an
1.1108 +** epheremal table must be used unless the selected <column> is guaranteed
1.1109 +** to be unique - either because it is an INTEGER PRIMARY KEY or it
1.1110 +** is unique by virtue of a constraint or implicit index.
1.1111 +**
1.1112 +** If the prNotFound parameter is not 0, then the structure will be used
1.1113 +** for fast set membership tests. In this case an epheremal table must
1.1114 +** be used unless <column> is an INTEGER PRIMARY KEY or an index can
1.1115 +** be found with <column> as its left-most column.
1.1116 +**
1.1117 +** When the structure is being used for set membership tests, the user
1.1118 +** needs to know whether or not the structure contains an SQL NULL
1.1119 +** value in order to correctly evaluate expressions like "X IN (Y, Z)".
1.1120 +** If there is a chance that the structure may contain a NULL value at
1.1121 +** runtime, then a register is allocated and the register number written
1.1122 +** to *prNotFound. If there is no chance that the structure contains a
1.1123 +** NULL value, then *prNotFound is left unchanged.
1.1124 +**
1.1125 +** If a register is allocated and its location stored in *prNotFound, then
1.1126 +** its initial value is NULL. If the structure does not remain constant
1.1127 +** for the duration of the query (i.e. the set is a correlated sub-select),
1.1128 +** the value of the allocated register is reset to NULL each time the
1.1129 +** structure is repopulated. This allows the caller to use vdbe code
1.1130 +** equivalent to the following:
1.1131 +**
1.1132 +** if( register==NULL ){
1.1133 +** has_null = <test if data structure contains null>
1.1134 +** register = 1
1.1135 +** }
1.1136 +**
1.1137 +** in order to avoid running the <test if data structure contains null>
1.1138 +** test more often than is necessary.
1.1139 +*/
1.1140 +#ifndef SQLITE_OMIT_SUBQUERY
1.1141 +int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){
1.1142 + Select *p;
1.1143 + int eType = 0;
1.1144 + int iTab = pParse->nTab++;
1.1145 + int mustBeUnique = !prNotFound;
1.1146 +
1.1147 + /* The follwing if(...) expression is true if the SELECT is of the
1.1148 + ** simple form:
1.1149 + **
1.1150 + ** SELECT <column> FROM <table>
1.1151 + **
1.1152 + ** If this is the case, it may be possible to use an existing table
1.1153 + ** or index instead of generating an epheremal table.
1.1154 + */
1.1155 + p = pX->pSelect;
1.1156 + if( isCandidateForInOpt(p) ){
1.1157 + sqlite3 *db = pParse->db;
1.1158 + Index *pIdx;
1.1159 + Expr *pExpr = p->pEList->a[0].pExpr;
1.1160 + int iCol = pExpr->iColumn;
1.1161 + Vdbe *v = sqlite3GetVdbe(pParse);
1.1162 +
1.1163 + /* This function is only called from two places. In both cases the vdbe
1.1164 + ** has already been allocated. So assume sqlite3GetVdbe() is always
1.1165 + ** successful here.
1.1166 + */
1.1167 + assert(v);
1.1168 + if( iCol<0 ){
1.1169 + int iMem = ++pParse->nMem;
1.1170 + int iAddr;
1.1171 + Table *pTab = p->pSrc->a[0].pTab;
1.1172 + int iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
1.1173 + sqlite3VdbeUsesBtree(v, iDb);
1.1174 +
1.1175 + iAddr = sqlite3VdbeAddOp1(v, OP_If, iMem);
1.1176 + sqlite3VdbeAddOp2(v, OP_Integer, 1, iMem);
1.1177 +
1.1178 + sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead);
1.1179 + eType = IN_INDEX_ROWID;
1.1180 +
1.1181 + sqlite3VdbeJumpHere(v, iAddr);
1.1182 + }else{
1.1183 + /* The collation sequence used by the comparison. If an index is to
1.1184 + ** be used in place of a temp-table, it must be ordered according
1.1185 + ** to this collation sequence.
1.1186 + */
1.1187 + CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr);
1.1188 +
1.1189 + /* Check that the affinity that will be used to perform the
1.1190 + ** comparison is the same as the affinity of the column. If
1.1191 + ** it is not, it is not possible to use any index.
1.1192 + */
1.1193 + Table *pTab = p->pSrc->a[0].pTab;
1.1194 + char aff = comparisonAffinity(pX);
1.1195 + int affinity_ok = (pTab->aCol[iCol].affinity==aff||aff==SQLITE_AFF_NONE);
1.1196 +
1.1197 + for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){
1.1198 + if( (pIdx->aiColumn[0]==iCol)
1.1199 + && (pReq==sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], -1, 0))
1.1200 + && (!mustBeUnique || (pIdx->nColumn==1 && pIdx->onError!=OE_None))
1.1201 + ){
1.1202 + int iDb;
1.1203 + int iMem = ++pParse->nMem;
1.1204 + int iAddr;
1.1205 + char *pKey;
1.1206 +
1.1207 + pKey = (char *)sqlite3IndexKeyinfo(pParse, pIdx);
1.1208 + iDb = sqlite3SchemaToIndex(db, pIdx->pSchema);
1.1209 + sqlite3VdbeUsesBtree(v, iDb);
1.1210 +
1.1211 + iAddr = sqlite3VdbeAddOp1(v, OP_If, iMem);
1.1212 + sqlite3VdbeAddOp2(v, OP_Integer, 1, iMem);
1.1213 +
1.1214 + sqlite3VdbeAddOp2(v, OP_SetNumColumns, 0, pIdx->nColumn);
1.1215 + sqlite3VdbeAddOp4(v, OP_OpenRead, iTab, pIdx->tnum, iDb,
1.1216 + pKey,P4_KEYINFO_HANDOFF);
1.1217 + VdbeComment((v, "%s", pIdx->zName));
1.1218 + eType = IN_INDEX_INDEX;
1.1219 +
1.1220 + sqlite3VdbeJumpHere(v, iAddr);
1.1221 + if( prNotFound && !pTab->aCol[iCol].notNull ){
1.1222 + *prNotFound = ++pParse->nMem;
1.1223 + }
1.1224 + }
1.1225 + }
1.1226 + }
1.1227 + }
1.1228 +
1.1229 + if( eType==0 ){
1.1230 + int rMayHaveNull = 0;
1.1231 + eType = IN_INDEX_EPH;
1.1232 + if( prNotFound ){
1.1233 + *prNotFound = rMayHaveNull = ++pParse->nMem;
1.1234 + }else if( pX->pLeft->iColumn<0 && pX->pSelect==0 ){
1.1235 + eType = IN_INDEX_ROWID;
1.1236 + }
1.1237 + sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID);
1.1238 + }else{
1.1239 + pX->iTable = iTab;
1.1240 + }
1.1241 + return eType;
1.1242 +}
1.1243 +#endif
1.1244 +
1.1245 +/*
1.1246 +** Generate code for scalar subqueries used as an expression
1.1247 +** and IN operators. Examples:
1.1248 +**
1.1249 +** (SELECT a FROM b) -- subquery
1.1250 +** EXISTS (SELECT a FROM b) -- EXISTS subquery
1.1251 +** x IN (4,5,11) -- IN operator with list on right-hand side
1.1252 +** x IN (SELECT a FROM b) -- IN operator with subquery on the right
1.1253 +**
1.1254 +** The pExpr parameter describes the expression that contains the IN
1.1255 +** operator or subquery.
1.1256 +**
1.1257 +** If parameter isRowid is non-zero, then expression pExpr is guaranteed
1.1258 +** to be of the form "<rowid> IN (?, ?, ?)", where <rowid> is a reference
1.1259 +** to some integer key column of a table B-Tree. In this case, use an
1.1260 +** intkey B-Tree to store the set of IN(...) values instead of the usual
1.1261 +** (slower) variable length keys B-Tree.
1.1262 +*/
1.1263 +#ifndef SQLITE_OMIT_SUBQUERY
1.1264 +void sqlite3CodeSubselect(
1.1265 + Parse *pParse,
1.1266 + Expr *pExpr,
1.1267 + int rMayHaveNull,
1.1268 + int isRowid
1.1269 +){
1.1270 + int testAddr = 0; /* One-time test address */
1.1271 + Vdbe *v = sqlite3GetVdbe(pParse);
1.1272 + if( v==0 ) return;
1.1273 +
1.1274 +
1.1275 + /* This code must be run in its entirety every time it is encountered
1.1276 + ** if any of the following is true:
1.1277 + **
1.1278 + ** * The right-hand side is a correlated subquery
1.1279 + ** * The right-hand side is an expression list containing variables
1.1280 + ** * We are inside a trigger
1.1281 + **
1.1282 + ** If all of the above are false, then we can run this code just once
1.1283 + ** save the results, and reuse the same result on subsequent invocations.
1.1284 + */
1.1285 + if( !ExprHasAnyProperty(pExpr, EP_VarSelect) && !pParse->trigStack ){
1.1286 + int mem = ++pParse->nMem;
1.1287 + sqlite3VdbeAddOp1(v, OP_If, mem);
1.1288 + testAddr = sqlite3VdbeAddOp2(v, OP_Integer, 1, mem);
1.1289 + assert( testAddr>0 || pParse->db->mallocFailed );
1.1290 + }
1.1291 +
1.1292 + switch( pExpr->op ){
1.1293 + case TK_IN: {
1.1294 + char affinity;
1.1295 + KeyInfo keyInfo;
1.1296 + int addr; /* Address of OP_OpenEphemeral instruction */
1.1297 + Expr *pLeft = pExpr->pLeft;
1.1298 +
1.1299 + if( rMayHaveNull ){
1.1300 + sqlite3VdbeAddOp2(v, OP_Null, 0, rMayHaveNull);
1.1301 + }
1.1302 +
1.1303 + affinity = sqlite3ExprAffinity(pLeft);
1.1304 +
1.1305 + /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)'
1.1306 + ** expression it is handled the same way. A virtual table is
1.1307 + ** filled with single-field index keys representing the results
1.1308 + ** from the SELECT or the <exprlist>.
1.1309 + **
1.1310 + ** If the 'x' expression is a column value, or the SELECT...
1.1311 + ** statement returns a column value, then the affinity of that
1.1312 + ** column is used to build the index keys. If both 'x' and the
1.1313 + ** SELECT... statement are columns, then numeric affinity is used
1.1314 + ** if either column has NUMERIC or INTEGER affinity. If neither
1.1315 + ** 'x' nor the SELECT... statement are columns, then numeric affinity
1.1316 + ** is used.
1.1317 + */
1.1318 + pExpr->iTable = pParse->nTab++;
1.1319 + addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, !isRowid);
1.1320 + memset(&keyInfo, 0, sizeof(keyInfo));
1.1321 + keyInfo.nField = 1;
1.1322 +
1.1323 + if( pExpr->pSelect ){
1.1324 + /* Case 1: expr IN (SELECT ...)
1.1325 + **
1.1326 + ** Generate code to write the results of the select into the temporary
1.1327 + ** table allocated and opened above.
1.1328 + */
1.1329 + SelectDest dest;
1.1330 + ExprList *pEList;
1.1331 +
1.1332 + assert( !isRowid );
1.1333 + sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable);
1.1334 + dest.affinity = (int)affinity;
1.1335 + assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable );
1.1336 + if( sqlite3Select(pParse, pExpr->pSelect, &dest) ){
1.1337 + return;
1.1338 + }
1.1339 + pEList = pExpr->pSelect->pEList;
1.1340 + if( pEList && pEList->nExpr>0 ){
1.1341 + keyInfo.aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft,
1.1342 + pEList->a[0].pExpr);
1.1343 + }
1.1344 + }else if( pExpr->pList ){
1.1345 + /* Case 2: expr IN (exprlist)
1.1346 + **
1.1347 + ** For each expression, build an index key from the evaluation and
1.1348 + ** store it in the temporary table. If <expr> is a column, then use
1.1349 + ** that columns affinity when building index keys. If <expr> is not
1.1350 + ** a column, use numeric affinity.
1.1351 + */
1.1352 + int i;
1.1353 + ExprList *pList = pExpr->pList;
1.1354 + struct ExprList_item *pItem;
1.1355 + int r1, r2, r3;
1.1356 +
1.1357 + if( !affinity ){
1.1358 + affinity = SQLITE_AFF_NONE;
1.1359 + }
1.1360 + keyInfo.aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft);
1.1361 +
1.1362 + /* Loop through each expression in <exprlist>. */
1.1363 + r1 = sqlite3GetTempReg(pParse);
1.1364 + r2 = sqlite3GetTempReg(pParse);
1.1365 + sqlite3VdbeAddOp2(v, OP_Null, 0, r2);
1.1366 + for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){
1.1367 + Expr *pE2 = pItem->pExpr;
1.1368 +
1.1369 + /* If the expression is not constant then we will need to
1.1370 + ** disable the test that was generated above that makes sure
1.1371 + ** this code only executes once. Because for a non-constant
1.1372 + ** expression we need to rerun this code each time.
1.1373 + */
1.1374 + if( testAddr && !sqlite3ExprIsConstant(pE2) ){
1.1375 + sqlite3VdbeChangeToNoop(v, testAddr-1, 2);
1.1376 + testAddr = 0;
1.1377 + }
1.1378 +
1.1379 + /* Evaluate the expression and insert it into the temp table */
1.1380 + pParse->disableColCache++;
1.1381 + r3 = sqlite3ExprCodeTarget(pParse, pE2, r1);
1.1382 + assert( pParse->disableColCache>0 );
1.1383 + pParse->disableColCache--;
1.1384 +
1.1385 + if( isRowid ){
1.1386 + sqlite3VdbeAddOp2(v, OP_MustBeInt, r3, sqlite3VdbeCurrentAddr(v)+2);
1.1387 + sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3);
1.1388 + }else{
1.1389 + sqlite3VdbeAddOp4(v, OP_MakeRecord, r3, 1, r2, &affinity, 1);
1.1390 + sqlite3ExprCacheAffinityChange(pParse, r3, 1);
1.1391 + sqlite3VdbeAddOp2(v, OP_IdxInsert, pExpr->iTable, r2);
1.1392 + }
1.1393 + }
1.1394 + sqlite3ReleaseTempReg(pParse, r1);
1.1395 + sqlite3ReleaseTempReg(pParse, r2);
1.1396 + }
1.1397 + if( !isRowid ){
1.1398 + sqlite3VdbeChangeP4(v, addr, (void *)&keyInfo, P4_KEYINFO);
1.1399 + }
1.1400 + break;
1.1401 + }
1.1402 +
1.1403 + case TK_EXISTS:
1.1404 + case TK_SELECT: {
1.1405 + /* This has to be a scalar SELECT. Generate code to put the
1.1406 + ** value of this select in a memory cell and record the number
1.1407 + ** of the memory cell in iColumn.
1.1408 + */
1.1409 + static const Token one = { (u8*)"1", 0, 1 };
1.1410 + Select *pSel;
1.1411 + SelectDest dest;
1.1412 +
1.1413 + pSel = pExpr->pSelect;
1.1414 + sqlite3SelectDestInit(&dest, 0, ++pParse->nMem);
1.1415 + if( pExpr->op==TK_SELECT ){
1.1416 + dest.eDest = SRT_Mem;
1.1417 + sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iParm);
1.1418 + VdbeComment((v, "Init subquery result"));
1.1419 + }else{
1.1420 + dest.eDest = SRT_Exists;
1.1421 + sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iParm);
1.1422 + VdbeComment((v, "Init EXISTS result"));
1.1423 + }
1.1424 + sqlite3ExprDelete(pParse->db, pSel->pLimit);
1.1425 + pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, &one);
1.1426 + if( sqlite3Select(pParse, pSel, &dest) ){
1.1427 + return;
1.1428 + }
1.1429 + pExpr->iColumn = dest.iParm;
1.1430 + break;
1.1431 + }
1.1432 + }
1.1433 +
1.1434 + if( testAddr ){
1.1435 + sqlite3VdbeJumpHere(v, testAddr-1);
1.1436 + }
1.1437 +
1.1438 + return;
1.1439 +}
1.1440 +#endif /* SQLITE_OMIT_SUBQUERY */
1.1441 +
1.1442 +/*
1.1443 +** Duplicate an 8-byte value
1.1444 +*/
1.1445 +static char *dup8bytes(Vdbe *v, const char *in){
1.1446 + char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8);
1.1447 + if( out ){
1.1448 + memcpy(out, in, 8);
1.1449 + }
1.1450 + return out;
1.1451 +}
1.1452 +
1.1453 +/*
1.1454 +** Generate an instruction that will put the floating point
1.1455 +** value described by z[0..n-1] into register iMem.
1.1456 +**
1.1457 +** The z[] string will probably not be zero-terminated. But the
1.1458 +** z[n] character is guaranteed to be something that does not look
1.1459 +** like the continuation of the number.
1.1460 +*/
1.1461 +static void codeReal(Vdbe *v, const char *z, int n, int negateFlag, int iMem){
1.1462 + assert( z || v==0 || sqlite3VdbeDb(v)->mallocFailed );
1.1463 + if( z ){
1.1464 + double value;
1.1465 + char *zV;
1.1466 + assert( !isdigit(z[n]) );
1.1467 + sqlite3AtoF(z, &value);
1.1468 + if( sqlite3IsNaN(value) ){
1.1469 + sqlite3VdbeAddOp2(v, OP_Null, 0, iMem);
1.1470 + }else{
1.1471 + if( negateFlag ) value = -value;
1.1472 + zV = dup8bytes(v, (char*)&value);
1.1473 + sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL);
1.1474 + }
1.1475 + }
1.1476 +}
1.1477 +
1.1478 +
1.1479 +/*
1.1480 +** Generate an instruction that will put the integer describe by
1.1481 +** text z[0..n-1] into register iMem.
1.1482 +**
1.1483 +** The z[] string will probably not be zero-terminated. But the
1.1484 +** z[n] character is guaranteed to be something that does not look
1.1485 +** like the continuation of the number.
1.1486 +*/
1.1487 +static void codeInteger(Vdbe *v, Expr *pExpr, int negFlag, int iMem){
1.1488 + const char *z;
1.1489 + if( pExpr->flags & EP_IntValue ){
1.1490 + int i = pExpr->iTable;
1.1491 + if( negFlag ) i = -i;
1.1492 + sqlite3VdbeAddOp2(v, OP_Integer, i, iMem);
1.1493 + }else if( (z = (char*)pExpr->token.z)!=0 ){
1.1494 + int i;
1.1495 + int n = pExpr->token.n;
1.1496 + assert( !isdigit(z[n]) );
1.1497 + if( sqlite3GetInt32(z, &i) ){
1.1498 + if( negFlag ) i = -i;
1.1499 + sqlite3VdbeAddOp2(v, OP_Integer, i, iMem);
1.1500 + }else if( sqlite3FitsIn64Bits(z, negFlag) ){
1.1501 + i64 value;
1.1502 + char *zV;
1.1503 + sqlite3Atoi64(z, &value);
1.1504 + if( negFlag ) value = -value;
1.1505 + zV = dup8bytes(v, (char*)&value);
1.1506 + sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64);
1.1507 + }else{
1.1508 + codeReal(v, z, n, negFlag, iMem);
1.1509 + }
1.1510 + }
1.1511 +}
1.1512 +
1.1513 +
1.1514 +/*
1.1515 +** Generate code that will extract the iColumn-th column from
1.1516 +** table pTab and store the column value in a register. An effort
1.1517 +** is made to store the column value in register iReg, but this is
1.1518 +** not guaranteed. The location of the column value is returned.
1.1519 +**
1.1520 +** There must be an open cursor to pTab in iTable when this routine
1.1521 +** is called. If iColumn<0 then code is generated that extracts the rowid.
1.1522 +**
1.1523 +** This routine might attempt to reuse the value of the column that
1.1524 +** has already been loaded into a register. The value will always
1.1525 +** be used if it has not undergone any affinity changes. But if
1.1526 +** an affinity change has occurred, then the cached value will only be
1.1527 +** used if allowAffChng is true.
1.1528 +*/
1.1529 +int sqlite3ExprCodeGetColumn(
1.1530 + Parse *pParse, /* Parsing and code generating context */
1.1531 + Table *pTab, /* Description of the table we are reading from */
1.1532 + int iColumn, /* Index of the table column */
1.1533 + int iTable, /* The cursor pointing to the table */
1.1534 + int iReg, /* Store results here */
1.1535 + int allowAffChng /* True if prior affinity changes are OK */
1.1536 +){
1.1537 + Vdbe *v = pParse->pVdbe;
1.1538 + int i;
1.1539 + struct yColCache *p;
1.1540 +
1.1541 + for(i=0, p=pParse->aColCache; i<pParse->nColCache; i++, p++){
1.1542 + if( p->iTable==iTable && p->iColumn==iColumn
1.1543 + && (!p->affChange || allowAffChng) ){
1.1544 +#if 0
1.1545 + sqlite3VdbeAddOp0(v, OP_Noop);
1.1546 + VdbeComment((v, "OPT: tab%d.col%d -> r%d", iTable, iColumn, p->iReg));
1.1547 +#endif
1.1548 + return p->iReg;
1.1549 + }
1.1550 + }
1.1551 + assert( v!=0 );
1.1552 + if( iColumn<0 ){
1.1553 + int op = (pTab && IsVirtual(pTab)) ? OP_VRowid : OP_Rowid;
1.1554 + sqlite3VdbeAddOp2(v, op, iTable, iReg);
1.1555 + }else if( pTab==0 ){
1.1556 + sqlite3VdbeAddOp3(v, OP_Column, iTable, iColumn, iReg);
1.1557 + }else{
1.1558 + int op = IsVirtual(pTab) ? OP_VColumn : OP_Column;
1.1559 + sqlite3VdbeAddOp3(v, op, iTable, iColumn, iReg);
1.1560 + sqlite3ColumnDefault(v, pTab, iColumn);
1.1561 +#ifndef SQLITE_OMIT_FLOATING_POINT
1.1562 + if( pTab->aCol[iColumn].affinity==SQLITE_AFF_REAL ){
1.1563 + sqlite3VdbeAddOp1(v, OP_RealAffinity, iReg);
1.1564 + }
1.1565 +#endif
1.1566 + }
1.1567 + if( pParse->disableColCache==0 ){
1.1568 + i = pParse->iColCache;
1.1569 + p = &pParse->aColCache[i];
1.1570 + p->iTable = iTable;
1.1571 + p->iColumn = iColumn;
1.1572 + p->iReg = iReg;
1.1573 + p->affChange = 0;
1.1574 + i++;
1.1575 + if( i>=ArraySize(pParse->aColCache) ) i = 0;
1.1576 + if( i>pParse->nColCache ) pParse->nColCache = i;
1.1577 + pParse->iColCache = i;
1.1578 + }
1.1579 + return iReg;
1.1580 +}
1.1581 +
1.1582 +/*
1.1583 +** Clear all column cache entries associated with the vdbe
1.1584 +** cursor with cursor number iTable.
1.1585 +*/
1.1586 +void sqlite3ExprClearColumnCache(Parse *pParse, int iTable){
1.1587 + if( iTable<0 ){
1.1588 + pParse->nColCache = 0;
1.1589 + pParse->iColCache = 0;
1.1590 + }else{
1.1591 + int i;
1.1592 + for(i=0; i<pParse->nColCache; i++){
1.1593 + if( pParse->aColCache[i].iTable==iTable ){
1.1594 + testcase( i==pParse->nColCache-1 );
1.1595 + pParse->aColCache[i] = pParse->aColCache[--pParse->nColCache];
1.1596 + pParse->iColCache = pParse->nColCache;
1.1597 + }
1.1598 + }
1.1599 + }
1.1600 +}
1.1601 +
1.1602 +/*
1.1603 +** Record the fact that an affinity change has occurred on iCount
1.1604 +** registers starting with iStart.
1.1605 +*/
1.1606 +void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){
1.1607 + int iEnd = iStart + iCount - 1;
1.1608 + int i;
1.1609 + for(i=0; i<pParse->nColCache; i++){
1.1610 + int r = pParse->aColCache[i].iReg;
1.1611 + if( r>=iStart && r<=iEnd ){
1.1612 + pParse->aColCache[i].affChange = 1;
1.1613 + }
1.1614 + }
1.1615 +}
1.1616 +
1.1617 +/*
1.1618 +** Generate code to move content from registers iFrom...iFrom+nReg-1
1.1619 +** over to iTo..iTo+nReg-1. Keep the column cache up-to-date.
1.1620 +*/
1.1621 +void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){
1.1622 + int i;
1.1623 + if( iFrom==iTo ) return;
1.1624 + sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg);
1.1625 + for(i=0; i<pParse->nColCache; i++){
1.1626 + int x = pParse->aColCache[i].iReg;
1.1627 + if( x>=iFrom && x<iFrom+nReg ){
1.1628 + pParse->aColCache[i].iReg += iTo-iFrom;
1.1629 + }
1.1630 + }
1.1631 +}
1.1632 +
1.1633 +/*
1.1634 +** Generate code to copy content from registers iFrom...iFrom+nReg-1
1.1635 +** over to iTo..iTo+nReg-1.
1.1636 +*/
1.1637 +void sqlite3ExprCodeCopy(Parse *pParse, int iFrom, int iTo, int nReg){
1.1638 + int i;
1.1639 + if( iFrom==iTo ) return;
1.1640 + for(i=0; i<nReg; i++){
1.1641 + sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, iFrom+i, iTo+i);
1.1642 + }
1.1643 +}
1.1644 +
1.1645 +/*
1.1646 +** Return true if any register in the range iFrom..iTo (inclusive)
1.1647 +** is used as part of the column cache.
1.1648 +*/
1.1649 +static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){
1.1650 + int i;
1.1651 + for(i=0; i<pParse->nColCache; i++){
1.1652 + int r = pParse->aColCache[i].iReg;
1.1653 + if( r>=iFrom && r<=iTo ) return 1;
1.1654 + }
1.1655 + return 0;
1.1656 +}
1.1657 +
1.1658 +/*
1.1659 +** Theres is a value in register iCurrent. We ultimately want
1.1660 +** the value to be in register iTarget. It might be that
1.1661 +** iCurrent and iTarget are the same register.
1.1662 +**
1.1663 +** We are going to modify the value, so we need to make sure it
1.1664 +** is not a cached register. If iCurrent is a cached register,
1.1665 +** then try to move the value over to iTarget. If iTarget is a
1.1666 +** cached register, then clear the corresponding cache line.
1.1667 +**
1.1668 +** Return the register that the value ends up in.
1.1669 +*/
1.1670 +int sqlite3ExprWritableRegister(Parse *pParse, int iCurrent, int iTarget){
1.1671 + int i;
1.1672 + assert( pParse->pVdbe!=0 );
1.1673 + if( !usedAsColumnCache(pParse, iCurrent, iCurrent) ){
1.1674 + return iCurrent;
1.1675 + }
1.1676 + if( iCurrent!=iTarget ){
1.1677 + sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, iCurrent, iTarget);
1.1678 + }
1.1679 + for(i=0; i<pParse->nColCache; i++){
1.1680 + if( pParse->aColCache[i].iReg==iTarget ){
1.1681 + pParse->aColCache[i] = pParse->aColCache[--pParse->nColCache];
1.1682 + pParse->iColCache = pParse->nColCache;
1.1683 + }
1.1684 + }
1.1685 + return iTarget;
1.1686 +}
1.1687 +
1.1688 +/*
1.1689 +** If the last instruction coded is an ephemeral copy of any of
1.1690 +** the registers in the nReg registers beginning with iReg, then
1.1691 +** convert the last instruction from OP_SCopy to OP_Copy.
1.1692 +*/
1.1693 +void sqlite3ExprHardCopy(Parse *pParse, int iReg, int nReg){
1.1694 + int addr;
1.1695 + VdbeOp *pOp;
1.1696 + Vdbe *v;
1.1697 +
1.1698 + v = pParse->pVdbe;
1.1699 + addr = sqlite3VdbeCurrentAddr(v);
1.1700 + pOp = sqlite3VdbeGetOp(v, addr-1);
1.1701 + assert( pOp || pParse->db->mallocFailed );
1.1702 + if( pOp && pOp->opcode==OP_SCopy && pOp->p1>=iReg && pOp->p1<iReg+nReg ){
1.1703 + pOp->opcode = OP_Copy;
1.1704 + }
1.1705 +}
1.1706 +
1.1707 +/*
1.1708 +** Generate code to store the value of the iAlias-th alias in register
1.1709 +** target. The first time this is called, pExpr is evaluated to compute
1.1710 +** the value of the alias. The value is stored in an auxiliary register
1.1711 +** and the number of that register is returned. On subsequent calls,
1.1712 +** the register number is returned without generating any code.
1.1713 +**
1.1714 +** Note that in order for this to work, code must be generated in the
1.1715 +** same order that it is executed.
1.1716 +**
1.1717 +** Aliases are numbered starting with 1. So iAlias is in the range
1.1718 +** of 1 to pParse->nAlias inclusive.
1.1719 +**
1.1720 +** pParse->aAlias[iAlias-1] records the register number where the value
1.1721 +** of the iAlias-th alias is stored. If zero, that means that the
1.1722 +** alias has not yet been computed.
1.1723 +*/
1.1724 +static int codeAlias(Parse *pParse, int iAlias, Expr *pExpr, int target){
1.1725 + sqlite3 *db = pParse->db;
1.1726 + int iReg;
1.1727 + if( pParse->nAliasAlloc<pParse->nAlias ){
1.1728 + pParse->aAlias = sqlite3DbReallocOrFree(db, pParse->aAlias,
1.1729 + sizeof(pParse->aAlias[0])*pParse->nAlias );
1.1730 + testcase( db->mallocFailed && pParse->nAliasAlloc>0 );
1.1731 + if( db->mallocFailed ) return 0;
1.1732 + memset(&pParse->aAlias[pParse->nAliasAlloc], 0,
1.1733 + (pParse->nAlias-pParse->nAliasAlloc)*sizeof(pParse->aAlias[0]));
1.1734 + pParse->nAliasAlloc = pParse->nAlias;
1.1735 + }
1.1736 + assert( iAlias>0 && iAlias<=pParse->nAlias );
1.1737 + iReg = pParse->aAlias[iAlias-1];
1.1738 + if( iReg==0 ){
1.1739 + if( pParse->disableColCache ){
1.1740 + iReg = sqlite3ExprCodeTarget(pParse, pExpr, target);
1.1741 + }else{
1.1742 + iReg = ++pParse->nMem;
1.1743 + sqlite3ExprCode(pParse, pExpr, iReg);
1.1744 + pParse->aAlias[iAlias-1] = iReg;
1.1745 + }
1.1746 + }
1.1747 + return iReg;
1.1748 +}
1.1749 +
1.1750 +/*
1.1751 +** Generate code into the current Vdbe to evaluate the given
1.1752 +** expression. Attempt to store the results in register "target".
1.1753 +** Return the register where results are stored.
1.1754 +**
1.1755 +** With this routine, there is no guarantee that results will
1.1756 +** be stored in target. The result might be stored in some other
1.1757 +** register if it is convenient to do so. The calling function
1.1758 +** must check the return code and move the results to the desired
1.1759 +** register.
1.1760 +*/
1.1761 +int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){
1.1762 + Vdbe *v = pParse->pVdbe; /* The VM under construction */
1.1763 + int op; /* The opcode being coded */
1.1764 + int inReg = target; /* Results stored in register inReg */
1.1765 + int regFree1 = 0; /* If non-zero free this temporary register */
1.1766 + int regFree2 = 0; /* If non-zero free this temporary register */
1.1767 + int r1, r2, r3, r4; /* Various register numbers */
1.1768 + sqlite3 *db;
1.1769 +
1.1770 + db = pParse->db;
1.1771 + assert( v!=0 || db->mallocFailed );
1.1772 + assert( target>0 && target<=pParse->nMem );
1.1773 + if( v==0 ) return 0;
1.1774 +
1.1775 + if( pExpr==0 ){
1.1776 + op = TK_NULL;
1.1777 + }else{
1.1778 + op = pExpr->op;
1.1779 + }
1.1780 + switch( op ){
1.1781 + case TK_AGG_COLUMN: {
1.1782 + AggInfo *pAggInfo = pExpr->pAggInfo;
1.1783 + struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg];
1.1784 + if( !pAggInfo->directMode ){
1.1785 + assert( pCol->iMem>0 );
1.1786 + inReg = pCol->iMem;
1.1787 + break;
1.1788 + }else if( pAggInfo->useSortingIdx ){
1.1789 + sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdx,
1.1790 + pCol->iSorterColumn, target);
1.1791 + break;
1.1792 + }
1.1793 + /* Otherwise, fall thru into the TK_COLUMN case */
1.1794 + }
1.1795 + case TK_COLUMN: {
1.1796 + if( pExpr->iTable<0 ){
1.1797 + /* This only happens when coding check constraints */
1.1798 + assert( pParse->ckBase>0 );
1.1799 + inReg = pExpr->iColumn + pParse->ckBase;
1.1800 + }else{
1.1801 + testcase( (pExpr->flags & EP_AnyAff)!=0 );
1.1802 + inReg = sqlite3ExprCodeGetColumn(pParse, pExpr->pTab,
1.1803 + pExpr->iColumn, pExpr->iTable, target,
1.1804 + pExpr->flags & EP_AnyAff);
1.1805 + }
1.1806 + break;
1.1807 + }
1.1808 + case TK_INTEGER: {
1.1809 + codeInteger(v, pExpr, 0, target);
1.1810 + break;
1.1811 + }
1.1812 + case TK_FLOAT: {
1.1813 + codeReal(v, (char*)pExpr->token.z, pExpr->token.n, 0, target);
1.1814 + break;
1.1815 + }
1.1816 + case TK_STRING: {
1.1817 + sqlite3DequoteExpr(db, pExpr);
1.1818 + sqlite3VdbeAddOp4(v,OP_String8, 0, target, 0,
1.1819 + (char*)pExpr->token.z, pExpr->token.n);
1.1820 + break;
1.1821 + }
1.1822 + case TK_NULL: {
1.1823 + sqlite3VdbeAddOp2(v, OP_Null, 0, target);
1.1824 + break;
1.1825 + }
1.1826 +#ifndef SQLITE_OMIT_BLOB_LITERAL
1.1827 + case TK_BLOB: {
1.1828 + int n;
1.1829 + const char *z;
1.1830 + char *zBlob;
1.1831 + assert( pExpr->token.n>=3 );
1.1832 + assert( pExpr->token.z[0]=='x' || pExpr->token.z[0]=='X' );
1.1833 + assert( pExpr->token.z[1]=='\'' );
1.1834 + assert( pExpr->token.z[pExpr->token.n-1]=='\'' );
1.1835 + n = pExpr->token.n - 3;
1.1836 + z = (char*)pExpr->token.z + 2;
1.1837 + zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n);
1.1838 + sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC);
1.1839 + break;
1.1840 + }
1.1841 +#endif
1.1842 + case TK_VARIABLE: {
1.1843 + sqlite3VdbeAddOp2(v, OP_Variable, pExpr->iTable, target);
1.1844 + if( pExpr->token.n>1 ){
1.1845 + sqlite3VdbeChangeP4(v, -1, (char*)pExpr->token.z, pExpr->token.n);
1.1846 + }
1.1847 + break;
1.1848 + }
1.1849 + case TK_REGISTER: {
1.1850 + inReg = pExpr->iTable;
1.1851 + break;
1.1852 + }
1.1853 + case TK_AS: {
1.1854 + inReg = codeAlias(pParse, pExpr->iTable, pExpr->pLeft, target);
1.1855 + break;
1.1856 + }
1.1857 +#ifndef SQLITE_OMIT_CAST
1.1858 + case TK_CAST: {
1.1859 + /* Expressions of the form: CAST(pLeft AS token) */
1.1860 + int aff, to_op;
1.1861 + inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target);
1.1862 + aff = sqlite3AffinityType(&pExpr->token);
1.1863 + to_op = aff - SQLITE_AFF_TEXT + OP_ToText;
1.1864 + assert( to_op==OP_ToText || aff!=SQLITE_AFF_TEXT );
1.1865 + assert( to_op==OP_ToBlob || aff!=SQLITE_AFF_NONE );
1.1866 + assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC );
1.1867 + assert( to_op==OP_ToInt || aff!=SQLITE_AFF_INTEGER );
1.1868 + assert( to_op==OP_ToReal || aff!=SQLITE_AFF_REAL );
1.1869 + testcase( to_op==OP_ToText );
1.1870 + testcase( to_op==OP_ToBlob );
1.1871 + testcase( to_op==OP_ToNumeric );
1.1872 + testcase( to_op==OP_ToInt );
1.1873 + testcase( to_op==OP_ToReal );
1.1874 + if( inReg!=target ){
1.1875 + sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target);
1.1876 + inReg = target;
1.1877 + }
1.1878 + sqlite3VdbeAddOp1(v, to_op, inReg);
1.1879 + testcase( usedAsColumnCache(pParse, inReg, inReg) );
1.1880 + sqlite3ExprCacheAffinityChange(pParse, inReg, 1);
1.1881 + break;
1.1882 + }
1.1883 +#endif /* SQLITE_OMIT_CAST */
1.1884 + case TK_LT:
1.1885 + case TK_LE:
1.1886 + case TK_GT:
1.1887 + case TK_GE:
1.1888 + case TK_NE:
1.1889 + case TK_EQ: {
1.1890 + assert( TK_LT==OP_Lt );
1.1891 + assert( TK_LE==OP_Le );
1.1892 + assert( TK_GT==OP_Gt );
1.1893 + assert( TK_GE==OP_Ge );
1.1894 + assert( TK_EQ==OP_Eq );
1.1895 + assert( TK_NE==OP_Ne );
1.1896 + testcase( op==TK_LT );
1.1897 + testcase( op==TK_LE );
1.1898 + testcase( op==TK_GT );
1.1899 + testcase( op==TK_GE );
1.1900 + testcase( op==TK_EQ );
1.1901 + testcase( op==TK_NE );
1.1902 + codeCompareOperands(pParse, pExpr->pLeft, &r1, ®Free1,
1.1903 + pExpr->pRight, &r2, ®Free2);
1.1904 + codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
1.1905 + r1, r2, inReg, SQLITE_STOREP2);
1.1906 + testcase( regFree1==0 );
1.1907 + testcase( regFree2==0 );
1.1908 + break;
1.1909 + }
1.1910 + case TK_AND:
1.1911 + case TK_OR:
1.1912 + case TK_PLUS:
1.1913 + case TK_STAR:
1.1914 + case TK_MINUS:
1.1915 + case TK_REM:
1.1916 + case TK_BITAND:
1.1917 + case TK_BITOR:
1.1918 + case TK_SLASH:
1.1919 + case TK_LSHIFT:
1.1920 + case TK_RSHIFT:
1.1921 + case TK_CONCAT: {
1.1922 + assert( TK_AND==OP_And );
1.1923 + assert( TK_OR==OP_Or );
1.1924 + assert( TK_PLUS==OP_Add );
1.1925 + assert( TK_MINUS==OP_Subtract );
1.1926 + assert( TK_REM==OP_Remainder );
1.1927 + assert( TK_BITAND==OP_BitAnd );
1.1928 + assert( TK_BITOR==OP_BitOr );
1.1929 + assert( TK_SLASH==OP_Divide );
1.1930 + assert( TK_LSHIFT==OP_ShiftLeft );
1.1931 + assert( TK_RSHIFT==OP_ShiftRight );
1.1932 + assert( TK_CONCAT==OP_Concat );
1.1933 + testcase( op==TK_AND );
1.1934 + testcase( op==TK_OR );
1.1935 + testcase( op==TK_PLUS );
1.1936 + testcase( op==TK_MINUS );
1.1937 + testcase( op==TK_REM );
1.1938 + testcase( op==TK_BITAND );
1.1939 + testcase( op==TK_BITOR );
1.1940 + testcase( op==TK_SLASH );
1.1941 + testcase( op==TK_LSHIFT );
1.1942 + testcase( op==TK_RSHIFT );
1.1943 + testcase( op==TK_CONCAT );
1.1944 + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
1.1945 + r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2);
1.1946 + sqlite3VdbeAddOp3(v, op, r2, r1, target);
1.1947 + testcase( regFree1==0 );
1.1948 + testcase( regFree2==0 );
1.1949 + break;
1.1950 + }
1.1951 + case TK_UMINUS: {
1.1952 + Expr *pLeft = pExpr->pLeft;
1.1953 + assert( pLeft );
1.1954 + if( pLeft->op==TK_FLOAT || pLeft->op==TK_INTEGER ){
1.1955 + if( pLeft->op==TK_FLOAT ){
1.1956 + codeReal(v, (char*)pLeft->token.z, pLeft->token.n, 1, target);
1.1957 + }else{
1.1958 + codeInteger(v, pLeft, 1, target);
1.1959 + }
1.1960 + }else{
1.1961 + regFree1 = r1 = sqlite3GetTempReg(pParse);
1.1962 + sqlite3VdbeAddOp2(v, OP_Integer, 0, r1);
1.1963 + r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free2);
1.1964 + sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target);
1.1965 + testcase( regFree2==0 );
1.1966 + }
1.1967 + inReg = target;
1.1968 + break;
1.1969 + }
1.1970 + case TK_BITNOT:
1.1971 + case TK_NOT: {
1.1972 + assert( TK_BITNOT==OP_BitNot );
1.1973 + assert( TK_NOT==OP_Not );
1.1974 + testcase( op==TK_BITNOT );
1.1975 + testcase( op==TK_NOT );
1.1976 + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
1.1977 + testcase( regFree1==0 );
1.1978 + inReg = target;
1.1979 + sqlite3VdbeAddOp2(v, op, r1, inReg);
1.1980 + break;
1.1981 + }
1.1982 + case TK_ISNULL:
1.1983 + case TK_NOTNULL: {
1.1984 + int addr;
1.1985 + assert( TK_ISNULL==OP_IsNull );
1.1986 + assert( TK_NOTNULL==OP_NotNull );
1.1987 + testcase( op==TK_ISNULL );
1.1988 + testcase( op==TK_NOTNULL );
1.1989 + sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
1.1990 + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
1.1991 + testcase( regFree1==0 );
1.1992 + addr = sqlite3VdbeAddOp1(v, op, r1);
1.1993 + sqlite3VdbeAddOp2(v, OP_AddImm, target, -1);
1.1994 + sqlite3VdbeJumpHere(v, addr);
1.1995 + break;
1.1996 + }
1.1997 + case TK_AGG_FUNCTION: {
1.1998 + AggInfo *pInfo = pExpr->pAggInfo;
1.1999 + if( pInfo==0 ){
1.2000 + sqlite3ErrorMsg(pParse, "misuse of aggregate: %T",
1.2001 + &pExpr->span);
1.2002 + }else{
1.2003 + inReg = pInfo->aFunc[pExpr->iAgg].iMem;
1.2004 + }
1.2005 + break;
1.2006 + }
1.2007 + case TK_CONST_FUNC:
1.2008 + case TK_FUNCTION: {
1.2009 + ExprList *pList = pExpr->pList;
1.2010 + int nExpr = pList ? pList->nExpr : 0;
1.2011 + FuncDef *pDef;
1.2012 + int nId;
1.2013 + const char *zId;
1.2014 + int constMask = 0;
1.2015 + int i;
1.2016 + u8 enc = ENC(db);
1.2017 + CollSeq *pColl = 0;
1.2018 +
1.2019 + testcase( op==TK_CONST_FUNC );
1.2020 + testcase( op==TK_FUNCTION );
1.2021 + zId = (char*)pExpr->token.z;
1.2022 + nId = pExpr->token.n;
1.2023 + pDef = sqlite3FindFunction(db, zId, nId, nExpr, enc, 0);
1.2024 + assert( pDef!=0 );
1.2025 + if( pList ){
1.2026 + nExpr = pList->nExpr;
1.2027 + r1 = sqlite3GetTempRange(pParse, nExpr);
1.2028 + sqlite3ExprCodeExprList(pParse, pList, r1, 1);
1.2029 + }else{
1.2030 + nExpr = r1 = 0;
1.2031 + }
1.2032 +#ifndef SQLITE_OMIT_VIRTUALTABLE
1.2033 + /* Possibly overload the function if the first argument is
1.2034 + ** a virtual table column.
1.2035 + **
1.2036 + ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the
1.2037 + ** second argument, not the first, as the argument to test to
1.2038 + ** see if it is a column in a virtual table. This is done because
1.2039 + ** the left operand of infix functions (the operand we want to
1.2040 + ** control overloading) ends up as the second argument to the
1.2041 + ** function. The expression "A glob B" is equivalent to
1.2042 + ** "glob(B,A). We want to use the A in "A glob B" to test
1.2043 + ** for function overloading. But we use the B term in "glob(B,A)".
1.2044 + */
1.2045 + if( nExpr>=2 && (pExpr->flags & EP_InfixFunc) ){
1.2046 + pDef = sqlite3VtabOverloadFunction(db, pDef, nExpr, pList->a[1].pExpr);
1.2047 + }else if( nExpr>0 ){
1.2048 + pDef = sqlite3VtabOverloadFunction(db, pDef, nExpr, pList->a[0].pExpr);
1.2049 + }
1.2050 +#endif
1.2051 + for(i=0; i<nExpr && i<32; i++){
1.2052 + if( sqlite3ExprIsConstant(pList->a[i].pExpr) ){
1.2053 + constMask |= (1<<i);
1.2054 + }
1.2055 + if( (pDef->flags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){
1.2056 + pColl = sqlite3ExprCollSeq(pParse, pList->a[i].pExpr);
1.2057 + }
1.2058 + }
1.2059 + if( pDef->flags & SQLITE_FUNC_NEEDCOLL ){
1.2060 + if( !pColl ) pColl = db->pDfltColl;
1.2061 + sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ);
1.2062 + }
1.2063 + sqlite3VdbeAddOp4(v, OP_Function, constMask, r1, target,
1.2064 + (char*)pDef, P4_FUNCDEF);
1.2065 + sqlite3VdbeChangeP5(v, nExpr);
1.2066 + if( nExpr ){
1.2067 + sqlite3ReleaseTempRange(pParse, r1, nExpr);
1.2068 + }
1.2069 + sqlite3ExprCacheAffinityChange(pParse, r1, nExpr);
1.2070 + break;
1.2071 + }
1.2072 +#ifndef SQLITE_OMIT_SUBQUERY
1.2073 + case TK_EXISTS:
1.2074 + case TK_SELECT: {
1.2075 + testcase( op==TK_EXISTS );
1.2076 + testcase( op==TK_SELECT );
1.2077 + if( pExpr->iColumn==0 ){
1.2078 + sqlite3CodeSubselect(pParse, pExpr, 0, 0);
1.2079 + }
1.2080 + inReg = pExpr->iColumn;
1.2081 + break;
1.2082 + }
1.2083 + case TK_IN: {
1.2084 + int rNotFound = 0;
1.2085 + int rMayHaveNull = 0;
1.2086 + int j2, j3, j4, j5;
1.2087 + char affinity;
1.2088 + int eType;
1.2089 +
1.2090 + VdbeNoopComment((v, "begin IN expr r%d", target));
1.2091 + eType = sqlite3FindInIndex(pParse, pExpr, &rMayHaveNull);
1.2092 + if( rMayHaveNull ){
1.2093 + rNotFound = ++pParse->nMem;
1.2094 + }
1.2095 +
1.2096 + /* Figure out the affinity to use to create a key from the results
1.2097 + ** of the expression. affinityStr stores a static string suitable for
1.2098 + ** P4 of OP_MakeRecord.
1.2099 + */
1.2100 + affinity = comparisonAffinity(pExpr);
1.2101 +
1.2102 +
1.2103 + /* Code the <expr> from "<expr> IN (...)". The temporary table
1.2104 + ** pExpr->iTable contains the values that make up the (...) set.
1.2105 + */
1.2106 + pParse->disableColCache++;
1.2107 + sqlite3ExprCode(pParse, pExpr->pLeft, target);
1.2108 + pParse->disableColCache--;
1.2109 + j2 = sqlite3VdbeAddOp1(v, OP_IsNull, target);
1.2110 + if( eType==IN_INDEX_ROWID ){
1.2111 + j3 = sqlite3VdbeAddOp1(v, OP_MustBeInt, target);
1.2112 + j4 = sqlite3VdbeAddOp3(v, OP_NotExists, pExpr->iTable, 0, target);
1.2113 + sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
1.2114 + j5 = sqlite3VdbeAddOp0(v, OP_Goto);
1.2115 + sqlite3VdbeJumpHere(v, j3);
1.2116 + sqlite3VdbeJumpHere(v, j4);
1.2117 + sqlite3VdbeAddOp2(v, OP_Integer, 0, target);
1.2118 + }else{
1.2119 + r2 = regFree2 = sqlite3GetTempReg(pParse);
1.2120 +
1.2121 + /* Create a record and test for set membership. If the set contains
1.2122 + ** the value, then jump to the end of the test code. The target
1.2123 + ** register still contains the true (1) value written to it earlier.
1.2124 + */
1.2125 + sqlite3VdbeAddOp4(v, OP_MakeRecord, target, 1, r2, &affinity, 1);
1.2126 + sqlite3VdbeAddOp2(v, OP_Integer, 1, target);
1.2127 + j5 = sqlite3VdbeAddOp3(v, OP_Found, pExpr->iTable, 0, r2);
1.2128 +
1.2129 + /* If the set membership test fails, then the result of the
1.2130 + ** "x IN (...)" expression must be either 0 or NULL. If the set
1.2131 + ** contains no NULL values, then the result is 0. If the set
1.2132 + ** contains one or more NULL values, then the result of the
1.2133 + ** expression is also NULL.
1.2134 + */
1.2135 + if( rNotFound==0 ){
1.2136 + /* This branch runs if it is known at compile time (now) that
1.2137 + ** the set contains no NULL values. This happens as the result
1.2138 + ** of a "NOT NULL" constraint in the database schema. No need
1.2139 + ** to test the data structure at runtime in this case.
1.2140 + */
1.2141 + sqlite3VdbeAddOp2(v, OP_Integer, 0, target);
1.2142 + }else{
1.2143 + /* This block populates the rNotFound register with either NULL
1.2144 + ** or 0 (an integer value). If the data structure contains one
1.2145 + ** or more NULLs, then set rNotFound to NULL. Otherwise, set it
1.2146 + ** to 0. If register rMayHaveNull is already set to some value
1.2147 + ** other than NULL, then the test has already been run and
1.2148 + ** rNotFound is already populated.
1.2149 + */
1.2150 + static const char nullRecord[] = { 0x02, 0x00 };
1.2151 + j3 = sqlite3VdbeAddOp1(v, OP_NotNull, rMayHaveNull);
1.2152 + sqlite3VdbeAddOp2(v, OP_Null, 0, rNotFound);
1.2153 + sqlite3VdbeAddOp4(v, OP_Blob, 2, rMayHaveNull, 0,
1.2154 + nullRecord, P4_STATIC);
1.2155 + j4 = sqlite3VdbeAddOp3(v, OP_Found, pExpr->iTable, 0, rMayHaveNull);
1.2156 + sqlite3VdbeAddOp2(v, OP_Integer, 0, rNotFound);
1.2157 + sqlite3VdbeJumpHere(v, j4);
1.2158 + sqlite3VdbeJumpHere(v, j3);
1.2159 +
1.2160 + /* Copy the value of register rNotFound (which is either NULL or 0)
1.2161 + ** into the target register. This will be the result of the
1.2162 + ** expression.
1.2163 + */
1.2164 + sqlite3VdbeAddOp2(v, OP_Copy, rNotFound, target);
1.2165 + }
1.2166 + }
1.2167 + sqlite3VdbeJumpHere(v, j2);
1.2168 + sqlite3VdbeJumpHere(v, j5);
1.2169 + VdbeComment((v, "end IN expr r%d", target));
1.2170 + break;
1.2171 + }
1.2172 +#endif
1.2173 + /*
1.2174 + ** x BETWEEN y AND z
1.2175 + **
1.2176 + ** This is equivalent to
1.2177 + **
1.2178 + ** x>=y AND x<=z
1.2179 + **
1.2180 + ** X is stored in pExpr->pLeft.
1.2181 + ** Y is stored in pExpr->pList->a[0].pExpr.
1.2182 + ** Z is stored in pExpr->pList->a[1].pExpr.
1.2183 + */
1.2184 + case TK_BETWEEN: {
1.2185 + Expr *pLeft = pExpr->pLeft;
1.2186 + struct ExprList_item *pLItem = pExpr->pList->a;
1.2187 + Expr *pRight = pLItem->pExpr;
1.2188 +
1.2189 + codeCompareOperands(pParse, pLeft, &r1, ®Free1,
1.2190 + pRight, &r2, ®Free2);
1.2191 + testcase( regFree1==0 );
1.2192 + testcase( regFree2==0 );
1.2193 + r3 = sqlite3GetTempReg(pParse);
1.2194 + r4 = sqlite3GetTempReg(pParse);
1.2195 + codeCompare(pParse, pLeft, pRight, OP_Ge,
1.2196 + r1, r2, r3, SQLITE_STOREP2);
1.2197 + pLItem++;
1.2198 + pRight = pLItem->pExpr;
1.2199 + sqlite3ReleaseTempReg(pParse, regFree2);
1.2200 + r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2);
1.2201 + testcase( regFree2==0 );
1.2202 + codeCompare(pParse, pLeft, pRight, OP_Le, r1, r2, r4, SQLITE_STOREP2);
1.2203 + sqlite3VdbeAddOp3(v, OP_And, r3, r4, target);
1.2204 + sqlite3ReleaseTempReg(pParse, r3);
1.2205 + sqlite3ReleaseTempReg(pParse, r4);
1.2206 + break;
1.2207 + }
1.2208 + case TK_UPLUS: {
1.2209 + inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target);
1.2210 + break;
1.2211 + }
1.2212 +
1.2213 + /*
1.2214 + ** Form A:
1.2215 + ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
1.2216 + **
1.2217 + ** Form B:
1.2218 + ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END
1.2219 + **
1.2220 + ** Form A is can be transformed into the equivalent form B as follows:
1.2221 + ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ...
1.2222 + ** WHEN x=eN THEN rN ELSE y END
1.2223 + **
1.2224 + ** X (if it exists) is in pExpr->pLeft.
1.2225 + ** Y is in pExpr->pRight. The Y is also optional. If there is no
1.2226 + ** ELSE clause and no other term matches, then the result of the
1.2227 + ** exprssion is NULL.
1.2228 + ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1].
1.2229 + **
1.2230 + ** The result of the expression is the Ri for the first matching Ei,
1.2231 + ** or if there is no matching Ei, the ELSE term Y, or if there is
1.2232 + ** no ELSE term, NULL.
1.2233 + */
1.2234 + case TK_CASE: {
1.2235 + int endLabel; /* GOTO label for end of CASE stmt */
1.2236 + int nextCase; /* GOTO label for next WHEN clause */
1.2237 + int nExpr; /* 2x number of WHEN terms */
1.2238 + int i; /* Loop counter */
1.2239 + ExprList *pEList; /* List of WHEN terms */
1.2240 + struct ExprList_item *aListelem; /* Array of WHEN terms */
1.2241 + Expr opCompare; /* The X==Ei expression */
1.2242 + Expr cacheX; /* Cached expression X */
1.2243 + Expr *pX; /* The X expression */
1.2244 + Expr *pTest; /* X==Ei (form A) or just Ei (form B) */
1.2245 +
1.2246 + assert(pExpr->pList);
1.2247 + assert((pExpr->pList->nExpr % 2) == 0);
1.2248 + assert(pExpr->pList->nExpr > 0);
1.2249 + pEList = pExpr->pList;
1.2250 + aListelem = pEList->a;
1.2251 + nExpr = pEList->nExpr;
1.2252 + endLabel = sqlite3VdbeMakeLabel(v);
1.2253 + if( (pX = pExpr->pLeft)!=0 ){
1.2254 + cacheX = *pX;
1.2255 + testcase( pX->op==TK_COLUMN || pX->op==TK_REGISTER );
1.2256 + cacheX.iTable = sqlite3ExprCodeTemp(pParse, pX, ®Free1);
1.2257 + testcase( regFree1==0 );
1.2258 + cacheX.op = TK_REGISTER;
1.2259 + opCompare.op = TK_EQ;
1.2260 + opCompare.pLeft = &cacheX;
1.2261 + pTest = &opCompare;
1.2262 + }
1.2263 + pParse->disableColCache++;
1.2264 + for(i=0; i<nExpr; i=i+2){
1.2265 + if( pX ){
1.2266 + opCompare.pRight = aListelem[i].pExpr;
1.2267 + }else{
1.2268 + pTest = aListelem[i].pExpr;
1.2269 + }
1.2270 + nextCase = sqlite3VdbeMakeLabel(v);
1.2271 + testcase( pTest->op==TK_COLUMN || pTest->op==TK_REGISTER );
1.2272 + sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL);
1.2273 + testcase( aListelem[i+1].pExpr->op==TK_COLUMN );
1.2274 + testcase( aListelem[i+1].pExpr->op==TK_REGISTER );
1.2275 + sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target);
1.2276 + sqlite3VdbeAddOp2(v, OP_Goto, 0, endLabel);
1.2277 + sqlite3VdbeResolveLabel(v, nextCase);
1.2278 + }
1.2279 + if( pExpr->pRight ){
1.2280 + sqlite3ExprCode(pParse, pExpr->pRight, target);
1.2281 + }else{
1.2282 + sqlite3VdbeAddOp2(v, OP_Null, 0, target);
1.2283 + }
1.2284 + sqlite3VdbeResolveLabel(v, endLabel);
1.2285 + assert( pParse->disableColCache>0 );
1.2286 + pParse->disableColCache--;
1.2287 + break;
1.2288 + }
1.2289 +#ifndef SQLITE_OMIT_TRIGGER
1.2290 + case TK_RAISE: {
1.2291 + if( !pParse->trigStack ){
1.2292 + sqlite3ErrorMsg(pParse,
1.2293 + "RAISE() may only be used within a trigger-program");
1.2294 + return 0;
1.2295 + }
1.2296 + if( pExpr->iColumn!=OE_Ignore ){
1.2297 + assert( pExpr->iColumn==OE_Rollback ||
1.2298 + pExpr->iColumn == OE_Abort ||
1.2299 + pExpr->iColumn == OE_Fail );
1.2300 + sqlite3DequoteExpr(db, pExpr);
1.2301 + sqlite3VdbeAddOp4(v, OP_Halt, SQLITE_CONSTRAINT, pExpr->iColumn, 0,
1.2302 + (char*)pExpr->token.z, pExpr->token.n);
1.2303 + } else {
1.2304 + assert( pExpr->iColumn == OE_Ignore );
1.2305 + sqlite3VdbeAddOp2(v, OP_ContextPop, 0, 0);
1.2306 + sqlite3VdbeAddOp2(v, OP_Goto, 0, pParse->trigStack->ignoreJump);
1.2307 + VdbeComment((v, "raise(IGNORE)"));
1.2308 + }
1.2309 + break;
1.2310 + }
1.2311 +#endif
1.2312 + }
1.2313 + sqlite3ReleaseTempReg(pParse, regFree1);
1.2314 + sqlite3ReleaseTempReg(pParse, regFree2);
1.2315 + return inReg;
1.2316 +}
1.2317 +
1.2318 +/*
1.2319 +** Generate code to evaluate an expression and store the results
1.2320 +** into a register. Return the register number where the results
1.2321 +** are stored.
1.2322 +**
1.2323 +** If the register is a temporary register that can be deallocated,
1.2324 +** then write its number into *pReg. If the result register is not
1.2325 +** a temporary, then set *pReg to zero.
1.2326 +*/
1.2327 +int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){
1.2328 + int r1 = sqlite3GetTempReg(pParse);
1.2329 + int r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1);
1.2330 + if( r2==r1 ){
1.2331 + *pReg = r1;
1.2332 + }else{
1.2333 + sqlite3ReleaseTempReg(pParse, r1);
1.2334 + *pReg = 0;
1.2335 + }
1.2336 + return r2;
1.2337 +}
1.2338 +
1.2339 +/*
1.2340 +** Generate code that will evaluate expression pExpr and store the
1.2341 +** results in register target. The results are guaranteed to appear
1.2342 +** in register target.
1.2343 +*/
1.2344 +int sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){
1.2345 + int inReg;
1.2346 +
1.2347 + assert( target>0 && target<=pParse->nMem );
1.2348 + inReg = sqlite3ExprCodeTarget(pParse, pExpr, target);
1.2349 + assert( pParse->pVdbe || pParse->db->mallocFailed );
1.2350 + if( inReg!=target && pParse->pVdbe ){
1.2351 + sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target);
1.2352 + }
1.2353 + return target;
1.2354 +}
1.2355 +
1.2356 +/*
1.2357 +** Generate code that evalutes the given expression and puts the result
1.2358 +** in register target.
1.2359 +**
1.2360 +** Also make a copy of the expression results into another "cache" register
1.2361 +** and modify the expression so that the next time it is evaluated,
1.2362 +** the result is a copy of the cache register.
1.2363 +**
1.2364 +** This routine is used for expressions that are used multiple
1.2365 +** times. They are evaluated once and the results of the expression
1.2366 +** are reused.
1.2367 +*/
1.2368 +int sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){
1.2369 + Vdbe *v = pParse->pVdbe;
1.2370 + int inReg;
1.2371 + inReg = sqlite3ExprCode(pParse, pExpr, target);
1.2372 + assert( target>0 );
1.2373 + if( pExpr->op!=TK_REGISTER ){
1.2374 + int iMem;
1.2375 + iMem = ++pParse->nMem;
1.2376 + sqlite3VdbeAddOp2(v, OP_Copy, inReg, iMem);
1.2377 + pExpr->iTable = iMem;
1.2378 + pExpr->op = TK_REGISTER;
1.2379 + }
1.2380 + return inReg;
1.2381 +}
1.2382 +
1.2383 +/*
1.2384 +** Return TRUE if pExpr is an constant expression that is appropriate
1.2385 +** for factoring out of a loop. Appropriate expressions are:
1.2386 +**
1.2387 +** * Any expression that evaluates to two or more opcodes.
1.2388 +**
1.2389 +** * Any OP_Integer, OP_Real, OP_String, OP_Blob, OP_Null,
1.2390 +** or OP_Variable that does not need to be placed in a
1.2391 +** specific register.
1.2392 +**
1.2393 +** There is no point in factoring out single-instruction constant
1.2394 +** expressions that need to be placed in a particular register.
1.2395 +** We could factor them out, but then we would end up adding an
1.2396 +** OP_SCopy instruction to move the value into the correct register
1.2397 +** later. We might as well just use the original instruction and
1.2398 +** avoid the OP_SCopy.
1.2399 +*/
1.2400 +static int isAppropriateForFactoring(Expr *p){
1.2401 + if( !sqlite3ExprIsConstantNotJoin(p) ){
1.2402 + return 0; /* Only constant expressions are appropriate for factoring */
1.2403 + }
1.2404 + if( (p->flags & EP_FixedDest)==0 ){
1.2405 + return 1; /* Any constant without a fixed destination is appropriate */
1.2406 + }
1.2407 + while( p->op==TK_UPLUS ) p = p->pLeft;
1.2408 + switch( p->op ){
1.2409 +#ifndef SQLITE_OMIT_BLOB_LITERAL
1.2410 + case TK_BLOB:
1.2411 +#endif
1.2412 + case TK_VARIABLE:
1.2413 + case TK_INTEGER:
1.2414 + case TK_FLOAT:
1.2415 + case TK_NULL:
1.2416 + case TK_STRING: {
1.2417 + testcase( p->op==TK_BLOB );
1.2418 + testcase( p->op==TK_VARIABLE );
1.2419 + testcase( p->op==TK_INTEGER );
1.2420 + testcase( p->op==TK_FLOAT );
1.2421 + testcase( p->op==TK_NULL );
1.2422 + testcase( p->op==TK_STRING );
1.2423 + /* Single-instruction constants with a fixed destination are
1.2424 + ** better done in-line. If we factor them, they will just end
1.2425 + ** up generating an OP_SCopy to move the value to the destination
1.2426 + ** register. */
1.2427 + return 0;
1.2428 + }
1.2429 + case TK_UMINUS: {
1.2430 + if( p->pLeft->op==TK_FLOAT || p->pLeft->op==TK_INTEGER ){
1.2431 + return 0;
1.2432 + }
1.2433 + break;
1.2434 + }
1.2435 + default: {
1.2436 + break;
1.2437 + }
1.2438 + }
1.2439 + return 1;
1.2440 +}
1.2441 +
1.2442 +/*
1.2443 +** If pExpr is a constant expression that is appropriate for
1.2444 +** factoring out of a loop, then evaluate the expression
1.2445 +** into a register and convert the expression into a TK_REGISTER
1.2446 +** expression.
1.2447 +*/
1.2448 +static int evalConstExpr(Walker *pWalker, Expr *pExpr){
1.2449 + Parse *pParse = pWalker->pParse;
1.2450 + switch( pExpr->op ){
1.2451 + case TK_REGISTER: {
1.2452 + return 1;
1.2453 + }
1.2454 + case TK_FUNCTION:
1.2455 + case TK_AGG_FUNCTION:
1.2456 + case TK_CONST_FUNC: {
1.2457 + /* The arguments to a function have a fixed destination.
1.2458 + ** Mark them this way to avoid generated unneeded OP_SCopy
1.2459 + ** instructions.
1.2460 + */
1.2461 + ExprList *pList = pExpr->pList;
1.2462 + if( pList ){
1.2463 + int i = pList->nExpr;
1.2464 + struct ExprList_item *pItem = pList->a;
1.2465 + for(; i>0; i--, pItem++){
1.2466 + if( pItem->pExpr ) pItem->pExpr->flags |= EP_FixedDest;
1.2467 + }
1.2468 + }
1.2469 + break;
1.2470 + }
1.2471 + }
1.2472 + if( isAppropriateForFactoring(pExpr) ){
1.2473 + int r1 = ++pParse->nMem;
1.2474 + int r2;
1.2475 + r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1);
1.2476 + if( r1!=r2 ) sqlite3ReleaseTempReg(pParse, r1);
1.2477 + pExpr->op = TK_REGISTER;
1.2478 + pExpr->iTable = r2;
1.2479 + return WRC_Prune;
1.2480 + }
1.2481 + return WRC_Continue;
1.2482 +}
1.2483 +
1.2484 +/*
1.2485 +** Preevaluate constant subexpressions within pExpr and store the
1.2486 +** results in registers. Modify pExpr so that the constant subexpresions
1.2487 +** are TK_REGISTER opcodes that refer to the precomputed values.
1.2488 +*/
1.2489 +void sqlite3ExprCodeConstants(Parse *pParse, Expr *pExpr){
1.2490 + Walker w;
1.2491 + w.xExprCallback = evalConstExpr;
1.2492 + w.xSelectCallback = 0;
1.2493 + w.pParse = pParse;
1.2494 + sqlite3WalkExpr(&w, pExpr);
1.2495 +}
1.2496 +
1.2497 +
1.2498 +/*
1.2499 +** Generate code that pushes the value of every element of the given
1.2500 +** expression list into a sequence of registers beginning at target.
1.2501 +**
1.2502 +** Return the number of elements evaluated.
1.2503 +*/
1.2504 +int sqlite3ExprCodeExprList(
1.2505 + Parse *pParse, /* Parsing context */
1.2506 + ExprList *pList, /* The expression list to be coded */
1.2507 + int target, /* Where to write results */
1.2508 + int doHardCopy /* Make a hard copy of every element */
1.2509 +){
1.2510 + struct ExprList_item *pItem;
1.2511 + int i, n;
1.2512 + assert( pList!=0 );
1.2513 + assert( target>0 );
1.2514 + n = pList->nExpr;
1.2515 + for(pItem=pList->a, i=0; i<n; i++, pItem++){
1.2516 + if( pItem->iAlias ){
1.2517 + int iReg = codeAlias(pParse, pItem->iAlias, pItem->pExpr, target);
1.2518 + Vdbe *v = sqlite3GetVdbe(pParse);
1.2519 + if( iReg!=target+i ){
1.2520 + sqlite3VdbeAddOp2(v, OP_SCopy, iReg, target+i);
1.2521 + }
1.2522 + }else{
1.2523 + sqlite3ExprCode(pParse, pItem->pExpr, target+i);
1.2524 + }
1.2525 + if( doHardCopy ){
1.2526 + sqlite3ExprHardCopy(pParse, target, n);
1.2527 + }
1.2528 + }
1.2529 + return n;
1.2530 +}
1.2531 +
1.2532 +/*
1.2533 +** Generate code for a boolean expression such that a jump is made
1.2534 +** to the label "dest" if the expression is true but execution
1.2535 +** continues straight thru if the expression is false.
1.2536 +**
1.2537 +** If the expression evaluates to NULL (neither true nor false), then
1.2538 +** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL.
1.2539 +**
1.2540 +** This code depends on the fact that certain token values (ex: TK_EQ)
1.2541 +** are the same as opcode values (ex: OP_Eq) that implement the corresponding
1.2542 +** operation. Special comments in vdbe.c and the mkopcodeh.awk script in
1.2543 +** the make process cause these values to align. Assert()s in the code
1.2544 +** below verify that the numbers are aligned correctly.
1.2545 +*/
1.2546 +void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
1.2547 + Vdbe *v = pParse->pVdbe;
1.2548 + int op = 0;
1.2549 + int regFree1 = 0;
1.2550 + int regFree2 = 0;
1.2551 + int r1, r2;
1.2552 +
1.2553 + assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 );
1.2554 + if( v==0 || pExpr==0 ) return;
1.2555 + op = pExpr->op;
1.2556 + switch( op ){
1.2557 + case TK_AND: {
1.2558 + int d2 = sqlite3VdbeMakeLabel(v);
1.2559 + testcase( jumpIfNull==0 );
1.2560 + testcase( pParse->disableColCache==0 );
1.2561 + sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL);
1.2562 + pParse->disableColCache++;
1.2563 + sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
1.2564 + assert( pParse->disableColCache>0 );
1.2565 + pParse->disableColCache--;
1.2566 + sqlite3VdbeResolveLabel(v, d2);
1.2567 + break;
1.2568 + }
1.2569 + case TK_OR: {
1.2570 + testcase( jumpIfNull==0 );
1.2571 + testcase( pParse->disableColCache==0 );
1.2572 + sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
1.2573 + pParse->disableColCache++;
1.2574 + sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull);
1.2575 + assert( pParse->disableColCache>0 );
1.2576 + pParse->disableColCache--;
1.2577 + break;
1.2578 + }
1.2579 + case TK_NOT: {
1.2580 + testcase( jumpIfNull==0 );
1.2581 + sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
1.2582 + break;
1.2583 + }
1.2584 + case TK_LT:
1.2585 + case TK_LE:
1.2586 + case TK_GT:
1.2587 + case TK_GE:
1.2588 + case TK_NE:
1.2589 + case TK_EQ: {
1.2590 + assert( TK_LT==OP_Lt );
1.2591 + assert( TK_LE==OP_Le );
1.2592 + assert( TK_GT==OP_Gt );
1.2593 + assert( TK_GE==OP_Ge );
1.2594 + assert( TK_EQ==OP_Eq );
1.2595 + assert( TK_NE==OP_Ne );
1.2596 + testcase( op==TK_LT );
1.2597 + testcase( op==TK_LE );
1.2598 + testcase( op==TK_GT );
1.2599 + testcase( op==TK_GE );
1.2600 + testcase( op==TK_EQ );
1.2601 + testcase( op==TK_NE );
1.2602 + testcase( jumpIfNull==0 );
1.2603 + codeCompareOperands(pParse, pExpr->pLeft, &r1, ®Free1,
1.2604 + pExpr->pRight, &r2, ®Free2);
1.2605 + codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
1.2606 + r1, r2, dest, jumpIfNull);
1.2607 + testcase( regFree1==0 );
1.2608 + testcase( regFree2==0 );
1.2609 + break;
1.2610 + }
1.2611 + case TK_ISNULL:
1.2612 + case TK_NOTNULL: {
1.2613 + assert( TK_ISNULL==OP_IsNull );
1.2614 + assert( TK_NOTNULL==OP_NotNull );
1.2615 + testcase( op==TK_ISNULL );
1.2616 + testcase( op==TK_NOTNULL );
1.2617 + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
1.2618 + sqlite3VdbeAddOp2(v, op, r1, dest);
1.2619 + testcase( regFree1==0 );
1.2620 + break;
1.2621 + }
1.2622 + case TK_BETWEEN: {
1.2623 + /* x BETWEEN y AND z
1.2624 + **
1.2625 + ** Is equivalent to
1.2626 + **
1.2627 + ** x>=y AND x<=z
1.2628 + **
1.2629 + ** Code it as such, taking care to do the common subexpression
1.2630 + ** elementation of x.
1.2631 + */
1.2632 + Expr exprAnd;
1.2633 + Expr compLeft;
1.2634 + Expr compRight;
1.2635 + Expr exprX;
1.2636 +
1.2637 + exprX = *pExpr->pLeft;
1.2638 + exprAnd.op = TK_AND;
1.2639 + exprAnd.pLeft = &compLeft;
1.2640 + exprAnd.pRight = &compRight;
1.2641 + compLeft.op = TK_GE;
1.2642 + compLeft.pLeft = &exprX;
1.2643 + compLeft.pRight = pExpr->pList->a[0].pExpr;
1.2644 + compRight.op = TK_LE;
1.2645 + compRight.pLeft = &exprX;
1.2646 + compRight.pRight = pExpr->pList->a[1].pExpr;
1.2647 + exprX.iTable = sqlite3ExprCodeTemp(pParse, &exprX, ®Free1);
1.2648 + testcase( regFree1==0 );
1.2649 + exprX.op = TK_REGISTER;
1.2650 + testcase( jumpIfNull==0 );
1.2651 + sqlite3ExprIfTrue(pParse, &exprAnd, dest, jumpIfNull);
1.2652 + break;
1.2653 + }
1.2654 + default: {
1.2655 + r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1);
1.2656 + sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0);
1.2657 + testcase( regFree1==0 );
1.2658 + testcase( jumpIfNull==0 );
1.2659 + break;
1.2660 + }
1.2661 + }
1.2662 + sqlite3ReleaseTempReg(pParse, regFree1);
1.2663 + sqlite3ReleaseTempReg(pParse, regFree2);
1.2664 +}
1.2665 +
1.2666 +/*
1.2667 +** Generate code for a boolean expression such that a jump is made
1.2668 +** to the label "dest" if the expression is false but execution
1.2669 +** continues straight thru if the expression is true.
1.2670 +**
1.2671 +** If the expression evaluates to NULL (neither true nor false) then
1.2672 +** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull
1.2673 +** is 0.
1.2674 +*/
1.2675 +void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
1.2676 + Vdbe *v = pParse->pVdbe;
1.2677 + int op = 0;
1.2678 + int regFree1 = 0;
1.2679 + int regFree2 = 0;
1.2680 + int r1, r2;
1.2681 +
1.2682 + assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 );
1.2683 + if( v==0 || pExpr==0 ) return;
1.2684 +
1.2685 + /* The value of pExpr->op and op are related as follows:
1.2686 + **
1.2687 + ** pExpr->op op
1.2688 + ** --------- ----------
1.2689 + ** TK_ISNULL OP_NotNull
1.2690 + ** TK_NOTNULL OP_IsNull
1.2691 + ** TK_NE OP_Eq
1.2692 + ** TK_EQ OP_Ne
1.2693 + ** TK_GT OP_Le
1.2694 + ** TK_LE OP_Gt
1.2695 + ** TK_GE OP_Lt
1.2696 + ** TK_LT OP_Ge
1.2697 + **
1.2698 + ** For other values of pExpr->op, op is undefined and unused.
1.2699 + ** The value of TK_ and OP_ constants are arranged such that we
1.2700 + ** can compute the mapping above using the following expression.
1.2701 + ** Assert()s verify that the computation is correct.
1.2702 + */
1.2703 + op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1);
1.2704 +
1.2705 + /* Verify correct alignment of TK_ and OP_ constants
1.2706 + */
1.2707 + assert( pExpr->op!=TK_ISNULL || op==OP_NotNull );
1.2708 + assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull );
1.2709 + assert( pExpr->op!=TK_NE || op==OP_Eq );
1.2710 + assert( pExpr->op!=TK_EQ || op==OP_Ne );
1.2711 + assert( pExpr->op!=TK_LT || op==OP_Ge );
1.2712 + assert( pExpr->op!=TK_LE || op==OP_Gt );
1.2713 + assert( pExpr->op!=TK_GT || op==OP_Le );
1.2714 + assert( pExpr->op!=TK_GE || op==OP_Lt );
1.2715 +
1.2716 + switch( pExpr->op ){
1.2717 + case TK_AND: {
1.2718 + testcase( jumpIfNull==0 );
1.2719 + testcase( pParse->disableColCache==0 );
1.2720 + sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull);
1.2721 + pParse->disableColCache++;
1.2722 + sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
1.2723 + assert( pParse->disableColCache>0 );
1.2724 + pParse->disableColCache--;
1.2725 + break;
1.2726 + }
1.2727 + case TK_OR: {
1.2728 + int d2 = sqlite3VdbeMakeLabel(v);
1.2729 + testcase( jumpIfNull==0 );
1.2730 + testcase( pParse->disableColCache==0 );
1.2731 + sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL);
1.2732 + pParse->disableColCache++;
1.2733 + sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull);
1.2734 + assert( pParse->disableColCache>0 );
1.2735 + pParse->disableColCache--;
1.2736 + sqlite3VdbeResolveLabel(v, d2);
1.2737 + break;
1.2738 + }
1.2739 + case TK_NOT: {
1.2740 + sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull);
1.2741 + break;
1.2742 + }
1.2743 + case TK_LT:
1.2744 + case TK_LE:
1.2745 + case TK_GT:
1.2746 + case TK_GE:
1.2747 + case TK_NE:
1.2748 + case TK_EQ: {
1.2749 + testcase( op==TK_LT );
1.2750 + testcase( op==TK_LE );
1.2751 + testcase( op==TK_GT );
1.2752 + testcase( op==TK_GE );
1.2753 + testcase( op==TK_EQ );
1.2754 + testcase( op==TK_NE );
1.2755 + testcase( jumpIfNull==0 );
1.2756 + codeCompareOperands(pParse, pExpr->pLeft, &r1, ®Free1,
1.2757 + pExpr->pRight, &r2, ®Free2);
1.2758 + codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op,
1.2759 + r1, r2, dest, jumpIfNull);
1.2760 + testcase( regFree1==0 );
1.2761 + testcase( regFree2==0 );
1.2762 + break;
1.2763 + }
1.2764 + case TK_ISNULL:
1.2765 + case TK_NOTNULL: {
1.2766 + testcase( op==TK_ISNULL );
1.2767 + testcase( op==TK_NOTNULL );
1.2768 + r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1);
1.2769 + sqlite3VdbeAddOp2(v, op, r1, dest);
1.2770 + testcase( regFree1==0 );
1.2771 + break;
1.2772 + }
1.2773 + case TK_BETWEEN: {
1.2774 + /* x BETWEEN y AND z
1.2775 + **
1.2776 + ** Is equivalent to
1.2777 + **
1.2778 + ** x>=y AND x<=z
1.2779 + **
1.2780 + ** Code it as such, taking care to do the common subexpression
1.2781 + ** elementation of x.
1.2782 + */
1.2783 + Expr exprAnd;
1.2784 + Expr compLeft;
1.2785 + Expr compRight;
1.2786 + Expr exprX;
1.2787 +
1.2788 + exprX = *pExpr->pLeft;
1.2789 + exprAnd.op = TK_AND;
1.2790 + exprAnd.pLeft = &compLeft;
1.2791 + exprAnd.pRight = &compRight;
1.2792 + compLeft.op = TK_GE;
1.2793 + compLeft.pLeft = &exprX;
1.2794 + compLeft.pRight = pExpr->pList->a[0].pExpr;
1.2795 + compRight.op = TK_LE;
1.2796 + compRight.pLeft = &exprX;
1.2797 + compRight.pRight = pExpr->pList->a[1].pExpr;
1.2798 + exprX.iTable = sqlite3ExprCodeTemp(pParse, &exprX, ®Free1);
1.2799 + testcase( regFree1==0 );
1.2800 + exprX.op = TK_REGISTER;
1.2801 + testcase( jumpIfNull==0 );
1.2802 + sqlite3ExprIfFalse(pParse, &exprAnd, dest, jumpIfNull);
1.2803 + break;
1.2804 + }
1.2805 + default: {
1.2806 + r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1);
1.2807 + sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0);
1.2808 + testcase( regFree1==0 );
1.2809 + testcase( jumpIfNull==0 );
1.2810 + break;
1.2811 + }
1.2812 + }
1.2813 + sqlite3ReleaseTempReg(pParse, regFree1);
1.2814 + sqlite3ReleaseTempReg(pParse, regFree2);
1.2815 +}
1.2816 +
1.2817 +/*
1.2818 +** Do a deep comparison of two expression trees. Return TRUE (non-zero)
1.2819 +** if they are identical and return FALSE if they differ in any way.
1.2820 +**
1.2821 +** Sometimes this routine will return FALSE even if the two expressions
1.2822 +** really are equivalent. If we cannot prove that the expressions are
1.2823 +** identical, we return FALSE just to be safe. So if this routine
1.2824 +** returns false, then you do not really know for certain if the two
1.2825 +** expressions are the same. But if you get a TRUE return, then you
1.2826 +** can be sure the expressions are the same. In the places where
1.2827 +** this routine is used, it does not hurt to get an extra FALSE - that
1.2828 +** just might result in some slightly slower code. But returning
1.2829 +** an incorrect TRUE could lead to a malfunction.
1.2830 +*/
1.2831 +int sqlite3ExprCompare(Expr *pA, Expr *pB){
1.2832 + int i;
1.2833 + if( pA==0||pB==0 ){
1.2834 + return pB==pA;
1.2835 + }
1.2836 + if( pA->op!=pB->op ) return 0;
1.2837 + if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 0;
1.2838 + if( !sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 0;
1.2839 + if( !sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 0;
1.2840 + if( pA->pList ){
1.2841 + if( pB->pList==0 ) return 0;
1.2842 + if( pA->pList->nExpr!=pB->pList->nExpr ) return 0;
1.2843 + for(i=0; i<pA->pList->nExpr; i++){
1.2844 + if( !sqlite3ExprCompare(pA->pList->a[i].pExpr, pB->pList->a[i].pExpr) ){
1.2845 + return 0;
1.2846 + }
1.2847 + }
1.2848 + }else if( pB->pList ){
1.2849 + return 0;
1.2850 + }
1.2851 + if( pA->pSelect || pB->pSelect ) return 0;
1.2852 + if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 0;
1.2853 + if( pA->op!=TK_COLUMN && pA->token.z ){
1.2854 + if( pB->token.z==0 ) return 0;
1.2855 + if( pB->token.n!=pA->token.n ) return 0;
1.2856 + if( sqlite3StrNICmp((char*)pA->token.z,(char*)pB->token.z,pB->token.n)!=0 ){
1.2857 + return 0;
1.2858 + }
1.2859 + }
1.2860 + return 1;
1.2861 +}
1.2862 +
1.2863 +
1.2864 +/*
1.2865 +** Add a new element to the pAggInfo->aCol[] array. Return the index of
1.2866 +** the new element. Return a negative number if malloc fails.
1.2867 +*/
1.2868 +static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){
1.2869 + int i;
1.2870 + pInfo->aCol = sqlite3ArrayAllocate(
1.2871 + db,
1.2872 + pInfo->aCol,
1.2873 + sizeof(pInfo->aCol[0]),
1.2874 + 3,
1.2875 + &pInfo->nColumn,
1.2876 + &pInfo->nColumnAlloc,
1.2877 + &i
1.2878 + );
1.2879 + return i;
1.2880 +}
1.2881 +
1.2882 +/*
1.2883 +** Add a new element to the pAggInfo->aFunc[] array. Return the index of
1.2884 +** the new element. Return a negative number if malloc fails.
1.2885 +*/
1.2886 +static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){
1.2887 + int i;
1.2888 + pInfo->aFunc = sqlite3ArrayAllocate(
1.2889 + db,
1.2890 + pInfo->aFunc,
1.2891 + sizeof(pInfo->aFunc[0]),
1.2892 + 3,
1.2893 + &pInfo->nFunc,
1.2894 + &pInfo->nFuncAlloc,
1.2895 + &i
1.2896 + );
1.2897 + return i;
1.2898 +}
1.2899 +
1.2900 +/*
1.2901 +** This is the xExprCallback for a tree walker. It is used to
1.2902 +** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates
1.2903 +** for additional information.
1.2904 +*/
1.2905 +static int analyzeAggregate(Walker *pWalker, Expr *pExpr){
1.2906 + int i;
1.2907 + NameContext *pNC = pWalker->u.pNC;
1.2908 + Parse *pParse = pNC->pParse;
1.2909 + SrcList *pSrcList = pNC->pSrcList;
1.2910 + AggInfo *pAggInfo = pNC->pAggInfo;
1.2911 +
1.2912 + switch( pExpr->op ){
1.2913 + case TK_AGG_COLUMN:
1.2914 + case TK_COLUMN: {
1.2915 + testcase( pExpr->op==TK_AGG_COLUMN );
1.2916 + testcase( pExpr->op==TK_COLUMN );
1.2917 + /* Check to see if the column is in one of the tables in the FROM
1.2918 + ** clause of the aggregate query */
1.2919 + if( pSrcList ){
1.2920 + struct SrcList_item *pItem = pSrcList->a;
1.2921 + for(i=0; i<pSrcList->nSrc; i++, pItem++){
1.2922 + struct AggInfo_col *pCol;
1.2923 + if( pExpr->iTable==pItem->iCursor ){
1.2924 + /* If we reach this point, it means that pExpr refers to a table
1.2925 + ** that is in the FROM clause of the aggregate query.
1.2926 + **
1.2927 + ** Make an entry for the column in pAggInfo->aCol[] if there
1.2928 + ** is not an entry there already.
1.2929 + */
1.2930 + int k;
1.2931 + pCol = pAggInfo->aCol;
1.2932 + for(k=0; k<pAggInfo->nColumn; k++, pCol++){
1.2933 + if( pCol->iTable==pExpr->iTable &&
1.2934 + pCol->iColumn==pExpr->iColumn ){
1.2935 + break;
1.2936 + }
1.2937 + }
1.2938 + if( (k>=pAggInfo->nColumn)
1.2939 + && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0
1.2940 + ){
1.2941 + pCol = &pAggInfo->aCol[k];
1.2942 + pCol->pTab = pExpr->pTab;
1.2943 + pCol->iTable = pExpr->iTable;
1.2944 + pCol->iColumn = pExpr->iColumn;
1.2945 + pCol->iMem = ++pParse->nMem;
1.2946 + pCol->iSorterColumn = -1;
1.2947 + pCol->pExpr = pExpr;
1.2948 + if( pAggInfo->pGroupBy ){
1.2949 + int j, n;
1.2950 + ExprList *pGB = pAggInfo->pGroupBy;
1.2951 + struct ExprList_item *pTerm = pGB->a;
1.2952 + n = pGB->nExpr;
1.2953 + for(j=0; j<n; j++, pTerm++){
1.2954 + Expr *pE = pTerm->pExpr;
1.2955 + if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable &&
1.2956 + pE->iColumn==pExpr->iColumn ){
1.2957 + pCol->iSorterColumn = j;
1.2958 + break;
1.2959 + }
1.2960 + }
1.2961 + }
1.2962 + if( pCol->iSorterColumn<0 ){
1.2963 + pCol->iSorterColumn = pAggInfo->nSortingColumn++;
1.2964 + }
1.2965 + }
1.2966 + /* There is now an entry for pExpr in pAggInfo->aCol[] (either
1.2967 + ** because it was there before or because we just created it).
1.2968 + ** Convert the pExpr to be a TK_AGG_COLUMN referring to that
1.2969 + ** pAggInfo->aCol[] entry.
1.2970 + */
1.2971 + pExpr->pAggInfo = pAggInfo;
1.2972 + pExpr->op = TK_AGG_COLUMN;
1.2973 + pExpr->iAgg = k;
1.2974 + break;
1.2975 + } /* endif pExpr->iTable==pItem->iCursor */
1.2976 + } /* end loop over pSrcList */
1.2977 + }
1.2978 + return WRC_Prune;
1.2979 + }
1.2980 + case TK_AGG_FUNCTION: {
1.2981 + /* The pNC->nDepth==0 test causes aggregate functions in subqueries
1.2982 + ** to be ignored */
1.2983 + if( pNC->nDepth==0 ){
1.2984 + /* Check to see if pExpr is a duplicate of another aggregate
1.2985 + ** function that is already in the pAggInfo structure
1.2986 + */
1.2987 + struct AggInfo_func *pItem = pAggInfo->aFunc;
1.2988 + for(i=0; i<pAggInfo->nFunc; i++, pItem++){
1.2989 + if( sqlite3ExprCompare(pItem->pExpr, pExpr) ){
1.2990 + break;
1.2991 + }
1.2992 + }
1.2993 + if( i>=pAggInfo->nFunc ){
1.2994 + /* pExpr is original. Make a new entry in pAggInfo->aFunc[]
1.2995 + */
1.2996 + u8 enc = ENC(pParse->db);
1.2997 + i = addAggInfoFunc(pParse->db, pAggInfo);
1.2998 + if( i>=0 ){
1.2999 + pItem = &pAggInfo->aFunc[i];
1.3000 + pItem->pExpr = pExpr;
1.3001 + pItem->iMem = ++pParse->nMem;
1.3002 + pItem->pFunc = sqlite3FindFunction(pParse->db,
1.3003 + (char*)pExpr->token.z, pExpr->token.n,
1.3004 + pExpr->pList ? pExpr->pList->nExpr : 0, enc, 0);
1.3005 + if( pExpr->flags & EP_Distinct ){
1.3006 + pItem->iDistinct = pParse->nTab++;
1.3007 + }else{
1.3008 + pItem->iDistinct = -1;
1.3009 + }
1.3010 + }
1.3011 + }
1.3012 + /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry
1.3013 + */
1.3014 + pExpr->iAgg = i;
1.3015 + pExpr->pAggInfo = pAggInfo;
1.3016 + return WRC_Prune;
1.3017 + }
1.3018 + }
1.3019 + }
1.3020 + return WRC_Continue;
1.3021 +}
1.3022 +static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){
1.3023 + NameContext *pNC = pWalker->u.pNC;
1.3024 + if( pNC->nDepth==0 ){
1.3025 + pNC->nDepth++;
1.3026 + sqlite3WalkSelect(pWalker, pSelect);
1.3027 + pNC->nDepth--;
1.3028 + return WRC_Prune;
1.3029 + }else{
1.3030 + return WRC_Continue;
1.3031 + }
1.3032 +}
1.3033 +
1.3034 +/*
1.3035 +** Analyze the given expression looking for aggregate functions and
1.3036 +** for variables that need to be added to the pParse->aAgg[] array.
1.3037 +** Make additional entries to the pParse->aAgg[] array as necessary.
1.3038 +**
1.3039 +** This routine should only be called after the expression has been
1.3040 +** analyzed by sqlite3ResolveExprNames().
1.3041 +*/
1.3042 +void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){
1.3043 + Walker w;
1.3044 + w.xExprCallback = analyzeAggregate;
1.3045 + w.xSelectCallback = analyzeAggregatesInSelect;
1.3046 + w.u.pNC = pNC;
1.3047 + sqlite3WalkExpr(&w, pExpr);
1.3048 +}
1.3049 +
1.3050 +/*
1.3051 +** Call sqlite3ExprAnalyzeAggregates() for every expression in an
1.3052 +** expression list. Return the number of errors.
1.3053 +**
1.3054 +** If an error is found, the analysis is cut short.
1.3055 +*/
1.3056 +void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){
1.3057 + struct ExprList_item *pItem;
1.3058 + int i;
1.3059 + if( pList ){
1.3060 + for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){
1.3061 + sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr);
1.3062 + }
1.3063 + }
1.3064 +}
1.3065 +
1.3066 +/*
1.3067 +** Allocate or deallocate temporary use registers during code generation.
1.3068 +*/
1.3069 +int sqlite3GetTempReg(Parse *pParse){
1.3070 + if( pParse->nTempReg==0 ){
1.3071 + return ++pParse->nMem;
1.3072 + }
1.3073 + return pParse->aTempReg[--pParse->nTempReg];
1.3074 +}
1.3075 +void sqlite3ReleaseTempReg(Parse *pParse, int iReg){
1.3076 + if( iReg && pParse->nTempReg<ArraySize(pParse->aTempReg) ){
1.3077 + sqlite3ExprWritableRegister(pParse, iReg, iReg);
1.3078 + pParse->aTempReg[pParse->nTempReg++] = iReg;
1.3079 + }
1.3080 +}
1.3081 +
1.3082 +/*
1.3083 +** Allocate or deallocate a block of nReg consecutive registers
1.3084 +*/
1.3085 +int sqlite3GetTempRange(Parse *pParse, int nReg){
1.3086 + int i, n;
1.3087 + i = pParse->iRangeReg;
1.3088 + n = pParse->nRangeReg;
1.3089 + if( nReg<=n && !usedAsColumnCache(pParse, i, i+n-1) ){
1.3090 + pParse->iRangeReg += nReg;
1.3091 + pParse->nRangeReg -= nReg;
1.3092 + }else{
1.3093 + i = pParse->nMem+1;
1.3094 + pParse->nMem += nReg;
1.3095 + }
1.3096 + return i;
1.3097 +}
1.3098 +void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){
1.3099 + if( nReg>pParse->nRangeReg ){
1.3100 + pParse->nRangeReg = nReg;
1.3101 + pParse->iRangeReg = iReg;
1.3102 + }
1.3103 +}