1cce7d176Sdrh /* 2b19a2bc6Sdrh ** 2001 September 15 3cce7d176Sdrh ** 4b19a2bc6Sdrh ** The author disclaims copyright to this source code. In place of 5b19a2bc6Sdrh ** a legal notice, here is a blessing: 6cce7d176Sdrh ** 7b19a2bc6Sdrh ** May you do good and not evil. 8b19a2bc6Sdrh ** May you find forgiveness for yourself and forgive others. 9b19a2bc6Sdrh ** May you share freely, never taking more than you give. 10cce7d176Sdrh ** 11cce7d176Sdrh ************************************************************************* 121ccde15dSdrh ** This file contains routines used for analyzing expressions and 13b19a2bc6Sdrh ** for generating VDBE code that evaluates expressions in SQLite. 14cce7d176Sdrh */ 15cce7d176Sdrh #include "sqliteInt.h" 16a2e00042Sdrh 17e014a838Sdanielk1977 /* 18e014a838Sdanielk1977 ** Return the 'affinity' of the expression pExpr if any. 19e014a838Sdanielk1977 ** 20e014a838Sdanielk1977 ** If pExpr is a column, a reference to a column via an 'AS' alias, 21e014a838Sdanielk1977 ** or a sub-select with a column as the return value, then the 22e014a838Sdanielk1977 ** affinity of that column is returned. Otherwise, 0x00 is returned, 23e014a838Sdanielk1977 ** indicating no affinity for the expression. 24e014a838Sdanielk1977 ** 25e014a838Sdanielk1977 ** i.e. the WHERE clause expresssions in the following statements all 26e014a838Sdanielk1977 ** have an affinity: 27e014a838Sdanielk1977 ** 28e014a838Sdanielk1977 ** CREATE TABLE t1(a); 29e014a838Sdanielk1977 ** SELECT * FROM t1 WHERE a; 30e014a838Sdanielk1977 ** SELECT a AS b FROM t1 WHERE b; 31e014a838Sdanielk1977 ** SELECT * FROM t1 WHERE (select a from t1); 32e014a838Sdanielk1977 */ 33bf3b721fSdanielk1977 char sqlite3ExprAffinity(Expr *pExpr){ 34487e262fSdrh int op = pExpr->op; 35487e262fSdrh if( op==TK_SELECT ){ 366ab3a2ecSdanielk1977 assert( pExpr->flags&EP_xIsSelect ); 376ab3a2ecSdanielk1977 return sqlite3ExprAffinity(pExpr->x.pSelect->pEList->a[0].pExpr); 38a37cdde0Sdanielk1977 } 39487e262fSdrh #ifndef SQLITE_OMIT_CAST 40487e262fSdrh if( op==TK_CAST ){ 4133e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 4233e619fcSdrh return sqlite3AffinityType(pExpr->u.zToken); 43487e262fSdrh } 44487e262fSdrh #endif 45259a455fSdanielk1977 if( (op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER) 46259a455fSdanielk1977 && pExpr->pTab!=0 47259a455fSdanielk1977 ){ 487d10d5a6Sdrh /* op==TK_REGISTER && pExpr->pTab!=0 happens when pExpr was originally 497d10d5a6Sdrh ** a TK_COLUMN but was previously evaluated and cached in a register */ 507d10d5a6Sdrh int j = pExpr->iColumn; 517d10d5a6Sdrh if( j<0 ) return SQLITE_AFF_INTEGER; 527d10d5a6Sdrh assert( pExpr->pTab && j<pExpr->pTab->nCol ); 537d10d5a6Sdrh return pExpr->pTab->aCol[j].affinity; 547d10d5a6Sdrh } 55a37cdde0Sdanielk1977 return pExpr->affinity; 56a37cdde0Sdanielk1977 } 57a37cdde0Sdanielk1977 5853db1458Sdrh /* 598b4c40d8Sdrh ** Set the collating sequence for expression pExpr to be the collating 608b4c40d8Sdrh ** sequence named by pToken. Return a pointer to the revised expression. 61a34001c9Sdrh ** The collating sequence is marked as "explicit" using the EP_ExpCollate 62a34001c9Sdrh ** flag. An explicit collating sequence will override implicit 63a34001c9Sdrh ** collating sequences. 648b4c40d8Sdrh */ 657d10d5a6Sdrh Expr *sqlite3ExprSetColl(Parse *pParse, Expr *pExpr, Token *pCollName){ 6639002505Sdanielk1977 char *zColl = 0; /* Dequoted name of collation sequence */ 678b4c40d8Sdrh CollSeq *pColl; 68633e6d57Sdrh sqlite3 *db = pParse->db; 697d10d5a6Sdrh zColl = sqlite3NameFromToken(db, pCollName); 7039002505Sdanielk1977 if( pExpr && zColl ){ 71c4a64facSdrh pColl = sqlite3LocateCollSeq(pParse, zColl); 728b4c40d8Sdrh if( pColl ){ 738b4c40d8Sdrh pExpr->pColl = pColl; 748b4c40d8Sdrh pExpr->flags |= EP_ExpCollate; 758b4c40d8Sdrh } 7639002505Sdanielk1977 } 77633e6d57Sdrh sqlite3DbFree(db, zColl); 788b4c40d8Sdrh return pExpr; 798b4c40d8Sdrh } 808b4c40d8Sdrh 818b4c40d8Sdrh /* 820202b29eSdanielk1977 ** Return the default collation sequence for the expression pExpr. If 830202b29eSdanielk1977 ** there is no default collation type, return 0. 840202b29eSdanielk1977 */ 857cedc8d4Sdanielk1977 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){ 867cedc8d4Sdanielk1977 CollSeq *pColl = 0; 877d10d5a6Sdrh Expr *p = pExpr; 8851f49f17Sdrh while( ALWAYS(p) ){ 897e09fe0bSdrh int op; 907d10d5a6Sdrh pColl = p->pColl; 917d10d5a6Sdrh if( pColl ) break; 927d10d5a6Sdrh op = p->op; 9376d462eeSdan if( p->pTab!=0 && ( 9476d462eeSdan op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER || op==TK_TRIGGER 9576d462eeSdan )){ 967d10d5a6Sdrh /* op==TK_REGISTER && p->pTab!=0 happens when pExpr was originally 977d10d5a6Sdrh ** a TK_COLUMN but was previously evaluated and cached in a register */ 987d10d5a6Sdrh const char *zColl; 997d10d5a6Sdrh int j = p->iColumn; 1007d10d5a6Sdrh if( j>=0 ){ 1017d10d5a6Sdrh sqlite3 *db = pParse->db; 1027d10d5a6Sdrh zColl = p->pTab->aCol[j].zColl; 103c4a64facSdrh pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0); 1047d10d5a6Sdrh pExpr->pColl = pColl; 1050202b29eSdanielk1977 } 1067d10d5a6Sdrh break; 1077d10d5a6Sdrh } 1087d10d5a6Sdrh if( op!=TK_CAST && op!=TK_UPLUS ){ 1097d10d5a6Sdrh break; 1107d10d5a6Sdrh } 1117d10d5a6Sdrh p = p->pLeft; 1120202b29eSdanielk1977 } 1137cedc8d4Sdanielk1977 if( sqlite3CheckCollSeq(pParse, pColl) ){ 1147cedc8d4Sdanielk1977 pColl = 0; 1157cedc8d4Sdanielk1977 } 1167cedc8d4Sdanielk1977 return pColl; 1170202b29eSdanielk1977 } 1180202b29eSdanielk1977 1190202b29eSdanielk1977 /* 120626a879aSdrh ** pExpr is an operand of a comparison operator. aff2 is the 121626a879aSdrh ** type affinity of the other operand. This routine returns the 12253db1458Sdrh ** type affinity that should be used for the comparison operator. 12353db1458Sdrh */ 124e014a838Sdanielk1977 char sqlite3CompareAffinity(Expr *pExpr, char aff2){ 125bf3b721fSdanielk1977 char aff1 = sqlite3ExprAffinity(pExpr); 126e014a838Sdanielk1977 if( aff1 && aff2 ){ 1278df447f0Sdrh /* Both sides of the comparison are columns. If one has numeric 1288df447f0Sdrh ** affinity, use that. Otherwise use no affinity. 129e014a838Sdanielk1977 */ 1308a51256cSdrh if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){ 131e014a838Sdanielk1977 return SQLITE_AFF_NUMERIC; 132e014a838Sdanielk1977 }else{ 133e014a838Sdanielk1977 return SQLITE_AFF_NONE; 134e014a838Sdanielk1977 } 135e014a838Sdanielk1977 }else if( !aff1 && !aff2 ){ 1365f6a87b3Sdrh /* Neither side of the comparison is a column. Compare the 1375f6a87b3Sdrh ** results directly. 138e014a838Sdanielk1977 */ 1395f6a87b3Sdrh return SQLITE_AFF_NONE; 140e014a838Sdanielk1977 }else{ 141e014a838Sdanielk1977 /* One side is a column, the other is not. Use the columns affinity. */ 142fe05af87Sdrh assert( aff1==0 || aff2==0 ); 143e014a838Sdanielk1977 return (aff1 + aff2); 144e014a838Sdanielk1977 } 145e014a838Sdanielk1977 } 146e014a838Sdanielk1977 14753db1458Sdrh /* 14853db1458Sdrh ** pExpr is a comparison operator. Return the type affinity that should 14953db1458Sdrh ** be applied to both operands prior to doing the comparison. 15053db1458Sdrh */ 151e014a838Sdanielk1977 static char comparisonAffinity(Expr *pExpr){ 152e014a838Sdanielk1977 char aff; 153e014a838Sdanielk1977 assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT || 154e014a838Sdanielk1977 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || 1556a2fe093Sdrh pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT ); 156e014a838Sdanielk1977 assert( pExpr->pLeft ); 157bf3b721fSdanielk1977 aff = sqlite3ExprAffinity(pExpr->pLeft); 158e014a838Sdanielk1977 if( pExpr->pRight ){ 159e014a838Sdanielk1977 aff = sqlite3CompareAffinity(pExpr->pRight, aff); 1606ab3a2ecSdanielk1977 }else if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 1616ab3a2ecSdanielk1977 aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff); 1626ab3a2ecSdanielk1977 }else if( !aff ){ 163de087bd5Sdrh aff = SQLITE_AFF_NONE; 164e014a838Sdanielk1977 } 165e014a838Sdanielk1977 return aff; 166e014a838Sdanielk1977 } 167e014a838Sdanielk1977 168e014a838Sdanielk1977 /* 169e014a838Sdanielk1977 ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc. 170e014a838Sdanielk1977 ** idx_affinity is the affinity of an indexed column. Return true 171e014a838Sdanielk1977 ** if the index with affinity idx_affinity may be used to implement 172e014a838Sdanielk1977 ** the comparison in pExpr. 173e014a838Sdanielk1977 */ 174e014a838Sdanielk1977 int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){ 175e014a838Sdanielk1977 char aff = comparisonAffinity(pExpr); 1768a51256cSdrh switch( aff ){ 1778a51256cSdrh case SQLITE_AFF_NONE: 1788a51256cSdrh return 1; 1798a51256cSdrh case SQLITE_AFF_TEXT: 1808a51256cSdrh return idx_affinity==SQLITE_AFF_TEXT; 1818a51256cSdrh default: 1828a51256cSdrh return sqlite3IsNumericAffinity(idx_affinity); 1838a51256cSdrh } 184e014a838Sdanielk1977 } 185e014a838Sdanielk1977 186a37cdde0Sdanielk1977 /* 18735573356Sdrh ** Return the P5 value that should be used for a binary comparison 188a37cdde0Sdanielk1977 ** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2. 189a37cdde0Sdanielk1977 */ 19035573356Sdrh static u8 binaryCompareP5(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){ 19135573356Sdrh u8 aff = (char)sqlite3ExprAffinity(pExpr2); 1921bd10f8aSdrh aff = (u8)sqlite3CompareAffinity(pExpr1, aff) | (u8)jumpIfNull; 19335573356Sdrh return aff; 194a37cdde0Sdanielk1977 } 195a37cdde0Sdanielk1977 196a2e00042Sdrh /* 1970202b29eSdanielk1977 ** Return a pointer to the collation sequence that should be used by 1980202b29eSdanielk1977 ** a binary comparison operator comparing pLeft and pRight. 1990202b29eSdanielk1977 ** 2000202b29eSdanielk1977 ** If the left hand expression has a collating sequence type, then it is 2010202b29eSdanielk1977 ** used. Otherwise the collation sequence for the right hand expression 2020202b29eSdanielk1977 ** is used, or the default (BINARY) if neither expression has a collating 2030202b29eSdanielk1977 ** type. 204bcbb04e5Sdanielk1977 ** 205bcbb04e5Sdanielk1977 ** Argument pRight (but not pLeft) may be a null pointer. In this case, 206bcbb04e5Sdanielk1977 ** it is not considered. 2070202b29eSdanielk1977 */ 208bcbb04e5Sdanielk1977 CollSeq *sqlite3BinaryCompareCollSeq( 209bcbb04e5Sdanielk1977 Parse *pParse, 210bcbb04e5Sdanielk1977 Expr *pLeft, 211bcbb04e5Sdanielk1977 Expr *pRight 212bcbb04e5Sdanielk1977 ){ 213ec41ddacSdrh CollSeq *pColl; 214ec41ddacSdrh assert( pLeft ); 215ec41ddacSdrh if( pLeft->flags & EP_ExpCollate ){ 216ec41ddacSdrh assert( pLeft->pColl ); 217ec41ddacSdrh pColl = pLeft->pColl; 218bcbb04e5Sdanielk1977 }else if( pRight && pRight->flags & EP_ExpCollate ){ 219ec41ddacSdrh assert( pRight->pColl ); 220ec41ddacSdrh pColl = pRight->pColl; 221ec41ddacSdrh }else{ 222ec41ddacSdrh pColl = sqlite3ExprCollSeq(pParse, pLeft); 2230202b29eSdanielk1977 if( !pColl ){ 2247cedc8d4Sdanielk1977 pColl = sqlite3ExprCollSeq(pParse, pRight); 2250202b29eSdanielk1977 } 226ec41ddacSdrh } 2270202b29eSdanielk1977 return pColl; 2280202b29eSdanielk1977 } 2290202b29eSdanielk1977 2300202b29eSdanielk1977 /* 231da250ea5Sdrh ** Generate the operands for a comparison operation. Before 232da250ea5Sdrh ** generating the code for each operand, set the EP_AnyAff 233da250ea5Sdrh ** flag on the expression so that it will be able to used a 234da250ea5Sdrh ** cached column value that has previously undergone an 235da250ea5Sdrh ** affinity change. 236da250ea5Sdrh */ 237da250ea5Sdrh static void codeCompareOperands( 238da250ea5Sdrh Parse *pParse, /* Parsing and code generating context */ 239da250ea5Sdrh Expr *pLeft, /* The left operand */ 240da250ea5Sdrh int *pRegLeft, /* Register where left operand is stored */ 241da250ea5Sdrh int *pFreeLeft, /* Free this register when done */ 242da250ea5Sdrh Expr *pRight, /* The right operand */ 243da250ea5Sdrh int *pRegRight, /* Register where right operand is stored */ 244da250ea5Sdrh int *pFreeRight /* Write temp register for right operand there */ 245da250ea5Sdrh ){ 246da250ea5Sdrh while( pLeft->op==TK_UPLUS ) pLeft = pLeft->pLeft; 247da250ea5Sdrh pLeft->flags |= EP_AnyAff; 248da250ea5Sdrh *pRegLeft = sqlite3ExprCodeTemp(pParse, pLeft, pFreeLeft); 249da250ea5Sdrh while( pRight->op==TK_UPLUS ) pRight = pRight->pLeft; 250da250ea5Sdrh pRight->flags |= EP_AnyAff; 251da250ea5Sdrh *pRegRight = sqlite3ExprCodeTemp(pParse, pRight, pFreeRight); 252da250ea5Sdrh } 253da250ea5Sdrh 254da250ea5Sdrh /* 255be5c89acSdrh ** Generate code for a comparison operator. 256be5c89acSdrh */ 257be5c89acSdrh static int codeCompare( 258be5c89acSdrh Parse *pParse, /* The parsing (and code generating) context */ 259be5c89acSdrh Expr *pLeft, /* The left operand */ 260be5c89acSdrh Expr *pRight, /* The right operand */ 261be5c89acSdrh int opcode, /* The comparison opcode */ 26235573356Sdrh int in1, int in2, /* Register holding operands */ 263be5c89acSdrh int dest, /* Jump here if true. */ 264be5c89acSdrh int jumpIfNull /* If true, jump if either operand is NULL */ 265be5c89acSdrh ){ 26635573356Sdrh int p5; 26735573356Sdrh int addr; 26835573356Sdrh CollSeq *p4; 26935573356Sdrh 27035573356Sdrh p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight); 27135573356Sdrh p5 = binaryCompareP5(pLeft, pRight, jumpIfNull); 27235573356Sdrh addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1, 27335573356Sdrh (void*)p4, P4_COLLSEQ); 2741bd10f8aSdrh sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5); 275e49b146fSdrh if( (p5 & SQLITE_AFF_MASK)!=SQLITE_AFF_NONE ){ 276da250ea5Sdrh sqlite3ExprCacheAffinityChange(pParse, in1, 1); 277da250ea5Sdrh sqlite3ExprCacheAffinityChange(pParse, in2, 1); 2782f7794c1Sdrh } 27935573356Sdrh return addr; 280be5c89acSdrh } 281be5c89acSdrh 2824b5255acSdanielk1977 #if SQLITE_MAX_EXPR_DEPTH>0 2834b5255acSdanielk1977 /* 2844b5255acSdanielk1977 ** Check that argument nHeight is less than or equal to the maximum 2854b5255acSdanielk1977 ** expression depth allowed. If it is not, leave an error message in 2864b5255acSdanielk1977 ** pParse. 2874b5255acSdanielk1977 */ 2887d10d5a6Sdrh int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){ 2894b5255acSdanielk1977 int rc = SQLITE_OK; 2904b5255acSdanielk1977 int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH]; 2914b5255acSdanielk1977 if( nHeight>mxHeight ){ 2924b5255acSdanielk1977 sqlite3ErrorMsg(pParse, 2934b5255acSdanielk1977 "Expression tree is too large (maximum depth %d)", mxHeight 2944b5255acSdanielk1977 ); 2954b5255acSdanielk1977 rc = SQLITE_ERROR; 2964b5255acSdanielk1977 } 2974b5255acSdanielk1977 return rc; 2984b5255acSdanielk1977 } 2994b5255acSdanielk1977 3004b5255acSdanielk1977 /* The following three functions, heightOfExpr(), heightOfExprList() 3014b5255acSdanielk1977 ** and heightOfSelect(), are used to determine the maximum height 3024b5255acSdanielk1977 ** of any expression tree referenced by the structure passed as the 3034b5255acSdanielk1977 ** first argument. 3044b5255acSdanielk1977 ** 3054b5255acSdanielk1977 ** If this maximum height is greater than the current value pointed 3064b5255acSdanielk1977 ** to by pnHeight, the second parameter, then set *pnHeight to that 3074b5255acSdanielk1977 ** value. 3084b5255acSdanielk1977 */ 3094b5255acSdanielk1977 static void heightOfExpr(Expr *p, int *pnHeight){ 3104b5255acSdanielk1977 if( p ){ 3114b5255acSdanielk1977 if( p->nHeight>*pnHeight ){ 3124b5255acSdanielk1977 *pnHeight = p->nHeight; 3134b5255acSdanielk1977 } 3144b5255acSdanielk1977 } 3154b5255acSdanielk1977 } 3164b5255acSdanielk1977 static void heightOfExprList(ExprList *p, int *pnHeight){ 3174b5255acSdanielk1977 if( p ){ 3184b5255acSdanielk1977 int i; 3194b5255acSdanielk1977 for(i=0; i<p->nExpr; i++){ 3204b5255acSdanielk1977 heightOfExpr(p->a[i].pExpr, pnHeight); 3214b5255acSdanielk1977 } 3224b5255acSdanielk1977 } 3234b5255acSdanielk1977 } 3244b5255acSdanielk1977 static void heightOfSelect(Select *p, int *pnHeight){ 3254b5255acSdanielk1977 if( p ){ 3264b5255acSdanielk1977 heightOfExpr(p->pWhere, pnHeight); 3274b5255acSdanielk1977 heightOfExpr(p->pHaving, pnHeight); 3284b5255acSdanielk1977 heightOfExpr(p->pLimit, pnHeight); 3294b5255acSdanielk1977 heightOfExpr(p->pOffset, pnHeight); 3304b5255acSdanielk1977 heightOfExprList(p->pEList, pnHeight); 3314b5255acSdanielk1977 heightOfExprList(p->pGroupBy, pnHeight); 3324b5255acSdanielk1977 heightOfExprList(p->pOrderBy, pnHeight); 3334b5255acSdanielk1977 heightOfSelect(p->pPrior, pnHeight); 3344b5255acSdanielk1977 } 3354b5255acSdanielk1977 } 3364b5255acSdanielk1977 3374b5255acSdanielk1977 /* 3384b5255acSdanielk1977 ** Set the Expr.nHeight variable in the structure passed as an 3394b5255acSdanielk1977 ** argument. An expression with no children, Expr.pList or 3404b5255acSdanielk1977 ** Expr.pSelect member has a height of 1. Any other expression 3414b5255acSdanielk1977 ** has a height equal to the maximum height of any other 3424b5255acSdanielk1977 ** referenced Expr plus one. 3434b5255acSdanielk1977 */ 3444b5255acSdanielk1977 static void exprSetHeight(Expr *p){ 3454b5255acSdanielk1977 int nHeight = 0; 3464b5255acSdanielk1977 heightOfExpr(p->pLeft, &nHeight); 3474b5255acSdanielk1977 heightOfExpr(p->pRight, &nHeight); 3486ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 3496ab3a2ecSdanielk1977 heightOfSelect(p->x.pSelect, &nHeight); 3506ab3a2ecSdanielk1977 }else{ 3516ab3a2ecSdanielk1977 heightOfExprList(p->x.pList, &nHeight); 3526ab3a2ecSdanielk1977 } 3534b5255acSdanielk1977 p->nHeight = nHeight + 1; 3544b5255acSdanielk1977 } 3554b5255acSdanielk1977 3564b5255acSdanielk1977 /* 3574b5255acSdanielk1977 ** Set the Expr.nHeight variable using the exprSetHeight() function. If 3584b5255acSdanielk1977 ** the height is greater than the maximum allowed expression depth, 3594b5255acSdanielk1977 ** leave an error in pParse. 3604b5255acSdanielk1977 */ 3614b5255acSdanielk1977 void sqlite3ExprSetHeight(Parse *pParse, Expr *p){ 3624b5255acSdanielk1977 exprSetHeight(p); 3637d10d5a6Sdrh sqlite3ExprCheckHeight(pParse, p->nHeight); 3644b5255acSdanielk1977 } 3654b5255acSdanielk1977 3664b5255acSdanielk1977 /* 3674b5255acSdanielk1977 ** Return the maximum height of any expression tree referenced 3684b5255acSdanielk1977 ** by the select statement passed as an argument. 3694b5255acSdanielk1977 */ 3704b5255acSdanielk1977 int sqlite3SelectExprHeight(Select *p){ 3714b5255acSdanielk1977 int nHeight = 0; 3724b5255acSdanielk1977 heightOfSelect(p, &nHeight); 3734b5255acSdanielk1977 return nHeight; 3744b5255acSdanielk1977 } 3754b5255acSdanielk1977 #else 3764b5255acSdanielk1977 #define exprSetHeight(y) 3774b5255acSdanielk1977 #endif /* SQLITE_MAX_EXPR_DEPTH>0 */ 3784b5255acSdanielk1977 379be5c89acSdrh /* 380b7916a78Sdrh ** This routine is the core allocator for Expr nodes. 381b7916a78Sdrh ** 382a76b5dfcSdrh ** Construct a new expression node and return a pointer to it. Memory 383b7916a78Sdrh ** for this node and for the pToken argument is a single allocation 384b7916a78Sdrh ** obtained from sqlite3DbMalloc(). The calling function 385a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed. 386b7916a78Sdrh ** 387b7916a78Sdrh ** If dequote is true, then the token (if it exists) is dequoted. 388b7916a78Sdrh ** If dequote is false, no dequoting is performance. The deQuote 389b7916a78Sdrh ** parameter is ignored if pToken is NULL or if the token does not 390b7916a78Sdrh ** appear to be quoted. If the quotes were of the form "..." (double-quotes) 391b7916a78Sdrh ** then the EP_DblQuoted flag is set on the expression node. 39233e619fcSdrh ** 39333e619fcSdrh ** Special case: If op==TK_INTEGER and pToken points to a string that 39433e619fcSdrh ** can be translated into a 32-bit integer, then the token is not 39533e619fcSdrh ** stored in u.zToken. Instead, the integer values is written 39633e619fcSdrh ** into u.iValue and the EP_IntValue flag is set. No extra storage 39733e619fcSdrh ** is allocated to hold the integer text and the dequote flag is ignored. 398a76b5dfcSdrh */ 399b7916a78Sdrh Expr *sqlite3ExprAlloc( 400a1644fd8Sdanielk1977 sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 40117435752Sdrh int op, /* Expression opcode */ 402b7916a78Sdrh const Token *pToken, /* Token argument. Might be NULL */ 403b7916a78Sdrh int dequote /* True to dequote */ 40417435752Sdrh ){ 405a76b5dfcSdrh Expr *pNew; 40633e619fcSdrh int nExtra = 0; 407cf697396Sshane int iValue = 0; 408b7916a78Sdrh 409b7916a78Sdrh if( pToken ){ 41033e619fcSdrh if( op!=TK_INTEGER || pToken->z==0 41133e619fcSdrh || sqlite3GetInt32(pToken->z, &iValue)==0 ){ 412b7916a78Sdrh nExtra = pToken->n+1; 41333e619fcSdrh } 414a76b5dfcSdrh } 415b7916a78Sdrh pNew = sqlite3DbMallocZero(db, sizeof(Expr)+nExtra); 416b7916a78Sdrh if( pNew ){ 4171bd10f8aSdrh pNew->op = (u8)op; 418a58fdfb1Sdanielk1977 pNew->iAgg = -1; 419a76b5dfcSdrh if( pToken ){ 42033e619fcSdrh if( nExtra==0 ){ 42133e619fcSdrh pNew->flags |= EP_IntValue; 42233e619fcSdrh pNew->u.iValue = iValue; 42333e619fcSdrh }else{ 424d9da78a2Sdrh int c; 42533e619fcSdrh pNew->u.zToken = (char*)&pNew[1]; 42633e619fcSdrh memcpy(pNew->u.zToken, pToken->z, pToken->n); 42733e619fcSdrh pNew->u.zToken[pToken->n] = 0; 428b7916a78Sdrh if( dequote && nExtra>=3 429d9da78a2Sdrh && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){ 43033e619fcSdrh sqlite3Dequote(pNew->u.zToken); 43124fb627aSdrh if( c=='"' ) pNew->flags |= EP_DblQuoted; 432a34001c9Sdrh } 433a34001c9Sdrh } 43433e619fcSdrh } 435b7916a78Sdrh #if SQLITE_MAX_EXPR_DEPTH>0 436b7916a78Sdrh pNew->nHeight = 1; 437b7916a78Sdrh #endif 438a34001c9Sdrh } 439a76b5dfcSdrh return pNew; 440a76b5dfcSdrh } 441a76b5dfcSdrh 442a76b5dfcSdrh /* 443b7916a78Sdrh ** Allocate a new expression node from a zero-terminated token that has 444b7916a78Sdrh ** already been dequoted. 445b7916a78Sdrh */ 446b7916a78Sdrh Expr *sqlite3Expr( 447b7916a78Sdrh sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 448b7916a78Sdrh int op, /* Expression opcode */ 449b7916a78Sdrh const char *zToken /* Token argument. Might be NULL */ 450b7916a78Sdrh ){ 451b7916a78Sdrh Token x; 452b7916a78Sdrh x.z = zToken; 453b7916a78Sdrh x.n = zToken ? sqlite3Strlen30(zToken) : 0; 454b7916a78Sdrh return sqlite3ExprAlloc(db, op, &x, 0); 455b7916a78Sdrh } 456b7916a78Sdrh 457b7916a78Sdrh /* 458b7916a78Sdrh ** Attach subtrees pLeft and pRight to the Expr node pRoot. 459b7916a78Sdrh ** 460b7916a78Sdrh ** If pRoot==NULL that means that a memory allocation error has occurred. 461b7916a78Sdrh ** In that case, delete the subtrees pLeft and pRight. 462b7916a78Sdrh */ 463b7916a78Sdrh void sqlite3ExprAttachSubtrees( 464b7916a78Sdrh sqlite3 *db, 465b7916a78Sdrh Expr *pRoot, 466b7916a78Sdrh Expr *pLeft, 467b7916a78Sdrh Expr *pRight 468b7916a78Sdrh ){ 469b7916a78Sdrh if( pRoot==0 ){ 470b7916a78Sdrh assert( db->mallocFailed ); 471b7916a78Sdrh sqlite3ExprDelete(db, pLeft); 472b7916a78Sdrh sqlite3ExprDelete(db, pRight); 473b7916a78Sdrh }else{ 474b7916a78Sdrh if( pRight ){ 475b7916a78Sdrh pRoot->pRight = pRight; 476b7916a78Sdrh if( pRight->flags & EP_ExpCollate ){ 477b7916a78Sdrh pRoot->flags |= EP_ExpCollate; 478b7916a78Sdrh pRoot->pColl = pRight->pColl; 479b7916a78Sdrh } 480b7916a78Sdrh } 481b7916a78Sdrh if( pLeft ){ 482b7916a78Sdrh pRoot->pLeft = pLeft; 483b7916a78Sdrh if( pLeft->flags & EP_ExpCollate ){ 484b7916a78Sdrh pRoot->flags |= EP_ExpCollate; 485b7916a78Sdrh pRoot->pColl = pLeft->pColl; 486b7916a78Sdrh } 487b7916a78Sdrh } 488b7916a78Sdrh exprSetHeight(pRoot); 489b7916a78Sdrh } 490b7916a78Sdrh } 491b7916a78Sdrh 492b7916a78Sdrh /* 493bf664469Sdrh ** Allocate a Expr node which joins as many as two subtrees. 494b7916a78Sdrh ** 495bf664469Sdrh ** One or both of the subtrees can be NULL. Return a pointer to the new 496bf664469Sdrh ** Expr node. Or, if an OOM error occurs, set pParse->db->mallocFailed, 497bf664469Sdrh ** free the subtrees and return NULL. 498206f3d96Sdrh */ 49917435752Sdrh Expr *sqlite3PExpr( 50017435752Sdrh Parse *pParse, /* Parsing context */ 50117435752Sdrh int op, /* Expression opcode */ 50217435752Sdrh Expr *pLeft, /* Left operand */ 50317435752Sdrh Expr *pRight, /* Right operand */ 50417435752Sdrh const Token *pToken /* Argument token */ 50517435752Sdrh ){ 506b7916a78Sdrh Expr *p = sqlite3ExprAlloc(pParse->db, op, pToken, 1); 507b7916a78Sdrh sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight); 5084e0cff60Sdrh return p; 5094e0cff60Sdrh } 5104e0cff60Sdrh 5114e0cff60Sdrh /* 51291bb0eedSdrh ** Join two expressions using an AND operator. If either expression is 51391bb0eedSdrh ** NULL, then just return the other expression. 51491bb0eedSdrh */ 5151e536953Sdanielk1977 Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){ 51691bb0eedSdrh if( pLeft==0 ){ 51791bb0eedSdrh return pRight; 51891bb0eedSdrh }else if( pRight==0 ){ 51991bb0eedSdrh return pLeft; 52091bb0eedSdrh }else{ 521b7916a78Sdrh Expr *pNew = sqlite3ExprAlloc(db, TK_AND, 0, 0); 522b7916a78Sdrh sqlite3ExprAttachSubtrees(db, pNew, pLeft, pRight); 523b7916a78Sdrh return pNew; 524a76b5dfcSdrh } 525a76b5dfcSdrh } 526a76b5dfcSdrh 527a76b5dfcSdrh /* 528a76b5dfcSdrh ** Construct a new expression node for a function with multiple 529a76b5dfcSdrh ** arguments. 530a76b5dfcSdrh */ 53117435752Sdrh Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){ 532a76b5dfcSdrh Expr *pNew; 533633e6d57Sdrh sqlite3 *db = pParse->db; 5344b202ae2Sdanielk1977 assert( pToken ); 535b7916a78Sdrh pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1); 536a76b5dfcSdrh if( pNew==0 ){ 537d9da78a2Sdrh sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */ 538a76b5dfcSdrh return 0; 539a76b5dfcSdrh } 5406ab3a2ecSdanielk1977 pNew->x.pList = pList; 5416ab3a2ecSdanielk1977 assert( !ExprHasProperty(pNew, EP_xIsSelect) ); 5424b5255acSdanielk1977 sqlite3ExprSetHeight(pParse, pNew); 543a76b5dfcSdrh return pNew; 544a76b5dfcSdrh } 545a76b5dfcSdrh 546a76b5dfcSdrh /* 547fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard 548fa6bc000Sdrh ** in the original SQL statement. 549fa6bc000Sdrh ** 550fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential 551fa6bc000Sdrh ** variable number. 552fa6bc000Sdrh ** 553fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn". We make 554fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when 555fa6bc000Sdrh ** the SQL statement comes from an external source. 556fa6bc000Sdrh ** 55751f49f17Sdrh ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number 558fa6bc000Sdrh ** as the previous instance of the same wildcard. Or if this is the first 559fa6bc000Sdrh ** instance of the wildcard, the next sequenial variable number is 560fa6bc000Sdrh ** assigned. 561fa6bc000Sdrh */ 562fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){ 56317435752Sdrh sqlite3 *db = pParse->db; 564b7916a78Sdrh const char *z; 56517435752Sdrh 566fa6bc000Sdrh if( pExpr==0 ) return; 56733e619fcSdrh assert( !ExprHasAnyProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) ); 56833e619fcSdrh z = pExpr->u.zToken; 569b7916a78Sdrh assert( z!=0 ); 570b7916a78Sdrh assert( z[0]!=0 ); 571b7916a78Sdrh if( z[1]==0 ){ 572fa6bc000Sdrh /* Wildcard of the form "?". Assign the next variable number */ 573b7916a78Sdrh assert( z[0]=='?' ); 5748677d308Sdrh pExpr->iColumn = (ynVar)(++pParse->nVar); 575b7916a78Sdrh }else if( z[0]=='?' ){ 576fa6bc000Sdrh /* Wildcard of the form "?nnn". Convert "nnn" to an integer and 577fa6bc000Sdrh ** use it as the variable number */ 578f639c40fSshane int i = atoi((char*)&z[1]); 5798677d308Sdrh pExpr->iColumn = (ynVar)i; 580c5499befSdrh testcase( i==0 ); 581c5499befSdrh testcase( i==1 ); 582c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 ); 583c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ); 584bb4957f8Sdrh if( i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 585fa6bc000Sdrh sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", 586bb4957f8Sdrh db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]); 587fa6bc000Sdrh } 588fa6bc000Sdrh if( i>pParse->nVar ){ 589fa6bc000Sdrh pParse->nVar = i; 590fa6bc000Sdrh } 591fa6bc000Sdrh }else{ 59251f49f17Sdrh /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable 593fa6bc000Sdrh ** number as the prior appearance of the same name, or if the name 594fa6bc000Sdrh ** has never appeared before, reuse the same variable number 595fa6bc000Sdrh */ 5961bd10f8aSdrh int i; 5971bd10f8aSdrh u32 n; 598b7916a78Sdrh n = sqlite3Strlen30(z); 599fa6bc000Sdrh for(i=0; i<pParse->nVarExpr; i++){ 60051f49f17Sdrh Expr *pE = pParse->apVarExpr[i]; 60151f49f17Sdrh assert( pE!=0 ); 60233e619fcSdrh if( memcmp(pE->u.zToken, z, n)==0 && pE->u.zToken[n]==0 ){ 603937d0deaSdan pExpr->iColumn = pE->iColumn; 604fa6bc000Sdrh break; 605fa6bc000Sdrh } 606fa6bc000Sdrh } 607fa6bc000Sdrh if( i>=pParse->nVarExpr ){ 6088677d308Sdrh pExpr->iColumn = (ynVar)(++pParse->nVar); 609fa6bc000Sdrh if( pParse->nVarExpr>=pParse->nVarExprAlloc-1 ){ 610fa6bc000Sdrh pParse->nVarExprAlloc += pParse->nVarExprAlloc + 10; 61117435752Sdrh pParse->apVarExpr = 61217435752Sdrh sqlite3DbReallocOrFree( 61317435752Sdrh db, 61417435752Sdrh pParse->apVarExpr, 61517435752Sdrh pParse->nVarExprAlloc*sizeof(pParse->apVarExpr[0]) 61617435752Sdrh ); 617fa6bc000Sdrh } 61817435752Sdrh if( !db->mallocFailed ){ 619fa6bc000Sdrh assert( pParse->apVarExpr!=0 ); 620fa6bc000Sdrh pParse->apVarExpr[pParse->nVarExpr++] = pExpr; 621fa6bc000Sdrh } 622fa6bc000Sdrh } 623fa6bc000Sdrh } 624bb4957f8Sdrh if( !pParse->nErr && pParse->nVar>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 625832b2664Sdanielk1977 sqlite3ErrorMsg(pParse, "too many SQL variables"); 626832b2664Sdanielk1977 } 627fa6bc000Sdrh } 628fa6bc000Sdrh 629fa6bc000Sdrh /* 63010fe840eSdrh ** Clear an expression structure without deleting the structure itself. 63110fe840eSdrh ** Substructure is deleted. 632a2e00042Sdrh */ 63310fe840eSdrh void sqlite3ExprClear(sqlite3 *db, Expr *p){ 63433e619fcSdrh assert( p!=0 ); 635b7916a78Sdrh if( !ExprHasAnyProperty(p, EP_TokenOnly) ){ 636633e6d57Sdrh sqlite3ExprDelete(db, p->pLeft); 637633e6d57Sdrh sqlite3ExprDelete(db, p->pRight); 63833e619fcSdrh if( !ExprHasProperty(p, EP_Reduced) && (p->flags2 & EP2_MallocedToken)!=0 ){ 63933e619fcSdrh sqlite3DbFree(db, p->u.zToken); 6406ab3a2ecSdanielk1977 } 6416ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 6426ab3a2ecSdanielk1977 sqlite3SelectDelete(db, p->x.pSelect); 6436ab3a2ecSdanielk1977 }else{ 6446ab3a2ecSdanielk1977 sqlite3ExprListDelete(db, p->x.pList); 6456ab3a2ecSdanielk1977 } 6466ab3a2ecSdanielk1977 } 64710fe840eSdrh } 64810fe840eSdrh 64910fe840eSdrh /* 65010fe840eSdrh ** Recursively delete an expression tree. 65110fe840eSdrh */ 65210fe840eSdrh void sqlite3ExprDelete(sqlite3 *db, Expr *p){ 65310fe840eSdrh if( p==0 ) return; 65410fe840eSdrh sqlite3ExprClear(db, p); 65533e619fcSdrh if( !ExprHasProperty(p, EP_Static) ){ 656633e6d57Sdrh sqlite3DbFree(db, p); 657a2e00042Sdrh } 65833e619fcSdrh } 659a2e00042Sdrh 660d2687b77Sdrh /* 6616ab3a2ecSdanielk1977 ** Return the number of bytes allocated for the expression structure 6626ab3a2ecSdanielk1977 ** passed as the first argument. This is always one of EXPR_FULLSIZE, 6636ab3a2ecSdanielk1977 ** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE. 6646ab3a2ecSdanielk1977 */ 6656ab3a2ecSdanielk1977 static int exprStructSize(Expr *p){ 6666ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE; 6676ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE; 6686ab3a2ecSdanielk1977 return EXPR_FULLSIZE; 6696ab3a2ecSdanielk1977 } 6706ab3a2ecSdanielk1977 6716ab3a2ecSdanielk1977 /* 67233e619fcSdrh ** The dupedExpr*Size() routines each return the number of bytes required 67333e619fcSdrh ** to store a copy of an expression or expression tree. They differ in 67433e619fcSdrh ** how much of the tree is measured. 67533e619fcSdrh ** 67633e619fcSdrh ** dupedExprStructSize() Size of only the Expr structure 67733e619fcSdrh ** dupedExprNodeSize() Size of Expr + space for token 67833e619fcSdrh ** dupedExprSize() Expr + token + subtree components 67933e619fcSdrh ** 68033e619fcSdrh *************************************************************************** 68133e619fcSdrh ** 68233e619fcSdrh ** The dupedExprStructSize() function returns two values OR-ed together: 68333e619fcSdrh ** (1) the space required for a copy of the Expr structure only and 68433e619fcSdrh ** (2) the EP_xxx flags that indicate what the structure size should be. 68533e619fcSdrh ** The return values is always one of: 68633e619fcSdrh ** 68733e619fcSdrh ** EXPR_FULLSIZE 68833e619fcSdrh ** EXPR_REDUCEDSIZE | EP_Reduced 68933e619fcSdrh ** EXPR_TOKENONLYSIZE | EP_TokenOnly 69033e619fcSdrh ** 69133e619fcSdrh ** The size of the structure can be found by masking the return value 69233e619fcSdrh ** of this routine with 0xfff. The flags can be found by masking the 69333e619fcSdrh ** return value with EP_Reduced|EP_TokenOnly. 69433e619fcSdrh ** 69533e619fcSdrh ** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size 69633e619fcSdrh ** (unreduced) Expr objects as they or originally constructed by the parser. 69733e619fcSdrh ** During expression analysis, extra information is computed and moved into 69833e619fcSdrh ** later parts of teh Expr object and that extra information might get chopped 69933e619fcSdrh ** off if the expression is reduced. Note also that it does not work to 70033e619fcSdrh ** make a EXPRDUP_REDUCE copy of a reduced expression. It is only legal 70133e619fcSdrh ** to reduce a pristine expression tree from the parser. The implementation 70233e619fcSdrh ** of dupedExprStructSize() contain multiple assert() statements that attempt 70333e619fcSdrh ** to enforce this constraint. 7046ab3a2ecSdanielk1977 */ 7056ab3a2ecSdanielk1977 static int dupedExprStructSize(Expr *p, int flags){ 7066ab3a2ecSdanielk1977 int nSize; 70733e619fcSdrh assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */ 7086ab3a2ecSdanielk1977 if( 0==(flags&EXPRDUP_REDUCE) ){ 7096ab3a2ecSdanielk1977 nSize = EXPR_FULLSIZE; 7106ab3a2ecSdanielk1977 }else{ 71133e619fcSdrh assert( !ExprHasAnyProperty(p, EP_TokenOnly|EP_Reduced) ); 71233e619fcSdrh assert( !ExprHasProperty(p, EP_FromJoin) ); 71333e619fcSdrh assert( (p->flags2 & EP2_MallocedToken)==0 ); 71433e619fcSdrh assert( (p->flags2 & EP2_Irreducible)==0 ); 71533e619fcSdrh if( p->pLeft || p->pRight || p->pColl || p->x.pList ){ 71633e619fcSdrh nSize = EXPR_REDUCEDSIZE | EP_Reduced; 71733e619fcSdrh }else{ 71833e619fcSdrh nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly; 71933e619fcSdrh } 7206ab3a2ecSdanielk1977 } 7216ab3a2ecSdanielk1977 return nSize; 7226ab3a2ecSdanielk1977 } 7236ab3a2ecSdanielk1977 7246ab3a2ecSdanielk1977 /* 72533e619fcSdrh ** This function returns the space in bytes required to store the copy 72633e619fcSdrh ** of the Expr structure and a copy of the Expr.u.zToken string (if that 72733e619fcSdrh ** string is defined.) 7286ab3a2ecSdanielk1977 */ 7296ab3a2ecSdanielk1977 static int dupedExprNodeSize(Expr *p, int flags){ 73033e619fcSdrh int nByte = dupedExprStructSize(p, flags) & 0xfff; 73133e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 73233e619fcSdrh nByte += sqlite3Strlen30(p->u.zToken)+1; 7336ab3a2ecSdanielk1977 } 734bc73971dSdanielk1977 return ROUND8(nByte); 7356ab3a2ecSdanielk1977 } 7366ab3a2ecSdanielk1977 7376ab3a2ecSdanielk1977 /* 7386ab3a2ecSdanielk1977 ** Return the number of bytes required to create a duplicate of the 7396ab3a2ecSdanielk1977 ** expression passed as the first argument. The second argument is a 7406ab3a2ecSdanielk1977 ** mask containing EXPRDUP_XXX flags. 7416ab3a2ecSdanielk1977 ** 7426ab3a2ecSdanielk1977 ** The value returned includes space to create a copy of the Expr struct 74333e619fcSdrh ** itself and the buffer referred to by Expr.u.zToken, if any. 7446ab3a2ecSdanielk1977 ** 7456ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the return value includes 7466ab3a2ecSdanielk1977 ** space to duplicate all Expr nodes in the tree formed by Expr.pLeft 7476ab3a2ecSdanielk1977 ** and Expr.pRight variables (but not for any structures pointed to or 7486ab3a2ecSdanielk1977 ** descended from the Expr.x.pList or Expr.x.pSelect variables). 7496ab3a2ecSdanielk1977 */ 7506ab3a2ecSdanielk1977 static int dupedExprSize(Expr *p, int flags){ 7516ab3a2ecSdanielk1977 int nByte = 0; 7526ab3a2ecSdanielk1977 if( p ){ 7536ab3a2ecSdanielk1977 nByte = dupedExprNodeSize(p, flags); 7546ab3a2ecSdanielk1977 if( flags&EXPRDUP_REDUCE ){ 755b7916a78Sdrh nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags); 7566ab3a2ecSdanielk1977 } 7576ab3a2ecSdanielk1977 } 7586ab3a2ecSdanielk1977 return nByte; 7596ab3a2ecSdanielk1977 } 7606ab3a2ecSdanielk1977 7616ab3a2ecSdanielk1977 /* 7626ab3a2ecSdanielk1977 ** This function is similar to sqlite3ExprDup(), except that if pzBuffer 7636ab3a2ecSdanielk1977 ** is not NULL then *pzBuffer is assumed to point to a buffer large enough 76433e619fcSdrh ** to store the copy of expression p, the copies of p->u.zToken 7656ab3a2ecSdanielk1977 ** (if applicable), and the copies of the p->pLeft and p->pRight expressions, 7666ab3a2ecSdanielk1977 ** if any. Before returning, *pzBuffer is set to the first byte passed the 7676ab3a2ecSdanielk1977 ** portion of the buffer copied into by this function. 7686ab3a2ecSdanielk1977 */ 7696ab3a2ecSdanielk1977 static Expr *exprDup(sqlite3 *db, Expr *p, int flags, u8 **pzBuffer){ 7706ab3a2ecSdanielk1977 Expr *pNew = 0; /* Value to return */ 7716ab3a2ecSdanielk1977 if( p ){ 7726ab3a2ecSdanielk1977 const int isReduced = (flags&EXPRDUP_REDUCE); 7736ab3a2ecSdanielk1977 u8 *zAlloc; 77433e619fcSdrh u32 staticFlag = 0; 7756ab3a2ecSdanielk1977 7766ab3a2ecSdanielk1977 assert( pzBuffer==0 || isReduced ); 7776ab3a2ecSdanielk1977 7786ab3a2ecSdanielk1977 /* Figure out where to write the new Expr structure. */ 7796ab3a2ecSdanielk1977 if( pzBuffer ){ 7806ab3a2ecSdanielk1977 zAlloc = *pzBuffer; 78133e619fcSdrh staticFlag = EP_Static; 7826ab3a2ecSdanielk1977 }else{ 7836ab3a2ecSdanielk1977 zAlloc = sqlite3DbMallocRaw(db, dupedExprSize(p, flags)); 7846ab3a2ecSdanielk1977 } 7856ab3a2ecSdanielk1977 pNew = (Expr *)zAlloc; 7866ab3a2ecSdanielk1977 7876ab3a2ecSdanielk1977 if( pNew ){ 7886ab3a2ecSdanielk1977 /* Set nNewSize to the size allocated for the structure pointed to 7896ab3a2ecSdanielk1977 ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or 7906ab3a2ecSdanielk1977 ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed 79133e619fcSdrh ** by the copy of the p->u.zToken string (if any). 7926ab3a2ecSdanielk1977 */ 79333e619fcSdrh const unsigned nStructSize = dupedExprStructSize(p, flags); 79433e619fcSdrh const int nNewSize = nStructSize & 0xfff; 79533e619fcSdrh int nToken; 79633e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 79733e619fcSdrh nToken = sqlite3Strlen30(p->u.zToken) + 1; 79833e619fcSdrh }else{ 79933e619fcSdrh nToken = 0; 80033e619fcSdrh } 8016ab3a2ecSdanielk1977 if( isReduced ){ 8026ab3a2ecSdanielk1977 assert( ExprHasProperty(p, EP_Reduced)==0 ); 8036ab3a2ecSdanielk1977 memcpy(zAlloc, p, nNewSize); 8046ab3a2ecSdanielk1977 }else{ 8056ab3a2ecSdanielk1977 int nSize = exprStructSize(p); 8066ab3a2ecSdanielk1977 memcpy(zAlloc, p, nSize); 8076ab3a2ecSdanielk1977 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize); 8086ab3a2ecSdanielk1977 } 8096ab3a2ecSdanielk1977 81033e619fcSdrh /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */ 81133e619fcSdrh pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static); 81233e619fcSdrh pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly); 81333e619fcSdrh pNew->flags |= staticFlag; 8146ab3a2ecSdanielk1977 81533e619fcSdrh /* Copy the p->u.zToken string, if any. */ 8166ab3a2ecSdanielk1977 if( nToken ){ 81733e619fcSdrh char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize]; 81833e619fcSdrh memcpy(zToken, p->u.zToken, nToken); 8196ab3a2ecSdanielk1977 } 8206ab3a2ecSdanielk1977 8216ab3a2ecSdanielk1977 if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){ 8226ab3a2ecSdanielk1977 /* Fill in the pNew->x.pSelect or pNew->x.pList member. */ 8236ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 8246ab3a2ecSdanielk1977 pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, isReduced); 8256ab3a2ecSdanielk1977 }else{ 8266ab3a2ecSdanielk1977 pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, isReduced); 8276ab3a2ecSdanielk1977 } 8286ab3a2ecSdanielk1977 } 8296ab3a2ecSdanielk1977 8306ab3a2ecSdanielk1977 /* Fill in pNew->pLeft and pNew->pRight. */ 831b7916a78Sdrh if( ExprHasAnyProperty(pNew, EP_Reduced|EP_TokenOnly) ){ 8326ab3a2ecSdanielk1977 zAlloc += dupedExprNodeSize(p, flags); 8336ab3a2ecSdanielk1977 if( ExprHasProperty(pNew, EP_Reduced) ){ 8346ab3a2ecSdanielk1977 pNew->pLeft = exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc); 8356ab3a2ecSdanielk1977 pNew->pRight = exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc); 8366ab3a2ecSdanielk1977 } 8376ab3a2ecSdanielk1977 if( pzBuffer ){ 8386ab3a2ecSdanielk1977 *pzBuffer = zAlloc; 8396ab3a2ecSdanielk1977 } 840b7916a78Sdrh }else{ 841b7916a78Sdrh pNew->flags2 = 0; 842b7916a78Sdrh if( !ExprHasAnyProperty(p, EP_TokenOnly) ){ 8436ab3a2ecSdanielk1977 pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0); 8446ab3a2ecSdanielk1977 pNew->pRight = sqlite3ExprDup(db, p->pRight, 0); 8456ab3a2ecSdanielk1977 } 8466ab3a2ecSdanielk1977 } 847b7916a78Sdrh 848b7916a78Sdrh } 8496ab3a2ecSdanielk1977 } 8506ab3a2ecSdanielk1977 return pNew; 8516ab3a2ecSdanielk1977 } 8526ab3a2ecSdanielk1977 8536ab3a2ecSdanielk1977 /* 854ff78bd2fSdrh ** The following group of routines make deep copies of expressions, 855ff78bd2fSdrh ** expression lists, ID lists, and select statements. The copies can 856ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines) 857ff78bd2fSdrh ** without effecting the originals. 858ff78bd2fSdrh ** 8594adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(), 8604adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded 861ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines. 862ff78bd2fSdrh ** 863ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated. 8646ab3a2ecSdanielk1977 ** 865b7916a78Sdrh ** The flags parameter contains a combination of the EXPRDUP_XXX flags. 8666ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a 8676ab3a2ecSdanielk1977 ** truncated version of the usual Expr structure that will be stored as 8686ab3a2ecSdanielk1977 ** part of the in-memory representation of the database schema. 869ff78bd2fSdrh */ 8706ab3a2ecSdanielk1977 Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){ 8716ab3a2ecSdanielk1977 return exprDup(db, p, flags, 0); 872ff78bd2fSdrh } 8736ab3a2ecSdanielk1977 ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){ 874ff78bd2fSdrh ExprList *pNew; 875145716b3Sdrh struct ExprList_item *pItem, *pOldItem; 876ff78bd2fSdrh int i; 877ff78bd2fSdrh if( p==0 ) return 0; 87817435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 879ff78bd2fSdrh if( pNew==0 ) return 0; 88031dad9daSdanielk1977 pNew->iECursor = 0; 8814305d103Sdrh pNew->nExpr = pNew->nAlloc = p->nExpr; 88217435752Sdrh pNew->a = pItem = sqlite3DbMallocRaw(db, p->nExpr*sizeof(p->a[0]) ); 883e0048400Sdanielk1977 if( pItem==0 ){ 884633e6d57Sdrh sqlite3DbFree(db, pNew); 885e0048400Sdanielk1977 return 0; 886e0048400Sdanielk1977 } 887145716b3Sdrh pOldItem = p->a; 888145716b3Sdrh for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){ 8896ab3a2ecSdanielk1977 Expr *pOldExpr = pOldItem->pExpr; 890b5526ea6Sdrh pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags); 89117435752Sdrh pItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 892b7916a78Sdrh pItem->zSpan = sqlite3DbStrDup(db, pOldItem->zSpan); 893145716b3Sdrh pItem->sortOrder = pOldItem->sortOrder; 8943e7bc9caSdrh pItem->done = 0; 8957d10d5a6Sdrh pItem->iCol = pOldItem->iCol; 8968b213899Sdrh pItem->iAlias = pOldItem->iAlias; 897ff78bd2fSdrh } 898ff78bd2fSdrh return pNew; 899ff78bd2fSdrh } 90093758c8dSdanielk1977 90193758c8dSdanielk1977 /* 90293758c8dSdanielk1977 ** If cursors, triggers, views and subqueries are all omitted from 90393758c8dSdanielk1977 ** the build, then none of the following routines, except for 90493758c8dSdanielk1977 ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes 90593758c8dSdanielk1977 ** called with a NULL argument. 90693758c8dSdanielk1977 */ 9076a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \ 9086a67fe8eSdanielk1977 || !defined(SQLITE_OMIT_SUBQUERY) 9096ab3a2ecSdanielk1977 SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){ 910ad3cab52Sdrh SrcList *pNew; 911ad3cab52Sdrh int i; 912113088ecSdrh int nByte; 913ad3cab52Sdrh if( p==0 ) return 0; 914113088ecSdrh nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); 91517435752Sdrh pNew = sqlite3DbMallocRaw(db, nByte ); 916ad3cab52Sdrh if( pNew==0 ) return 0; 9174305d103Sdrh pNew->nSrc = pNew->nAlloc = p->nSrc; 918ad3cab52Sdrh for(i=0; i<p->nSrc; i++){ 9194efc4754Sdrh struct SrcList_item *pNewItem = &pNew->a[i]; 9204efc4754Sdrh struct SrcList_item *pOldItem = &p->a[i]; 921ed8a3bb1Sdrh Table *pTab; 92217435752Sdrh pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase); 92317435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 92417435752Sdrh pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias); 9254efc4754Sdrh pNewItem->jointype = pOldItem->jointype; 9264efc4754Sdrh pNewItem->iCursor = pOldItem->iCursor; 9271787ccabSdanielk1977 pNewItem->isPopulated = pOldItem->isPopulated; 92885574e31Sdanielk1977 pNewItem->zIndex = sqlite3DbStrDup(db, pOldItem->zIndex); 92985574e31Sdanielk1977 pNewItem->notIndexed = pOldItem->notIndexed; 93085574e31Sdanielk1977 pNewItem->pIndex = pOldItem->pIndex; 931ed8a3bb1Sdrh pTab = pNewItem->pTab = pOldItem->pTab; 932ed8a3bb1Sdrh if( pTab ){ 933ed8a3bb1Sdrh pTab->nRef++; 934a1cb183dSdanielk1977 } 9356ab3a2ecSdanielk1977 pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags); 9366ab3a2ecSdanielk1977 pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags); 93717435752Sdrh pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing); 9386c18b6e0Sdanielk1977 pNewItem->colUsed = pOldItem->colUsed; 939ad3cab52Sdrh } 940ad3cab52Sdrh return pNew; 941ad3cab52Sdrh } 94217435752Sdrh IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){ 943ff78bd2fSdrh IdList *pNew; 944ff78bd2fSdrh int i; 945ff78bd2fSdrh if( p==0 ) return 0; 94617435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 947ff78bd2fSdrh if( pNew==0 ) return 0; 9484305d103Sdrh pNew->nId = pNew->nAlloc = p->nId; 94917435752Sdrh pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) ); 950d5d56523Sdanielk1977 if( pNew->a==0 ){ 951633e6d57Sdrh sqlite3DbFree(db, pNew); 952d5d56523Sdanielk1977 return 0; 953d5d56523Sdanielk1977 } 954ff78bd2fSdrh for(i=0; i<p->nId; i++){ 9554efc4754Sdrh struct IdList_item *pNewItem = &pNew->a[i]; 9564efc4754Sdrh struct IdList_item *pOldItem = &p->a[i]; 95717435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 9584efc4754Sdrh pNewItem->idx = pOldItem->idx; 959ff78bd2fSdrh } 960ff78bd2fSdrh return pNew; 961ff78bd2fSdrh } 9626ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 963ff78bd2fSdrh Select *pNew; 964ff78bd2fSdrh if( p==0 ) return 0; 96517435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*p) ); 966ff78bd2fSdrh if( pNew==0 ) return 0; 967b7916a78Sdrh pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags); 9686ab3a2ecSdanielk1977 pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags); 9696ab3a2ecSdanielk1977 pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags); 9706ab3a2ecSdanielk1977 pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags); 9716ab3a2ecSdanielk1977 pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags); 9726ab3a2ecSdanielk1977 pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags); 973ff78bd2fSdrh pNew->op = p->op; 9746ab3a2ecSdanielk1977 pNew->pPrior = sqlite3SelectDup(db, p->pPrior, flags); 9756ab3a2ecSdanielk1977 pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags); 9766ab3a2ecSdanielk1977 pNew->pOffset = sqlite3ExprDup(db, p->pOffset, flags); 97792b01d53Sdrh pNew->iLimit = 0; 97892b01d53Sdrh pNew->iOffset = 0; 9797d10d5a6Sdrh pNew->selFlags = p->selFlags & ~SF_UsesEphemeral; 9800342b1f5Sdrh pNew->pRightmost = 0; 981b9bb7c18Sdrh pNew->addrOpenEphm[0] = -1; 982b9bb7c18Sdrh pNew->addrOpenEphm[1] = -1; 983b9bb7c18Sdrh pNew->addrOpenEphm[2] = -1; 984ff78bd2fSdrh return pNew; 985ff78bd2fSdrh } 98693758c8dSdanielk1977 #else 9876ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 98893758c8dSdanielk1977 assert( p==0 ); 98993758c8dSdanielk1977 return 0; 99093758c8dSdanielk1977 } 99193758c8dSdanielk1977 #endif 992ff78bd2fSdrh 993ff78bd2fSdrh 994ff78bd2fSdrh /* 995a76b5dfcSdrh ** Add a new element to the end of an expression list. If pList is 996a76b5dfcSdrh ** initially NULL, then create a new expression list. 997b7916a78Sdrh ** 998b7916a78Sdrh ** If a memory allocation error occurs, the entire list is freed and 999b7916a78Sdrh ** NULL is returned. If non-NULL is returned, then it is guaranteed 1000b7916a78Sdrh ** that the new entry was successfully appended. 1001a76b5dfcSdrh */ 100217435752Sdrh ExprList *sqlite3ExprListAppend( 100317435752Sdrh Parse *pParse, /* Parsing context */ 100417435752Sdrh ExprList *pList, /* List to which to append. Might be NULL */ 1005b7916a78Sdrh Expr *pExpr /* Expression to be appended. Might be NULL */ 100617435752Sdrh ){ 100717435752Sdrh sqlite3 *db = pParse->db; 1008a76b5dfcSdrh if( pList==0 ){ 100917435752Sdrh pList = sqlite3DbMallocZero(db, sizeof(ExprList) ); 1010a76b5dfcSdrh if( pList==0 ){ 1011d5d56523Sdanielk1977 goto no_mem; 1012a76b5dfcSdrh } 10134efc4754Sdrh assert( pList->nAlloc==0 ); 1014a76b5dfcSdrh } 10154305d103Sdrh if( pList->nAlloc<=pList->nExpr ){ 1016d5d56523Sdanielk1977 struct ExprList_item *a; 1017d5d56523Sdanielk1977 int n = pList->nAlloc*2 + 4; 101826783a58Sdanielk1977 a = sqlite3DbRealloc(db, pList->a, n*sizeof(pList->a[0])); 1019d5d56523Sdanielk1977 if( a==0 ){ 1020d5d56523Sdanielk1977 goto no_mem; 1021a76b5dfcSdrh } 1022d5d56523Sdanielk1977 pList->a = a; 10236a1e071fSdrh pList->nAlloc = sqlite3DbMallocSize(db, a)/sizeof(a[0]); 1024a76b5dfcSdrh } 10254efc4754Sdrh assert( pList->a!=0 ); 1026b7916a78Sdrh if( 1 ){ 10274efc4754Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr++]; 10284efc4754Sdrh memset(pItem, 0, sizeof(*pItem)); 1029e94ddc9eSdanielk1977 pItem->pExpr = pExpr; 1030a76b5dfcSdrh } 1031a76b5dfcSdrh return pList; 1032d5d56523Sdanielk1977 1033d5d56523Sdanielk1977 no_mem: 1034d5d56523Sdanielk1977 /* Avoid leaking memory if malloc has failed. */ 1035633e6d57Sdrh sqlite3ExprDelete(db, pExpr); 1036633e6d57Sdrh sqlite3ExprListDelete(db, pList); 1037d5d56523Sdanielk1977 return 0; 1038a76b5dfcSdrh } 1039a76b5dfcSdrh 1040a76b5dfcSdrh /* 1041b7916a78Sdrh ** Set the ExprList.a[].zName element of the most recently added item 1042b7916a78Sdrh ** on the expression list. 1043b7916a78Sdrh ** 1044b7916a78Sdrh ** pList might be NULL following an OOM error. But pName should never be 1045b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1046b7916a78Sdrh ** is set. 1047b7916a78Sdrh */ 1048b7916a78Sdrh void sqlite3ExprListSetName( 1049b7916a78Sdrh Parse *pParse, /* Parsing context */ 1050b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1051b7916a78Sdrh Token *pName, /* Name to be added */ 1052b7916a78Sdrh int dequote /* True to cause the name to be dequoted */ 1053b7916a78Sdrh ){ 1054b7916a78Sdrh assert( pList!=0 || pParse->db->mallocFailed!=0 ); 1055b7916a78Sdrh if( pList ){ 1056b7916a78Sdrh struct ExprList_item *pItem; 1057b7916a78Sdrh assert( pList->nExpr>0 ); 1058b7916a78Sdrh pItem = &pList->a[pList->nExpr-1]; 1059b7916a78Sdrh assert( pItem->zName==0 ); 1060b7916a78Sdrh pItem->zName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n); 1061b7916a78Sdrh if( dequote && pItem->zName ) sqlite3Dequote(pItem->zName); 1062b7916a78Sdrh } 1063b7916a78Sdrh } 1064b7916a78Sdrh 1065b7916a78Sdrh /* 1066b7916a78Sdrh ** Set the ExprList.a[].zSpan element of the most recently added item 1067b7916a78Sdrh ** on the expression list. 1068b7916a78Sdrh ** 1069b7916a78Sdrh ** pList might be NULL following an OOM error. But pSpan should never be 1070b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1071b7916a78Sdrh ** is set. 1072b7916a78Sdrh */ 1073b7916a78Sdrh void sqlite3ExprListSetSpan( 1074b7916a78Sdrh Parse *pParse, /* Parsing context */ 1075b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1076b7916a78Sdrh ExprSpan *pSpan /* The span to be added */ 1077b7916a78Sdrh ){ 1078b7916a78Sdrh sqlite3 *db = pParse->db; 1079b7916a78Sdrh assert( pList!=0 || db->mallocFailed!=0 ); 1080b7916a78Sdrh if( pList ){ 1081b7916a78Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr-1]; 1082b7916a78Sdrh assert( pList->nExpr>0 ); 1083b7916a78Sdrh assert( db->mallocFailed || pItem->pExpr==pSpan->pExpr ); 1084b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1085b7916a78Sdrh pItem->zSpan = sqlite3DbStrNDup(db, (char*)pSpan->zStart, 1086cf697396Sshane (int)(pSpan->zEnd - pSpan->zStart)); 1087b7916a78Sdrh } 1088b7916a78Sdrh } 1089b7916a78Sdrh 1090b7916a78Sdrh /* 10917a15a4beSdanielk1977 ** If the expression list pEList contains more than iLimit elements, 10927a15a4beSdanielk1977 ** leave an error message in pParse. 10937a15a4beSdanielk1977 */ 10947a15a4beSdanielk1977 void sqlite3ExprListCheckLength( 10957a15a4beSdanielk1977 Parse *pParse, 10967a15a4beSdanielk1977 ExprList *pEList, 10977a15a4beSdanielk1977 const char *zObject 10987a15a4beSdanielk1977 ){ 1099b1a6c3c1Sdrh int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN]; 1100c5499befSdrh testcase( pEList && pEList->nExpr==mx ); 1101c5499befSdrh testcase( pEList && pEList->nExpr==mx+1 ); 1102b1a6c3c1Sdrh if( pEList && pEList->nExpr>mx ){ 11037a15a4beSdanielk1977 sqlite3ErrorMsg(pParse, "too many columns in %s", zObject); 11047a15a4beSdanielk1977 } 11057a15a4beSdanielk1977 } 11067a15a4beSdanielk1977 11077a15a4beSdanielk1977 /* 1108a76b5dfcSdrh ** Delete an entire expression list. 1109a76b5dfcSdrh */ 1110633e6d57Sdrh void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){ 1111a76b5dfcSdrh int i; 1112be5c89acSdrh struct ExprList_item *pItem; 1113a76b5dfcSdrh if( pList==0 ) return; 11141bdd9b57Sdrh assert( pList->a!=0 || (pList->nExpr==0 && pList->nAlloc==0) ); 11151bdd9b57Sdrh assert( pList->nExpr<=pList->nAlloc ); 1116be5c89acSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 1117633e6d57Sdrh sqlite3ExprDelete(db, pItem->pExpr); 1118633e6d57Sdrh sqlite3DbFree(db, pItem->zName); 1119b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1120a76b5dfcSdrh } 1121633e6d57Sdrh sqlite3DbFree(db, pList->a); 1122633e6d57Sdrh sqlite3DbFree(db, pList); 1123a76b5dfcSdrh } 1124a76b5dfcSdrh 1125a76b5dfcSdrh /* 11267d10d5a6Sdrh ** These routines are Walker callbacks. Walker.u.pi is a pointer 11277d10d5a6Sdrh ** to an integer. These routines are checking an expression to see 11287d10d5a6Sdrh ** if it is a constant. Set *Walker.u.pi to 0 if the expression is 11297d10d5a6Sdrh ** not constant. 113073b211abSdrh ** 11317d10d5a6Sdrh ** These callback routines are used to implement the following: 1132626a879aSdrh ** 11337d10d5a6Sdrh ** sqlite3ExprIsConstant() 11347d10d5a6Sdrh ** sqlite3ExprIsConstantNotJoin() 11357d10d5a6Sdrh ** sqlite3ExprIsConstantOrFunction() 113687abf5c0Sdrh ** 1137626a879aSdrh */ 11387d10d5a6Sdrh static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){ 1139626a879aSdrh 11407d10d5a6Sdrh /* If pWalker->u.i is 3 then any term of the expression that comes from 11410a168377Sdrh ** the ON or USING clauses of a join disqualifies the expression 11420a168377Sdrh ** from being considered constant. */ 11437d10d5a6Sdrh if( pWalker->u.i==3 && ExprHasAnyProperty(pExpr, EP_FromJoin) ){ 11447d10d5a6Sdrh pWalker->u.i = 0; 11457d10d5a6Sdrh return WRC_Abort; 11460a168377Sdrh } 11470a168377Sdrh 1148626a879aSdrh switch( pExpr->op ){ 1149eb55bd2fSdrh /* Consider functions to be constant if all their arguments are constant 11507d10d5a6Sdrh ** and pWalker->u.i==2 */ 1151eb55bd2fSdrh case TK_FUNCTION: 11527d10d5a6Sdrh if( pWalker->u.i==2 ) return 0; 1153eb55bd2fSdrh /* Fall through */ 1154626a879aSdrh case TK_ID: 1155626a879aSdrh case TK_COLUMN: 1156626a879aSdrh case TK_AGG_FUNCTION: 115713449892Sdrh case TK_AGG_COLUMN: 1158c5499befSdrh testcase( pExpr->op==TK_ID ); 1159c5499befSdrh testcase( pExpr->op==TK_COLUMN ); 1160c5499befSdrh testcase( pExpr->op==TK_AGG_FUNCTION ); 1161c5499befSdrh testcase( pExpr->op==TK_AGG_COLUMN ); 11627d10d5a6Sdrh pWalker->u.i = 0; 11637d10d5a6Sdrh return WRC_Abort; 1164626a879aSdrh default: 1165b74b1017Sdrh testcase( pExpr->op==TK_SELECT ); /* selectNodeIsConstant will disallow */ 1166b74b1017Sdrh testcase( pExpr->op==TK_EXISTS ); /* selectNodeIsConstant will disallow */ 11677d10d5a6Sdrh return WRC_Continue; 1168626a879aSdrh } 1169626a879aSdrh } 117062c14b34Sdanielk1977 static int selectNodeIsConstant(Walker *pWalker, Select *NotUsed){ 117162c14b34Sdanielk1977 UNUSED_PARAMETER(NotUsed); 11727d10d5a6Sdrh pWalker->u.i = 0; 11737d10d5a6Sdrh return WRC_Abort; 11747d10d5a6Sdrh } 11757d10d5a6Sdrh static int exprIsConst(Expr *p, int initFlag){ 11767d10d5a6Sdrh Walker w; 11777d10d5a6Sdrh w.u.i = initFlag; 11787d10d5a6Sdrh w.xExprCallback = exprNodeIsConstant; 11797d10d5a6Sdrh w.xSelectCallback = selectNodeIsConstant; 11807d10d5a6Sdrh sqlite3WalkExpr(&w, p); 11817d10d5a6Sdrh return w.u.i; 11827d10d5a6Sdrh } 1183626a879aSdrh 1184626a879aSdrh /* 1185fef5208cSdrh ** Walk an expression tree. Return 1 if the expression is constant 1186eb55bd2fSdrh ** and 0 if it involves variables or function calls. 11872398937bSdrh ** 11882398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 11892398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 11902398937bSdrh ** a constant. 1191fef5208cSdrh */ 11924adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){ 11937d10d5a6Sdrh return exprIsConst(p, 1); 1194fef5208cSdrh } 1195fef5208cSdrh 1196fef5208cSdrh /* 1197eb55bd2fSdrh ** Walk an expression tree. Return 1 if the expression is constant 11980a168377Sdrh ** that does no originate from the ON or USING clauses of a join. 11990a168377Sdrh ** Return 0 if it involves variables or function calls or terms from 12000a168377Sdrh ** an ON or USING clause. 12010a168377Sdrh */ 12020a168377Sdrh int sqlite3ExprIsConstantNotJoin(Expr *p){ 12037d10d5a6Sdrh return exprIsConst(p, 3); 12040a168377Sdrh } 12050a168377Sdrh 12060a168377Sdrh /* 12070a168377Sdrh ** Walk an expression tree. Return 1 if the expression is constant 1208eb55bd2fSdrh ** or a function call with constant arguments. Return and 0 if there 1209eb55bd2fSdrh ** are any variables. 1210eb55bd2fSdrh ** 1211eb55bd2fSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 1212eb55bd2fSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 1213eb55bd2fSdrh ** a constant. 1214eb55bd2fSdrh */ 1215eb55bd2fSdrh int sqlite3ExprIsConstantOrFunction(Expr *p){ 12167d10d5a6Sdrh return exprIsConst(p, 2); 1217eb55bd2fSdrh } 1218eb55bd2fSdrh 1219eb55bd2fSdrh /* 122073b211abSdrh ** If the expression p codes a constant integer that is small enough 1221202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer 1222202b2df7Sdrh ** in *pValue. If the expression is not an integer or if it is too big 1223202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged. 1224e4de1febSdrh */ 12254adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){ 122692b01d53Sdrh int rc = 0; 122792b01d53Sdrh if( p->flags & EP_IntValue ){ 122833e619fcSdrh *pValue = p->u.iValue; 1229e4de1febSdrh return 1; 1230e4de1febSdrh } 123192b01d53Sdrh switch( p->op ){ 123292b01d53Sdrh case TK_INTEGER: { 123333e619fcSdrh rc = sqlite3GetInt32(p->u.zToken, pValue); 123433e619fcSdrh assert( rc==0 ); 1235202b2df7Sdrh break; 1236202b2df7Sdrh } 12374b59ab5eSdrh case TK_UPLUS: { 123892b01d53Sdrh rc = sqlite3ExprIsInteger(p->pLeft, pValue); 1239f6e369a1Sdrh break; 12404b59ab5eSdrh } 1241e4de1febSdrh case TK_UMINUS: { 1242e4de1febSdrh int v; 12434adee20fSdanielk1977 if( sqlite3ExprIsInteger(p->pLeft, &v) ){ 1244e4de1febSdrh *pValue = -v; 124592b01d53Sdrh rc = 1; 1246e4de1febSdrh } 1247e4de1febSdrh break; 1248e4de1febSdrh } 1249e4de1febSdrh default: break; 1250e4de1febSdrh } 125192b01d53Sdrh if( rc ){ 125233e619fcSdrh assert( ExprHasAnyProperty(p, EP_Reduced|EP_TokenOnly) 125333e619fcSdrh || (p->flags2 & EP2_MallocedToken)==0 ); 125492b01d53Sdrh p->op = TK_INTEGER; 125592b01d53Sdrh p->flags |= EP_IntValue; 125633e619fcSdrh p->u.iValue = *pValue; 125792b01d53Sdrh } 125892b01d53Sdrh return rc; 1259e4de1febSdrh } 1260e4de1febSdrh 1261e4de1febSdrh /* 1262c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name. 1263c4a3c779Sdrh */ 12644adee20fSdanielk1977 int sqlite3IsRowid(const char *z){ 12654adee20fSdanielk1977 if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1; 12664adee20fSdanielk1977 if( sqlite3StrICmp(z, "ROWID")==0 ) return 1; 12674adee20fSdanielk1977 if( sqlite3StrICmp(z, "OID")==0 ) return 1; 1268c4a3c779Sdrh return 0; 1269c4a3c779Sdrh } 1270c4a3c779Sdrh 12719a96b668Sdanielk1977 /* 1272b74b1017Sdrh ** Return true if we are able to the IN operator optimization on a 1273b74b1017Sdrh ** query of the form 1274b287f4b6Sdrh ** 1275b74b1017Sdrh ** x IN (SELECT ...) 1276b287f4b6Sdrh ** 1277b74b1017Sdrh ** Where the SELECT... clause is as specified by the parameter to this 1278b74b1017Sdrh ** routine. 1279b74b1017Sdrh ** 1280b74b1017Sdrh ** The Select object passed in has already been preprocessed and no 1281b74b1017Sdrh ** errors have been found. 1282b287f4b6Sdrh */ 1283b287f4b6Sdrh #ifndef SQLITE_OMIT_SUBQUERY 1284b287f4b6Sdrh static int isCandidateForInOpt(Select *p){ 1285b287f4b6Sdrh SrcList *pSrc; 1286b287f4b6Sdrh ExprList *pEList; 1287b287f4b6Sdrh Table *pTab; 1288b287f4b6Sdrh if( p==0 ) return 0; /* right-hand side of IN is SELECT */ 1289b287f4b6Sdrh if( p->pPrior ) return 0; /* Not a compound SELECT */ 12907d10d5a6Sdrh if( p->selFlags & (SF_Distinct|SF_Aggregate) ){ 1291b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); 1292b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); 12937d10d5a6Sdrh return 0; /* No DISTINCT keyword and no aggregate functions */ 12947d10d5a6Sdrh } 1295b74b1017Sdrh assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */ 1296b287f4b6Sdrh if( p->pLimit ) return 0; /* Has no LIMIT clause */ 1297b74b1017Sdrh assert( p->pOffset==0 ); /* No LIMIT means no OFFSET */ 1298b287f4b6Sdrh if( p->pWhere ) return 0; /* Has no WHERE clause */ 1299b287f4b6Sdrh pSrc = p->pSrc; 1300d1fa7bcaSdrh assert( pSrc!=0 ); 1301d1fa7bcaSdrh if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */ 1302b74b1017Sdrh if( pSrc->a[0].pSelect ) return 0; /* FROM is not a subquery or view */ 1303b287f4b6Sdrh pTab = pSrc->a[0].pTab; 1304b74b1017Sdrh if( NEVER(pTab==0) ) return 0; 1305b74b1017Sdrh assert( pTab->pSelect==0 ); /* FROM clause is not a view */ 1306b287f4b6Sdrh if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */ 1307b287f4b6Sdrh pEList = p->pEList; 1308b287f4b6Sdrh if( pEList->nExpr!=1 ) return 0; /* One column in the result set */ 1309b287f4b6Sdrh if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */ 1310b287f4b6Sdrh return 1; 1311b287f4b6Sdrh } 1312b287f4b6Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1313b287f4b6Sdrh 1314b287f4b6Sdrh /* 13159a96b668Sdanielk1977 ** This function is used by the implementation of the IN (...) operator. 13169a96b668Sdanielk1977 ** It's job is to find or create a b-tree structure that may be used 13179a96b668Sdanielk1977 ** either to test for membership of the (...) set or to iterate through 131885b623f2Sdrh ** its members, skipping duplicates. 13199a96b668Sdanielk1977 ** 1320b74b1017Sdrh ** The index of the cursor opened on the b-tree (database table, database index 13219a96b668Sdanielk1977 ** or ephermal table) is stored in pX->iTable before this function returns. 1322b74b1017Sdrh ** The returned value of this function indicates the b-tree type, as follows: 13239a96b668Sdanielk1977 ** 13249a96b668Sdanielk1977 ** IN_INDEX_ROWID - The cursor was opened on a database table. 13252d401ab8Sdrh ** IN_INDEX_INDEX - The cursor was opened on a database index. 13269a96b668Sdanielk1977 ** IN_INDEX_EPH - The cursor was opened on a specially created and 13279a96b668Sdanielk1977 ** populated epheremal table. 13289a96b668Sdanielk1977 ** 1329b74b1017Sdrh ** An existing b-tree may only be used if the SELECT is of the simple 13309a96b668Sdanielk1977 ** form: 13319a96b668Sdanielk1977 ** 13329a96b668Sdanielk1977 ** SELECT <column> FROM <table> 13339a96b668Sdanielk1977 ** 1334b74b1017Sdrh ** If the prNotFound parameter is 0, then the b-tree will be used to iterate 13359a96b668Sdanielk1977 ** through the set members, skipping any duplicates. In this case an 13369a96b668Sdanielk1977 ** epheremal table must be used unless the selected <column> is guaranteed 13379a96b668Sdanielk1977 ** to be unique - either because it is an INTEGER PRIMARY KEY or it 1338b74b1017Sdrh ** has a UNIQUE constraint or UNIQUE index. 13390cdc022eSdanielk1977 ** 1340b74b1017Sdrh ** If the prNotFound parameter is not 0, then the b-tree will be used 13410cdc022eSdanielk1977 ** for fast set membership tests. In this case an epheremal table must 13420cdc022eSdanielk1977 ** be used unless <column> is an INTEGER PRIMARY KEY or an index can 13430cdc022eSdanielk1977 ** be found with <column> as its left-most column. 13440cdc022eSdanielk1977 ** 1345b74b1017Sdrh ** When the b-tree is being used for membership tests, the calling function 13460cdc022eSdanielk1977 ** needs to know whether or not the structure contains an SQL NULL 13470cdc022eSdanielk1977 ** value in order to correctly evaluate expressions like "X IN (Y, Z)". 1348b74b1017Sdrh ** If there is a chance that the b-tree might contain a NULL value at 13490cdc022eSdanielk1977 ** runtime, then a register is allocated and the register number written 1350b74b1017Sdrh ** to *prNotFound. If there is no chance that the b-tree contains a 13510cdc022eSdanielk1977 ** NULL value, then *prNotFound is left unchanged. 13520cdc022eSdanielk1977 ** 13530cdc022eSdanielk1977 ** If a register is allocated and its location stored in *prNotFound, then 1354b74b1017Sdrh ** its initial value is NULL. If the b-tree does not remain constant 1355b74b1017Sdrh ** for the duration of the query (i.e. the SELECT that generates the b-tree 1356b74b1017Sdrh ** is a correlated subquery) then the value of the allocated register is 1357b74b1017Sdrh ** reset to NULL each time the b-tree is repopulated. This allows the 1358b74b1017Sdrh ** caller to use vdbe code equivalent to the following: 13590cdc022eSdanielk1977 ** 13600cdc022eSdanielk1977 ** if( register==NULL ){ 13610cdc022eSdanielk1977 ** has_null = <test if data structure contains null> 13620cdc022eSdanielk1977 ** register = 1 13630cdc022eSdanielk1977 ** } 13640cdc022eSdanielk1977 ** 13650cdc022eSdanielk1977 ** in order to avoid running the <test if data structure contains null> 13660cdc022eSdanielk1977 ** test more often than is necessary. 13679a96b668Sdanielk1977 */ 1368284f4acaSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY 13690cdc022eSdanielk1977 int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){ 1370b74b1017Sdrh Select *p; /* SELECT to the right of IN operator */ 1371b74b1017Sdrh int eType = 0; /* Type of RHS table. IN_INDEX_* */ 1372b74b1017Sdrh int iTab = pParse->nTab++; /* Cursor of the RHS table */ 1373b74b1017Sdrh int mustBeUnique = (prNotFound==0); /* True if RHS must be unique */ 13749a96b668Sdanielk1977 13751450bc6eSdrh assert( pX->op==TK_IN ); 13761450bc6eSdrh 1377b74b1017Sdrh /* Check to see if an existing table or index can be used to 1378b74b1017Sdrh ** satisfy the query. This is preferable to generating a new 1379b74b1017Sdrh ** ephemeral table. 13809a96b668Sdanielk1977 */ 13816ab3a2ecSdanielk1977 p = (ExprHasProperty(pX, EP_xIsSelect) ? pX->x.pSelect : 0); 1382fd773cf9Sdrh if( ALWAYS(pParse->nErr==0) && isCandidateForInOpt(p) ){ 1383e1fb65a0Sdanielk1977 sqlite3 *db = pParse->db; /* Database connection */ 1384e1fb65a0Sdanielk1977 Expr *pExpr = p->pEList->a[0].pExpr; /* Expression <column> */ 1385e1fb65a0Sdanielk1977 int iCol = pExpr->iColumn; /* Index of column <column> */ 1386e1fb65a0Sdanielk1977 Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ 1387e1fb65a0Sdanielk1977 Table *pTab = p->pSrc->a[0].pTab; /* Table <table>. */ 1388e1fb65a0Sdanielk1977 int iDb; /* Database idx for pTab */ 1389e1fb65a0Sdanielk1977 1390e1fb65a0Sdanielk1977 /* Code an OP_VerifyCookie and OP_TableLock for <table>. */ 1391e1fb65a0Sdanielk1977 iDb = sqlite3SchemaToIndex(db, pTab->pSchema); 1392e1fb65a0Sdanielk1977 sqlite3CodeVerifySchema(pParse, iDb); 1393e1fb65a0Sdanielk1977 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); 13949a96b668Sdanielk1977 13959a96b668Sdanielk1977 /* This function is only called from two places. In both cases the vdbe 13969a96b668Sdanielk1977 ** has already been allocated. So assume sqlite3GetVdbe() is always 13979a96b668Sdanielk1977 ** successful here. 13989a96b668Sdanielk1977 */ 13999a96b668Sdanielk1977 assert(v); 14009a96b668Sdanielk1977 if( iCol<0 ){ 14010a07c107Sdrh int iMem = ++pParse->nMem; 14029a96b668Sdanielk1977 int iAddr; 14039a96b668Sdanielk1977 1404892d3179Sdrh iAddr = sqlite3VdbeAddOp1(v, OP_If, iMem); 14054c583128Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, iMem); 14069a96b668Sdanielk1977 14079a96b668Sdanielk1977 sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); 14089a96b668Sdanielk1977 eType = IN_INDEX_ROWID; 14099a96b668Sdanielk1977 14109a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr); 14119a96b668Sdanielk1977 }else{ 1412e1fb65a0Sdanielk1977 Index *pIdx; /* Iterator variable */ 1413e1fb65a0Sdanielk1977 14149a96b668Sdanielk1977 /* The collation sequence used by the comparison. If an index is to 14159a96b668Sdanielk1977 ** be used in place of a temp-table, it must be ordered according 1416e1fb65a0Sdanielk1977 ** to this collation sequence. */ 14179a96b668Sdanielk1977 CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr); 14189a96b668Sdanielk1977 14199a96b668Sdanielk1977 /* Check that the affinity that will be used to perform the 14209a96b668Sdanielk1977 ** comparison is the same as the affinity of the column. If 14219a96b668Sdanielk1977 ** it is not, it is not possible to use any index. 14229a96b668Sdanielk1977 */ 14239a96b668Sdanielk1977 char aff = comparisonAffinity(pX); 14249a96b668Sdanielk1977 int affinity_ok = (pTab->aCol[iCol].affinity==aff||aff==SQLITE_AFF_NONE); 14259a96b668Sdanielk1977 14269a96b668Sdanielk1977 for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){ 14279a96b668Sdanielk1977 if( (pIdx->aiColumn[0]==iCol) 1428b74b1017Sdrh && sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], 0)==pReq 14299a96b668Sdanielk1977 && (!mustBeUnique || (pIdx->nColumn==1 && pIdx->onError!=OE_None)) 14309a96b668Sdanielk1977 ){ 14310a07c107Sdrh int iMem = ++pParse->nMem; 14329a96b668Sdanielk1977 int iAddr; 14339a96b668Sdanielk1977 char *pKey; 14349a96b668Sdanielk1977 14359a96b668Sdanielk1977 pKey = (char *)sqlite3IndexKeyinfo(pParse, pIdx); 1436892d3179Sdrh iAddr = sqlite3VdbeAddOp1(v, OP_If, iMem); 14374c583128Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, iMem); 14389a96b668Sdanielk1977 1439207872a4Sdanielk1977 sqlite3VdbeAddOp4(v, OP_OpenRead, iTab, pIdx->tnum, iDb, 144066a5167bSdrh pKey,P4_KEYINFO_HANDOFF); 1441207872a4Sdanielk1977 VdbeComment((v, "%s", pIdx->zName)); 14429a96b668Sdanielk1977 eType = IN_INDEX_INDEX; 14439a96b668Sdanielk1977 14449a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr); 14450cdc022eSdanielk1977 if( prNotFound && !pTab->aCol[iCol].notNull ){ 14460cdc022eSdanielk1977 *prNotFound = ++pParse->nMem; 14470cdc022eSdanielk1977 } 14489a96b668Sdanielk1977 } 14499a96b668Sdanielk1977 } 14509a96b668Sdanielk1977 } 14519a96b668Sdanielk1977 } 14529a96b668Sdanielk1977 14539a96b668Sdanielk1977 if( eType==0 ){ 14541450bc6eSdrh /* Could not found an existing table or index to use as the RHS b-tree. 1455b74b1017Sdrh ** We will have to generate an ephemeral table to do the job. 1456b74b1017Sdrh */ 14570cdc022eSdanielk1977 int rMayHaveNull = 0; 145841a05b7bSdanielk1977 eType = IN_INDEX_EPH; 14590cdc022eSdanielk1977 if( prNotFound ){ 14600cdc022eSdanielk1977 *prNotFound = rMayHaveNull = ++pParse->nMem; 14616ab3a2ecSdanielk1977 }else if( pX->pLeft->iColumn<0 && !ExprHasAnyProperty(pX, EP_xIsSelect) ){ 146241a05b7bSdanielk1977 eType = IN_INDEX_ROWID; 14630cdc022eSdanielk1977 } 146441a05b7bSdanielk1977 sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID); 14659a96b668Sdanielk1977 }else{ 14669a96b668Sdanielk1977 pX->iTable = iTab; 14679a96b668Sdanielk1977 } 14689a96b668Sdanielk1977 return eType; 14699a96b668Sdanielk1977 } 1470284f4acaSdanielk1977 #endif 1471626a879aSdrh 1472626a879aSdrh /* 14739cbe6352Sdrh ** Generate code for scalar subqueries used as an expression 14749cbe6352Sdrh ** and IN operators. Examples: 1475626a879aSdrh ** 14769cbe6352Sdrh ** (SELECT a FROM b) -- subquery 14779cbe6352Sdrh ** EXISTS (SELECT a FROM b) -- EXISTS subquery 14789cbe6352Sdrh ** x IN (4,5,11) -- IN operator with list on right-hand side 14799cbe6352Sdrh ** x IN (SELECT a FROM b) -- IN operator with subquery on the right 1480fef5208cSdrh ** 14819cbe6352Sdrh ** The pExpr parameter describes the expression that contains the IN 14829cbe6352Sdrh ** operator or subquery. 148341a05b7bSdanielk1977 ** 148441a05b7bSdanielk1977 ** If parameter isRowid is non-zero, then expression pExpr is guaranteed 148541a05b7bSdanielk1977 ** to be of the form "<rowid> IN (?, ?, ?)", where <rowid> is a reference 148641a05b7bSdanielk1977 ** to some integer key column of a table B-Tree. In this case, use an 148741a05b7bSdanielk1977 ** intkey B-Tree to store the set of IN(...) values instead of the usual 148841a05b7bSdanielk1977 ** (slower) variable length keys B-Tree. 1489fd773cf9Sdrh ** 1490fd773cf9Sdrh ** If rMayHaveNull is non-zero, that means that the operation is an IN 1491fd773cf9Sdrh ** (not a SELECT or EXISTS) and that the RHS might contains NULLs. 1492fd773cf9Sdrh ** Furthermore, the IN is in a WHERE clause and that we really want 1493fd773cf9Sdrh ** to iterate over the RHS of the IN operator in order to quickly locate 1494fd773cf9Sdrh ** all corresponding LHS elements. All this routine does is initialize 1495fd773cf9Sdrh ** the register given by rMayHaveNull to NULL. Calling routines will take 1496fd773cf9Sdrh ** care of changing this register value to non-NULL if the RHS is NULL-free. 1497fd773cf9Sdrh ** 1498fd773cf9Sdrh ** If rMayHaveNull is zero, that means that the subquery is being used 1499fd773cf9Sdrh ** for membership testing only. There is no need to initialize any 1500fd773cf9Sdrh ** registers to indicate the presense or absence of NULLs on the RHS. 15011450bc6eSdrh ** 15021450bc6eSdrh ** For a SELECT or EXISTS operator, return the register that holds the 15031450bc6eSdrh ** result. For IN operators or if an error occurs, the return value is 0. 1504cce7d176Sdrh */ 150551522cd3Sdrh #ifndef SQLITE_OMIT_SUBQUERY 15061450bc6eSdrh int sqlite3CodeSubselect( 1507fd773cf9Sdrh Parse *pParse, /* Parsing context */ 1508fd773cf9Sdrh Expr *pExpr, /* The IN, SELECT, or EXISTS operator */ 1509fd773cf9Sdrh int rMayHaveNull, /* Register that records whether NULLs exist in RHS */ 1510fd773cf9Sdrh int isRowid /* If true, LHS of IN operator is a rowid */ 151141a05b7bSdanielk1977 ){ 151257dbd7b3Sdrh int testAddr = 0; /* One-time test address */ 15131450bc6eSdrh int rReg = 0; /* Register storing resulting */ 1514b3bce662Sdanielk1977 Vdbe *v = sqlite3GetVdbe(pParse); 15151450bc6eSdrh if( NEVER(v==0) ) return 0; 1516ceea3321Sdrh sqlite3ExprCachePush(pParse); 1517fc976065Sdanielk1977 151857dbd7b3Sdrh /* This code must be run in its entirety every time it is encountered 151957dbd7b3Sdrh ** if any of the following is true: 152057dbd7b3Sdrh ** 152157dbd7b3Sdrh ** * The right-hand side is a correlated subquery 152257dbd7b3Sdrh ** * The right-hand side is an expression list containing variables 152357dbd7b3Sdrh ** * We are inside a trigger 152457dbd7b3Sdrh ** 152557dbd7b3Sdrh ** If all of the above are false, then we can run this code just once 152657dbd7b3Sdrh ** save the results, and reuse the same result on subsequent invocations. 1527b3bce662Sdanielk1977 */ 1528165921a7Sdan if( !ExprHasAnyProperty(pExpr, EP_VarSelect) && !pParse->pTriggerTab ){ 15290a07c107Sdrh int mem = ++pParse->nMem; 1530892d3179Sdrh sqlite3VdbeAddOp1(v, OP_If, mem); 1531892d3179Sdrh testAddr = sqlite3VdbeAddOp2(v, OP_Integer, 1, mem); 153217435752Sdrh assert( testAddr>0 || pParse->db->mallocFailed ); 1533b3bce662Sdanielk1977 } 1534b3bce662Sdanielk1977 1535cce7d176Sdrh switch( pExpr->op ){ 1536fef5208cSdrh case TK_IN: { 1537e014a838Sdanielk1977 char affinity; 1538d3d39e93Sdrh KeyInfo keyInfo; 1539b9bb7c18Sdrh int addr; /* Address of OP_OpenEphemeral instruction */ 154041a05b7bSdanielk1977 Expr *pLeft = pExpr->pLeft; 1541d3d39e93Sdrh 15420cdc022eSdanielk1977 if( rMayHaveNull ){ 15430cdc022eSdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, rMayHaveNull); 15440cdc022eSdanielk1977 } 15450cdc022eSdanielk1977 154641a05b7bSdanielk1977 affinity = sqlite3ExprAffinity(pLeft); 1547e014a838Sdanielk1977 1548e014a838Sdanielk1977 /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)' 154957dbd7b3Sdrh ** expression it is handled the same way. A virtual table is 1550e014a838Sdanielk1977 ** filled with single-field index keys representing the results 1551e014a838Sdanielk1977 ** from the SELECT or the <exprlist>. 1552fef5208cSdrh ** 1553e014a838Sdanielk1977 ** If the 'x' expression is a column value, or the SELECT... 1554e014a838Sdanielk1977 ** statement returns a column value, then the affinity of that 1555e014a838Sdanielk1977 ** column is used to build the index keys. If both 'x' and the 1556e014a838Sdanielk1977 ** SELECT... statement are columns, then numeric affinity is used 1557e014a838Sdanielk1977 ** if either column has NUMERIC or INTEGER affinity. If neither 1558e014a838Sdanielk1977 ** 'x' nor the SELECT... statement are columns, then numeric affinity 1559e014a838Sdanielk1977 ** is used. 1560fef5208cSdrh */ 1561832508b7Sdrh pExpr->iTable = pParse->nTab++; 156241a05b7bSdanielk1977 addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, !isRowid); 1563d3d39e93Sdrh memset(&keyInfo, 0, sizeof(keyInfo)); 1564d3d39e93Sdrh keyInfo.nField = 1; 1565e014a838Sdanielk1977 15666ab3a2ecSdanielk1977 if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 1567e014a838Sdanielk1977 /* Case 1: expr IN (SELECT ...) 1568e014a838Sdanielk1977 ** 1569e014a838Sdanielk1977 ** Generate code to write the results of the select into the temporary 1570e014a838Sdanielk1977 ** table allocated and opened above. 1571e014a838Sdanielk1977 */ 15721013c932Sdrh SelectDest dest; 1573be5c89acSdrh ExprList *pEList; 15741013c932Sdrh 157541a05b7bSdanielk1977 assert( !isRowid ); 15761013c932Sdrh sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable); 15771bd10f8aSdrh dest.affinity = (u8)affinity; 1578e014a838Sdanielk1977 assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable ); 15796ab3a2ecSdanielk1977 if( sqlite3Select(pParse, pExpr->x.pSelect, &dest) ){ 15801450bc6eSdrh return 0; 158194ccde58Sdrh } 15826ab3a2ecSdanielk1977 pEList = pExpr->x.pSelect->pEList; 1583fd773cf9Sdrh if( ALWAYS(pEList!=0 && pEList->nExpr>0) ){ 1584bcbb04e5Sdanielk1977 keyInfo.aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft, 1585be5c89acSdrh pEList->a[0].pExpr); 15860202b29eSdanielk1977 } 1587fd773cf9Sdrh }else if( pExpr->x.pList!=0 ){ 1588fef5208cSdrh /* Case 2: expr IN (exprlist) 1589fef5208cSdrh ** 1590e014a838Sdanielk1977 ** For each expression, build an index key from the evaluation and 1591e014a838Sdanielk1977 ** store it in the temporary table. If <expr> is a column, then use 1592e014a838Sdanielk1977 ** that columns affinity when building index keys. If <expr> is not 1593e014a838Sdanielk1977 ** a column, use numeric affinity. 1594fef5208cSdrh */ 1595e014a838Sdanielk1977 int i; 15966ab3a2ecSdanielk1977 ExprList *pList = pExpr->x.pList; 159757dbd7b3Sdrh struct ExprList_item *pItem; 1598ecc31805Sdrh int r1, r2, r3; 159957dbd7b3Sdrh 1600e014a838Sdanielk1977 if( !affinity ){ 16018159a35fSdrh affinity = SQLITE_AFF_NONE; 1602e014a838Sdanielk1977 } 16037d10d5a6Sdrh keyInfo.aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft); 1604e014a838Sdanielk1977 1605e014a838Sdanielk1977 /* Loop through each expression in <exprlist>. */ 16062d401ab8Sdrh r1 = sqlite3GetTempReg(pParse); 16072d401ab8Sdrh r2 = sqlite3GetTempReg(pParse); 16084e7f36a2Sdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, r2); 160957dbd7b3Sdrh for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){ 161057dbd7b3Sdrh Expr *pE2 = pItem->pExpr; 1611e05c929bSdrh int iValToIns; 1612e014a838Sdanielk1977 161357dbd7b3Sdrh /* If the expression is not constant then we will need to 161457dbd7b3Sdrh ** disable the test that was generated above that makes sure 161557dbd7b3Sdrh ** this code only executes once. Because for a non-constant 161657dbd7b3Sdrh ** expression we need to rerun this code each time. 161757dbd7b3Sdrh */ 1618892d3179Sdrh if( testAddr && !sqlite3ExprIsConstant(pE2) ){ 1619892d3179Sdrh sqlite3VdbeChangeToNoop(v, testAddr-1, 2); 162057dbd7b3Sdrh testAddr = 0; 16214794b980Sdrh } 1622e014a838Sdanielk1977 1623e014a838Sdanielk1977 /* Evaluate the expression and insert it into the temp table */ 1624e05c929bSdrh if( isRowid && sqlite3ExprIsInteger(pE2, &iValToIns) ){ 1625e05c929bSdrh sqlite3VdbeAddOp3(v, OP_InsertInt, pExpr->iTable, r2, iValToIns); 1626e05c929bSdrh }else{ 1627ecc31805Sdrh r3 = sqlite3ExprCodeTarget(pParse, pE2, r1); 162841a05b7bSdanielk1977 if( isRowid ){ 1629e05c929bSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r3, 1630e05c929bSdrh sqlite3VdbeCurrentAddr(v)+2); 163141a05b7bSdanielk1977 sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3); 163241a05b7bSdanielk1977 }else{ 1633ecc31805Sdrh sqlite3VdbeAddOp4(v, OP_MakeRecord, r3, 1, r2, &affinity, 1); 16343c31fc23Sdrh sqlite3ExprCacheAffinityChange(pParse, r3, 1); 16352d401ab8Sdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, pExpr->iTable, r2); 1636fef5208cSdrh } 163741a05b7bSdanielk1977 } 1638e05c929bSdrh } 16392d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r1); 16402d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r2); 1641fef5208cSdrh } 164241a05b7bSdanielk1977 if( !isRowid ){ 164366a5167bSdrh sqlite3VdbeChangeP4(v, addr, (void *)&keyInfo, P4_KEYINFO); 164441a05b7bSdanielk1977 } 1645b3bce662Sdanielk1977 break; 1646fef5208cSdrh } 1647fef5208cSdrh 164851522cd3Sdrh case TK_EXISTS: 1649fd773cf9Sdrh case TK_SELECT: 1650fd773cf9Sdrh default: { 1651fd773cf9Sdrh /* If this has to be a scalar SELECT. Generate code to put the 1652fef5208cSdrh ** value of this select in a memory cell and record the number 1653fd773cf9Sdrh ** of the memory cell in iColumn. If this is an EXISTS, write 1654fd773cf9Sdrh ** an integer 0 (not exists) or 1 (exists) into a memory cell 1655fd773cf9Sdrh ** and record that memory cell in iColumn. 1656fef5208cSdrh */ 1657fd773cf9Sdrh static const Token one = { "1", 1 }; /* Token for literal value 1 */ 1658fd773cf9Sdrh Select *pSel; /* SELECT statement to encode */ 1659fd773cf9Sdrh SelectDest dest; /* How to deal with SELECt result */ 16601398ad36Sdrh 1661cf697396Sshane testcase( pExpr->op==TK_EXISTS ); 1662cf697396Sshane testcase( pExpr->op==TK_SELECT ); 1663cf697396Sshane assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT ); 1664cf697396Sshane 16656ab3a2ecSdanielk1977 assert( ExprHasProperty(pExpr, EP_xIsSelect) ); 16666ab3a2ecSdanielk1977 pSel = pExpr->x.pSelect; 16671013c932Sdrh sqlite3SelectDestInit(&dest, 0, ++pParse->nMem); 166851522cd3Sdrh if( pExpr->op==TK_SELECT ){ 16696c8c8ce0Sdanielk1977 dest.eDest = SRT_Mem; 16704c583128Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iParm); 1671d4e70ebdSdrh VdbeComment((v, "Init subquery result")); 167251522cd3Sdrh }else{ 16736c8c8ce0Sdanielk1977 dest.eDest = SRT_Exists; 16744c583128Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iParm); 1675d4e70ebdSdrh VdbeComment((v, "Init EXISTS result")); 167651522cd3Sdrh } 1677633e6d57Sdrh sqlite3ExprDelete(pParse->db, pSel->pLimit); 1678a1644fd8Sdanielk1977 pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, &one); 16797d10d5a6Sdrh if( sqlite3Select(pParse, pSel, &dest) ){ 16801450bc6eSdrh return 0; 168194ccde58Sdrh } 16821450bc6eSdrh rReg = dest.iParm; 168333e619fcSdrh ExprSetIrreducible(pExpr); 1684b3bce662Sdanielk1977 break; 168519a775c2Sdrh } 1686cce7d176Sdrh } 1687b3bce662Sdanielk1977 168857dbd7b3Sdrh if( testAddr ){ 1689892d3179Sdrh sqlite3VdbeJumpHere(v, testAddr-1); 1690b3bce662Sdanielk1977 } 1691ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 1692fc976065Sdanielk1977 16931450bc6eSdrh return rReg; 1694cce7d176Sdrh } 169551522cd3Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1696cce7d176Sdrh 1697cce7d176Sdrh /* 1698598f1340Sdrh ** Duplicate an 8-byte value 1699598f1340Sdrh */ 1700598f1340Sdrh static char *dup8bytes(Vdbe *v, const char *in){ 1701598f1340Sdrh char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8); 1702598f1340Sdrh if( out ){ 1703598f1340Sdrh memcpy(out, in, 8); 1704598f1340Sdrh } 1705598f1340Sdrh return out; 1706598f1340Sdrh } 1707598f1340Sdrh 1708598f1340Sdrh /* 1709598f1340Sdrh ** Generate an instruction that will put the floating point 17109cbf3425Sdrh ** value described by z[0..n-1] into register iMem. 17110cf19ed8Sdrh ** 17120cf19ed8Sdrh ** The z[] string will probably not be zero-terminated. But the 17130cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look 17140cf19ed8Sdrh ** like the continuation of the number. 1715598f1340Sdrh */ 1716b7916a78Sdrh static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){ 1717fd773cf9Sdrh if( ALWAYS(z!=0) ){ 1718598f1340Sdrh double value; 1719598f1340Sdrh char *zV; 1720598f1340Sdrh sqlite3AtoF(z, &value); 1721d0015161Sdrh assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */ 1722598f1340Sdrh if( negateFlag ) value = -value; 1723598f1340Sdrh zV = dup8bytes(v, (char*)&value); 17249de221dfSdrh sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL); 1725598f1340Sdrh } 1726598f1340Sdrh } 1727598f1340Sdrh 1728598f1340Sdrh 1729598f1340Sdrh /* 1730fec19aadSdrh ** Generate an instruction that will put the integer describe by 17319cbf3425Sdrh ** text z[0..n-1] into register iMem. 17320cf19ed8Sdrh ** 17330cf19ed8Sdrh ** The z[] string will probably not be zero-terminated. But the 17340cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look 17350cf19ed8Sdrh ** like the continuation of the number. 1736fec19aadSdrh */ 173792b01d53Sdrh static void codeInteger(Vdbe *v, Expr *pExpr, int negFlag, int iMem){ 173892b01d53Sdrh if( pExpr->flags & EP_IntValue ){ 173933e619fcSdrh int i = pExpr->u.iValue; 174092b01d53Sdrh if( negFlag ) i = -i; 174192b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Integer, i, iMem); 1742fd773cf9Sdrh }else{ 1743fd773cf9Sdrh const char *z = pExpr->u.zToken; 1744fd773cf9Sdrh assert( z!=0 ); 1745fd773cf9Sdrh if( sqlite3FitsIn64Bits(z, negFlag) ){ 1746598f1340Sdrh i64 value; 1747598f1340Sdrh char *zV; 1748598f1340Sdrh sqlite3Atoi64(z, &value); 17499de221dfSdrh if( negFlag ) value = -value; 1750598f1340Sdrh zV = dup8bytes(v, (char*)&value); 17519de221dfSdrh sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64); 1752fec19aadSdrh }else{ 1753b7916a78Sdrh codeReal(v, z, negFlag, iMem); 1754fec19aadSdrh } 1755fec19aadSdrh } 1756c9cf901dSdanielk1977 } 1757fec19aadSdrh 1758ceea3321Sdrh /* 1759ceea3321Sdrh ** Clear a cache entry. 1760ceea3321Sdrh */ 1761ceea3321Sdrh static void cacheEntryClear(Parse *pParse, struct yColCache *p){ 1762ceea3321Sdrh if( p->tempReg ){ 1763ceea3321Sdrh if( pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 1764ceea3321Sdrh pParse->aTempReg[pParse->nTempReg++] = p->iReg; 1765ceea3321Sdrh } 1766ceea3321Sdrh p->tempReg = 0; 1767ceea3321Sdrh } 1768ceea3321Sdrh } 1769ceea3321Sdrh 1770ceea3321Sdrh 1771ceea3321Sdrh /* 1772ceea3321Sdrh ** Record in the column cache that a particular column from a 1773ceea3321Sdrh ** particular table is stored in a particular register. 1774ceea3321Sdrh */ 1775ceea3321Sdrh void sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg){ 1776ceea3321Sdrh int i; 1777ceea3321Sdrh int minLru; 1778ceea3321Sdrh int idxLru; 1779ceea3321Sdrh struct yColCache *p; 1780ceea3321Sdrh 178120411ea7Sdrh assert( iReg>0 ); /* Register numbers are always positive */ 178220411ea7Sdrh assert( iCol>=-1 && iCol<32768 ); /* Finite column numbers */ 178320411ea7Sdrh 1784ceea3321Sdrh /* First replace any existing entry */ 1785ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 1786ceea3321Sdrh if( p->iReg && p->iTable==iTab && p->iColumn==iCol ){ 1787ceea3321Sdrh cacheEntryClear(pParse, p); 1788ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 1789ceea3321Sdrh p->iReg = iReg; 1790ceea3321Sdrh p->affChange = 0; 1791ceea3321Sdrh p->lru = pParse->iCacheCnt++; 1792ceea3321Sdrh return; 1793ceea3321Sdrh } 1794ceea3321Sdrh } 1795ceea3321Sdrh 1796ceea3321Sdrh /* Find an empty slot and replace it */ 1797ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 1798ceea3321Sdrh if( p->iReg==0 ){ 1799ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 1800ceea3321Sdrh p->iTable = iTab; 1801ceea3321Sdrh p->iColumn = iCol; 1802ceea3321Sdrh p->iReg = iReg; 1803ceea3321Sdrh p->affChange = 0; 1804ceea3321Sdrh p->tempReg = 0; 1805ceea3321Sdrh p->lru = pParse->iCacheCnt++; 1806ceea3321Sdrh return; 1807ceea3321Sdrh } 1808ceea3321Sdrh } 1809ceea3321Sdrh 1810ceea3321Sdrh /* Replace the last recently used */ 1811ceea3321Sdrh minLru = 0x7fffffff; 1812ceea3321Sdrh idxLru = -1; 1813ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 1814ceea3321Sdrh if( p->lru<minLru ){ 1815ceea3321Sdrh idxLru = i; 1816ceea3321Sdrh minLru = p->lru; 1817ceea3321Sdrh } 1818ceea3321Sdrh } 181920411ea7Sdrh if( ALWAYS(idxLru>=0) ){ 1820ceea3321Sdrh p = &pParse->aColCache[idxLru]; 1821ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 1822ceea3321Sdrh p->iTable = iTab; 1823ceea3321Sdrh p->iColumn = iCol; 1824ceea3321Sdrh p->iReg = iReg; 1825ceea3321Sdrh p->affChange = 0; 1826ceea3321Sdrh p->tempReg = 0; 1827ceea3321Sdrh p->lru = pParse->iCacheCnt++; 1828ceea3321Sdrh return; 1829ceea3321Sdrh } 1830ceea3321Sdrh } 1831ceea3321Sdrh 1832ceea3321Sdrh /* 1833ceea3321Sdrh ** Indicate that a register is being overwritten. Purge the register 1834ceea3321Sdrh ** from the column cache. 1835ceea3321Sdrh */ 1836ceea3321Sdrh void sqlite3ExprCacheRemove(Parse *pParse, int iReg){ 1837ceea3321Sdrh int i; 1838ceea3321Sdrh struct yColCache *p; 1839ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 1840ceea3321Sdrh if( p->iReg==iReg ){ 1841ceea3321Sdrh cacheEntryClear(pParse, p); 1842ceea3321Sdrh p->iReg = 0; 1843ceea3321Sdrh } 1844ceea3321Sdrh } 1845ceea3321Sdrh } 1846ceea3321Sdrh 1847ceea3321Sdrh /* 1848ceea3321Sdrh ** Remember the current column cache context. Any new entries added 1849ceea3321Sdrh ** added to the column cache after this call are removed when the 1850ceea3321Sdrh ** corresponding pop occurs. 1851ceea3321Sdrh */ 1852ceea3321Sdrh void sqlite3ExprCachePush(Parse *pParse){ 1853ceea3321Sdrh pParse->iCacheLevel++; 1854ceea3321Sdrh } 1855ceea3321Sdrh 1856ceea3321Sdrh /* 1857ceea3321Sdrh ** Remove from the column cache any entries that were added since the 1858ceea3321Sdrh ** the previous N Push operations. In other words, restore the cache 1859ceea3321Sdrh ** to the state it was in N Pushes ago. 1860ceea3321Sdrh */ 1861ceea3321Sdrh void sqlite3ExprCachePop(Parse *pParse, int N){ 1862ceea3321Sdrh int i; 1863ceea3321Sdrh struct yColCache *p; 1864ceea3321Sdrh assert( N>0 ); 1865ceea3321Sdrh assert( pParse->iCacheLevel>=N ); 1866ceea3321Sdrh pParse->iCacheLevel -= N; 1867ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 1868ceea3321Sdrh if( p->iReg && p->iLevel>pParse->iCacheLevel ){ 1869ceea3321Sdrh cacheEntryClear(pParse, p); 1870ceea3321Sdrh p->iReg = 0; 1871ceea3321Sdrh } 1872ceea3321Sdrh } 1873ceea3321Sdrh } 1874945498f3Sdrh 1875945498f3Sdrh /* 18765cd79239Sdrh ** When a cached column is reused, make sure that its register is 18775cd79239Sdrh ** no longer available as a temp register. ticket #3879: that same 18785cd79239Sdrh ** register might be in the cache in multiple places, so be sure to 18795cd79239Sdrh ** get them all. 18805cd79239Sdrh */ 18815cd79239Sdrh static void sqlite3ExprCachePinRegister(Parse *pParse, int iReg){ 18825cd79239Sdrh int i; 18835cd79239Sdrh struct yColCache *p; 18845cd79239Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 18855cd79239Sdrh if( p->iReg==iReg ){ 18865cd79239Sdrh p->tempReg = 0; 18875cd79239Sdrh } 18885cd79239Sdrh } 18895cd79239Sdrh } 18905cd79239Sdrh 18915cd79239Sdrh /* 1892945498f3Sdrh ** Generate code that will extract the iColumn-th column from 1893e55cbd72Sdrh ** table pTab and store the column value in a register. An effort 1894e55cbd72Sdrh ** is made to store the column value in register iReg, but this is 1895e55cbd72Sdrh ** not guaranteed. The location of the column value is returned. 1896e55cbd72Sdrh ** 1897e55cbd72Sdrh ** There must be an open cursor to pTab in iTable when this routine 1898e55cbd72Sdrh ** is called. If iColumn<0 then code is generated that extracts the rowid. 1899da250ea5Sdrh ** 1900da250ea5Sdrh ** This routine might attempt to reuse the value of the column that 1901da250ea5Sdrh ** has already been loaded into a register. The value will always 1902da250ea5Sdrh ** be used if it has not undergone any affinity changes. But if 1903da250ea5Sdrh ** an affinity change has occurred, then the cached value will only be 1904da250ea5Sdrh ** used if allowAffChng is true. 1905945498f3Sdrh */ 1906e55cbd72Sdrh int sqlite3ExprCodeGetColumn( 1907e55cbd72Sdrh Parse *pParse, /* Parsing and code generating context */ 19082133d822Sdrh Table *pTab, /* Description of the table we are reading from */ 19092133d822Sdrh int iColumn, /* Index of the table column */ 19102133d822Sdrh int iTable, /* The cursor pointing to the table */ 1911da250ea5Sdrh int iReg, /* Store results here */ 1912da250ea5Sdrh int allowAffChng /* True if prior affinity changes are OK */ 19132133d822Sdrh ){ 1914e55cbd72Sdrh Vdbe *v = pParse->pVdbe; 1915e55cbd72Sdrh int i; 1916da250ea5Sdrh struct yColCache *p; 1917e55cbd72Sdrh 1918ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 1919ceea3321Sdrh if( p->iReg>0 && p->iTable==iTable && p->iColumn==iColumn 1920da250ea5Sdrh && (!p->affChange || allowAffChng) ){ 1921ceea3321Sdrh p->lru = pParse->iCacheCnt++; 19225cd79239Sdrh sqlite3ExprCachePinRegister(pParse, p->iReg); 1923da250ea5Sdrh return p->iReg; 1924e55cbd72Sdrh } 1925e55cbd72Sdrh } 1926e55cbd72Sdrh assert( v!=0 ); 1927945498f3Sdrh if( iColumn<0 ){ 1928044925beSdrh sqlite3VdbeAddOp2(v, OP_Rowid, iTable, iReg); 192920411ea7Sdrh }else if( ALWAYS(pTab!=0) ){ 1930945498f3Sdrh int op = IsVirtual(pTab) ? OP_VColumn : OP_Column; 19312133d822Sdrh sqlite3VdbeAddOp3(v, op, iTable, iColumn, iReg); 1932c7538b5fSdanielk1977 sqlite3ColumnDefault(v, pTab, iColumn, iReg); 1933945498f3Sdrh } 1934ceea3321Sdrh sqlite3ExprCacheStore(pParse, iTable, iColumn, iReg); 1935e55cbd72Sdrh return iReg; 1936e55cbd72Sdrh } 1937e55cbd72Sdrh 1938e55cbd72Sdrh /* 1939ceea3321Sdrh ** Clear all column cache entries. 1940e55cbd72Sdrh */ 1941ceea3321Sdrh void sqlite3ExprCacheClear(Parse *pParse){ 1942e55cbd72Sdrh int i; 1943ceea3321Sdrh struct yColCache *p; 1944ceea3321Sdrh 1945ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 1946ceea3321Sdrh if( p->iReg ){ 1947ceea3321Sdrh cacheEntryClear(pParse, p); 1948ceea3321Sdrh p->iReg = 0; 1949e55cbd72Sdrh } 1950da250ea5Sdrh } 1951da250ea5Sdrh } 1952e55cbd72Sdrh 1953e55cbd72Sdrh /* 1954da250ea5Sdrh ** Record the fact that an affinity change has occurred on iCount 1955da250ea5Sdrh ** registers starting with iStart. 1956e55cbd72Sdrh */ 1957da250ea5Sdrh void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){ 1958da250ea5Sdrh int iEnd = iStart + iCount - 1; 1959e55cbd72Sdrh int i; 1960ceea3321Sdrh struct yColCache *p; 1961ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 1962ceea3321Sdrh int r = p->iReg; 1963da250ea5Sdrh if( r>=iStart && r<=iEnd ){ 1964ceea3321Sdrh p->affChange = 1; 1965e55cbd72Sdrh } 1966e55cbd72Sdrh } 1967e55cbd72Sdrh } 1968e55cbd72Sdrh 1969e55cbd72Sdrh /* 1970b21e7c70Sdrh ** Generate code to move content from registers iFrom...iFrom+nReg-1 1971b21e7c70Sdrh ** over to iTo..iTo+nReg-1. Keep the column cache up-to-date. 1972e55cbd72Sdrh */ 1973b21e7c70Sdrh void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){ 1974e55cbd72Sdrh int i; 1975ceea3321Sdrh struct yColCache *p; 197620411ea7Sdrh if( NEVER(iFrom==iTo) ) return; 1977b21e7c70Sdrh sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg); 1978ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 1979ceea3321Sdrh int x = p->iReg; 1980b21e7c70Sdrh if( x>=iFrom && x<iFrom+nReg ){ 1981ceea3321Sdrh p->iReg += iTo-iFrom; 1982e55cbd72Sdrh } 1983e55cbd72Sdrh } 1984945498f3Sdrh } 1985945498f3Sdrh 1986fec19aadSdrh /* 198792b01d53Sdrh ** Generate code to copy content from registers iFrom...iFrom+nReg-1 198892b01d53Sdrh ** over to iTo..iTo+nReg-1. 198992b01d53Sdrh */ 199092b01d53Sdrh void sqlite3ExprCodeCopy(Parse *pParse, int iFrom, int iTo, int nReg){ 199192b01d53Sdrh int i; 199220411ea7Sdrh if( NEVER(iFrom==iTo) ) return; 199392b01d53Sdrh for(i=0; i<nReg; i++){ 199492b01d53Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, iFrom+i, iTo+i); 199592b01d53Sdrh } 199692b01d53Sdrh } 199792b01d53Sdrh 199892b01d53Sdrh /* 1999652fbf55Sdrh ** Return true if any register in the range iFrom..iTo (inclusive) 2000652fbf55Sdrh ** is used as part of the column cache. 2001652fbf55Sdrh */ 2002652fbf55Sdrh static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){ 2003652fbf55Sdrh int i; 2004ceea3321Sdrh struct yColCache *p; 2005ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2006ceea3321Sdrh int r = p->iReg; 2007652fbf55Sdrh if( r>=iFrom && r<=iTo ) return 1; 2008652fbf55Sdrh } 2009652fbf55Sdrh return 0; 2010652fbf55Sdrh } 2011652fbf55Sdrh 2012652fbf55Sdrh /* 2013191b54cbSdrh ** If the last instruction coded is an ephemeral copy of any of 2014191b54cbSdrh ** the registers in the nReg registers beginning with iReg, then 2015191b54cbSdrh ** convert the last instruction from OP_SCopy to OP_Copy. 2016191b54cbSdrh */ 2017191b54cbSdrh void sqlite3ExprHardCopy(Parse *pParse, int iReg, int nReg){ 2018191b54cbSdrh VdbeOp *pOp; 2019191b54cbSdrh Vdbe *v; 2020191b54cbSdrh 202120411ea7Sdrh assert( pParse->db->mallocFailed==0 ); 2022191b54cbSdrh v = pParse->pVdbe; 202320411ea7Sdrh assert( v!=0 ); 202420411ea7Sdrh pOp = sqlite3VdbeGetOp(v, -1); 202520411ea7Sdrh assert( pOp!=0 ); 202620411ea7Sdrh if( pOp->opcode==OP_SCopy && pOp->p1>=iReg && pOp->p1<iReg+nReg ){ 2027191b54cbSdrh pOp->opcode = OP_Copy; 2028191b54cbSdrh } 2029191b54cbSdrh } 2030191b54cbSdrh 2031191b54cbSdrh /* 20328b213899Sdrh ** Generate code to store the value of the iAlias-th alias in register 20338b213899Sdrh ** target. The first time this is called, pExpr is evaluated to compute 20348b213899Sdrh ** the value of the alias. The value is stored in an auxiliary register 20358b213899Sdrh ** and the number of that register is returned. On subsequent calls, 20368b213899Sdrh ** the register number is returned without generating any code. 20378b213899Sdrh ** 20388b213899Sdrh ** Note that in order for this to work, code must be generated in the 20398b213899Sdrh ** same order that it is executed. 20408b213899Sdrh ** 20418b213899Sdrh ** Aliases are numbered starting with 1. So iAlias is in the range 20428b213899Sdrh ** of 1 to pParse->nAlias inclusive. 20438b213899Sdrh ** 20448b213899Sdrh ** pParse->aAlias[iAlias-1] records the register number where the value 20458b213899Sdrh ** of the iAlias-th alias is stored. If zero, that means that the 20468b213899Sdrh ** alias has not yet been computed. 20478b213899Sdrh */ 204831daa63fSdrh static int codeAlias(Parse *pParse, int iAlias, Expr *pExpr, int target){ 2049ceea3321Sdrh #if 0 20508b213899Sdrh sqlite3 *db = pParse->db; 20518b213899Sdrh int iReg; 2052555f8de7Sdrh if( pParse->nAliasAlloc<pParse->nAlias ){ 2053555f8de7Sdrh pParse->aAlias = sqlite3DbReallocOrFree(db, pParse->aAlias, 20548b213899Sdrh sizeof(pParse->aAlias[0])*pParse->nAlias ); 2055555f8de7Sdrh testcase( db->mallocFailed && pParse->nAliasAlloc>0 ); 20568b213899Sdrh if( db->mallocFailed ) return 0; 2057555f8de7Sdrh memset(&pParse->aAlias[pParse->nAliasAlloc], 0, 2058555f8de7Sdrh (pParse->nAlias-pParse->nAliasAlloc)*sizeof(pParse->aAlias[0])); 2059555f8de7Sdrh pParse->nAliasAlloc = pParse->nAlias; 20608b213899Sdrh } 20618b213899Sdrh assert( iAlias>0 && iAlias<=pParse->nAlias ); 20628b213899Sdrh iReg = pParse->aAlias[iAlias-1]; 20638b213899Sdrh if( iReg==0 ){ 2064ceea3321Sdrh if( pParse->iCacheLevel>0 ){ 206531daa63fSdrh iReg = sqlite3ExprCodeTarget(pParse, pExpr, target); 206631daa63fSdrh }else{ 20678b213899Sdrh iReg = ++pParse->nMem; 20688b213899Sdrh sqlite3ExprCode(pParse, pExpr, iReg); 20698b213899Sdrh pParse->aAlias[iAlias-1] = iReg; 20708b213899Sdrh } 207131daa63fSdrh } 20728b213899Sdrh return iReg; 2073ceea3321Sdrh #else 207460a4b538Sshane UNUSED_PARAMETER(iAlias); 2075ceea3321Sdrh return sqlite3ExprCodeTarget(pParse, pExpr, target); 2076ceea3321Sdrh #endif 20778b213899Sdrh } 20788b213899Sdrh 20798b213899Sdrh /* 2080cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given 20812dcef11bSdrh ** expression. Attempt to store the results in register "target". 20822dcef11bSdrh ** Return the register where results are stored. 2083389a1adbSdrh ** 20848b213899Sdrh ** With this routine, there is no guarantee that results will 20852dcef11bSdrh ** be stored in target. The result might be stored in some other 20862dcef11bSdrh ** register if it is convenient to do so. The calling function 20872dcef11bSdrh ** must check the return code and move the results to the desired 20882dcef11bSdrh ** register. 2089cce7d176Sdrh */ 2090678ccce8Sdrh int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){ 20912dcef11bSdrh Vdbe *v = pParse->pVdbe; /* The VM under construction */ 20922dcef11bSdrh int op; /* The opcode being coded */ 20932dcef11bSdrh int inReg = target; /* Results stored in register inReg */ 20942dcef11bSdrh int regFree1 = 0; /* If non-zero free this temporary register */ 20952dcef11bSdrh int regFree2 = 0; /* If non-zero free this temporary register */ 2096678ccce8Sdrh int r1, r2, r3, r4; /* Various register numbers */ 209720411ea7Sdrh sqlite3 *db = pParse->db; /* The database connection */ 2098ffe07b2dSdrh 20999cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 210020411ea7Sdrh if( v==0 ){ 210120411ea7Sdrh assert( pParse->db->mallocFailed ); 210220411ea7Sdrh return 0; 210320411ea7Sdrh } 2104389a1adbSdrh 2105389a1adbSdrh if( pExpr==0 ){ 2106389a1adbSdrh op = TK_NULL; 2107389a1adbSdrh }else{ 2108f2bc013cSdrh op = pExpr->op; 2109389a1adbSdrh } 2110f2bc013cSdrh switch( op ){ 211113449892Sdrh case TK_AGG_COLUMN: { 211213449892Sdrh AggInfo *pAggInfo = pExpr->pAggInfo; 211313449892Sdrh struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg]; 211413449892Sdrh if( !pAggInfo->directMode ){ 21159de221dfSdrh assert( pCol->iMem>0 ); 21169de221dfSdrh inReg = pCol->iMem; 211713449892Sdrh break; 211813449892Sdrh }else if( pAggInfo->useSortingIdx ){ 2119389a1adbSdrh sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdx, 2120389a1adbSdrh pCol->iSorterColumn, target); 212113449892Sdrh break; 212213449892Sdrh } 212313449892Sdrh /* Otherwise, fall thru into the TK_COLUMN case */ 212413449892Sdrh } 2125967e8b73Sdrh case TK_COLUMN: { 2126ffe07b2dSdrh if( pExpr->iTable<0 ){ 2127ffe07b2dSdrh /* This only happens when coding check constraints */ 2128aa9b8963Sdrh assert( pParse->ckBase>0 ); 2129aa9b8963Sdrh inReg = pExpr->iColumn + pParse->ckBase; 2130c4a3c779Sdrh }else{ 2131c5499befSdrh testcase( (pExpr->flags & EP_AnyAff)!=0 ); 2132e55cbd72Sdrh inReg = sqlite3ExprCodeGetColumn(pParse, pExpr->pTab, 2133da250ea5Sdrh pExpr->iColumn, pExpr->iTable, target, 2134da250ea5Sdrh pExpr->flags & EP_AnyAff); 21352282792aSdrh } 2136cce7d176Sdrh break; 2137cce7d176Sdrh } 2138cce7d176Sdrh case TK_INTEGER: { 213992b01d53Sdrh codeInteger(v, pExpr, 0, target); 2140fec19aadSdrh break; 214151e9a445Sdrh } 2142598f1340Sdrh case TK_FLOAT: { 214333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 214433e619fcSdrh codeReal(v, pExpr->u.zToken, 0, target); 2145598f1340Sdrh break; 2146598f1340Sdrh } 2147fec19aadSdrh case TK_STRING: { 214833e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 214933e619fcSdrh sqlite3VdbeAddOp4(v, OP_String8, 0, target, 0, pExpr->u.zToken, 0); 2150cce7d176Sdrh break; 2151cce7d176Sdrh } 2152f0863fe5Sdrh case TK_NULL: { 21539de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2154f0863fe5Sdrh break; 2155f0863fe5Sdrh } 21565338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_BLOB_LITERAL 2157c572ef7fSdanielk1977 case TK_BLOB: { 21586c8c6cecSdrh int n; 21596c8c6cecSdrh const char *z; 2160ca48c90fSdrh char *zBlob; 216133e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 216233e619fcSdrh assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); 216333e619fcSdrh assert( pExpr->u.zToken[1]=='\'' ); 216433e619fcSdrh z = &pExpr->u.zToken[2]; 2165b7916a78Sdrh n = sqlite3Strlen30(z) - 1; 2166b7916a78Sdrh assert( z[n]=='\'' ); 2167ca48c90fSdrh zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n); 2168ca48c90fSdrh sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC); 2169c572ef7fSdanielk1977 break; 2170c572ef7fSdanielk1977 } 21715338a5f7Sdanielk1977 #endif 217250457896Sdrh case TK_VARIABLE: { 217308de1490Sdrh VdbeOp *pOp; 217433e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 217533e619fcSdrh assert( pExpr->u.zToken!=0 ); 217633e619fcSdrh assert( pExpr->u.zToken[0]!=0 ); 217733e619fcSdrh if( pExpr->u.zToken[1]==0 217820411ea7Sdrh && (pOp = sqlite3VdbeGetOp(v, -1))->opcode==OP_Variable 2179937d0deaSdan && pOp->p1+pOp->p3==pExpr->iColumn 218008de1490Sdrh && pOp->p2+pOp->p3==target 218108de1490Sdrh && pOp->p4.z==0 218208de1490Sdrh ){ 218308de1490Sdrh /* If the previous instruction was a copy of the previous unnamed 218408de1490Sdrh ** parameter into the previous register, then simply increment the 218508de1490Sdrh ** repeat count on the prior instruction rather than making a new 218608de1490Sdrh ** instruction. 218708de1490Sdrh */ 218808de1490Sdrh pOp->p3++; 218908de1490Sdrh }else{ 2190937d0deaSdan sqlite3VdbeAddOp3(v, OP_Variable, pExpr->iColumn, target, 1); 219133e619fcSdrh if( pExpr->u.zToken[1]!=0 ){ 219233e619fcSdrh sqlite3VdbeChangeP4(v, -1, pExpr->u.zToken, 0); 2193895d7472Sdrh } 219408de1490Sdrh } 219550457896Sdrh break; 219650457896Sdrh } 21974e0cff60Sdrh case TK_REGISTER: { 21989de221dfSdrh inReg = pExpr->iTable; 21994e0cff60Sdrh break; 22004e0cff60Sdrh } 22018b213899Sdrh case TK_AS: { 220231daa63fSdrh inReg = codeAlias(pParse, pExpr->iTable, pExpr->pLeft, target); 22038b213899Sdrh break; 22048b213899Sdrh } 2205487e262fSdrh #ifndef SQLITE_OMIT_CAST 2206487e262fSdrh case TK_CAST: { 2207487e262fSdrh /* Expressions of the form: CAST(pLeft AS token) */ 2208f0113000Sdanielk1977 int aff, to_op; 22092dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 221033e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 221133e619fcSdrh aff = sqlite3AffinityType(pExpr->u.zToken); 2212f0113000Sdanielk1977 to_op = aff - SQLITE_AFF_TEXT + OP_ToText; 2213f0113000Sdanielk1977 assert( to_op==OP_ToText || aff!=SQLITE_AFF_TEXT ); 2214f0113000Sdanielk1977 assert( to_op==OP_ToBlob || aff!=SQLITE_AFF_NONE ); 2215f0113000Sdanielk1977 assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC ); 2216f0113000Sdanielk1977 assert( to_op==OP_ToInt || aff!=SQLITE_AFF_INTEGER ); 2217f0113000Sdanielk1977 assert( to_op==OP_ToReal || aff!=SQLITE_AFF_REAL ); 2218c5499befSdrh testcase( to_op==OP_ToText ); 2219c5499befSdrh testcase( to_op==OP_ToBlob ); 2220c5499befSdrh testcase( to_op==OP_ToNumeric ); 2221c5499befSdrh testcase( to_op==OP_ToInt ); 2222c5499befSdrh testcase( to_op==OP_ToReal ); 22231735fa88Sdrh if( inReg!=target ){ 22241735fa88Sdrh sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target); 22251735fa88Sdrh inReg = target; 22261735fa88Sdrh } 22272dcef11bSdrh sqlite3VdbeAddOp1(v, to_op, inReg); 2228c5499befSdrh testcase( usedAsColumnCache(pParse, inReg, inReg) ); 2229b3843a82Sdrh sqlite3ExprCacheAffinityChange(pParse, inReg, 1); 2230487e262fSdrh break; 2231487e262fSdrh } 2232487e262fSdrh #endif /* SQLITE_OMIT_CAST */ 2233c9b84a1fSdrh case TK_LT: 2234c9b84a1fSdrh case TK_LE: 2235c9b84a1fSdrh case TK_GT: 2236c9b84a1fSdrh case TK_GE: 2237c9b84a1fSdrh case TK_NE: 2238c9b84a1fSdrh case TK_EQ: { 2239f2bc013cSdrh assert( TK_LT==OP_Lt ); 2240f2bc013cSdrh assert( TK_LE==OP_Le ); 2241f2bc013cSdrh assert( TK_GT==OP_Gt ); 2242f2bc013cSdrh assert( TK_GE==OP_Ge ); 2243f2bc013cSdrh assert( TK_EQ==OP_Eq ); 2244f2bc013cSdrh assert( TK_NE==OP_Ne ); 2245c5499befSdrh testcase( op==TK_LT ); 2246c5499befSdrh testcase( op==TK_LE ); 2247c5499befSdrh testcase( op==TK_GT ); 2248c5499befSdrh testcase( op==TK_GE ); 2249c5499befSdrh testcase( op==TK_EQ ); 2250c5499befSdrh testcase( op==TK_NE ); 2251da250ea5Sdrh codeCompareOperands(pParse, pExpr->pLeft, &r1, ®Free1, 2252da250ea5Sdrh pExpr->pRight, &r2, ®Free2); 225335573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 225435573356Sdrh r1, r2, inReg, SQLITE_STOREP2); 2255c5499befSdrh testcase( regFree1==0 ); 2256c5499befSdrh testcase( regFree2==0 ); 2257a37cdde0Sdanielk1977 break; 2258c9b84a1fSdrh } 22596a2fe093Sdrh case TK_IS: 22606a2fe093Sdrh case TK_ISNOT: { 22616a2fe093Sdrh testcase( op==TK_IS ); 22626a2fe093Sdrh testcase( op==TK_ISNOT ); 22636a2fe093Sdrh codeCompareOperands(pParse, pExpr->pLeft, &r1, ®Free1, 22646a2fe093Sdrh pExpr->pRight, &r2, ®Free2); 22656a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 22666a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 22676a2fe093Sdrh r1, r2, inReg, SQLITE_STOREP2 | SQLITE_NULLEQ); 22686a2fe093Sdrh testcase( regFree1==0 ); 22696a2fe093Sdrh testcase( regFree2==0 ); 22706a2fe093Sdrh break; 22716a2fe093Sdrh } 2272cce7d176Sdrh case TK_AND: 2273cce7d176Sdrh case TK_OR: 2274cce7d176Sdrh case TK_PLUS: 2275cce7d176Sdrh case TK_STAR: 2276cce7d176Sdrh case TK_MINUS: 2277bf4133cbSdrh case TK_REM: 2278bf4133cbSdrh case TK_BITAND: 2279bf4133cbSdrh case TK_BITOR: 228017c40294Sdrh case TK_SLASH: 2281bf4133cbSdrh case TK_LSHIFT: 2282855eb1cfSdrh case TK_RSHIFT: 22830040077dSdrh case TK_CONCAT: { 2284f2bc013cSdrh assert( TK_AND==OP_And ); 2285f2bc013cSdrh assert( TK_OR==OP_Or ); 2286f2bc013cSdrh assert( TK_PLUS==OP_Add ); 2287f2bc013cSdrh assert( TK_MINUS==OP_Subtract ); 2288f2bc013cSdrh assert( TK_REM==OP_Remainder ); 2289f2bc013cSdrh assert( TK_BITAND==OP_BitAnd ); 2290f2bc013cSdrh assert( TK_BITOR==OP_BitOr ); 2291f2bc013cSdrh assert( TK_SLASH==OP_Divide ); 2292f2bc013cSdrh assert( TK_LSHIFT==OP_ShiftLeft ); 2293f2bc013cSdrh assert( TK_RSHIFT==OP_ShiftRight ); 2294f2bc013cSdrh assert( TK_CONCAT==OP_Concat ); 2295c5499befSdrh testcase( op==TK_AND ); 2296c5499befSdrh testcase( op==TK_OR ); 2297c5499befSdrh testcase( op==TK_PLUS ); 2298c5499befSdrh testcase( op==TK_MINUS ); 2299c5499befSdrh testcase( op==TK_REM ); 2300c5499befSdrh testcase( op==TK_BITAND ); 2301c5499befSdrh testcase( op==TK_BITOR ); 2302c5499befSdrh testcase( op==TK_SLASH ); 2303c5499befSdrh testcase( op==TK_LSHIFT ); 2304c5499befSdrh testcase( op==TK_RSHIFT ); 2305c5499befSdrh testcase( op==TK_CONCAT ); 23062dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 23072dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 23085b6afba9Sdrh sqlite3VdbeAddOp3(v, op, r2, r1, target); 2309c5499befSdrh testcase( regFree1==0 ); 2310c5499befSdrh testcase( regFree2==0 ); 23110040077dSdrh break; 23120040077dSdrh } 2313cce7d176Sdrh case TK_UMINUS: { 2314fec19aadSdrh Expr *pLeft = pExpr->pLeft; 2315fec19aadSdrh assert( pLeft ); 2316fec19aadSdrh if( pLeft->op==TK_FLOAT ){ 231733e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 231833e619fcSdrh codeReal(v, pLeft->u.zToken, 1, target); 2319fbd60f82Sshane }else if( pLeft->op==TK_INTEGER ){ 232092b01d53Sdrh codeInteger(v, pLeft, 1, target); 23213c84ddffSdrh }else{ 23222dcef11bSdrh regFree1 = r1 = sqlite3GetTempReg(pParse); 23233c84ddffSdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, r1); 2324e55cbd72Sdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free2); 23252dcef11bSdrh sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target); 2326c5499befSdrh testcase( regFree2==0 ); 23273c84ddffSdrh } 23289de221dfSdrh inReg = target; 23296e142f54Sdrh break; 23306e142f54Sdrh } 2331bf4133cbSdrh case TK_BITNOT: 23326e142f54Sdrh case TK_NOT: { 2333f2bc013cSdrh assert( TK_BITNOT==OP_BitNot ); 2334f2bc013cSdrh assert( TK_NOT==OP_Not ); 2335c5499befSdrh testcase( op==TK_BITNOT ); 2336c5499befSdrh testcase( op==TK_NOT ); 2337e99fa2afSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2338e99fa2afSdrh testcase( regFree1==0 ); 2339e99fa2afSdrh inReg = target; 2340e99fa2afSdrh sqlite3VdbeAddOp2(v, op, r1, inReg); 2341cce7d176Sdrh break; 2342cce7d176Sdrh } 2343cce7d176Sdrh case TK_ISNULL: 2344cce7d176Sdrh case TK_NOTNULL: { 23456a288a33Sdrh int addr; 2346f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 2347f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 2348c5499befSdrh testcase( op==TK_ISNULL ); 2349c5499befSdrh testcase( op==TK_NOTNULL ); 23509de221dfSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 23512dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2352c5499befSdrh testcase( regFree1==0 ); 23532dcef11bSdrh addr = sqlite3VdbeAddOp1(v, op, r1); 23549de221dfSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, -1); 23556a288a33Sdrh sqlite3VdbeJumpHere(v, addr); 2356a37cdde0Sdanielk1977 break; 2357f2bc013cSdrh } 23582282792aSdrh case TK_AGG_FUNCTION: { 235913449892Sdrh AggInfo *pInfo = pExpr->pAggInfo; 23607e56e711Sdrh if( pInfo==0 ){ 236133e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 236233e619fcSdrh sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken); 23637e56e711Sdrh }else{ 23649de221dfSdrh inReg = pInfo->aFunc[pExpr->iAgg].iMem; 23657e56e711Sdrh } 23662282792aSdrh break; 23672282792aSdrh } 2368b71090fdSdrh case TK_CONST_FUNC: 2369cce7d176Sdrh case TK_FUNCTION: { 237012ffee8cSdrh ExprList *pFarg; /* List of function arguments */ 237112ffee8cSdrh int nFarg; /* Number of function arguments */ 237212ffee8cSdrh FuncDef *pDef; /* The function definition object */ 237312ffee8cSdrh int nId; /* Length of the function name in bytes */ 237412ffee8cSdrh const char *zId; /* The function name */ 237512ffee8cSdrh int constMask = 0; /* Mask of function arguments that are constant */ 237612ffee8cSdrh int i; /* Loop counter */ 237712ffee8cSdrh u8 enc = ENC(db); /* The text encoding used by this database */ 237812ffee8cSdrh CollSeq *pColl = 0; /* A collating sequence */ 237917435752Sdrh 23806ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 2381c5499befSdrh testcase( op==TK_CONST_FUNC ); 2382c5499befSdrh testcase( op==TK_FUNCTION ); 2383b7916a78Sdrh if( ExprHasAnyProperty(pExpr, EP_TokenOnly) ){ 238412ffee8cSdrh pFarg = 0; 238512ffee8cSdrh }else{ 238612ffee8cSdrh pFarg = pExpr->x.pList; 238712ffee8cSdrh } 238812ffee8cSdrh nFarg = pFarg ? pFarg->nExpr : 0; 238933e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 239033e619fcSdrh zId = pExpr->u.zToken; 2391b7916a78Sdrh nId = sqlite3Strlen30(zId); 239212ffee8cSdrh pDef = sqlite3FindFunction(db, zId, nId, nFarg, enc, 0); 2393feb306f5Sdrh if( pDef==0 ){ 2394feb306f5Sdrh sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId); 2395feb306f5Sdrh break; 2396feb306f5Sdrh } 2397*ae6bb957Sdrh 2398*ae6bb957Sdrh /* Attempt a direct implementation of the built-in COALESCE() and 2399*ae6bb957Sdrh ** IFNULL() functions. This avoids unnecessary evalation of 2400*ae6bb957Sdrh ** arguments past the first non-NULL argument. 2401*ae6bb957Sdrh */ 2402*ae6bb957Sdrh if( pDef->flags & SQLITE_FUNC_COALESCE ){ 2403*ae6bb957Sdrh int endCoalesce = sqlite3VdbeMakeLabel(v); 2404*ae6bb957Sdrh assert( nFarg>=2 ); 2405*ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); 2406*ae6bb957Sdrh for(i=1; i<nFarg; i++){ 2407*ae6bb957Sdrh sqlite3VdbeAddOp2(v, OP_NotNull, target, endCoalesce); 2408*ae6bb957Sdrh sqlite3ExprCacheRemove(pParse, target); 2409*ae6bb957Sdrh sqlite3ExprCachePush(pParse); 2410*ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[i].pExpr, target); 2411*ae6bb957Sdrh sqlite3ExprCachePop(pParse, 1); 2412*ae6bb957Sdrh } 2413*ae6bb957Sdrh sqlite3VdbeResolveLabel(v, endCoalesce); 2414*ae6bb957Sdrh break; 2415*ae6bb957Sdrh } 2416*ae6bb957Sdrh 2417*ae6bb957Sdrh 241812ffee8cSdrh if( pFarg ){ 241912ffee8cSdrh r1 = sqlite3GetTempRange(pParse, nFarg); 2420d7d385ddSdrh sqlite3ExprCachePush(pParse); /* Ticket 2ea2425d34be */ 242112ffee8cSdrh sqlite3ExprCodeExprList(pParse, pFarg, r1, 1); 2422d7d385ddSdrh sqlite3ExprCachePop(pParse, 1); /* Ticket 2ea2425d34be */ 2423892d3179Sdrh }else{ 242412ffee8cSdrh r1 = 0; 2425892d3179Sdrh } 2426b7f6f68fSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE 2427a43fa227Sdrh /* Possibly overload the function if the first argument is 2428a43fa227Sdrh ** a virtual table column. 2429a43fa227Sdrh ** 2430a43fa227Sdrh ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the 2431a43fa227Sdrh ** second argument, not the first, as the argument to test to 2432a43fa227Sdrh ** see if it is a column in a virtual table. This is done because 2433a43fa227Sdrh ** the left operand of infix functions (the operand we want to 2434a43fa227Sdrh ** control overloading) ends up as the second argument to the 2435a43fa227Sdrh ** function. The expression "A glob B" is equivalent to 2436a43fa227Sdrh ** "glob(B,A). We want to use the A in "A glob B" to test 2437a43fa227Sdrh ** for function overloading. But we use the B term in "glob(B,A)". 2438a43fa227Sdrh */ 243912ffee8cSdrh if( nFarg>=2 && (pExpr->flags & EP_InfixFunc) ){ 244012ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr); 244112ffee8cSdrh }else if( nFarg>0 ){ 244212ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr); 2443b7f6f68fSdrh } 2444b7f6f68fSdrh #endif 2445f7bca574Sdrh for(i=0; i<nFarg; i++){ 2446f7bca574Sdrh if( i<32 && sqlite3ExprIsConstant(pFarg->a[i].pExpr) ){ 244713449892Sdrh constMask |= (1<<i); 2448d02eb1fdSdanielk1977 } 2449e82f5d04Sdrh if( (pDef->flags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){ 245012ffee8cSdrh pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr); 2451dc1bdc4fSdanielk1977 } 2452dc1bdc4fSdanielk1977 } 2453e82f5d04Sdrh if( pDef->flags & SQLITE_FUNC_NEEDCOLL ){ 24548b213899Sdrh if( !pColl ) pColl = db->pDfltColl; 245566a5167bSdrh sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ); 2456682f68b0Sdanielk1977 } 24572dcef11bSdrh sqlite3VdbeAddOp4(v, OP_Function, constMask, r1, target, 245866a5167bSdrh (char*)pDef, P4_FUNCDEF); 245912ffee8cSdrh sqlite3VdbeChangeP5(v, (u8)nFarg); 246012ffee8cSdrh if( nFarg ){ 246112ffee8cSdrh sqlite3ReleaseTempRange(pParse, r1, nFarg); 24622dcef11bSdrh } 246312ffee8cSdrh sqlite3ExprCacheAffinityChange(pParse, r1, nFarg); 24646ec2733bSdrh break; 24656ec2733bSdrh } 2466fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY 2467fe2093d7Sdrh case TK_EXISTS: 246819a775c2Sdrh case TK_SELECT: { 2469c5499befSdrh testcase( op==TK_EXISTS ); 2470c5499befSdrh testcase( op==TK_SELECT ); 24711450bc6eSdrh inReg = sqlite3CodeSubselect(pParse, pExpr, 0, 0); 247219a775c2Sdrh break; 247319a775c2Sdrh } 2474fef5208cSdrh case TK_IN: { 24750cdc022eSdanielk1977 int rNotFound = 0; 24760cdc022eSdanielk1977 int rMayHaveNull = 0; 24776fccc35aSdrh int j2, j3, j4, j5; 247894a11211Sdrh char affinity; 24799a96b668Sdanielk1977 int eType; 24809a96b668Sdanielk1977 24813c31fc23Sdrh VdbeNoopComment((v, "begin IN expr r%d", target)); 24820cdc022eSdanielk1977 eType = sqlite3FindInIndex(pParse, pExpr, &rMayHaveNull); 24830cdc022eSdanielk1977 if( rMayHaveNull ){ 24840cdc022eSdanielk1977 rNotFound = ++pParse->nMem; 24850cdc022eSdanielk1977 } 2486e014a838Sdanielk1977 2487e014a838Sdanielk1977 /* Figure out the affinity to use to create a key from the results 2488e014a838Sdanielk1977 ** of the expression. affinityStr stores a static string suitable for 248966a5167bSdrh ** P4 of OP_MakeRecord. 2490e014a838Sdanielk1977 */ 249194a11211Sdrh affinity = comparisonAffinity(pExpr); 2492e014a838Sdanielk1977 2493e014a838Sdanielk1977 2494e014a838Sdanielk1977 /* Code the <expr> from "<expr> IN (...)". The temporary table 2495e014a838Sdanielk1977 ** pExpr->iTable contains the values that make up the (...) set. 2496e014a838Sdanielk1977 */ 2497ceea3321Sdrh sqlite3ExprCachePush(pParse); 249866ba23ceSdrh sqlite3ExprCode(pParse, pExpr->pLeft, target); 249966ba23ceSdrh j2 = sqlite3VdbeAddOp1(v, OP_IsNull, target); 25009a96b668Sdanielk1977 if( eType==IN_INDEX_ROWID ){ 250166ba23ceSdrh j3 = sqlite3VdbeAddOp1(v, OP_MustBeInt, target); 250266ba23ceSdrh j4 = sqlite3VdbeAddOp3(v, OP_NotExists, pExpr->iTable, 0, target); 250366ba23ceSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 25046a288a33Sdrh j5 = sqlite3VdbeAddOp0(v, OP_Goto); 25056a288a33Sdrh sqlite3VdbeJumpHere(v, j3); 25066a288a33Sdrh sqlite3VdbeJumpHere(v, j4); 25070cdc022eSdanielk1977 sqlite3VdbeAddOp2(v, OP_Integer, 0, target); 25089a96b668Sdanielk1977 }else{ 25092dcef11bSdrh r2 = regFree2 = sqlite3GetTempReg(pParse); 25100cdc022eSdanielk1977 25110cdc022eSdanielk1977 /* Create a record and test for set membership. If the set contains 25120cdc022eSdanielk1977 ** the value, then jump to the end of the test code. The target 25130cdc022eSdanielk1977 ** register still contains the true (1) value written to it earlier. 25140cdc022eSdanielk1977 */ 251566ba23ceSdrh sqlite3VdbeAddOp4(v, OP_MakeRecord, target, 1, r2, &affinity, 1); 251666ba23ceSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 25172dcef11bSdrh j5 = sqlite3VdbeAddOp3(v, OP_Found, pExpr->iTable, 0, r2); 25180cdc022eSdanielk1977 25190cdc022eSdanielk1977 /* If the set membership test fails, then the result of the 25200cdc022eSdanielk1977 ** "x IN (...)" expression must be either 0 or NULL. If the set 25210cdc022eSdanielk1977 ** contains no NULL values, then the result is 0. If the set 25220cdc022eSdanielk1977 ** contains one or more NULL values, then the result of the 25230cdc022eSdanielk1977 ** expression is also NULL. 25240cdc022eSdanielk1977 */ 25250cdc022eSdanielk1977 if( rNotFound==0 ){ 25260cdc022eSdanielk1977 /* This branch runs if it is known at compile time (now) that 25270cdc022eSdanielk1977 ** the set contains no NULL values. This happens as the result 25280cdc022eSdanielk1977 ** of a "NOT NULL" constraint in the database schema. No need 25290cdc022eSdanielk1977 ** to test the data structure at runtime in this case. 25300cdc022eSdanielk1977 */ 25310cdc022eSdanielk1977 sqlite3VdbeAddOp2(v, OP_Integer, 0, target); 25320cdc022eSdanielk1977 }else{ 25330cdc022eSdanielk1977 /* This block populates the rNotFound register with either NULL 25340cdc022eSdanielk1977 ** or 0 (an integer value). If the data structure contains one 25350cdc022eSdanielk1977 ** or more NULLs, then set rNotFound to NULL. Otherwise, set it 25360cdc022eSdanielk1977 ** to 0. If register rMayHaveNull is already set to some value 25370cdc022eSdanielk1977 ** other than NULL, then the test has already been run and 25380cdc022eSdanielk1977 ** rNotFound is already populated. 25390cdc022eSdanielk1977 */ 254066ba23ceSdrh static const char nullRecord[] = { 0x02, 0x00 }; 25410cdc022eSdanielk1977 j3 = sqlite3VdbeAddOp1(v, OP_NotNull, rMayHaveNull); 25420cdc022eSdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, rNotFound); 254366ba23ceSdrh sqlite3VdbeAddOp4(v, OP_Blob, 2, rMayHaveNull, 0, 254466ba23ceSdrh nullRecord, P4_STATIC); 254566ba23ceSdrh j4 = sqlite3VdbeAddOp3(v, OP_Found, pExpr->iTable, 0, rMayHaveNull); 25460cdc022eSdanielk1977 sqlite3VdbeAddOp2(v, OP_Integer, 0, rNotFound); 25470cdc022eSdanielk1977 sqlite3VdbeJumpHere(v, j4); 25480cdc022eSdanielk1977 sqlite3VdbeJumpHere(v, j3); 25490cdc022eSdanielk1977 25500cdc022eSdanielk1977 /* Copy the value of register rNotFound (which is either NULL or 0) 25510cdc022eSdanielk1977 ** into the target register. This will be the result of the 25520cdc022eSdanielk1977 ** expression. 25530cdc022eSdanielk1977 */ 25540cdc022eSdanielk1977 sqlite3VdbeAddOp2(v, OP_Copy, rNotFound, target); 25559a96b668Sdanielk1977 } 25560cdc022eSdanielk1977 } 25576a288a33Sdrh sqlite3VdbeJumpHere(v, j2); 25586a288a33Sdrh sqlite3VdbeJumpHere(v, j5); 2559ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 25603c31fc23Sdrh VdbeComment((v, "end IN expr r%d", target)); 2561fef5208cSdrh break; 2562fef5208cSdrh } 256393758c8dSdanielk1977 #endif 25642dcef11bSdrh /* 25652dcef11bSdrh ** x BETWEEN y AND z 25662dcef11bSdrh ** 25672dcef11bSdrh ** This is equivalent to 25682dcef11bSdrh ** 25692dcef11bSdrh ** x>=y AND x<=z 25702dcef11bSdrh ** 25712dcef11bSdrh ** X is stored in pExpr->pLeft. 25722dcef11bSdrh ** Y is stored in pExpr->pList->a[0].pExpr. 25732dcef11bSdrh ** Z is stored in pExpr->pList->a[1].pExpr. 25742dcef11bSdrh */ 2575fef5208cSdrh case TK_BETWEEN: { 2576be5c89acSdrh Expr *pLeft = pExpr->pLeft; 25776ab3a2ecSdanielk1977 struct ExprList_item *pLItem = pExpr->x.pList->a; 2578be5c89acSdrh Expr *pRight = pLItem->pExpr; 257935573356Sdrh 2580da250ea5Sdrh codeCompareOperands(pParse, pLeft, &r1, ®Free1, 2581da250ea5Sdrh pRight, &r2, ®Free2); 2582c5499befSdrh testcase( regFree1==0 ); 2583c5499befSdrh testcase( regFree2==0 ); 25842dcef11bSdrh r3 = sqlite3GetTempReg(pParse); 2585678ccce8Sdrh r4 = sqlite3GetTempReg(pParse); 258635573356Sdrh codeCompare(pParse, pLeft, pRight, OP_Ge, 258735573356Sdrh r1, r2, r3, SQLITE_STOREP2); 2588be5c89acSdrh pLItem++; 2589be5c89acSdrh pRight = pLItem->pExpr; 25902dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 25912dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2592c5499befSdrh testcase( regFree2==0 ); 2593678ccce8Sdrh codeCompare(pParse, pLeft, pRight, OP_Le, r1, r2, r4, SQLITE_STOREP2); 2594678ccce8Sdrh sqlite3VdbeAddOp3(v, OP_And, r3, r4, target); 25952dcef11bSdrh sqlite3ReleaseTempReg(pParse, r3); 2596678ccce8Sdrh sqlite3ReleaseTempReg(pParse, r4); 2597fef5208cSdrh break; 2598fef5208cSdrh } 25994f07e5fbSdrh case TK_UPLUS: { 26002dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 2601a2e00042Sdrh break; 2602a2e00042Sdrh } 26032dcef11bSdrh 2604165921a7Sdan case TK_TRIGGER: { 260565a7cd16Sdan /* If the opcode is TK_TRIGGER, then the expression is a reference 260665a7cd16Sdan ** to a column in the new.* or old.* pseudo-tables available to 260765a7cd16Sdan ** trigger programs. In this case Expr.iTable is set to 1 for the 260865a7cd16Sdan ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn 260965a7cd16Sdan ** is set to the column of the pseudo-table to read, or to -1 to 261065a7cd16Sdan ** read the rowid field. 261165a7cd16Sdan ** 261265a7cd16Sdan ** The expression is implemented using an OP_Param opcode. The p1 261365a7cd16Sdan ** parameter is set to 0 for an old.rowid reference, or to (i+1) 261465a7cd16Sdan ** to reference another column of the old.* pseudo-table, where 261565a7cd16Sdan ** i is the index of the column. For a new.rowid reference, p1 is 261665a7cd16Sdan ** set to (n+1), where n is the number of columns in each pseudo-table. 261765a7cd16Sdan ** For a reference to any other column in the new.* pseudo-table, p1 261865a7cd16Sdan ** is set to (n+2+i), where n and i are as defined previously. For 261965a7cd16Sdan ** example, if the table on which triggers are being fired is 262065a7cd16Sdan ** declared as: 262165a7cd16Sdan ** 262265a7cd16Sdan ** CREATE TABLE t1(a, b); 262365a7cd16Sdan ** 262465a7cd16Sdan ** Then p1 is interpreted as follows: 262565a7cd16Sdan ** 262665a7cd16Sdan ** p1==0 -> old.rowid p1==3 -> new.rowid 262765a7cd16Sdan ** p1==1 -> old.a p1==4 -> new.a 262865a7cd16Sdan ** p1==2 -> old.b p1==5 -> new.b 262965a7cd16Sdan */ 26302832ad42Sdan Table *pTab = pExpr->pTab; 263165a7cd16Sdan int p1 = pExpr->iTable * (pTab->nCol+1) + 1 + pExpr->iColumn; 263265a7cd16Sdan 263365a7cd16Sdan assert( pExpr->iTable==0 || pExpr->iTable==1 ); 263465a7cd16Sdan assert( pExpr->iColumn>=-1 && pExpr->iColumn<pTab->nCol ); 263565a7cd16Sdan assert( pTab->iPKey<0 || pExpr->iColumn!=pTab->iPKey ); 263665a7cd16Sdan assert( p1>=0 && p1<(pTab->nCol*2+2) ); 263765a7cd16Sdan 263865a7cd16Sdan sqlite3VdbeAddOp2(v, OP_Param, p1, target); 263976d462eeSdan VdbeComment((v, "%s.%s -> $%d", 2640165921a7Sdan (pExpr->iTable ? "new" : "old"), 264176d462eeSdan (pExpr->iColumn<0 ? "rowid" : pExpr->pTab->aCol[pExpr->iColumn].zName), 264276d462eeSdan target 2643165921a7Sdan )); 264465a7cd16Sdan 264565a7cd16Sdan /* If the column has REAL affinity, it may currently be stored as an 264665a7cd16Sdan ** integer. Use OP_RealAffinity to make sure it is really real. */ 26472832ad42Sdan if( pExpr->iColumn>=0 26482832ad42Sdan && pTab->aCol[pExpr->iColumn].affinity==SQLITE_AFF_REAL 26492832ad42Sdan ){ 26502832ad42Sdan sqlite3VdbeAddOp1(v, OP_RealAffinity, target); 26512832ad42Sdan } 2652165921a7Sdan break; 2653165921a7Sdan } 2654165921a7Sdan 2655165921a7Sdan 26562dcef11bSdrh /* 26572dcef11bSdrh ** Form A: 26582dcef11bSdrh ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 26592dcef11bSdrh ** 26602dcef11bSdrh ** Form B: 26612dcef11bSdrh ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 26622dcef11bSdrh ** 26632dcef11bSdrh ** Form A is can be transformed into the equivalent form B as follows: 26642dcef11bSdrh ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ... 26652dcef11bSdrh ** WHEN x=eN THEN rN ELSE y END 26662dcef11bSdrh ** 26672dcef11bSdrh ** X (if it exists) is in pExpr->pLeft. 26682dcef11bSdrh ** Y is in pExpr->pRight. The Y is also optional. If there is no 26692dcef11bSdrh ** ELSE clause and no other term matches, then the result of the 26702dcef11bSdrh ** exprssion is NULL. 26712dcef11bSdrh ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1]. 26722dcef11bSdrh ** 26732dcef11bSdrh ** The result of the expression is the Ri for the first matching Ei, 26742dcef11bSdrh ** or if there is no matching Ei, the ELSE term Y, or if there is 26752dcef11bSdrh ** no ELSE term, NULL. 26762dcef11bSdrh */ 267733cd4909Sdrh default: assert( op==TK_CASE ); { 26782dcef11bSdrh int endLabel; /* GOTO label for end of CASE stmt */ 26792dcef11bSdrh int nextCase; /* GOTO label for next WHEN clause */ 26802dcef11bSdrh int nExpr; /* 2x number of WHEN terms */ 26812dcef11bSdrh int i; /* Loop counter */ 26822dcef11bSdrh ExprList *pEList; /* List of WHEN terms */ 26832dcef11bSdrh struct ExprList_item *aListelem; /* Array of WHEN terms */ 26842dcef11bSdrh Expr opCompare; /* The X==Ei expression */ 26852dcef11bSdrh Expr cacheX; /* Cached expression X */ 26862dcef11bSdrh Expr *pX; /* The X expression */ 26871bd10f8aSdrh Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */ 2688ceea3321Sdrh VVA_ONLY( int iCacheLevel = pParse->iCacheLevel; ) 268917a7f8ddSdrh 26906ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) && pExpr->x.pList ); 26916ab3a2ecSdanielk1977 assert((pExpr->x.pList->nExpr % 2) == 0); 26926ab3a2ecSdanielk1977 assert(pExpr->x.pList->nExpr > 0); 26936ab3a2ecSdanielk1977 pEList = pExpr->x.pList; 2694be5c89acSdrh aListelem = pEList->a; 2695be5c89acSdrh nExpr = pEList->nExpr; 26962dcef11bSdrh endLabel = sqlite3VdbeMakeLabel(v); 26972dcef11bSdrh if( (pX = pExpr->pLeft)!=0 ){ 26982dcef11bSdrh cacheX = *pX; 269933cd4909Sdrh testcase( pX->op==TK_COLUMN ); 270033cd4909Sdrh testcase( pX->op==TK_REGISTER ); 27012dcef11bSdrh cacheX.iTable = sqlite3ExprCodeTemp(pParse, pX, ®Free1); 2702c5499befSdrh testcase( regFree1==0 ); 27032dcef11bSdrh cacheX.op = TK_REGISTER; 27042dcef11bSdrh opCompare.op = TK_EQ; 27052dcef11bSdrh opCompare.pLeft = &cacheX; 27062dcef11bSdrh pTest = &opCompare; 2707cce7d176Sdrh } 2708f5905aa7Sdrh for(i=0; i<nExpr; i=i+2){ 2709ceea3321Sdrh sqlite3ExprCachePush(pParse); 27102dcef11bSdrh if( pX ){ 27111bd10f8aSdrh assert( pTest!=0 ); 27122dcef11bSdrh opCompare.pRight = aListelem[i].pExpr; 2713f5905aa7Sdrh }else{ 27142dcef11bSdrh pTest = aListelem[i].pExpr; 271517a7f8ddSdrh } 27162dcef11bSdrh nextCase = sqlite3VdbeMakeLabel(v); 271733cd4909Sdrh testcase( pTest->op==TK_COLUMN ); 27182dcef11bSdrh sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL); 2719c5499befSdrh testcase( aListelem[i+1].pExpr->op==TK_COLUMN ); 2720c5499befSdrh testcase( aListelem[i+1].pExpr->op==TK_REGISTER ); 27219de221dfSdrh sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target); 27222dcef11bSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, endLabel); 2723ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 27242dcef11bSdrh sqlite3VdbeResolveLabel(v, nextCase); 2725f570f011Sdrh } 272617a7f8ddSdrh if( pExpr->pRight ){ 2727ceea3321Sdrh sqlite3ExprCachePush(pParse); 27289de221dfSdrh sqlite3ExprCode(pParse, pExpr->pRight, target); 2729ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 273017a7f8ddSdrh }else{ 27319de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 273217a7f8ddSdrh } 2733c1f4a19bSdanielk1977 assert( db->mallocFailed || pParse->nErr>0 2734c1f4a19bSdanielk1977 || pParse->iCacheLevel==iCacheLevel ); 27352dcef11bSdrh sqlite3VdbeResolveLabel(v, endLabel); 27366f34903eSdanielk1977 break; 27376f34903eSdanielk1977 } 27385338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER 27396f34903eSdanielk1977 case TK_RAISE: { 2740165921a7Sdan assert( pExpr->affinity==OE_Rollback 2741165921a7Sdan || pExpr->affinity==OE_Abort 2742165921a7Sdan || pExpr->affinity==OE_Fail 2743165921a7Sdan || pExpr->affinity==OE_Ignore 2744165921a7Sdan ); 2745e0af83acSdan if( !pParse->pTriggerTab ){ 2746e0af83acSdan sqlite3ErrorMsg(pParse, 2747e0af83acSdan "RAISE() may only be used within a trigger-program"); 2748e0af83acSdan return 0; 2749e0af83acSdan } 2750e0af83acSdan if( pExpr->affinity==OE_Abort ){ 2751e0af83acSdan sqlite3MayAbort(pParse); 2752e0af83acSdan } 275333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 2754e0af83acSdan if( pExpr->affinity==OE_Ignore ){ 2755e0af83acSdan sqlite3VdbeAddOp4( 2756e0af83acSdan v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0); 2757e0af83acSdan }else{ 2758e0af83acSdan sqlite3HaltConstraint(pParse, pExpr->affinity, pExpr->u.zToken, 0); 2759e0af83acSdan } 2760e0af83acSdan 2761ffe07b2dSdrh break; 276217a7f8ddSdrh } 27635338a5f7Sdanielk1977 #endif 2764ffe07b2dSdrh } 27652dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 27662dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 27672dcef11bSdrh return inReg; 27685b6afba9Sdrh } 27692dcef11bSdrh 27702dcef11bSdrh /* 27712dcef11bSdrh ** Generate code to evaluate an expression and store the results 27722dcef11bSdrh ** into a register. Return the register number where the results 27732dcef11bSdrh ** are stored. 27742dcef11bSdrh ** 27752dcef11bSdrh ** If the register is a temporary register that can be deallocated, 2776678ccce8Sdrh ** then write its number into *pReg. If the result register is not 27772dcef11bSdrh ** a temporary, then set *pReg to zero. 27782dcef11bSdrh */ 27792dcef11bSdrh int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){ 27802dcef11bSdrh int r1 = sqlite3GetTempReg(pParse); 27812dcef11bSdrh int r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); 27822dcef11bSdrh if( r2==r1 ){ 27832dcef11bSdrh *pReg = r1; 27842dcef11bSdrh }else{ 27852dcef11bSdrh sqlite3ReleaseTempReg(pParse, r1); 27862dcef11bSdrh *pReg = 0; 27872dcef11bSdrh } 27882dcef11bSdrh return r2; 27892dcef11bSdrh } 27902dcef11bSdrh 27912dcef11bSdrh /* 27922dcef11bSdrh ** Generate code that will evaluate expression pExpr and store the 27932dcef11bSdrh ** results in register target. The results are guaranteed to appear 27942dcef11bSdrh ** in register target. 27952dcef11bSdrh */ 27962dcef11bSdrh int sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){ 27979cbf3425Sdrh int inReg; 27989cbf3425Sdrh 27999cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 28009cbf3425Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr, target); 28010e359b30Sdrh assert( pParse->pVdbe || pParse->db->mallocFailed ); 28020e359b30Sdrh if( inReg!=target && pParse->pVdbe ){ 28039cbf3425Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target); 280417a7f8ddSdrh } 2805389a1adbSdrh return target; 2806cce7d176Sdrh } 2807cce7d176Sdrh 2808cce7d176Sdrh /* 28092dcef11bSdrh ** Generate code that evalutes the given expression and puts the result 2810de4fcfddSdrh ** in register target. 281125303780Sdrh ** 28122dcef11bSdrh ** Also make a copy of the expression results into another "cache" register 28132dcef11bSdrh ** and modify the expression so that the next time it is evaluated, 28142dcef11bSdrh ** the result is a copy of the cache register. 28152dcef11bSdrh ** 28162dcef11bSdrh ** This routine is used for expressions that are used multiple 28172dcef11bSdrh ** times. They are evaluated once and the results of the expression 28182dcef11bSdrh ** are reused. 281925303780Sdrh */ 28202dcef11bSdrh int sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){ 282125303780Sdrh Vdbe *v = pParse->pVdbe; 28222dcef11bSdrh int inReg; 28232dcef11bSdrh inReg = sqlite3ExprCode(pParse, pExpr, target); 2824de4fcfddSdrh assert( target>0 ); 282520bc393cSdrh /* This routine is called for terms to INSERT or UPDATE. And the only 282620bc393cSdrh ** other place where expressions can be converted into TK_REGISTER is 282720bc393cSdrh ** in WHERE clause processing. So as currently implemented, there is 282820bc393cSdrh ** no way for a TK_REGISTER to exist here. But it seems prudent to 282920bc393cSdrh ** keep the ALWAYS() in case the conditions above change with future 283020bc393cSdrh ** modifications or enhancements. */ 283120bc393cSdrh if( ALWAYS(pExpr->op!=TK_REGISTER) ){ 283225303780Sdrh int iMem; 28332dcef11bSdrh iMem = ++pParse->nMem; 28342dcef11bSdrh sqlite3VdbeAddOp2(v, OP_Copy, inReg, iMem); 28352dcef11bSdrh pExpr->iTable = iMem; 2836937d0deaSdan pExpr->op2 = pExpr->op; 283725303780Sdrh pExpr->op = TK_REGISTER; 283825303780Sdrh } 28392dcef11bSdrh return inReg; 284025303780Sdrh } 28412dcef11bSdrh 2842678ccce8Sdrh /* 284347de955eSdrh ** Return TRUE if pExpr is an constant expression that is appropriate 284447de955eSdrh ** for factoring out of a loop. Appropriate expressions are: 284547de955eSdrh ** 284647de955eSdrh ** * Any expression that evaluates to two or more opcodes. 284747de955eSdrh ** 284847de955eSdrh ** * Any OP_Integer, OP_Real, OP_String, OP_Blob, OP_Null, 284947de955eSdrh ** or OP_Variable that does not need to be placed in a 285047de955eSdrh ** specific register. 285147de955eSdrh ** 285247de955eSdrh ** There is no point in factoring out single-instruction constant 285347de955eSdrh ** expressions that need to be placed in a particular register. 285447de955eSdrh ** We could factor them out, but then we would end up adding an 285547de955eSdrh ** OP_SCopy instruction to move the value into the correct register 285647de955eSdrh ** later. We might as well just use the original instruction and 285747de955eSdrh ** avoid the OP_SCopy. 285847de955eSdrh */ 285947de955eSdrh static int isAppropriateForFactoring(Expr *p){ 286047de955eSdrh if( !sqlite3ExprIsConstantNotJoin(p) ){ 286147de955eSdrh return 0; /* Only constant expressions are appropriate for factoring */ 286247de955eSdrh } 286347de955eSdrh if( (p->flags & EP_FixedDest)==0 ){ 286447de955eSdrh return 1; /* Any constant without a fixed destination is appropriate */ 286547de955eSdrh } 286647de955eSdrh while( p->op==TK_UPLUS ) p = p->pLeft; 286747de955eSdrh switch( p->op ){ 286847de955eSdrh #ifndef SQLITE_OMIT_BLOB_LITERAL 286947de955eSdrh case TK_BLOB: 287047de955eSdrh #endif 287147de955eSdrh case TK_VARIABLE: 287247de955eSdrh case TK_INTEGER: 287347de955eSdrh case TK_FLOAT: 287447de955eSdrh case TK_NULL: 287547de955eSdrh case TK_STRING: { 287647de955eSdrh testcase( p->op==TK_BLOB ); 287747de955eSdrh testcase( p->op==TK_VARIABLE ); 287847de955eSdrh testcase( p->op==TK_INTEGER ); 287947de955eSdrh testcase( p->op==TK_FLOAT ); 288047de955eSdrh testcase( p->op==TK_NULL ); 288147de955eSdrh testcase( p->op==TK_STRING ); 288247de955eSdrh /* Single-instruction constants with a fixed destination are 288347de955eSdrh ** better done in-line. If we factor them, they will just end 288447de955eSdrh ** up generating an OP_SCopy to move the value to the destination 288547de955eSdrh ** register. */ 288647de955eSdrh return 0; 288747de955eSdrh } 288847de955eSdrh case TK_UMINUS: { 288947de955eSdrh if( p->pLeft->op==TK_FLOAT || p->pLeft->op==TK_INTEGER ){ 289047de955eSdrh return 0; 289147de955eSdrh } 289247de955eSdrh break; 289347de955eSdrh } 289447de955eSdrh default: { 289547de955eSdrh break; 289647de955eSdrh } 289747de955eSdrh } 289847de955eSdrh return 1; 289947de955eSdrh } 290047de955eSdrh 290147de955eSdrh /* 290247de955eSdrh ** If pExpr is a constant expression that is appropriate for 290347de955eSdrh ** factoring out of a loop, then evaluate the expression 2904678ccce8Sdrh ** into a register and convert the expression into a TK_REGISTER 2905678ccce8Sdrh ** expression. 2906678ccce8Sdrh */ 29077d10d5a6Sdrh static int evalConstExpr(Walker *pWalker, Expr *pExpr){ 29087d10d5a6Sdrh Parse *pParse = pWalker->pParse; 290947de955eSdrh switch( pExpr->op ){ 2910e05c929bSdrh case TK_IN: 291147de955eSdrh case TK_REGISTER: { 291233cd4909Sdrh return WRC_Prune; 2913678ccce8Sdrh } 291447de955eSdrh case TK_FUNCTION: 291547de955eSdrh case TK_AGG_FUNCTION: 291647de955eSdrh case TK_CONST_FUNC: { 291747de955eSdrh /* The arguments to a function have a fixed destination. 291847de955eSdrh ** Mark them this way to avoid generated unneeded OP_SCopy 291947de955eSdrh ** instructions. 292047de955eSdrh */ 29216ab3a2ecSdanielk1977 ExprList *pList = pExpr->x.pList; 29226ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 292347de955eSdrh if( pList ){ 292447de955eSdrh int i = pList->nExpr; 292547de955eSdrh struct ExprList_item *pItem = pList->a; 292647de955eSdrh for(; i>0; i--, pItem++){ 292733cd4909Sdrh if( ALWAYS(pItem->pExpr) ) pItem->pExpr->flags |= EP_FixedDest; 292847de955eSdrh } 292947de955eSdrh } 293047de955eSdrh break; 293147de955eSdrh } 293247de955eSdrh } 293347de955eSdrh if( isAppropriateForFactoring(pExpr) ){ 2934678ccce8Sdrh int r1 = ++pParse->nMem; 2935678ccce8Sdrh int r2; 2936678ccce8Sdrh r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); 293733cd4909Sdrh if( NEVER(r1!=r2) ) sqlite3ReleaseTempReg(pParse, r1); 2938fcd4a150Sdan pExpr->op2 = pExpr->op; 2939678ccce8Sdrh pExpr->op = TK_REGISTER; 2940678ccce8Sdrh pExpr->iTable = r2; 29417d10d5a6Sdrh return WRC_Prune; 2942678ccce8Sdrh } 29437d10d5a6Sdrh return WRC_Continue; 2944678ccce8Sdrh } 2945678ccce8Sdrh 2946678ccce8Sdrh /* 2947678ccce8Sdrh ** Preevaluate constant subexpressions within pExpr and store the 2948678ccce8Sdrh ** results in registers. Modify pExpr so that the constant subexpresions 2949678ccce8Sdrh ** are TK_REGISTER opcodes that refer to the precomputed values. 2950678ccce8Sdrh */ 2951678ccce8Sdrh void sqlite3ExprCodeConstants(Parse *pParse, Expr *pExpr){ 29527d10d5a6Sdrh Walker w; 29537d10d5a6Sdrh w.xExprCallback = evalConstExpr; 29547d10d5a6Sdrh w.xSelectCallback = 0; 29557d10d5a6Sdrh w.pParse = pParse; 29567d10d5a6Sdrh sqlite3WalkExpr(&w, pExpr); 2957678ccce8Sdrh } 2958678ccce8Sdrh 295925303780Sdrh 296025303780Sdrh /* 2961268380caSdrh ** Generate code that pushes the value of every element of the given 29629cbf3425Sdrh ** expression list into a sequence of registers beginning at target. 2963268380caSdrh ** 2964892d3179Sdrh ** Return the number of elements evaluated. 2965268380caSdrh */ 29664adee20fSdanielk1977 int sqlite3ExprCodeExprList( 2967268380caSdrh Parse *pParse, /* Parsing context */ 2968389a1adbSdrh ExprList *pList, /* The expression list to be coded */ 2969191b54cbSdrh int target, /* Where to write results */ 2970d176611bSdrh int doHardCopy /* Make a hard copy of every element */ 2971268380caSdrh ){ 2972268380caSdrh struct ExprList_item *pItem; 29739cbf3425Sdrh int i, n; 29749d8b3072Sdrh assert( pList!=0 ); 29759cbf3425Sdrh assert( target>0 ); 2976268380caSdrh n = pList->nExpr; 2977191b54cbSdrh for(pItem=pList->a, i=0; i<n; i++, pItem++){ 29788b213899Sdrh if( pItem->iAlias ){ 297931daa63fSdrh int iReg = codeAlias(pParse, pItem->iAlias, pItem->pExpr, target+i); 29808b213899Sdrh Vdbe *v = sqlite3GetVdbe(pParse); 298131daa63fSdrh if( iReg!=target+i ){ 29828b213899Sdrh sqlite3VdbeAddOp2(v, OP_SCopy, iReg, target+i); 298331daa63fSdrh } 2984d176611bSdrh }else{ 2985191b54cbSdrh sqlite3ExprCode(pParse, pItem->pExpr, target+i); 29868b213899Sdrh } 298720411ea7Sdrh if( doHardCopy && !pParse->db->mallocFailed ){ 2988d176611bSdrh sqlite3ExprHardCopy(pParse, target, n); 2989d176611bSdrh } 2990268380caSdrh } 2991f9b596ebSdrh return n; 2992268380caSdrh } 2993268380caSdrh 2994268380caSdrh /* 2995cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made 2996cce7d176Sdrh ** to the label "dest" if the expression is true but execution 2997cce7d176Sdrh ** continues straight thru if the expression is false. 2998f5905aa7Sdrh ** 2999f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then 300035573356Sdrh ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL. 3001f2bc013cSdrh ** 3002f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ) 3003f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding 3004f2bc013cSdrh ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in 3005f2bc013cSdrh ** the make process cause these values to align. Assert()s in the code 3006f2bc013cSdrh ** below verify that the numbers are aligned correctly. 3007cce7d176Sdrh */ 30084adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3009cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3010cce7d176Sdrh int op = 0; 30112dcef11bSdrh int regFree1 = 0; 30122dcef11bSdrh int regFree2 = 0; 30132dcef11bSdrh int r1, r2; 30142dcef11bSdrh 301535573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 301633cd4909Sdrh if( NEVER(v==0) ) return; /* Existance of VDBE checked by caller */ 301733cd4909Sdrh if( NEVER(pExpr==0) ) return; /* No way this can happen */ 3018f2bc013cSdrh op = pExpr->op; 3019f2bc013cSdrh switch( op ){ 3020cce7d176Sdrh case TK_AND: { 30214adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3022c5499befSdrh testcase( jumpIfNull==0 ); 3023ceea3321Sdrh sqlite3ExprCachePush(pParse); 302435573356Sdrh sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL); 30254adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 30264adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3027ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 3028cce7d176Sdrh break; 3029cce7d176Sdrh } 3030cce7d176Sdrh case TK_OR: { 3031c5499befSdrh testcase( jumpIfNull==0 ); 30324adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 30334adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 3034cce7d176Sdrh break; 3035cce7d176Sdrh } 3036cce7d176Sdrh case TK_NOT: { 3037c5499befSdrh testcase( jumpIfNull==0 ); 30384adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 3039cce7d176Sdrh break; 3040cce7d176Sdrh } 3041cce7d176Sdrh case TK_LT: 3042cce7d176Sdrh case TK_LE: 3043cce7d176Sdrh case TK_GT: 3044cce7d176Sdrh case TK_GE: 3045cce7d176Sdrh case TK_NE: 30460ac65892Sdrh case TK_EQ: { 3047f2bc013cSdrh assert( TK_LT==OP_Lt ); 3048f2bc013cSdrh assert( TK_LE==OP_Le ); 3049f2bc013cSdrh assert( TK_GT==OP_Gt ); 3050f2bc013cSdrh assert( TK_GE==OP_Ge ); 3051f2bc013cSdrh assert( TK_EQ==OP_Eq ); 3052f2bc013cSdrh assert( TK_NE==OP_Ne ); 3053c5499befSdrh testcase( op==TK_LT ); 3054c5499befSdrh testcase( op==TK_LE ); 3055c5499befSdrh testcase( op==TK_GT ); 3056c5499befSdrh testcase( op==TK_GE ); 3057c5499befSdrh testcase( op==TK_EQ ); 3058c5499befSdrh testcase( op==TK_NE ); 3059c5499befSdrh testcase( jumpIfNull==0 ); 3060da250ea5Sdrh codeCompareOperands(pParse, pExpr->pLeft, &r1, ®Free1, 3061da250ea5Sdrh pExpr->pRight, &r2, ®Free2); 306235573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 30632dcef11bSdrh r1, r2, dest, jumpIfNull); 3064c5499befSdrh testcase( regFree1==0 ); 3065c5499befSdrh testcase( regFree2==0 ); 3066cce7d176Sdrh break; 3067cce7d176Sdrh } 30686a2fe093Sdrh case TK_IS: 30696a2fe093Sdrh case TK_ISNOT: { 30706a2fe093Sdrh testcase( op==TK_IS ); 30716a2fe093Sdrh testcase( op==TK_ISNOT ); 30726a2fe093Sdrh codeCompareOperands(pParse, pExpr->pLeft, &r1, ®Free1, 30736a2fe093Sdrh pExpr->pRight, &r2, ®Free2); 30746a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 30756a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 30766a2fe093Sdrh r1, r2, dest, SQLITE_NULLEQ); 30776a2fe093Sdrh testcase( regFree1==0 ); 30786a2fe093Sdrh testcase( regFree2==0 ); 30796a2fe093Sdrh break; 30806a2fe093Sdrh } 3081cce7d176Sdrh case TK_ISNULL: 3082cce7d176Sdrh case TK_NOTNULL: { 3083f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 3084f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 3085c5499befSdrh testcase( op==TK_ISNULL ); 3086c5499befSdrh testcase( op==TK_NOTNULL ); 30872dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 30882dcef11bSdrh sqlite3VdbeAddOp2(v, op, r1, dest); 3089c5499befSdrh testcase( regFree1==0 ); 3090cce7d176Sdrh break; 3091cce7d176Sdrh } 3092fef5208cSdrh case TK_BETWEEN: { 30932dcef11bSdrh /* x BETWEEN y AND z 30940202b29eSdanielk1977 ** 30952dcef11bSdrh ** Is equivalent to 30962dcef11bSdrh ** 30972dcef11bSdrh ** x>=y AND x<=z 30982dcef11bSdrh ** 30992dcef11bSdrh ** Code it as such, taking care to do the common subexpression 31002dcef11bSdrh ** elementation of x. 31010202b29eSdanielk1977 */ 31022dcef11bSdrh Expr exprAnd; 31032dcef11bSdrh Expr compLeft; 31042dcef11bSdrh Expr compRight; 31052dcef11bSdrh Expr exprX; 31060202b29eSdanielk1977 31076ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 31082dcef11bSdrh exprX = *pExpr->pLeft; 31092dcef11bSdrh exprAnd.op = TK_AND; 31102dcef11bSdrh exprAnd.pLeft = &compLeft; 31112dcef11bSdrh exprAnd.pRight = &compRight; 31122dcef11bSdrh compLeft.op = TK_GE; 31132dcef11bSdrh compLeft.pLeft = &exprX; 31146ab3a2ecSdanielk1977 compLeft.pRight = pExpr->x.pList->a[0].pExpr; 31152dcef11bSdrh compRight.op = TK_LE; 31162dcef11bSdrh compRight.pLeft = &exprX; 31176ab3a2ecSdanielk1977 compRight.pRight = pExpr->x.pList->a[1].pExpr; 31182dcef11bSdrh exprX.iTable = sqlite3ExprCodeTemp(pParse, &exprX, ®Free1); 3119c5499befSdrh testcase( regFree1==0 ); 31202dcef11bSdrh exprX.op = TK_REGISTER; 3121c5499befSdrh testcase( jumpIfNull==0 ); 31222dcef11bSdrh sqlite3ExprIfTrue(pParse, &exprAnd, dest, jumpIfNull); 3123fef5208cSdrh break; 3124fef5208cSdrh } 3125cce7d176Sdrh default: { 31262dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 31272dcef11bSdrh sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0); 3128c5499befSdrh testcase( regFree1==0 ); 3129c5499befSdrh testcase( jumpIfNull==0 ); 3130cce7d176Sdrh break; 3131cce7d176Sdrh } 3132cce7d176Sdrh } 31332dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 31342dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3135cce7d176Sdrh } 3136cce7d176Sdrh 3137cce7d176Sdrh /* 313866b89c8fSdrh ** Generate code for a boolean expression such that a jump is made 3139cce7d176Sdrh ** to the label "dest" if the expression is false but execution 3140cce7d176Sdrh ** continues straight thru if the expression is true. 3141f5905aa7Sdrh ** 3142f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then 314335573356Sdrh ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull 314435573356Sdrh ** is 0. 3145cce7d176Sdrh */ 31464adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3147cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3148cce7d176Sdrh int op = 0; 31492dcef11bSdrh int regFree1 = 0; 31502dcef11bSdrh int regFree2 = 0; 31512dcef11bSdrh int r1, r2; 31522dcef11bSdrh 315335573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 315433cd4909Sdrh if( NEVER(v==0) ) return; /* Existance of VDBE checked by caller */ 315533cd4909Sdrh if( pExpr==0 ) return; 3156f2bc013cSdrh 3157f2bc013cSdrh /* The value of pExpr->op and op are related as follows: 3158f2bc013cSdrh ** 3159f2bc013cSdrh ** pExpr->op op 3160f2bc013cSdrh ** --------- ---------- 3161f2bc013cSdrh ** TK_ISNULL OP_NotNull 3162f2bc013cSdrh ** TK_NOTNULL OP_IsNull 3163f2bc013cSdrh ** TK_NE OP_Eq 3164f2bc013cSdrh ** TK_EQ OP_Ne 3165f2bc013cSdrh ** TK_GT OP_Le 3166f2bc013cSdrh ** TK_LE OP_Gt 3167f2bc013cSdrh ** TK_GE OP_Lt 3168f2bc013cSdrh ** TK_LT OP_Ge 3169f2bc013cSdrh ** 3170f2bc013cSdrh ** For other values of pExpr->op, op is undefined and unused. 3171f2bc013cSdrh ** The value of TK_ and OP_ constants are arranged such that we 3172f2bc013cSdrh ** can compute the mapping above using the following expression. 3173f2bc013cSdrh ** Assert()s verify that the computation is correct. 3174f2bc013cSdrh */ 3175f2bc013cSdrh op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1); 3176f2bc013cSdrh 3177f2bc013cSdrh /* Verify correct alignment of TK_ and OP_ constants 3178f2bc013cSdrh */ 3179f2bc013cSdrh assert( pExpr->op!=TK_ISNULL || op==OP_NotNull ); 3180f2bc013cSdrh assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull ); 3181f2bc013cSdrh assert( pExpr->op!=TK_NE || op==OP_Eq ); 3182f2bc013cSdrh assert( pExpr->op!=TK_EQ || op==OP_Ne ); 3183f2bc013cSdrh assert( pExpr->op!=TK_LT || op==OP_Ge ); 3184f2bc013cSdrh assert( pExpr->op!=TK_LE || op==OP_Gt ); 3185f2bc013cSdrh assert( pExpr->op!=TK_GT || op==OP_Le ); 3186f2bc013cSdrh assert( pExpr->op!=TK_GE || op==OP_Lt ); 3187f2bc013cSdrh 3188cce7d176Sdrh switch( pExpr->op ){ 3189cce7d176Sdrh case TK_AND: { 3190c5499befSdrh testcase( jumpIfNull==0 ); 31914adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 31924adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 3193cce7d176Sdrh break; 3194cce7d176Sdrh } 3195cce7d176Sdrh case TK_OR: { 31964adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3197c5499befSdrh testcase( jumpIfNull==0 ); 3198ceea3321Sdrh sqlite3ExprCachePush(pParse); 319935573356Sdrh sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL); 32004adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 32014adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3202ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 3203cce7d176Sdrh break; 3204cce7d176Sdrh } 3205cce7d176Sdrh case TK_NOT: { 32064adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 3207cce7d176Sdrh break; 3208cce7d176Sdrh } 3209cce7d176Sdrh case TK_LT: 3210cce7d176Sdrh case TK_LE: 3211cce7d176Sdrh case TK_GT: 3212cce7d176Sdrh case TK_GE: 3213cce7d176Sdrh case TK_NE: 3214cce7d176Sdrh case TK_EQ: { 3215c5499befSdrh testcase( op==TK_LT ); 3216c5499befSdrh testcase( op==TK_LE ); 3217c5499befSdrh testcase( op==TK_GT ); 3218c5499befSdrh testcase( op==TK_GE ); 3219c5499befSdrh testcase( op==TK_EQ ); 3220c5499befSdrh testcase( op==TK_NE ); 3221c5499befSdrh testcase( jumpIfNull==0 ); 3222da250ea5Sdrh codeCompareOperands(pParse, pExpr->pLeft, &r1, ®Free1, 3223da250ea5Sdrh pExpr->pRight, &r2, ®Free2); 322435573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 32252dcef11bSdrh r1, r2, dest, jumpIfNull); 3226c5499befSdrh testcase( regFree1==0 ); 3227c5499befSdrh testcase( regFree2==0 ); 3228cce7d176Sdrh break; 3229cce7d176Sdrh } 32306a2fe093Sdrh case TK_IS: 32316a2fe093Sdrh case TK_ISNOT: { 32326d4486aeSdrh testcase( pExpr->op==TK_IS ); 32336d4486aeSdrh testcase( pExpr->op==TK_ISNOT ); 32346a2fe093Sdrh codeCompareOperands(pParse, pExpr->pLeft, &r1, ®Free1, 32356a2fe093Sdrh pExpr->pRight, &r2, ®Free2); 32366a2fe093Sdrh op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ; 32376a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 32386a2fe093Sdrh r1, r2, dest, SQLITE_NULLEQ); 32396a2fe093Sdrh testcase( regFree1==0 ); 32406a2fe093Sdrh testcase( regFree2==0 ); 32416a2fe093Sdrh break; 32426a2fe093Sdrh } 3243cce7d176Sdrh case TK_ISNULL: 3244cce7d176Sdrh case TK_NOTNULL: { 3245c5499befSdrh testcase( op==TK_ISNULL ); 3246c5499befSdrh testcase( op==TK_NOTNULL ); 32472dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 32482dcef11bSdrh sqlite3VdbeAddOp2(v, op, r1, dest); 3249c5499befSdrh testcase( regFree1==0 ); 3250cce7d176Sdrh break; 3251cce7d176Sdrh } 3252fef5208cSdrh case TK_BETWEEN: { 32532dcef11bSdrh /* x BETWEEN y AND z 32540202b29eSdanielk1977 ** 32552dcef11bSdrh ** Is equivalent to 32562dcef11bSdrh ** 32572dcef11bSdrh ** x>=y AND x<=z 32582dcef11bSdrh ** 32592dcef11bSdrh ** Code it as such, taking care to do the common subexpression 32602dcef11bSdrh ** elementation of x. 32610202b29eSdanielk1977 */ 32622dcef11bSdrh Expr exprAnd; 32632dcef11bSdrh Expr compLeft; 32642dcef11bSdrh Expr compRight; 32652dcef11bSdrh Expr exprX; 3266be5c89acSdrh 32676ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 32682dcef11bSdrh exprX = *pExpr->pLeft; 32692dcef11bSdrh exprAnd.op = TK_AND; 32702dcef11bSdrh exprAnd.pLeft = &compLeft; 32712dcef11bSdrh exprAnd.pRight = &compRight; 32722dcef11bSdrh compLeft.op = TK_GE; 32732dcef11bSdrh compLeft.pLeft = &exprX; 32746ab3a2ecSdanielk1977 compLeft.pRight = pExpr->x.pList->a[0].pExpr; 32752dcef11bSdrh compRight.op = TK_LE; 32762dcef11bSdrh compRight.pLeft = &exprX; 32776ab3a2ecSdanielk1977 compRight.pRight = pExpr->x.pList->a[1].pExpr; 32782dcef11bSdrh exprX.iTable = sqlite3ExprCodeTemp(pParse, &exprX, ®Free1); 3279c5499befSdrh testcase( regFree1==0 ); 32802dcef11bSdrh exprX.op = TK_REGISTER; 3281c5499befSdrh testcase( jumpIfNull==0 ); 32822dcef11bSdrh sqlite3ExprIfFalse(pParse, &exprAnd, dest, jumpIfNull); 3283fef5208cSdrh break; 3284fef5208cSdrh } 3285cce7d176Sdrh default: { 32862dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 32872dcef11bSdrh sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0); 3288c5499befSdrh testcase( regFree1==0 ); 3289c5499befSdrh testcase( jumpIfNull==0 ); 3290cce7d176Sdrh break; 3291cce7d176Sdrh } 3292cce7d176Sdrh } 32932dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 32942dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3295cce7d176Sdrh } 32962282792aSdrh 32972282792aSdrh /* 32982282792aSdrh ** Do a deep comparison of two expression trees. Return TRUE (non-zero) 32992282792aSdrh ** if they are identical and return FALSE if they differ in any way. 3300d40aab0eSdrh ** 3301d40aab0eSdrh ** Sometimes this routine will return FALSE even if the two expressions 3302d40aab0eSdrh ** really are equivalent. If we cannot prove that the expressions are 3303d40aab0eSdrh ** identical, we return FALSE just to be safe. So if this routine 3304d40aab0eSdrh ** returns false, then you do not really know for certain if the two 3305d40aab0eSdrh ** expressions are the same. But if you get a TRUE return, then you 3306d40aab0eSdrh ** can be sure the expressions are the same. In the places where 3307d40aab0eSdrh ** this routine is used, it does not hurt to get an extra FALSE - that 3308d40aab0eSdrh ** just might result in some slightly slower code. But returning 3309d40aab0eSdrh ** an incorrect TRUE could lead to a malfunction. 33102282792aSdrh */ 33114adee20fSdanielk1977 int sqlite3ExprCompare(Expr *pA, Expr *pB){ 33122282792aSdrh int i; 33134b202ae2Sdanielk1977 if( pA==0||pB==0 ){ 33144b202ae2Sdanielk1977 return pB==pA; 33152282792aSdrh } 331633e619fcSdrh assert( !ExprHasAnyProperty(pA, EP_TokenOnly|EP_Reduced) ); 331733e619fcSdrh assert( !ExprHasAnyProperty(pB, EP_TokenOnly|EP_Reduced) ); 33186ab3a2ecSdanielk1977 if( ExprHasProperty(pA, EP_xIsSelect) || ExprHasProperty(pB, EP_xIsSelect) ){ 33196ab3a2ecSdanielk1977 return 0; 33206ab3a2ecSdanielk1977 } 3321fd357974Sdrh if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 0; 33226ab3a2ecSdanielk1977 if( pA->op!=pB->op ) return 0; 33234adee20fSdanielk1977 if( !sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 0; 33244adee20fSdanielk1977 if( !sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 0; 33256ab3a2ecSdanielk1977 33266ab3a2ecSdanielk1977 if( pA->x.pList && pB->x.pList ){ 33276ab3a2ecSdanielk1977 if( pA->x.pList->nExpr!=pB->x.pList->nExpr ) return 0; 33286ab3a2ecSdanielk1977 for(i=0; i<pA->x.pList->nExpr; i++){ 33296ab3a2ecSdanielk1977 Expr *pExprA = pA->x.pList->a[i].pExpr; 33306ab3a2ecSdanielk1977 Expr *pExprB = pB->x.pList->a[i].pExpr; 33316ab3a2ecSdanielk1977 if( !sqlite3ExprCompare(pExprA, pExprB) ) return 0; 33326ab3a2ecSdanielk1977 } 33336ab3a2ecSdanielk1977 }else if( pA->x.pList || pB->x.pList ){ 33342282792aSdrh return 0; 33352282792aSdrh } 33366ab3a2ecSdanielk1977 33372f2c01e5Sdrh if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 0; 333833e619fcSdrh if( ExprHasProperty(pA, EP_IntValue) ){ 333933e619fcSdrh if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){ 334033e619fcSdrh return 0; 334133e619fcSdrh } 334233e619fcSdrh }else if( pA->op!=TK_COLUMN && pA->u.zToken ){ 334320bc393cSdrh if( ExprHasProperty(pB, EP_IntValue) || NEVER(pB->u.zToken==0) ) return 0; 334433e619fcSdrh if( sqlite3StrICmp(pA->u.zToken,pB->u.zToken)!=0 ){ 33452646da7eSdrh return 0; 33462646da7eSdrh } 33472282792aSdrh } 33482282792aSdrh return 1; 33492282792aSdrh } 33502282792aSdrh 335113449892Sdrh 33522282792aSdrh /* 335313449892Sdrh ** Add a new element to the pAggInfo->aCol[] array. Return the index of 335413449892Sdrh ** the new element. Return a negative number if malloc fails. 33552282792aSdrh */ 335617435752Sdrh static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){ 335713449892Sdrh int i; 3358cf643729Sdrh pInfo->aCol = sqlite3ArrayAllocate( 335917435752Sdrh db, 3360cf643729Sdrh pInfo->aCol, 3361cf643729Sdrh sizeof(pInfo->aCol[0]), 3362cf643729Sdrh 3, 3363cf643729Sdrh &pInfo->nColumn, 3364cf643729Sdrh &pInfo->nColumnAlloc, 3365cf643729Sdrh &i 3366cf643729Sdrh ); 336713449892Sdrh return i; 33682282792aSdrh } 336913449892Sdrh 337013449892Sdrh /* 337113449892Sdrh ** Add a new element to the pAggInfo->aFunc[] array. Return the index of 337213449892Sdrh ** the new element. Return a negative number if malloc fails. 337313449892Sdrh */ 337417435752Sdrh static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){ 337513449892Sdrh int i; 3376cf643729Sdrh pInfo->aFunc = sqlite3ArrayAllocate( 337717435752Sdrh db, 3378cf643729Sdrh pInfo->aFunc, 3379cf643729Sdrh sizeof(pInfo->aFunc[0]), 3380cf643729Sdrh 3, 3381cf643729Sdrh &pInfo->nFunc, 3382cf643729Sdrh &pInfo->nFuncAlloc, 3383cf643729Sdrh &i 3384cf643729Sdrh ); 338513449892Sdrh return i; 33862282792aSdrh } 33872282792aSdrh 33882282792aSdrh /* 33897d10d5a6Sdrh ** This is the xExprCallback for a tree walker. It is used to 33907d10d5a6Sdrh ** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates 3391626a879aSdrh ** for additional information. 33922282792aSdrh */ 33937d10d5a6Sdrh static int analyzeAggregate(Walker *pWalker, Expr *pExpr){ 33942282792aSdrh int i; 33957d10d5a6Sdrh NameContext *pNC = pWalker->u.pNC; 3396a58fdfb1Sdanielk1977 Parse *pParse = pNC->pParse; 3397a58fdfb1Sdanielk1977 SrcList *pSrcList = pNC->pSrcList; 339813449892Sdrh AggInfo *pAggInfo = pNC->pAggInfo; 339913449892Sdrh 34002282792aSdrh switch( pExpr->op ){ 340189c69d00Sdrh case TK_AGG_COLUMN: 3402967e8b73Sdrh case TK_COLUMN: { 34038b213899Sdrh testcase( pExpr->op==TK_AGG_COLUMN ); 34048b213899Sdrh testcase( pExpr->op==TK_COLUMN ); 340513449892Sdrh /* Check to see if the column is in one of the tables in the FROM 340613449892Sdrh ** clause of the aggregate query */ 340720bc393cSdrh if( ALWAYS(pSrcList!=0) ){ 340813449892Sdrh struct SrcList_item *pItem = pSrcList->a; 340913449892Sdrh for(i=0; i<pSrcList->nSrc; i++, pItem++){ 341013449892Sdrh struct AggInfo_col *pCol; 341133e619fcSdrh assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 341213449892Sdrh if( pExpr->iTable==pItem->iCursor ){ 341313449892Sdrh /* If we reach this point, it means that pExpr refers to a table 341413449892Sdrh ** that is in the FROM clause of the aggregate query. 341513449892Sdrh ** 341613449892Sdrh ** Make an entry for the column in pAggInfo->aCol[] if there 341713449892Sdrh ** is not an entry there already. 341813449892Sdrh */ 34197f906d63Sdrh int k; 342013449892Sdrh pCol = pAggInfo->aCol; 34217f906d63Sdrh for(k=0; k<pAggInfo->nColumn; k++, pCol++){ 342213449892Sdrh if( pCol->iTable==pExpr->iTable && 342313449892Sdrh pCol->iColumn==pExpr->iColumn ){ 34242282792aSdrh break; 34252282792aSdrh } 34262282792aSdrh } 34271e536953Sdanielk1977 if( (k>=pAggInfo->nColumn) 34281e536953Sdanielk1977 && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0 34291e536953Sdanielk1977 ){ 34307f906d63Sdrh pCol = &pAggInfo->aCol[k]; 34310817d0dfSdanielk1977 pCol->pTab = pExpr->pTab; 343213449892Sdrh pCol->iTable = pExpr->iTable; 343313449892Sdrh pCol->iColumn = pExpr->iColumn; 34340a07c107Sdrh pCol->iMem = ++pParse->nMem; 343513449892Sdrh pCol->iSorterColumn = -1; 34365774b806Sdrh pCol->pExpr = pExpr; 343713449892Sdrh if( pAggInfo->pGroupBy ){ 343813449892Sdrh int j, n; 343913449892Sdrh ExprList *pGB = pAggInfo->pGroupBy; 344013449892Sdrh struct ExprList_item *pTerm = pGB->a; 344113449892Sdrh n = pGB->nExpr; 344213449892Sdrh for(j=0; j<n; j++, pTerm++){ 344313449892Sdrh Expr *pE = pTerm->pExpr; 344413449892Sdrh if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable && 344513449892Sdrh pE->iColumn==pExpr->iColumn ){ 344613449892Sdrh pCol->iSorterColumn = j; 344713449892Sdrh break; 34482282792aSdrh } 344913449892Sdrh } 345013449892Sdrh } 345113449892Sdrh if( pCol->iSorterColumn<0 ){ 345213449892Sdrh pCol->iSorterColumn = pAggInfo->nSortingColumn++; 345313449892Sdrh } 345413449892Sdrh } 345513449892Sdrh /* There is now an entry for pExpr in pAggInfo->aCol[] (either 345613449892Sdrh ** because it was there before or because we just created it). 345713449892Sdrh ** Convert the pExpr to be a TK_AGG_COLUMN referring to that 345813449892Sdrh ** pAggInfo->aCol[] entry. 345913449892Sdrh */ 346033e619fcSdrh ExprSetIrreducible(pExpr); 346113449892Sdrh pExpr->pAggInfo = pAggInfo; 346213449892Sdrh pExpr->op = TK_AGG_COLUMN; 3463cf697396Sshane pExpr->iAgg = (i16)k; 346413449892Sdrh break; 346513449892Sdrh } /* endif pExpr->iTable==pItem->iCursor */ 346613449892Sdrh } /* end loop over pSrcList */ 3467a58fdfb1Sdanielk1977 } 34687d10d5a6Sdrh return WRC_Prune; 34692282792aSdrh } 34702282792aSdrh case TK_AGG_FUNCTION: { 347113449892Sdrh /* The pNC->nDepth==0 test causes aggregate functions in subqueries 347213449892Sdrh ** to be ignored */ 3473a58fdfb1Sdanielk1977 if( pNC->nDepth==0 ){ 347413449892Sdrh /* Check to see if pExpr is a duplicate of another aggregate 347513449892Sdrh ** function that is already in the pAggInfo structure 347613449892Sdrh */ 347713449892Sdrh struct AggInfo_func *pItem = pAggInfo->aFunc; 347813449892Sdrh for(i=0; i<pAggInfo->nFunc; i++, pItem++){ 347913449892Sdrh if( sqlite3ExprCompare(pItem->pExpr, pExpr) ){ 34802282792aSdrh break; 34812282792aSdrh } 34822282792aSdrh } 348313449892Sdrh if( i>=pAggInfo->nFunc ){ 348413449892Sdrh /* pExpr is original. Make a new entry in pAggInfo->aFunc[] 348513449892Sdrh */ 348614db2665Sdanielk1977 u8 enc = ENC(pParse->db); 34871e536953Sdanielk1977 i = addAggInfoFunc(pParse->db, pAggInfo); 348813449892Sdrh if( i>=0 ){ 34896ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 349013449892Sdrh pItem = &pAggInfo->aFunc[i]; 349113449892Sdrh pItem->pExpr = pExpr; 34920a07c107Sdrh pItem->iMem = ++pParse->nMem; 349333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 349413449892Sdrh pItem->pFunc = sqlite3FindFunction(pParse->db, 349533e619fcSdrh pExpr->u.zToken, sqlite3Strlen30(pExpr->u.zToken), 34966ab3a2ecSdanielk1977 pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0); 3497fd357974Sdrh if( pExpr->flags & EP_Distinct ){ 3498fd357974Sdrh pItem->iDistinct = pParse->nTab++; 3499fd357974Sdrh }else{ 3500fd357974Sdrh pItem->iDistinct = -1; 3501fd357974Sdrh } 35022282792aSdrh } 350313449892Sdrh } 350413449892Sdrh /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry 350513449892Sdrh */ 350633e619fcSdrh assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 350733e619fcSdrh ExprSetIrreducible(pExpr); 3508cf697396Sshane pExpr->iAgg = (i16)i; 350913449892Sdrh pExpr->pAggInfo = pAggInfo; 35107d10d5a6Sdrh return WRC_Prune; 35112282792aSdrh } 35122282792aSdrh } 3513a58fdfb1Sdanielk1977 } 35147d10d5a6Sdrh return WRC_Continue; 35157d10d5a6Sdrh } 35167d10d5a6Sdrh static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){ 35177d10d5a6Sdrh NameContext *pNC = pWalker->u.pNC; 35187d10d5a6Sdrh if( pNC->nDepth==0 ){ 3519a58fdfb1Sdanielk1977 pNC->nDepth++; 35207d10d5a6Sdrh sqlite3WalkSelect(pWalker, pSelect); 3521a58fdfb1Sdanielk1977 pNC->nDepth--; 35227d10d5a6Sdrh return WRC_Prune; 35237d10d5a6Sdrh }else{ 35247d10d5a6Sdrh return WRC_Continue; 3525a58fdfb1Sdanielk1977 } 35262282792aSdrh } 3527626a879aSdrh 3528626a879aSdrh /* 3529626a879aSdrh ** Analyze the given expression looking for aggregate functions and 3530626a879aSdrh ** for variables that need to be added to the pParse->aAgg[] array. 3531626a879aSdrh ** Make additional entries to the pParse->aAgg[] array as necessary. 3532626a879aSdrh ** 3533626a879aSdrh ** This routine should only be called after the expression has been 35347d10d5a6Sdrh ** analyzed by sqlite3ResolveExprNames(). 3535626a879aSdrh */ 3536d2b3e23bSdrh void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){ 35377d10d5a6Sdrh Walker w; 35387d10d5a6Sdrh w.xExprCallback = analyzeAggregate; 35397d10d5a6Sdrh w.xSelectCallback = analyzeAggregatesInSelect; 35407d10d5a6Sdrh w.u.pNC = pNC; 354120bc393cSdrh assert( pNC->pSrcList!=0 ); 35427d10d5a6Sdrh sqlite3WalkExpr(&w, pExpr); 35432282792aSdrh } 35445d9a4af9Sdrh 35455d9a4af9Sdrh /* 35465d9a4af9Sdrh ** Call sqlite3ExprAnalyzeAggregates() for every expression in an 35475d9a4af9Sdrh ** expression list. Return the number of errors. 35485d9a4af9Sdrh ** 35495d9a4af9Sdrh ** If an error is found, the analysis is cut short. 35505d9a4af9Sdrh */ 3551d2b3e23bSdrh void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){ 35525d9a4af9Sdrh struct ExprList_item *pItem; 35535d9a4af9Sdrh int i; 35545d9a4af9Sdrh if( pList ){ 3555d2b3e23bSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 3556d2b3e23bSdrh sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr); 35575d9a4af9Sdrh } 35585d9a4af9Sdrh } 35595d9a4af9Sdrh } 3560892d3179Sdrh 3561892d3179Sdrh /* 3562ceea3321Sdrh ** Allocate a single new register for use to hold some intermediate result. 3563892d3179Sdrh */ 3564892d3179Sdrh int sqlite3GetTempReg(Parse *pParse){ 3565e55cbd72Sdrh if( pParse->nTempReg==0 ){ 3566892d3179Sdrh return ++pParse->nMem; 3567892d3179Sdrh } 35682f425f6bSdanielk1977 return pParse->aTempReg[--pParse->nTempReg]; 3569892d3179Sdrh } 3570ceea3321Sdrh 3571ceea3321Sdrh /* 3572ceea3321Sdrh ** Deallocate a register, making available for reuse for some other 3573ceea3321Sdrh ** purpose. 3574ceea3321Sdrh ** 3575ceea3321Sdrh ** If a register is currently being used by the column cache, then 3576ceea3321Sdrh ** the dallocation is deferred until the column cache line that uses 3577ceea3321Sdrh ** the register becomes stale. 3578ceea3321Sdrh */ 3579892d3179Sdrh void sqlite3ReleaseTempReg(Parse *pParse, int iReg){ 35802dcef11bSdrh if( iReg && pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 3581ceea3321Sdrh int i; 3582ceea3321Sdrh struct yColCache *p; 3583ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 3584ceea3321Sdrh if( p->iReg==iReg ){ 3585ceea3321Sdrh p->tempReg = 1; 3586ceea3321Sdrh return; 3587ceea3321Sdrh } 3588ceea3321Sdrh } 3589892d3179Sdrh pParse->aTempReg[pParse->nTempReg++] = iReg; 3590892d3179Sdrh } 3591892d3179Sdrh } 3592892d3179Sdrh 3593892d3179Sdrh /* 3594892d3179Sdrh ** Allocate or deallocate a block of nReg consecutive registers 3595892d3179Sdrh */ 3596892d3179Sdrh int sqlite3GetTempRange(Parse *pParse, int nReg){ 3597e55cbd72Sdrh int i, n; 3598892d3179Sdrh i = pParse->iRangeReg; 3599e55cbd72Sdrh n = pParse->nRangeReg; 3600e55cbd72Sdrh if( nReg<=n && !usedAsColumnCache(pParse, i, i+n-1) ){ 3601892d3179Sdrh pParse->iRangeReg += nReg; 3602892d3179Sdrh pParse->nRangeReg -= nReg; 3603892d3179Sdrh }else{ 3604892d3179Sdrh i = pParse->nMem+1; 3605892d3179Sdrh pParse->nMem += nReg; 3606892d3179Sdrh } 3607892d3179Sdrh return i; 3608892d3179Sdrh } 3609892d3179Sdrh void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){ 3610892d3179Sdrh if( nReg>pParse->nRangeReg ){ 3611892d3179Sdrh pParse->nRangeReg = nReg; 3612892d3179Sdrh pParse->iRangeReg = iReg; 3613892d3179Sdrh } 3614892d3179Sdrh } 3615