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 /* 231be5c89acSdrh ** Generate code for a comparison operator. 232be5c89acSdrh */ 233be5c89acSdrh static int codeCompare( 234be5c89acSdrh Parse *pParse, /* The parsing (and code generating) context */ 235be5c89acSdrh Expr *pLeft, /* The left operand */ 236be5c89acSdrh Expr *pRight, /* The right operand */ 237be5c89acSdrh int opcode, /* The comparison opcode */ 23835573356Sdrh int in1, int in2, /* Register holding operands */ 239be5c89acSdrh int dest, /* Jump here if true. */ 240be5c89acSdrh int jumpIfNull /* If true, jump if either operand is NULL */ 241be5c89acSdrh ){ 24235573356Sdrh int p5; 24335573356Sdrh int addr; 24435573356Sdrh CollSeq *p4; 24535573356Sdrh 24635573356Sdrh p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight); 24735573356Sdrh p5 = binaryCompareP5(pLeft, pRight, jumpIfNull); 24835573356Sdrh addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1, 24935573356Sdrh (void*)p4, P4_COLLSEQ); 2501bd10f8aSdrh sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5); 251e49b146fSdrh if( (p5 & SQLITE_AFF_MASK)!=SQLITE_AFF_NONE ){ 252da250ea5Sdrh sqlite3ExprCacheAffinityChange(pParse, in1, 1); 253da250ea5Sdrh sqlite3ExprCacheAffinityChange(pParse, in2, 1); 2542f7794c1Sdrh } 25535573356Sdrh return addr; 256be5c89acSdrh } 257be5c89acSdrh 2584b5255acSdanielk1977 #if SQLITE_MAX_EXPR_DEPTH>0 2594b5255acSdanielk1977 /* 2604b5255acSdanielk1977 ** Check that argument nHeight is less than or equal to the maximum 2614b5255acSdanielk1977 ** expression depth allowed. If it is not, leave an error message in 2624b5255acSdanielk1977 ** pParse. 2634b5255acSdanielk1977 */ 2647d10d5a6Sdrh int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){ 2654b5255acSdanielk1977 int rc = SQLITE_OK; 2664b5255acSdanielk1977 int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH]; 2674b5255acSdanielk1977 if( nHeight>mxHeight ){ 2684b5255acSdanielk1977 sqlite3ErrorMsg(pParse, 2694b5255acSdanielk1977 "Expression tree is too large (maximum depth %d)", mxHeight 2704b5255acSdanielk1977 ); 2714b5255acSdanielk1977 rc = SQLITE_ERROR; 2724b5255acSdanielk1977 } 2734b5255acSdanielk1977 return rc; 2744b5255acSdanielk1977 } 2754b5255acSdanielk1977 2764b5255acSdanielk1977 /* The following three functions, heightOfExpr(), heightOfExprList() 2774b5255acSdanielk1977 ** and heightOfSelect(), are used to determine the maximum height 2784b5255acSdanielk1977 ** of any expression tree referenced by the structure passed as the 2794b5255acSdanielk1977 ** first argument. 2804b5255acSdanielk1977 ** 2814b5255acSdanielk1977 ** If this maximum height is greater than the current value pointed 2824b5255acSdanielk1977 ** to by pnHeight, the second parameter, then set *pnHeight to that 2834b5255acSdanielk1977 ** value. 2844b5255acSdanielk1977 */ 2854b5255acSdanielk1977 static void heightOfExpr(Expr *p, int *pnHeight){ 2864b5255acSdanielk1977 if( p ){ 2874b5255acSdanielk1977 if( p->nHeight>*pnHeight ){ 2884b5255acSdanielk1977 *pnHeight = p->nHeight; 2894b5255acSdanielk1977 } 2904b5255acSdanielk1977 } 2914b5255acSdanielk1977 } 2924b5255acSdanielk1977 static void heightOfExprList(ExprList *p, int *pnHeight){ 2934b5255acSdanielk1977 if( p ){ 2944b5255acSdanielk1977 int i; 2954b5255acSdanielk1977 for(i=0; i<p->nExpr; i++){ 2964b5255acSdanielk1977 heightOfExpr(p->a[i].pExpr, pnHeight); 2974b5255acSdanielk1977 } 2984b5255acSdanielk1977 } 2994b5255acSdanielk1977 } 3004b5255acSdanielk1977 static void heightOfSelect(Select *p, int *pnHeight){ 3014b5255acSdanielk1977 if( p ){ 3024b5255acSdanielk1977 heightOfExpr(p->pWhere, pnHeight); 3034b5255acSdanielk1977 heightOfExpr(p->pHaving, pnHeight); 3044b5255acSdanielk1977 heightOfExpr(p->pLimit, pnHeight); 3054b5255acSdanielk1977 heightOfExpr(p->pOffset, pnHeight); 3064b5255acSdanielk1977 heightOfExprList(p->pEList, pnHeight); 3074b5255acSdanielk1977 heightOfExprList(p->pGroupBy, pnHeight); 3084b5255acSdanielk1977 heightOfExprList(p->pOrderBy, pnHeight); 3094b5255acSdanielk1977 heightOfSelect(p->pPrior, pnHeight); 3104b5255acSdanielk1977 } 3114b5255acSdanielk1977 } 3124b5255acSdanielk1977 3134b5255acSdanielk1977 /* 3144b5255acSdanielk1977 ** Set the Expr.nHeight variable in the structure passed as an 3154b5255acSdanielk1977 ** argument. An expression with no children, Expr.pList or 3164b5255acSdanielk1977 ** Expr.pSelect member has a height of 1. Any other expression 3174b5255acSdanielk1977 ** has a height equal to the maximum height of any other 3184b5255acSdanielk1977 ** referenced Expr plus one. 3194b5255acSdanielk1977 */ 3204b5255acSdanielk1977 static void exprSetHeight(Expr *p){ 3214b5255acSdanielk1977 int nHeight = 0; 3224b5255acSdanielk1977 heightOfExpr(p->pLeft, &nHeight); 3234b5255acSdanielk1977 heightOfExpr(p->pRight, &nHeight); 3246ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 3256ab3a2ecSdanielk1977 heightOfSelect(p->x.pSelect, &nHeight); 3266ab3a2ecSdanielk1977 }else{ 3276ab3a2ecSdanielk1977 heightOfExprList(p->x.pList, &nHeight); 3286ab3a2ecSdanielk1977 } 3294b5255acSdanielk1977 p->nHeight = nHeight + 1; 3304b5255acSdanielk1977 } 3314b5255acSdanielk1977 3324b5255acSdanielk1977 /* 3334b5255acSdanielk1977 ** Set the Expr.nHeight variable using the exprSetHeight() function. If 3344b5255acSdanielk1977 ** the height is greater than the maximum allowed expression depth, 3354b5255acSdanielk1977 ** leave an error in pParse. 3364b5255acSdanielk1977 */ 3374b5255acSdanielk1977 void sqlite3ExprSetHeight(Parse *pParse, Expr *p){ 3384b5255acSdanielk1977 exprSetHeight(p); 3397d10d5a6Sdrh sqlite3ExprCheckHeight(pParse, p->nHeight); 3404b5255acSdanielk1977 } 3414b5255acSdanielk1977 3424b5255acSdanielk1977 /* 3434b5255acSdanielk1977 ** Return the maximum height of any expression tree referenced 3444b5255acSdanielk1977 ** by the select statement passed as an argument. 3454b5255acSdanielk1977 */ 3464b5255acSdanielk1977 int sqlite3SelectExprHeight(Select *p){ 3474b5255acSdanielk1977 int nHeight = 0; 3484b5255acSdanielk1977 heightOfSelect(p, &nHeight); 3494b5255acSdanielk1977 return nHeight; 3504b5255acSdanielk1977 } 3514b5255acSdanielk1977 #else 3524b5255acSdanielk1977 #define exprSetHeight(y) 3534b5255acSdanielk1977 #endif /* SQLITE_MAX_EXPR_DEPTH>0 */ 3544b5255acSdanielk1977 355be5c89acSdrh /* 356b7916a78Sdrh ** This routine is the core allocator for Expr nodes. 357b7916a78Sdrh ** 358a76b5dfcSdrh ** Construct a new expression node and return a pointer to it. Memory 359b7916a78Sdrh ** for this node and for the pToken argument is a single allocation 360b7916a78Sdrh ** obtained from sqlite3DbMalloc(). The calling function 361a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed. 362b7916a78Sdrh ** 363b7916a78Sdrh ** If dequote is true, then the token (if it exists) is dequoted. 364b7916a78Sdrh ** If dequote is false, no dequoting is performance. The deQuote 365b7916a78Sdrh ** parameter is ignored if pToken is NULL or if the token does not 366b7916a78Sdrh ** appear to be quoted. If the quotes were of the form "..." (double-quotes) 367b7916a78Sdrh ** then the EP_DblQuoted flag is set on the expression node. 36833e619fcSdrh ** 36933e619fcSdrh ** Special case: If op==TK_INTEGER and pToken points to a string that 37033e619fcSdrh ** can be translated into a 32-bit integer, then the token is not 37133e619fcSdrh ** stored in u.zToken. Instead, the integer values is written 37233e619fcSdrh ** into u.iValue and the EP_IntValue flag is set. No extra storage 37333e619fcSdrh ** is allocated to hold the integer text and the dequote flag is ignored. 374a76b5dfcSdrh */ 375b7916a78Sdrh Expr *sqlite3ExprAlloc( 376a1644fd8Sdanielk1977 sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 37717435752Sdrh int op, /* Expression opcode */ 378b7916a78Sdrh const Token *pToken, /* Token argument. Might be NULL */ 379b7916a78Sdrh int dequote /* True to dequote */ 38017435752Sdrh ){ 381a76b5dfcSdrh Expr *pNew; 38233e619fcSdrh int nExtra = 0; 383cf697396Sshane int iValue = 0; 384b7916a78Sdrh 385b7916a78Sdrh if( pToken ){ 38633e619fcSdrh if( op!=TK_INTEGER || pToken->z==0 38733e619fcSdrh || sqlite3GetInt32(pToken->z, &iValue)==0 ){ 388b7916a78Sdrh nExtra = pToken->n+1; 38933e619fcSdrh } 390a76b5dfcSdrh } 391b7916a78Sdrh pNew = sqlite3DbMallocZero(db, sizeof(Expr)+nExtra); 392b7916a78Sdrh if( pNew ){ 3931bd10f8aSdrh pNew->op = (u8)op; 394a58fdfb1Sdanielk1977 pNew->iAgg = -1; 395a76b5dfcSdrh if( pToken ){ 39633e619fcSdrh if( nExtra==0 ){ 39733e619fcSdrh pNew->flags |= EP_IntValue; 39833e619fcSdrh pNew->u.iValue = iValue; 39933e619fcSdrh }else{ 400d9da78a2Sdrh int c; 40133e619fcSdrh pNew->u.zToken = (char*)&pNew[1]; 40233e619fcSdrh memcpy(pNew->u.zToken, pToken->z, pToken->n); 40333e619fcSdrh pNew->u.zToken[pToken->n] = 0; 404b7916a78Sdrh if( dequote && nExtra>=3 405d9da78a2Sdrh && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){ 40633e619fcSdrh sqlite3Dequote(pNew->u.zToken); 40724fb627aSdrh if( c=='"' ) pNew->flags |= EP_DblQuoted; 408a34001c9Sdrh } 409a34001c9Sdrh } 41033e619fcSdrh } 411b7916a78Sdrh #if SQLITE_MAX_EXPR_DEPTH>0 412b7916a78Sdrh pNew->nHeight = 1; 413b7916a78Sdrh #endif 414a34001c9Sdrh } 415a76b5dfcSdrh return pNew; 416a76b5dfcSdrh } 417a76b5dfcSdrh 418a76b5dfcSdrh /* 419b7916a78Sdrh ** Allocate a new expression node from a zero-terminated token that has 420b7916a78Sdrh ** already been dequoted. 421b7916a78Sdrh */ 422b7916a78Sdrh Expr *sqlite3Expr( 423b7916a78Sdrh sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 424b7916a78Sdrh int op, /* Expression opcode */ 425b7916a78Sdrh const char *zToken /* Token argument. Might be NULL */ 426b7916a78Sdrh ){ 427b7916a78Sdrh Token x; 428b7916a78Sdrh x.z = zToken; 429b7916a78Sdrh x.n = zToken ? sqlite3Strlen30(zToken) : 0; 430b7916a78Sdrh return sqlite3ExprAlloc(db, op, &x, 0); 431b7916a78Sdrh } 432b7916a78Sdrh 433b7916a78Sdrh /* 434b7916a78Sdrh ** Attach subtrees pLeft and pRight to the Expr node pRoot. 435b7916a78Sdrh ** 436b7916a78Sdrh ** If pRoot==NULL that means that a memory allocation error has occurred. 437b7916a78Sdrh ** In that case, delete the subtrees pLeft and pRight. 438b7916a78Sdrh */ 439b7916a78Sdrh void sqlite3ExprAttachSubtrees( 440b7916a78Sdrh sqlite3 *db, 441b7916a78Sdrh Expr *pRoot, 442b7916a78Sdrh Expr *pLeft, 443b7916a78Sdrh Expr *pRight 444b7916a78Sdrh ){ 445b7916a78Sdrh if( pRoot==0 ){ 446b7916a78Sdrh assert( db->mallocFailed ); 447b7916a78Sdrh sqlite3ExprDelete(db, pLeft); 448b7916a78Sdrh sqlite3ExprDelete(db, pRight); 449b7916a78Sdrh }else{ 450b7916a78Sdrh if( pRight ){ 451b7916a78Sdrh pRoot->pRight = pRight; 452b7916a78Sdrh if( pRight->flags & EP_ExpCollate ){ 453b7916a78Sdrh pRoot->flags |= EP_ExpCollate; 454b7916a78Sdrh pRoot->pColl = pRight->pColl; 455b7916a78Sdrh } 456b7916a78Sdrh } 457b7916a78Sdrh if( pLeft ){ 458b7916a78Sdrh pRoot->pLeft = pLeft; 459b7916a78Sdrh if( pLeft->flags & EP_ExpCollate ){ 460b7916a78Sdrh pRoot->flags |= EP_ExpCollate; 461b7916a78Sdrh pRoot->pColl = pLeft->pColl; 462b7916a78Sdrh } 463b7916a78Sdrh } 464b7916a78Sdrh exprSetHeight(pRoot); 465b7916a78Sdrh } 466b7916a78Sdrh } 467b7916a78Sdrh 468b7916a78Sdrh /* 469bf664469Sdrh ** Allocate a Expr node which joins as many as two subtrees. 470b7916a78Sdrh ** 471bf664469Sdrh ** One or both of the subtrees can be NULL. Return a pointer to the new 472bf664469Sdrh ** Expr node. Or, if an OOM error occurs, set pParse->db->mallocFailed, 473bf664469Sdrh ** free the subtrees and return NULL. 474206f3d96Sdrh */ 47517435752Sdrh Expr *sqlite3PExpr( 47617435752Sdrh Parse *pParse, /* Parsing context */ 47717435752Sdrh int op, /* Expression opcode */ 47817435752Sdrh Expr *pLeft, /* Left operand */ 47917435752Sdrh Expr *pRight, /* Right operand */ 48017435752Sdrh const Token *pToken /* Argument token */ 48117435752Sdrh ){ 482b7916a78Sdrh Expr *p = sqlite3ExprAlloc(pParse->db, op, pToken, 1); 483b7916a78Sdrh sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight); 4844e0cff60Sdrh return p; 4854e0cff60Sdrh } 4864e0cff60Sdrh 4874e0cff60Sdrh /* 48891bb0eedSdrh ** Join two expressions using an AND operator. If either expression is 48991bb0eedSdrh ** NULL, then just return the other expression. 49091bb0eedSdrh */ 4911e536953Sdanielk1977 Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){ 49291bb0eedSdrh if( pLeft==0 ){ 49391bb0eedSdrh return pRight; 49491bb0eedSdrh }else if( pRight==0 ){ 49591bb0eedSdrh return pLeft; 49691bb0eedSdrh }else{ 497b7916a78Sdrh Expr *pNew = sqlite3ExprAlloc(db, TK_AND, 0, 0); 498b7916a78Sdrh sqlite3ExprAttachSubtrees(db, pNew, pLeft, pRight); 499b7916a78Sdrh return pNew; 500a76b5dfcSdrh } 501a76b5dfcSdrh } 502a76b5dfcSdrh 503a76b5dfcSdrh /* 504a76b5dfcSdrh ** Construct a new expression node for a function with multiple 505a76b5dfcSdrh ** arguments. 506a76b5dfcSdrh */ 50717435752Sdrh Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){ 508a76b5dfcSdrh Expr *pNew; 509633e6d57Sdrh sqlite3 *db = pParse->db; 5104b202ae2Sdanielk1977 assert( pToken ); 511b7916a78Sdrh pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1); 512a76b5dfcSdrh if( pNew==0 ){ 513d9da78a2Sdrh sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */ 514a76b5dfcSdrh return 0; 515a76b5dfcSdrh } 5166ab3a2ecSdanielk1977 pNew->x.pList = pList; 5176ab3a2ecSdanielk1977 assert( !ExprHasProperty(pNew, EP_xIsSelect) ); 5184b5255acSdanielk1977 sqlite3ExprSetHeight(pParse, pNew); 519a76b5dfcSdrh return pNew; 520a76b5dfcSdrh } 521a76b5dfcSdrh 522a76b5dfcSdrh /* 523fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard 524fa6bc000Sdrh ** in the original SQL statement. 525fa6bc000Sdrh ** 526fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential 527fa6bc000Sdrh ** variable number. 528fa6bc000Sdrh ** 529fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn". We make 530fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when 531fa6bc000Sdrh ** the SQL statement comes from an external source. 532fa6bc000Sdrh ** 53351f49f17Sdrh ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number 534fa6bc000Sdrh ** as the previous instance of the same wildcard. Or if this is the first 535fa6bc000Sdrh ** instance of the wildcard, the next sequenial variable number is 536fa6bc000Sdrh ** assigned. 537fa6bc000Sdrh */ 538fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){ 53917435752Sdrh sqlite3 *db = pParse->db; 540b7916a78Sdrh const char *z; 54117435752Sdrh 542fa6bc000Sdrh if( pExpr==0 ) return; 54333e619fcSdrh assert( !ExprHasAnyProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) ); 54433e619fcSdrh z = pExpr->u.zToken; 545b7916a78Sdrh assert( z!=0 ); 546b7916a78Sdrh assert( z[0]!=0 ); 547b7916a78Sdrh if( z[1]==0 ){ 548fa6bc000Sdrh /* Wildcard of the form "?". Assign the next variable number */ 549b7916a78Sdrh assert( z[0]=='?' ); 5508677d308Sdrh pExpr->iColumn = (ynVar)(++pParse->nVar); 551b7916a78Sdrh }else if( z[0]=='?' ){ 552fa6bc000Sdrh /* Wildcard of the form "?nnn". Convert "nnn" to an integer and 553fa6bc000Sdrh ** use it as the variable number */ 554f639c40fSshane int i = atoi((char*)&z[1]); 5558677d308Sdrh pExpr->iColumn = (ynVar)i; 556c5499befSdrh testcase( i==0 ); 557c5499befSdrh testcase( i==1 ); 558c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 ); 559c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ); 560bb4957f8Sdrh if( i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 561fa6bc000Sdrh sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", 562bb4957f8Sdrh db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]); 563fa6bc000Sdrh } 564fa6bc000Sdrh if( i>pParse->nVar ){ 565fa6bc000Sdrh pParse->nVar = i; 566fa6bc000Sdrh } 567fa6bc000Sdrh }else{ 56851f49f17Sdrh /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable 569fa6bc000Sdrh ** number as the prior appearance of the same name, or if the name 570fa6bc000Sdrh ** has never appeared before, reuse the same variable number 571fa6bc000Sdrh */ 5721bd10f8aSdrh int i; 5731bd10f8aSdrh u32 n; 574b7916a78Sdrh n = sqlite3Strlen30(z); 575fa6bc000Sdrh for(i=0; i<pParse->nVarExpr; i++){ 57651f49f17Sdrh Expr *pE = pParse->apVarExpr[i]; 57751f49f17Sdrh assert( pE!=0 ); 57833e619fcSdrh if( memcmp(pE->u.zToken, z, n)==0 && pE->u.zToken[n]==0 ){ 579937d0deaSdan pExpr->iColumn = pE->iColumn; 580fa6bc000Sdrh break; 581fa6bc000Sdrh } 582fa6bc000Sdrh } 583fa6bc000Sdrh if( i>=pParse->nVarExpr ){ 5848677d308Sdrh pExpr->iColumn = (ynVar)(++pParse->nVar); 585fa6bc000Sdrh if( pParse->nVarExpr>=pParse->nVarExprAlloc-1 ){ 586fa6bc000Sdrh pParse->nVarExprAlloc += pParse->nVarExprAlloc + 10; 58717435752Sdrh pParse->apVarExpr = 58817435752Sdrh sqlite3DbReallocOrFree( 58917435752Sdrh db, 59017435752Sdrh pParse->apVarExpr, 59117435752Sdrh pParse->nVarExprAlloc*sizeof(pParse->apVarExpr[0]) 59217435752Sdrh ); 593fa6bc000Sdrh } 59417435752Sdrh if( !db->mallocFailed ){ 595fa6bc000Sdrh assert( pParse->apVarExpr!=0 ); 596fa6bc000Sdrh pParse->apVarExpr[pParse->nVarExpr++] = pExpr; 597fa6bc000Sdrh } 598fa6bc000Sdrh } 599fa6bc000Sdrh } 600bb4957f8Sdrh if( !pParse->nErr && pParse->nVar>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 601832b2664Sdanielk1977 sqlite3ErrorMsg(pParse, "too many SQL variables"); 602832b2664Sdanielk1977 } 603fa6bc000Sdrh } 604fa6bc000Sdrh 605fa6bc000Sdrh /* 606f6963f99Sdan ** Recursively delete an expression tree. 607a2e00042Sdrh */ 608f6963f99Sdan void sqlite3ExprDelete(sqlite3 *db, Expr *p){ 609f6963f99Sdan if( p==0 ) return; 610b7916a78Sdrh if( !ExprHasAnyProperty(p, EP_TokenOnly) ){ 611633e6d57Sdrh sqlite3ExprDelete(db, p->pLeft); 612633e6d57Sdrh sqlite3ExprDelete(db, p->pRight); 61333e619fcSdrh if( !ExprHasProperty(p, EP_Reduced) && (p->flags2 & EP2_MallocedToken)!=0 ){ 61433e619fcSdrh sqlite3DbFree(db, p->u.zToken); 6156ab3a2ecSdanielk1977 } 6166ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 6176ab3a2ecSdanielk1977 sqlite3SelectDelete(db, p->x.pSelect); 6186ab3a2ecSdanielk1977 }else{ 6196ab3a2ecSdanielk1977 sqlite3ExprListDelete(db, p->x.pList); 6206ab3a2ecSdanielk1977 } 6216ab3a2ecSdanielk1977 } 62233e619fcSdrh if( !ExprHasProperty(p, EP_Static) ){ 623633e6d57Sdrh sqlite3DbFree(db, p); 624a2e00042Sdrh } 62533e619fcSdrh } 626a2e00042Sdrh 627d2687b77Sdrh /* 6286ab3a2ecSdanielk1977 ** Return the number of bytes allocated for the expression structure 6296ab3a2ecSdanielk1977 ** passed as the first argument. This is always one of EXPR_FULLSIZE, 6306ab3a2ecSdanielk1977 ** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE. 6316ab3a2ecSdanielk1977 */ 6326ab3a2ecSdanielk1977 static int exprStructSize(Expr *p){ 6336ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE; 6346ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE; 6356ab3a2ecSdanielk1977 return EXPR_FULLSIZE; 6366ab3a2ecSdanielk1977 } 6376ab3a2ecSdanielk1977 6386ab3a2ecSdanielk1977 /* 63933e619fcSdrh ** The dupedExpr*Size() routines each return the number of bytes required 64033e619fcSdrh ** to store a copy of an expression or expression tree. They differ in 64133e619fcSdrh ** how much of the tree is measured. 64233e619fcSdrh ** 64333e619fcSdrh ** dupedExprStructSize() Size of only the Expr structure 64433e619fcSdrh ** dupedExprNodeSize() Size of Expr + space for token 64533e619fcSdrh ** dupedExprSize() Expr + token + subtree components 64633e619fcSdrh ** 64733e619fcSdrh *************************************************************************** 64833e619fcSdrh ** 64933e619fcSdrh ** The dupedExprStructSize() function returns two values OR-ed together: 65033e619fcSdrh ** (1) the space required for a copy of the Expr structure only and 65133e619fcSdrh ** (2) the EP_xxx flags that indicate what the structure size should be. 65233e619fcSdrh ** The return values is always one of: 65333e619fcSdrh ** 65433e619fcSdrh ** EXPR_FULLSIZE 65533e619fcSdrh ** EXPR_REDUCEDSIZE | EP_Reduced 65633e619fcSdrh ** EXPR_TOKENONLYSIZE | EP_TokenOnly 65733e619fcSdrh ** 65833e619fcSdrh ** The size of the structure can be found by masking the return value 65933e619fcSdrh ** of this routine with 0xfff. The flags can be found by masking the 66033e619fcSdrh ** return value with EP_Reduced|EP_TokenOnly. 66133e619fcSdrh ** 66233e619fcSdrh ** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size 66333e619fcSdrh ** (unreduced) Expr objects as they or originally constructed by the parser. 66433e619fcSdrh ** During expression analysis, extra information is computed and moved into 66533e619fcSdrh ** later parts of teh Expr object and that extra information might get chopped 66633e619fcSdrh ** off if the expression is reduced. Note also that it does not work to 66733e619fcSdrh ** make a EXPRDUP_REDUCE copy of a reduced expression. It is only legal 66833e619fcSdrh ** to reduce a pristine expression tree from the parser. The implementation 66933e619fcSdrh ** of dupedExprStructSize() contain multiple assert() statements that attempt 67033e619fcSdrh ** to enforce this constraint. 6716ab3a2ecSdanielk1977 */ 6726ab3a2ecSdanielk1977 static int dupedExprStructSize(Expr *p, int flags){ 6736ab3a2ecSdanielk1977 int nSize; 67433e619fcSdrh assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */ 6756ab3a2ecSdanielk1977 if( 0==(flags&EXPRDUP_REDUCE) ){ 6766ab3a2ecSdanielk1977 nSize = EXPR_FULLSIZE; 6776ab3a2ecSdanielk1977 }else{ 67833e619fcSdrh assert( !ExprHasAnyProperty(p, EP_TokenOnly|EP_Reduced) ); 67933e619fcSdrh assert( !ExprHasProperty(p, EP_FromJoin) ); 68033e619fcSdrh assert( (p->flags2 & EP2_MallocedToken)==0 ); 68133e619fcSdrh assert( (p->flags2 & EP2_Irreducible)==0 ); 68233e619fcSdrh if( p->pLeft || p->pRight || p->pColl || p->x.pList ){ 68333e619fcSdrh nSize = EXPR_REDUCEDSIZE | EP_Reduced; 68433e619fcSdrh }else{ 68533e619fcSdrh nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly; 68633e619fcSdrh } 6876ab3a2ecSdanielk1977 } 6886ab3a2ecSdanielk1977 return nSize; 6896ab3a2ecSdanielk1977 } 6906ab3a2ecSdanielk1977 6916ab3a2ecSdanielk1977 /* 69233e619fcSdrh ** This function returns the space in bytes required to store the copy 69333e619fcSdrh ** of the Expr structure and a copy of the Expr.u.zToken string (if that 69433e619fcSdrh ** string is defined.) 6956ab3a2ecSdanielk1977 */ 6966ab3a2ecSdanielk1977 static int dupedExprNodeSize(Expr *p, int flags){ 69733e619fcSdrh int nByte = dupedExprStructSize(p, flags) & 0xfff; 69833e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 69933e619fcSdrh nByte += sqlite3Strlen30(p->u.zToken)+1; 7006ab3a2ecSdanielk1977 } 701bc73971dSdanielk1977 return ROUND8(nByte); 7026ab3a2ecSdanielk1977 } 7036ab3a2ecSdanielk1977 7046ab3a2ecSdanielk1977 /* 7056ab3a2ecSdanielk1977 ** Return the number of bytes required to create a duplicate of the 7066ab3a2ecSdanielk1977 ** expression passed as the first argument. The second argument is a 7076ab3a2ecSdanielk1977 ** mask containing EXPRDUP_XXX flags. 7086ab3a2ecSdanielk1977 ** 7096ab3a2ecSdanielk1977 ** The value returned includes space to create a copy of the Expr struct 71033e619fcSdrh ** itself and the buffer referred to by Expr.u.zToken, if any. 7116ab3a2ecSdanielk1977 ** 7126ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the return value includes 7136ab3a2ecSdanielk1977 ** space to duplicate all Expr nodes in the tree formed by Expr.pLeft 7146ab3a2ecSdanielk1977 ** and Expr.pRight variables (but not for any structures pointed to or 7156ab3a2ecSdanielk1977 ** descended from the Expr.x.pList or Expr.x.pSelect variables). 7166ab3a2ecSdanielk1977 */ 7176ab3a2ecSdanielk1977 static int dupedExprSize(Expr *p, int flags){ 7186ab3a2ecSdanielk1977 int nByte = 0; 7196ab3a2ecSdanielk1977 if( p ){ 7206ab3a2ecSdanielk1977 nByte = dupedExprNodeSize(p, flags); 7216ab3a2ecSdanielk1977 if( flags&EXPRDUP_REDUCE ){ 722b7916a78Sdrh nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags); 7236ab3a2ecSdanielk1977 } 7246ab3a2ecSdanielk1977 } 7256ab3a2ecSdanielk1977 return nByte; 7266ab3a2ecSdanielk1977 } 7276ab3a2ecSdanielk1977 7286ab3a2ecSdanielk1977 /* 7296ab3a2ecSdanielk1977 ** This function is similar to sqlite3ExprDup(), except that if pzBuffer 7306ab3a2ecSdanielk1977 ** is not NULL then *pzBuffer is assumed to point to a buffer large enough 73133e619fcSdrh ** to store the copy of expression p, the copies of p->u.zToken 7326ab3a2ecSdanielk1977 ** (if applicable), and the copies of the p->pLeft and p->pRight expressions, 7336ab3a2ecSdanielk1977 ** if any. Before returning, *pzBuffer is set to the first byte passed the 7346ab3a2ecSdanielk1977 ** portion of the buffer copied into by this function. 7356ab3a2ecSdanielk1977 */ 7366ab3a2ecSdanielk1977 static Expr *exprDup(sqlite3 *db, Expr *p, int flags, u8 **pzBuffer){ 7376ab3a2ecSdanielk1977 Expr *pNew = 0; /* Value to return */ 7386ab3a2ecSdanielk1977 if( p ){ 7396ab3a2ecSdanielk1977 const int isReduced = (flags&EXPRDUP_REDUCE); 7406ab3a2ecSdanielk1977 u8 *zAlloc; 74133e619fcSdrh u32 staticFlag = 0; 7426ab3a2ecSdanielk1977 7436ab3a2ecSdanielk1977 assert( pzBuffer==0 || isReduced ); 7446ab3a2ecSdanielk1977 7456ab3a2ecSdanielk1977 /* Figure out where to write the new Expr structure. */ 7466ab3a2ecSdanielk1977 if( pzBuffer ){ 7476ab3a2ecSdanielk1977 zAlloc = *pzBuffer; 74833e619fcSdrh staticFlag = EP_Static; 7496ab3a2ecSdanielk1977 }else{ 7506ab3a2ecSdanielk1977 zAlloc = sqlite3DbMallocRaw(db, dupedExprSize(p, flags)); 7516ab3a2ecSdanielk1977 } 7526ab3a2ecSdanielk1977 pNew = (Expr *)zAlloc; 7536ab3a2ecSdanielk1977 7546ab3a2ecSdanielk1977 if( pNew ){ 7556ab3a2ecSdanielk1977 /* Set nNewSize to the size allocated for the structure pointed to 7566ab3a2ecSdanielk1977 ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or 7576ab3a2ecSdanielk1977 ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed 75833e619fcSdrh ** by the copy of the p->u.zToken string (if any). 7596ab3a2ecSdanielk1977 */ 76033e619fcSdrh const unsigned nStructSize = dupedExprStructSize(p, flags); 76133e619fcSdrh const int nNewSize = nStructSize & 0xfff; 76233e619fcSdrh int nToken; 76333e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 76433e619fcSdrh nToken = sqlite3Strlen30(p->u.zToken) + 1; 76533e619fcSdrh }else{ 76633e619fcSdrh nToken = 0; 76733e619fcSdrh } 7686ab3a2ecSdanielk1977 if( isReduced ){ 7696ab3a2ecSdanielk1977 assert( ExprHasProperty(p, EP_Reduced)==0 ); 7706ab3a2ecSdanielk1977 memcpy(zAlloc, p, nNewSize); 7716ab3a2ecSdanielk1977 }else{ 7726ab3a2ecSdanielk1977 int nSize = exprStructSize(p); 7736ab3a2ecSdanielk1977 memcpy(zAlloc, p, nSize); 7746ab3a2ecSdanielk1977 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize); 7756ab3a2ecSdanielk1977 } 7766ab3a2ecSdanielk1977 77733e619fcSdrh /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */ 77833e619fcSdrh pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static); 77933e619fcSdrh pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly); 78033e619fcSdrh pNew->flags |= staticFlag; 7816ab3a2ecSdanielk1977 78233e619fcSdrh /* Copy the p->u.zToken string, if any. */ 7836ab3a2ecSdanielk1977 if( nToken ){ 78433e619fcSdrh char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize]; 78533e619fcSdrh memcpy(zToken, p->u.zToken, nToken); 7866ab3a2ecSdanielk1977 } 7876ab3a2ecSdanielk1977 7886ab3a2ecSdanielk1977 if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){ 7896ab3a2ecSdanielk1977 /* Fill in the pNew->x.pSelect or pNew->x.pList member. */ 7906ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 7916ab3a2ecSdanielk1977 pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, isReduced); 7926ab3a2ecSdanielk1977 }else{ 7936ab3a2ecSdanielk1977 pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, isReduced); 7946ab3a2ecSdanielk1977 } 7956ab3a2ecSdanielk1977 } 7966ab3a2ecSdanielk1977 7976ab3a2ecSdanielk1977 /* Fill in pNew->pLeft and pNew->pRight. */ 798b7916a78Sdrh if( ExprHasAnyProperty(pNew, EP_Reduced|EP_TokenOnly) ){ 7996ab3a2ecSdanielk1977 zAlloc += dupedExprNodeSize(p, flags); 8006ab3a2ecSdanielk1977 if( ExprHasProperty(pNew, EP_Reduced) ){ 8016ab3a2ecSdanielk1977 pNew->pLeft = exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc); 8026ab3a2ecSdanielk1977 pNew->pRight = exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc); 8036ab3a2ecSdanielk1977 } 8046ab3a2ecSdanielk1977 if( pzBuffer ){ 8056ab3a2ecSdanielk1977 *pzBuffer = zAlloc; 8066ab3a2ecSdanielk1977 } 807b7916a78Sdrh }else{ 808b7916a78Sdrh pNew->flags2 = 0; 809b7916a78Sdrh if( !ExprHasAnyProperty(p, EP_TokenOnly) ){ 8106ab3a2ecSdanielk1977 pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0); 8116ab3a2ecSdanielk1977 pNew->pRight = sqlite3ExprDup(db, p->pRight, 0); 8126ab3a2ecSdanielk1977 } 8136ab3a2ecSdanielk1977 } 814b7916a78Sdrh 815b7916a78Sdrh } 8166ab3a2ecSdanielk1977 } 8176ab3a2ecSdanielk1977 return pNew; 8186ab3a2ecSdanielk1977 } 8196ab3a2ecSdanielk1977 8206ab3a2ecSdanielk1977 /* 821ff78bd2fSdrh ** The following group of routines make deep copies of expressions, 822ff78bd2fSdrh ** expression lists, ID lists, and select statements. The copies can 823ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines) 824ff78bd2fSdrh ** without effecting the originals. 825ff78bd2fSdrh ** 8264adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(), 8274adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded 828ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines. 829ff78bd2fSdrh ** 830ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated. 8316ab3a2ecSdanielk1977 ** 832b7916a78Sdrh ** The flags parameter contains a combination of the EXPRDUP_XXX flags. 8336ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a 8346ab3a2ecSdanielk1977 ** truncated version of the usual Expr structure that will be stored as 8356ab3a2ecSdanielk1977 ** part of the in-memory representation of the database schema. 836ff78bd2fSdrh */ 8376ab3a2ecSdanielk1977 Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){ 8386ab3a2ecSdanielk1977 return exprDup(db, p, flags, 0); 839ff78bd2fSdrh } 8406ab3a2ecSdanielk1977 ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){ 841ff78bd2fSdrh ExprList *pNew; 842145716b3Sdrh struct ExprList_item *pItem, *pOldItem; 843ff78bd2fSdrh int i; 844ff78bd2fSdrh if( p==0 ) return 0; 84517435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 846ff78bd2fSdrh if( pNew==0 ) return 0; 84731dad9daSdanielk1977 pNew->iECursor = 0; 8484305d103Sdrh pNew->nExpr = pNew->nAlloc = p->nExpr; 84917435752Sdrh pNew->a = pItem = sqlite3DbMallocRaw(db, p->nExpr*sizeof(p->a[0]) ); 850e0048400Sdanielk1977 if( pItem==0 ){ 851633e6d57Sdrh sqlite3DbFree(db, pNew); 852e0048400Sdanielk1977 return 0; 853e0048400Sdanielk1977 } 854145716b3Sdrh pOldItem = p->a; 855145716b3Sdrh for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){ 8566ab3a2ecSdanielk1977 Expr *pOldExpr = pOldItem->pExpr; 857b5526ea6Sdrh pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags); 85817435752Sdrh pItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 859b7916a78Sdrh pItem->zSpan = sqlite3DbStrDup(db, pOldItem->zSpan); 860145716b3Sdrh pItem->sortOrder = pOldItem->sortOrder; 8613e7bc9caSdrh pItem->done = 0; 8627d10d5a6Sdrh pItem->iCol = pOldItem->iCol; 8638b213899Sdrh pItem->iAlias = pOldItem->iAlias; 864ff78bd2fSdrh } 865ff78bd2fSdrh return pNew; 866ff78bd2fSdrh } 86793758c8dSdanielk1977 86893758c8dSdanielk1977 /* 86993758c8dSdanielk1977 ** If cursors, triggers, views and subqueries are all omitted from 87093758c8dSdanielk1977 ** the build, then none of the following routines, except for 87193758c8dSdanielk1977 ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes 87293758c8dSdanielk1977 ** called with a NULL argument. 87393758c8dSdanielk1977 */ 8746a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \ 8756a67fe8eSdanielk1977 || !defined(SQLITE_OMIT_SUBQUERY) 8766ab3a2ecSdanielk1977 SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){ 877ad3cab52Sdrh SrcList *pNew; 878ad3cab52Sdrh int i; 879113088ecSdrh int nByte; 880ad3cab52Sdrh if( p==0 ) return 0; 881113088ecSdrh nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); 88217435752Sdrh pNew = sqlite3DbMallocRaw(db, nByte ); 883ad3cab52Sdrh if( pNew==0 ) return 0; 8844305d103Sdrh pNew->nSrc = pNew->nAlloc = p->nSrc; 885ad3cab52Sdrh for(i=0; i<p->nSrc; i++){ 8864efc4754Sdrh struct SrcList_item *pNewItem = &pNew->a[i]; 8874efc4754Sdrh struct SrcList_item *pOldItem = &p->a[i]; 888ed8a3bb1Sdrh Table *pTab; 88917435752Sdrh pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase); 89017435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 89117435752Sdrh pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias); 8924efc4754Sdrh pNewItem->jointype = pOldItem->jointype; 8934efc4754Sdrh pNewItem->iCursor = pOldItem->iCursor; 8941787ccabSdanielk1977 pNewItem->isPopulated = pOldItem->isPopulated; 89585574e31Sdanielk1977 pNewItem->zIndex = sqlite3DbStrDup(db, pOldItem->zIndex); 89685574e31Sdanielk1977 pNewItem->notIndexed = pOldItem->notIndexed; 89785574e31Sdanielk1977 pNewItem->pIndex = pOldItem->pIndex; 898ed8a3bb1Sdrh pTab = pNewItem->pTab = pOldItem->pTab; 899ed8a3bb1Sdrh if( pTab ){ 900ed8a3bb1Sdrh pTab->nRef++; 901a1cb183dSdanielk1977 } 9026ab3a2ecSdanielk1977 pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags); 9036ab3a2ecSdanielk1977 pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags); 90417435752Sdrh pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing); 9056c18b6e0Sdanielk1977 pNewItem->colUsed = pOldItem->colUsed; 906ad3cab52Sdrh } 907ad3cab52Sdrh return pNew; 908ad3cab52Sdrh } 90917435752Sdrh IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){ 910ff78bd2fSdrh IdList *pNew; 911ff78bd2fSdrh int i; 912ff78bd2fSdrh if( p==0 ) return 0; 91317435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 914ff78bd2fSdrh if( pNew==0 ) return 0; 9154305d103Sdrh pNew->nId = pNew->nAlloc = p->nId; 91617435752Sdrh pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) ); 917d5d56523Sdanielk1977 if( pNew->a==0 ){ 918633e6d57Sdrh sqlite3DbFree(db, pNew); 919d5d56523Sdanielk1977 return 0; 920d5d56523Sdanielk1977 } 921ff78bd2fSdrh for(i=0; i<p->nId; i++){ 9224efc4754Sdrh struct IdList_item *pNewItem = &pNew->a[i]; 9234efc4754Sdrh struct IdList_item *pOldItem = &p->a[i]; 92417435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 9254efc4754Sdrh pNewItem->idx = pOldItem->idx; 926ff78bd2fSdrh } 927ff78bd2fSdrh return pNew; 928ff78bd2fSdrh } 9296ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 930ff78bd2fSdrh Select *pNew; 931ff78bd2fSdrh if( p==0 ) return 0; 93217435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*p) ); 933ff78bd2fSdrh if( pNew==0 ) return 0; 934b7916a78Sdrh pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags); 9356ab3a2ecSdanielk1977 pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags); 9366ab3a2ecSdanielk1977 pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags); 9376ab3a2ecSdanielk1977 pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags); 9386ab3a2ecSdanielk1977 pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags); 9396ab3a2ecSdanielk1977 pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags); 940ff78bd2fSdrh pNew->op = p->op; 9416ab3a2ecSdanielk1977 pNew->pPrior = sqlite3SelectDup(db, p->pPrior, flags); 9426ab3a2ecSdanielk1977 pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags); 9436ab3a2ecSdanielk1977 pNew->pOffset = sqlite3ExprDup(db, p->pOffset, flags); 94492b01d53Sdrh pNew->iLimit = 0; 94592b01d53Sdrh pNew->iOffset = 0; 9467d10d5a6Sdrh pNew->selFlags = p->selFlags & ~SF_UsesEphemeral; 9470342b1f5Sdrh pNew->pRightmost = 0; 948b9bb7c18Sdrh pNew->addrOpenEphm[0] = -1; 949b9bb7c18Sdrh pNew->addrOpenEphm[1] = -1; 950b9bb7c18Sdrh pNew->addrOpenEphm[2] = -1; 951ff78bd2fSdrh return pNew; 952ff78bd2fSdrh } 95393758c8dSdanielk1977 #else 9546ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 95593758c8dSdanielk1977 assert( p==0 ); 95693758c8dSdanielk1977 return 0; 95793758c8dSdanielk1977 } 95893758c8dSdanielk1977 #endif 959ff78bd2fSdrh 960ff78bd2fSdrh 961ff78bd2fSdrh /* 962a76b5dfcSdrh ** Add a new element to the end of an expression list. If pList is 963a76b5dfcSdrh ** initially NULL, then create a new expression list. 964b7916a78Sdrh ** 965b7916a78Sdrh ** If a memory allocation error occurs, the entire list is freed and 966b7916a78Sdrh ** NULL is returned. If non-NULL is returned, then it is guaranteed 967b7916a78Sdrh ** that the new entry was successfully appended. 968a76b5dfcSdrh */ 96917435752Sdrh ExprList *sqlite3ExprListAppend( 97017435752Sdrh Parse *pParse, /* Parsing context */ 97117435752Sdrh ExprList *pList, /* List to which to append. Might be NULL */ 972b7916a78Sdrh Expr *pExpr /* Expression to be appended. Might be NULL */ 97317435752Sdrh ){ 97417435752Sdrh sqlite3 *db = pParse->db; 975a76b5dfcSdrh if( pList==0 ){ 97617435752Sdrh pList = sqlite3DbMallocZero(db, sizeof(ExprList) ); 977a76b5dfcSdrh if( pList==0 ){ 978d5d56523Sdanielk1977 goto no_mem; 979a76b5dfcSdrh } 9804efc4754Sdrh assert( pList->nAlloc==0 ); 981a76b5dfcSdrh } 9824305d103Sdrh if( pList->nAlloc<=pList->nExpr ){ 983d5d56523Sdanielk1977 struct ExprList_item *a; 984d5d56523Sdanielk1977 int n = pList->nAlloc*2 + 4; 98526783a58Sdanielk1977 a = sqlite3DbRealloc(db, pList->a, n*sizeof(pList->a[0])); 986d5d56523Sdanielk1977 if( a==0 ){ 987d5d56523Sdanielk1977 goto no_mem; 988a76b5dfcSdrh } 989d5d56523Sdanielk1977 pList->a = a; 9906a1e071fSdrh pList->nAlloc = sqlite3DbMallocSize(db, a)/sizeof(a[0]); 991a76b5dfcSdrh } 9924efc4754Sdrh assert( pList->a!=0 ); 993b7916a78Sdrh if( 1 ){ 9944efc4754Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr++]; 9954efc4754Sdrh memset(pItem, 0, sizeof(*pItem)); 996e94ddc9eSdanielk1977 pItem->pExpr = pExpr; 997a76b5dfcSdrh } 998a76b5dfcSdrh return pList; 999d5d56523Sdanielk1977 1000d5d56523Sdanielk1977 no_mem: 1001d5d56523Sdanielk1977 /* Avoid leaking memory if malloc has failed. */ 1002633e6d57Sdrh sqlite3ExprDelete(db, pExpr); 1003633e6d57Sdrh sqlite3ExprListDelete(db, pList); 1004d5d56523Sdanielk1977 return 0; 1005a76b5dfcSdrh } 1006a76b5dfcSdrh 1007a76b5dfcSdrh /* 1008b7916a78Sdrh ** Set the ExprList.a[].zName element of the most recently added item 1009b7916a78Sdrh ** on the expression list. 1010b7916a78Sdrh ** 1011b7916a78Sdrh ** pList might be NULL following an OOM error. But pName should never be 1012b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1013b7916a78Sdrh ** is set. 1014b7916a78Sdrh */ 1015b7916a78Sdrh void sqlite3ExprListSetName( 1016b7916a78Sdrh Parse *pParse, /* Parsing context */ 1017b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1018b7916a78Sdrh Token *pName, /* Name to be added */ 1019b7916a78Sdrh int dequote /* True to cause the name to be dequoted */ 1020b7916a78Sdrh ){ 1021b7916a78Sdrh assert( pList!=0 || pParse->db->mallocFailed!=0 ); 1022b7916a78Sdrh if( pList ){ 1023b7916a78Sdrh struct ExprList_item *pItem; 1024b7916a78Sdrh assert( pList->nExpr>0 ); 1025b7916a78Sdrh pItem = &pList->a[pList->nExpr-1]; 1026b7916a78Sdrh assert( pItem->zName==0 ); 1027b7916a78Sdrh pItem->zName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n); 1028b7916a78Sdrh if( dequote && pItem->zName ) sqlite3Dequote(pItem->zName); 1029b7916a78Sdrh } 1030b7916a78Sdrh } 1031b7916a78Sdrh 1032b7916a78Sdrh /* 1033b7916a78Sdrh ** Set the ExprList.a[].zSpan element of the most recently added item 1034b7916a78Sdrh ** on the expression list. 1035b7916a78Sdrh ** 1036b7916a78Sdrh ** pList might be NULL following an OOM error. But pSpan should never be 1037b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1038b7916a78Sdrh ** is set. 1039b7916a78Sdrh */ 1040b7916a78Sdrh void sqlite3ExprListSetSpan( 1041b7916a78Sdrh Parse *pParse, /* Parsing context */ 1042b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1043b7916a78Sdrh ExprSpan *pSpan /* The span to be added */ 1044b7916a78Sdrh ){ 1045b7916a78Sdrh sqlite3 *db = pParse->db; 1046b7916a78Sdrh assert( pList!=0 || db->mallocFailed!=0 ); 1047b7916a78Sdrh if( pList ){ 1048b7916a78Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr-1]; 1049b7916a78Sdrh assert( pList->nExpr>0 ); 1050b7916a78Sdrh assert( db->mallocFailed || pItem->pExpr==pSpan->pExpr ); 1051b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1052b7916a78Sdrh pItem->zSpan = sqlite3DbStrNDup(db, (char*)pSpan->zStart, 1053cf697396Sshane (int)(pSpan->zEnd - pSpan->zStart)); 1054b7916a78Sdrh } 1055b7916a78Sdrh } 1056b7916a78Sdrh 1057b7916a78Sdrh /* 10587a15a4beSdanielk1977 ** If the expression list pEList contains more than iLimit elements, 10597a15a4beSdanielk1977 ** leave an error message in pParse. 10607a15a4beSdanielk1977 */ 10617a15a4beSdanielk1977 void sqlite3ExprListCheckLength( 10627a15a4beSdanielk1977 Parse *pParse, 10637a15a4beSdanielk1977 ExprList *pEList, 10647a15a4beSdanielk1977 const char *zObject 10657a15a4beSdanielk1977 ){ 1066b1a6c3c1Sdrh int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN]; 1067c5499befSdrh testcase( pEList && pEList->nExpr==mx ); 1068c5499befSdrh testcase( pEList && pEList->nExpr==mx+1 ); 1069b1a6c3c1Sdrh if( pEList && pEList->nExpr>mx ){ 10707a15a4beSdanielk1977 sqlite3ErrorMsg(pParse, "too many columns in %s", zObject); 10717a15a4beSdanielk1977 } 10727a15a4beSdanielk1977 } 10737a15a4beSdanielk1977 10747a15a4beSdanielk1977 /* 1075a76b5dfcSdrh ** Delete an entire expression list. 1076a76b5dfcSdrh */ 1077633e6d57Sdrh void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){ 1078a76b5dfcSdrh int i; 1079be5c89acSdrh struct ExprList_item *pItem; 1080a76b5dfcSdrh if( pList==0 ) return; 10811bdd9b57Sdrh assert( pList->a!=0 || (pList->nExpr==0 && pList->nAlloc==0) ); 10821bdd9b57Sdrh assert( pList->nExpr<=pList->nAlloc ); 1083be5c89acSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 1084633e6d57Sdrh sqlite3ExprDelete(db, pItem->pExpr); 1085633e6d57Sdrh sqlite3DbFree(db, pItem->zName); 1086b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1087a76b5dfcSdrh } 1088633e6d57Sdrh sqlite3DbFree(db, pList->a); 1089633e6d57Sdrh sqlite3DbFree(db, pList); 1090a76b5dfcSdrh } 1091a76b5dfcSdrh 1092a76b5dfcSdrh /* 10937d10d5a6Sdrh ** These routines are Walker callbacks. Walker.u.pi is a pointer 10947d10d5a6Sdrh ** to an integer. These routines are checking an expression to see 10957d10d5a6Sdrh ** if it is a constant. Set *Walker.u.pi to 0 if the expression is 10967d10d5a6Sdrh ** not constant. 109773b211abSdrh ** 10987d10d5a6Sdrh ** These callback routines are used to implement the following: 1099626a879aSdrh ** 11007d10d5a6Sdrh ** sqlite3ExprIsConstant() 11017d10d5a6Sdrh ** sqlite3ExprIsConstantNotJoin() 11027d10d5a6Sdrh ** sqlite3ExprIsConstantOrFunction() 110387abf5c0Sdrh ** 1104626a879aSdrh */ 11057d10d5a6Sdrh static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){ 1106626a879aSdrh 11077d10d5a6Sdrh /* If pWalker->u.i is 3 then any term of the expression that comes from 11080a168377Sdrh ** the ON or USING clauses of a join disqualifies the expression 11090a168377Sdrh ** from being considered constant. */ 11107d10d5a6Sdrh if( pWalker->u.i==3 && ExprHasAnyProperty(pExpr, EP_FromJoin) ){ 11117d10d5a6Sdrh pWalker->u.i = 0; 11127d10d5a6Sdrh return WRC_Abort; 11130a168377Sdrh } 11140a168377Sdrh 1115626a879aSdrh switch( pExpr->op ){ 1116eb55bd2fSdrh /* Consider functions to be constant if all their arguments are constant 11177d10d5a6Sdrh ** and pWalker->u.i==2 */ 1118eb55bd2fSdrh case TK_FUNCTION: 11197d10d5a6Sdrh if( pWalker->u.i==2 ) return 0; 1120eb55bd2fSdrh /* Fall through */ 1121626a879aSdrh case TK_ID: 1122626a879aSdrh case TK_COLUMN: 1123626a879aSdrh case TK_AGG_FUNCTION: 112413449892Sdrh case TK_AGG_COLUMN: 1125c5499befSdrh testcase( pExpr->op==TK_ID ); 1126c5499befSdrh testcase( pExpr->op==TK_COLUMN ); 1127c5499befSdrh testcase( pExpr->op==TK_AGG_FUNCTION ); 1128c5499befSdrh testcase( pExpr->op==TK_AGG_COLUMN ); 11297d10d5a6Sdrh pWalker->u.i = 0; 11307d10d5a6Sdrh return WRC_Abort; 1131626a879aSdrh default: 1132b74b1017Sdrh testcase( pExpr->op==TK_SELECT ); /* selectNodeIsConstant will disallow */ 1133b74b1017Sdrh testcase( pExpr->op==TK_EXISTS ); /* selectNodeIsConstant will disallow */ 11347d10d5a6Sdrh return WRC_Continue; 1135626a879aSdrh } 1136626a879aSdrh } 113762c14b34Sdanielk1977 static int selectNodeIsConstant(Walker *pWalker, Select *NotUsed){ 113862c14b34Sdanielk1977 UNUSED_PARAMETER(NotUsed); 11397d10d5a6Sdrh pWalker->u.i = 0; 11407d10d5a6Sdrh return WRC_Abort; 11417d10d5a6Sdrh } 11427d10d5a6Sdrh static int exprIsConst(Expr *p, int initFlag){ 11437d10d5a6Sdrh Walker w; 11447d10d5a6Sdrh w.u.i = initFlag; 11457d10d5a6Sdrh w.xExprCallback = exprNodeIsConstant; 11467d10d5a6Sdrh w.xSelectCallback = selectNodeIsConstant; 11477d10d5a6Sdrh sqlite3WalkExpr(&w, p); 11487d10d5a6Sdrh return w.u.i; 11497d10d5a6Sdrh } 1150626a879aSdrh 1151626a879aSdrh /* 1152fef5208cSdrh ** Walk an expression tree. Return 1 if the expression is constant 1153eb55bd2fSdrh ** and 0 if it involves variables or function calls. 11542398937bSdrh ** 11552398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 11562398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 11572398937bSdrh ** a constant. 1158fef5208cSdrh */ 11594adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){ 11607d10d5a6Sdrh return exprIsConst(p, 1); 1161fef5208cSdrh } 1162fef5208cSdrh 1163fef5208cSdrh /* 1164eb55bd2fSdrh ** Walk an expression tree. Return 1 if the expression is constant 11650a168377Sdrh ** that does no originate from the ON or USING clauses of a join. 11660a168377Sdrh ** Return 0 if it involves variables or function calls or terms from 11670a168377Sdrh ** an ON or USING clause. 11680a168377Sdrh */ 11690a168377Sdrh int sqlite3ExprIsConstantNotJoin(Expr *p){ 11707d10d5a6Sdrh return exprIsConst(p, 3); 11710a168377Sdrh } 11720a168377Sdrh 11730a168377Sdrh /* 11740a168377Sdrh ** Walk an expression tree. Return 1 if the expression is constant 1175eb55bd2fSdrh ** or a function call with constant arguments. Return and 0 if there 1176eb55bd2fSdrh ** are any variables. 1177eb55bd2fSdrh ** 1178eb55bd2fSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 1179eb55bd2fSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 1180eb55bd2fSdrh ** a constant. 1181eb55bd2fSdrh */ 1182eb55bd2fSdrh int sqlite3ExprIsConstantOrFunction(Expr *p){ 11837d10d5a6Sdrh return exprIsConst(p, 2); 1184eb55bd2fSdrh } 1185eb55bd2fSdrh 1186eb55bd2fSdrh /* 118773b211abSdrh ** If the expression p codes a constant integer that is small enough 1188202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer 1189202b2df7Sdrh ** in *pValue. If the expression is not an integer or if it is too big 1190202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged. 1191e4de1febSdrh */ 11924adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){ 119392b01d53Sdrh int rc = 0; 119492b01d53Sdrh if( p->flags & EP_IntValue ){ 119533e619fcSdrh *pValue = p->u.iValue; 1196e4de1febSdrh return 1; 1197e4de1febSdrh } 119892b01d53Sdrh switch( p->op ){ 119992b01d53Sdrh case TK_INTEGER: { 120033e619fcSdrh rc = sqlite3GetInt32(p->u.zToken, pValue); 120133e619fcSdrh assert( rc==0 ); 1202202b2df7Sdrh break; 1203202b2df7Sdrh } 12044b59ab5eSdrh case TK_UPLUS: { 120592b01d53Sdrh rc = sqlite3ExprIsInteger(p->pLeft, pValue); 1206f6e369a1Sdrh break; 12074b59ab5eSdrh } 1208e4de1febSdrh case TK_UMINUS: { 1209e4de1febSdrh int v; 12104adee20fSdanielk1977 if( sqlite3ExprIsInteger(p->pLeft, &v) ){ 1211e4de1febSdrh *pValue = -v; 121292b01d53Sdrh rc = 1; 1213e4de1febSdrh } 1214e4de1febSdrh break; 1215e4de1febSdrh } 1216e4de1febSdrh default: break; 1217e4de1febSdrh } 121892b01d53Sdrh if( rc ){ 121933e619fcSdrh assert( ExprHasAnyProperty(p, EP_Reduced|EP_TokenOnly) 122033e619fcSdrh || (p->flags2 & EP2_MallocedToken)==0 ); 122192b01d53Sdrh p->op = TK_INTEGER; 122292b01d53Sdrh p->flags |= EP_IntValue; 122333e619fcSdrh p->u.iValue = *pValue; 122492b01d53Sdrh } 122592b01d53Sdrh return rc; 1226e4de1febSdrh } 1227e4de1febSdrh 1228e4de1febSdrh /* 1229039fc32eSdrh ** Return FALSE if there is no chance that the expression can be NULL. 1230039fc32eSdrh ** 1231039fc32eSdrh ** If the expression might be NULL or if the expression is too complex 1232039fc32eSdrh ** to tell return TRUE. 1233039fc32eSdrh ** 1234039fc32eSdrh ** This routine is used as an optimization, to skip OP_IsNull opcodes 1235039fc32eSdrh ** when we know that a value cannot be NULL. Hence, a false positive 1236039fc32eSdrh ** (returning TRUE when in fact the expression can never be NULL) might 1237039fc32eSdrh ** be a small performance hit but is otherwise harmless. On the other 1238039fc32eSdrh ** hand, a false negative (returning FALSE when the result could be NULL) 1239039fc32eSdrh ** will likely result in an incorrect answer. So when in doubt, return 1240039fc32eSdrh ** TRUE. 1241039fc32eSdrh */ 1242039fc32eSdrh int sqlite3ExprCanBeNull(const Expr *p){ 1243039fc32eSdrh u8 op; 1244cd7f457eSdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } 1245039fc32eSdrh op = p->op; 1246039fc32eSdrh if( op==TK_REGISTER ) op = p->op2; 1247039fc32eSdrh switch( op ){ 1248039fc32eSdrh case TK_INTEGER: 1249039fc32eSdrh case TK_STRING: 1250039fc32eSdrh case TK_FLOAT: 1251039fc32eSdrh case TK_BLOB: 1252039fc32eSdrh return 0; 1253039fc32eSdrh default: 1254039fc32eSdrh return 1; 1255039fc32eSdrh } 1256039fc32eSdrh } 1257039fc32eSdrh 1258039fc32eSdrh /* 12592f2855b6Sdrh ** Generate an OP_IsNull instruction that tests register iReg and jumps 12602f2855b6Sdrh ** to location iDest if the value in iReg is NULL. The value in iReg 12612f2855b6Sdrh ** was computed by pExpr. If we can look at pExpr at compile-time and 12622f2855b6Sdrh ** determine that it can never generate a NULL, then the OP_IsNull operation 12632f2855b6Sdrh ** can be omitted. 12642f2855b6Sdrh */ 12652f2855b6Sdrh void sqlite3ExprCodeIsNullJump( 12662f2855b6Sdrh Vdbe *v, /* The VDBE under construction */ 12672f2855b6Sdrh const Expr *pExpr, /* Only generate OP_IsNull if this expr can be NULL */ 12682f2855b6Sdrh int iReg, /* Test the value in this register for NULL */ 12692f2855b6Sdrh int iDest /* Jump here if the value is null */ 12702f2855b6Sdrh ){ 12712f2855b6Sdrh if( sqlite3ExprCanBeNull(pExpr) ){ 12722f2855b6Sdrh sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iDest); 12732f2855b6Sdrh } 12742f2855b6Sdrh } 12752f2855b6Sdrh 12762f2855b6Sdrh /* 1277039fc32eSdrh ** Return TRUE if the given expression is a constant which would be 1278039fc32eSdrh ** unchanged by OP_Affinity with the affinity given in the second 1279039fc32eSdrh ** argument. 1280039fc32eSdrh ** 1281039fc32eSdrh ** This routine is used to determine if the OP_Affinity operation 1282039fc32eSdrh ** can be omitted. When in doubt return FALSE. A false negative 1283039fc32eSdrh ** is harmless. A false positive, however, can result in the wrong 1284039fc32eSdrh ** answer. 1285039fc32eSdrh */ 1286039fc32eSdrh int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){ 1287039fc32eSdrh u8 op; 1288039fc32eSdrh if( aff==SQLITE_AFF_NONE ) return 1; 1289cd7f457eSdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } 1290039fc32eSdrh op = p->op; 1291039fc32eSdrh if( op==TK_REGISTER ) op = p->op2; 1292039fc32eSdrh switch( op ){ 1293039fc32eSdrh case TK_INTEGER: { 1294039fc32eSdrh return aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC; 1295039fc32eSdrh } 1296039fc32eSdrh case TK_FLOAT: { 1297039fc32eSdrh return aff==SQLITE_AFF_REAL || aff==SQLITE_AFF_NUMERIC; 1298039fc32eSdrh } 1299039fc32eSdrh case TK_STRING: { 1300039fc32eSdrh return aff==SQLITE_AFF_TEXT; 1301039fc32eSdrh } 1302039fc32eSdrh case TK_BLOB: { 1303039fc32eSdrh return 1; 1304039fc32eSdrh } 13052f2855b6Sdrh case TK_COLUMN: { 130688376ca7Sdrh assert( p->iTable>=0 ); /* p cannot be part of a CHECK constraint */ 130788376ca7Sdrh return p->iColumn<0 13082f2855b6Sdrh && (aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC); 13092f2855b6Sdrh } 1310039fc32eSdrh default: { 1311039fc32eSdrh return 0; 1312039fc32eSdrh } 1313039fc32eSdrh } 1314039fc32eSdrh } 1315039fc32eSdrh 1316039fc32eSdrh /* 1317c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name. 1318c4a3c779Sdrh */ 13194adee20fSdanielk1977 int sqlite3IsRowid(const char *z){ 13204adee20fSdanielk1977 if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1; 13214adee20fSdanielk1977 if( sqlite3StrICmp(z, "ROWID")==0 ) return 1; 13224adee20fSdanielk1977 if( sqlite3StrICmp(z, "OID")==0 ) return 1; 1323c4a3c779Sdrh return 0; 1324c4a3c779Sdrh } 1325c4a3c779Sdrh 13269a96b668Sdanielk1977 /* 1327b74b1017Sdrh ** Return true if we are able to the IN operator optimization on a 1328b74b1017Sdrh ** query of the form 1329b287f4b6Sdrh ** 1330b74b1017Sdrh ** x IN (SELECT ...) 1331b287f4b6Sdrh ** 1332b74b1017Sdrh ** Where the SELECT... clause is as specified by the parameter to this 1333b74b1017Sdrh ** routine. 1334b74b1017Sdrh ** 1335b74b1017Sdrh ** The Select object passed in has already been preprocessed and no 1336b74b1017Sdrh ** errors have been found. 1337b287f4b6Sdrh */ 1338b287f4b6Sdrh #ifndef SQLITE_OMIT_SUBQUERY 1339b287f4b6Sdrh static int isCandidateForInOpt(Select *p){ 1340b287f4b6Sdrh SrcList *pSrc; 1341b287f4b6Sdrh ExprList *pEList; 1342b287f4b6Sdrh Table *pTab; 1343b287f4b6Sdrh if( p==0 ) return 0; /* right-hand side of IN is SELECT */ 1344b287f4b6Sdrh if( p->pPrior ) return 0; /* Not a compound SELECT */ 13457d10d5a6Sdrh if( p->selFlags & (SF_Distinct|SF_Aggregate) ){ 1346b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); 1347b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); 13487d10d5a6Sdrh return 0; /* No DISTINCT keyword and no aggregate functions */ 13497d10d5a6Sdrh } 1350b74b1017Sdrh assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */ 1351b287f4b6Sdrh if( p->pLimit ) return 0; /* Has no LIMIT clause */ 1352b74b1017Sdrh assert( p->pOffset==0 ); /* No LIMIT means no OFFSET */ 1353b287f4b6Sdrh if( p->pWhere ) return 0; /* Has no WHERE clause */ 1354b287f4b6Sdrh pSrc = p->pSrc; 1355d1fa7bcaSdrh assert( pSrc!=0 ); 1356d1fa7bcaSdrh if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */ 1357b74b1017Sdrh if( pSrc->a[0].pSelect ) return 0; /* FROM is not a subquery or view */ 1358b287f4b6Sdrh pTab = pSrc->a[0].pTab; 1359b74b1017Sdrh if( NEVER(pTab==0) ) return 0; 1360b74b1017Sdrh assert( pTab->pSelect==0 ); /* FROM clause is not a view */ 1361b287f4b6Sdrh if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */ 1362b287f4b6Sdrh pEList = p->pEList; 1363b287f4b6Sdrh if( pEList->nExpr!=1 ) return 0; /* One column in the result set */ 1364b287f4b6Sdrh if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */ 1365b287f4b6Sdrh return 1; 1366b287f4b6Sdrh } 1367b287f4b6Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1368b287f4b6Sdrh 1369b287f4b6Sdrh /* 13709a96b668Sdanielk1977 ** This function is used by the implementation of the IN (...) operator. 13719a96b668Sdanielk1977 ** It's job is to find or create a b-tree structure that may be used 13729a96b668Sdanielk1977 ** either to test for membership of the (...) set or to iterate through 137385b623f2Sdrh ** its members, skipping duplicates. 13749a96b668Sdanielk1977 ** 1375b74b1017Sdrh ** The index of the cursor opened on the b-tree (database table, database index 13769a96b668Sdanielk1977 ** or ephermal table) is stored in pX->iTable before this function returns. 1377b74b1017Sdrh ** The returned value of this function indicates the b-tree type, as follows: 13789a96b668Sdanielk1977 ** 13799a96b668Sdanielk1977 ** IN_INDEX_ROWID - The cursor was opened on a database table. 13802d401ab8Sdrh ** IN_INDEX_INDEX - The cursor was opened on a database index. 13819a96b668Sdanielk1977 ** IN_INDEX_EPH - The cursor was opened on a specially created and 13829a96b668Sdanielk1977 ** populated epheremal table. 13839a96b668Sdanielk1977 ** 1384b74b1017Sdrh ** An existing b-tree may only be used if the SELECT is of the simple 13859a96b668Sdanielk1977 ** form: 13869a96b668Sdanielk1977 ** 13879a96b668Sdanielk1977 ** SELECT <column> FROM <table> 13889a96b668Sdanielk1977 ** 1389b74b1017Sdrh ** If the prNotFound parameter is 0, then the b-tree will be used to iterate 13909a96b668Sdanielk1977 ** through the set members, skipping any duplicates. In this case an 13919a96b668Sdanielk1977 ** epheremal table must be used unless the selected <column> is guaranteed 13929a96b668Sdanielk1977 ** to be unique - either because it is an INTEGER PRIMARY KEY or it 1393b74b1017Sdrh ** has a UNIQUE constraint or UNIQUE index. 13940cdc022eSdanielk1977 ** 1395b74b1017Sdrh ** If the prNotFound parameter is not 0, then the b-tree will be used 13960cdc022eSdanielk1977 ** for fast set membership tests. In this case an epheremal table must 13970cdc022eSdanielk1977 ** be used unless <column> is an INTEGER PRIMARY KEY or an index can 13980cdc022eSdanielk1977 ** be found with <column> as its left-most column. 13990cdc022eSdanielk1977 ** 1400b74b1017Sdrh ** When the b-tree is being used for membership tests, the calling function 14010cdc022eSdanielk1977 ** needs to know whether or not the structure contains an SQL NULL 14020cdc022eSdanielk1977 ** value in order to correctly evaluate expressions like "X IN (Y, Z)". 1403e3365e6cSdrh ** If there is any chance that the (...) might contain a NULL value at 14040cdc022eSdanielk1977 ** runtime, then a register is allocated and the register number written 1405e3365e6cSdrh ** to *prNotFound. If there is no chance that the (...) contains a 14060cdc022eSdanielk1977 ** NULL value, then *prNotFound is left unchanged. 14070cdc022eSdanielk1977 ** 14080cdc022eSdanielk1977 ** If a register is allocated and its location stored in *prNotFound, then 1409e3365e6cSdrh ** its initial value is NULL. If the (...) does not remain constant 1410e3365e6cSdrh ** for the duration of the query (i.e. the SELECT within the (...) 1411b74b1017Sdrh ** is a correlated subquery) then the value of the allocated register is 1412e3365e6cSdrh ** reset to NULL each time the subquery is rerun. This allows the 1413b74b1017Sdrh ** caller to use vdbe code equivalent to the following: 14140cdc022eSdanielk1977 ** 14150cdc022eSdanielk1977 ** if( register==NULL ){ 14160cdc022eSdanielk1977 ** has_null = <test if data structure contains null> 14170cdc022eSdanielk1977 ** register = 1 14180cdc022eSdanielk1977 ** } 14190cdc022eSdanielk1977 ** 14200cdc022eSdanielk1977 ** in order to avoid running the <test if data structure contains null> 14210cdc022eSdanielk1977 ** test more often than is necessary. 14229a96b668Sdanielk1977 */ 1423284f4acaSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY 14240cdc022eSdanielk1977 int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){ 1425b74b1017Sdrh Select *p; /* SELECT to the right of IN operator */ 1426b74b1017Sdrh int eType = 0; /* Type of RHS table. IN_INDEX_* */ 1427b74b1017Sdrh int iTab = pParse->nTab++; /* Cursor of the RHS table */ 1428b74b1017Sdrh int mustBeUnique = (prNotFound==0); /* True if RHS must be unique */ 14299a96b668Sdanielk1977 14301450bc6eSdrh assert( pX->op==TK_IN ); 14311450bc6eSdrh 1432b74b1017Sdrh /* Check to see if an existing table or index can be used to 1433b74b1017Sdrh ** satisfy the query. This is preferable to generating a new 1434b74b1017Sdrh ** ephemeral table. 14359a96b668Sdanielk1977 */ 14366ab3a2ecSdanielk1977 p = (ExprHasProperty(pX, EP_xIsSelect) ? pX->x.pSelect : 0); 1437fd773cf9Sdrh if( ALWAYS(pParse->nErr==0) && isCandidateForInOpt(p) ){ 1438e1fb65a0Sdanielk1977 sqlite3 *db = pParse->db; /* Database connection */ 1439e1fb65a0Sdanielk1977 Expr *pExpr = p->pEList->a[0].pExpr; /* Expression <column> */ 1440e1fb65a0Sdanielk1977 int iCol = pExpr->iColumn; /* Index of column <column> */ 1441e1fb65a0Sdanielk1977 Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ 1442e1fb65a0Sdanielk1977 Table *pTab = p->pSrc->a[0].pTab; /* Table <table>. */ 1443e1fb65a0Sdanielk1977 int iDb; /* Database idx for pTab */ 1444e1fb65a0Sdanielk1977 1445e1fb65a0Sdanielk1977 /* Code an OP_VerifyCookie and OP_TableLock for <table>. */ 1446e1fb65a0Sdanielk1977 iDb = sqlite3SchemaToIndex(db, pTab->pSchema); 1447e1fb65a0Sdanielk1977 sqlite3CodeVerifySchema(pParse, iDb); 1448e1fb65a0Sdanielk1977 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); 14499a96b668Sdanielk1977 14509a96b668Sdanielk1977 /* This function is only called from two places. In both cases the vdbe 14519a96b668Sdanielk1977 ** has already been allocated. So assume sqlite3GetVdbe() is always 14529a96b668Sdanielk1977 ** successful here. 14539a96b668Sdanielk1977 */ 14549a96b668Sdanielk1977 assert(v); 14559a96b668Sdanielk1977 if( iCol<0 ){ 14560a07c107Sdrh int iMem = ++pParse->nMem; 14579a96b668Sdanielk1977 int iAddr; 14589a96b668Sdanielk1977 1459892d3179Sdrh iAddr = sqlite3VdbeAddOp1(v, OP_If, iMem); 14604c583128Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, iMem); 14619a96b668Sdanielk1977 14629a96b668Sdanielk1977 sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); 14639a96b668Sdanielk1977 eType = IN_INDEX_ROWID; 14649a96b668Sdanielk1977 14659a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr); 14669a96b668Sdanielk1977 }else{ 1467e1fb65a0Sdanielk1977 Index *pIdx; /* Iterator variable */ 1468e1fb65a0Sdanielk1977 14699a96b668Sdanielk1977 /* The collation sequence used by the comparison. If an index is to 14709a96b668Sdanielk1977 ** be used in place of a temp-table, it must be ordered according 1471e1fb65a0Sdanielk1977 ** to this collation sequence. */ 14729a96b668Sdanielk1977 CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr); 14739a96b668Sdanielk1977 14749a96b668Sdanielk1977 /* Check that the affinity that will be used to perform the 14759a96b668Sdanielk1977 ** comparison is the same as the affinity of the column. If 14769a96b668Sdanielk1977 ** it is not, it is not possible to use any index. 14779a96b668Sdanielk1977 */ 14789a96b668Sdanielk1977 char aff = comparisonAffinity(pX); 14799a96b668Sdanielk1977 int affinity_ok = (pTab->aCol[iCol].affinity==aff||aff==SQLITE_AFF_NONE); 14809a96b668Sdanielk1977 14819a96b668Sdanielk1977 for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){ 14829a96b668Sdanielk1977 if( (pIdx->aiColumn[0]==iCol) 1483b74b1017Sdrh && sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], 0)==pReq 14849a96b668Sdanielk1977 && (!mustBeUnique || (pIdx->nColumn==1 && pIdx->onError!=OE_None)) 14859a96b668Sdanielk1977 ){ 14860a07c107Sdrh int iMem = ++pParse->nMem; 14879a96b668Sdanielk1977 int iAddr; 14889a96b668Sdanielk1977 char *pKey; 14899a96b668Sdanielk1977 14909a96b668Sdanielk1977 pKey = (char *)sqlite3IndexKeyinfo(pParse, pIdx); 1491892d3179Sdrh iAddr = sqlite3VdbeAddOp1(v, OP_If, iMem); 14924c583128Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, iMem); 14939a96b668Sdanielk1977 1494207872a4Sdanielk1977 sqlite3VdbeAddOp4(v, OP_OpenRead, iTab, pIdx->tnum, iDb, 149566a5167bSdrh pKey,P4_KEYINFO_HANDOFF); 1496207872a4Sdanielk1977 VdbeComment((v, "%s", pIdx->zName)); 14979a96b668Sdanielk1977 eType = IN_INDEX_INDEX; 14989a96b668Sdanielk1977 14999a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr); 15000cdc022eSdanielk1977 if( prNotFound && !pTab->aCol[iCol].notNull ){ 15010cdc022eSdanielk1977 *prNotFound = ++pParse->nMem; 15020cdc022eSdanielk1977 } 15039a96b668Sdanielk1977 } 15049a96b668Sdanielk1977 } 15059a96b668Sdanielk1977 } 15069a96b668Sdanielk1977 } 15079a96b668Sdanielk1977 15089a96b668Sdanielk1977 if( eType==0 ){ 15091450bc6eSdrh /* Could not found an existing table or index to use as the RHS b-tree. 1510b74b1017Sdrh ** We will have to generate an ephemeral table to do the job. 1511b74b1017Sdrh */ 15120cdc022eSdanielk1977 int rMayHaveNull = 0; 151341a05b7bSdanielk1977 eType = IN_INDEX_EPH; 15140cdc022eSdanielk1977 if( prNotFound ){ 15150cdc022eSdanielk1977 *prNotFound = rMayHaveNull = ++pParse->nMem; 15166ab3a2ecSdanielk1977 }else if( pX->pLeft->iColumn<0 && !ExprHasAnyProperty(pX, EP_xIsSelect) ){ 151741a05b7bSdanielk1977 eType = IN_INDEX_ROWID; 15180cdc022eSdanielk1977 } 151941a05b7bSdanielk1977 sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID); 15209a96b668Sdanielk1977 }else{ 15219a96b668Sdanielk1977 pX->iTable = iTab; 15229a96b668Sdanielk1977 } 15239a96b668Sdanielk1977 return eType; 15249a96b668Sdanielk1977 } 1525284f4acaSdanielk1977 #endif 1526626a879aSdrh 1527626a879aSdrh /* 15289cbe6352Sdrh ** Generate code for scalar subqueries used as an expression 15299cbe6352Sdrh ** and IN operators. Examples: 1530626a879aSdrh ** 15319cbe6352Sdrh ** (SELECT a FROM b) -- subquery 15329cbe6352Sdrh ** EXISTS (SELECT a FROM b) -- EXISTS subquery 15339cbe6352Sdrh ** x IN (4,5,11) -- IN operator with list on right-hand side 15349cbe6352Sdrh ** x IN (SELECT a FROM b) -- IN operator with subquery on the right 1535fef5208cSdrh ** 15369cbe6352Sdrh ** The pExpr parameter describes the expression that contains the IN 15379cbe6352Sdrh ** operator or subquery. 153841a05b7bSdanielk1977 ** 153941a05b7bSdanielk1977 ** If parameter isRowid is non-zero, then expression pExpr is guaranteed 154041a05b7bSdanielk1977 ** to be of the form "<rowid> IN (?, ?, ?)", where <rowid> is a reference 154141a05b7bSdanielk1977 ** to some integer key column of a table B-Tree. In this case, use an 154241a05b7bSdanielk1977 ** intkey B-Tree to store the set of IN(...) values instead of the usual 154341a05b7bSdanielk1977 ** (slower) variable length keys B-Tree. 1544fd773cf9Sdrh ** 1545fd773cf9Sdrh ** If rMayHaveNull is non-zero, that means that the operation is an IN 1546fd773cf9Sdrh ** (not a SELECT or EXISTS) and that the RHS might contains NULLs. 1547fd773cf9Sdrh ** Furthermore, the IN is in a WHERE clause and that we really want 1548fd773cf9Sdrh ** to iterate over the RHS of the IN operator in order to quickly locate 1549fd773cf9Sdrh ** all corresponding LHS elements. All this routine does is initialize 1550fd773cf9Sdrh ** the register given by rMayHaveNull to NULL. Calling routines will take 1551fd773cf9Sdrh ** care of changing this register value to non-NULL if the RHS is NULL-free. 1552fd773cf9Sdrh ** 1553fd773cf9Sdrh ** If rMayHaveNull is zero, that means that the subquery is being used 1554fd773cf9Sdrh ** for membership testing only. There is no need to initialize any 1555fd773cf9Sdrh ** registers to indicate the presense or absence of NULLs on the RHS. 15561450bc6eSdrh ** 15571450bc6eSdrh ** For a SELECT or EXISTS operator, return the register that holds the 15581450bc6eSdrh ** result. For IN operators or if an error occurs, the return value is 0. 1559cce7d176Sdrh */ 156051522cd3Sdrh #ifndef SQLITE_OMIT_SUBQUERY 15611450bc6eSdrh int sqlite3CodeSubselect( 1562fd773cf9Sdrh Parse *pParse, /* Parsing context */ 1563fd773cf9Sdrh Expr *pExpr, /* The IN, SELECT, or EXISTS operator */ 1564fd773cf9Sdrh int rMayHaveNull, /* Register that records whether NULLs exist in RHS */ 1565fd773cf9Sdrh int isRowid /* If true, LHS of IN operator is a rowid */ 156641a05b7bSdanielk1977 ){ 156757dbd7b3Sdrh int testAddr = 0; /* One-time test address */ 15681450bc6eSdrh int rReg = 0; /* Register storing resulting */ 1569b3bce662Sdanielk1977 Vdbe *v = sqlite3GetVdbe(pParse); 15701450bc6eSdrh if( NEVER(v==0) ) return 0; 1571ceea3321Sdrh sqlite3ExprCachePush(pParse); 1572fc976065Sdanielk1977 157357dbd7b3Sdrh /* This code must be run in its entirety every time it is encountered 157457dbd7b3Sdrh ** if any of the following is true: 157557dbd7b3Sdrh ** 157657dbd7b3Sdrh ** * The right-hand side is a correlated subquery 157757dbd7b3Sdrh ** * The right-hand side is an expression list containing variables 157857dbd7b3Sdrh ** * We are inside a trigger 157957dbd7b3Sdrh ** 158057dbd7b3Sdrh ** If all of the above are false, then we can run this code just once 158157dbd7b3Sdrh ** save the results, and reuse the same result on subsequent invocations. 1582b3bce662Sdanielk1977 */ 1583165921a7Sdan if( !ExprHasAnyProperty(pExpr, EP_VarSelect) && !pParse->pTriggerTab ){ 15840a07c107Sdrh int mem = ++pParse->nMem; 1585892d3179Sdrh sqlite3VdbeAddOp1(v, OP_If, mem); 1586892d3179Sdrh testAddr = sqlite3VdbeAddOp2(v, OP_Integer, 1, mem); 158717435752Sdrh assert( testAddr>0 || pParse->db->mallocFailed ); 1588b3bce662Sdanielk1977 } 1589b3bce662Sdanielk1977 1590cce7d176Sdrh switch( pExpr->op ){ 1591fef5208cSdrh case TK_IN: { 1592e014a838Sdanielk1977 char affinity; 1593d3d39e93Sdrh KeyInfo keyInfo; 1594b9bb7c18Sdrh int addr; /* Address of OP_OpenEphemeral instruction */ 159541a05b7bSdanielk1977 Expr *pLeft = pExpr->pLeft; 1596d3d39e93Sdrh 15970cdc022eSdanielk1977 if( rMayHaveNull ){ 15980cdc022eSdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, rMayHaveNull); 15990cdc022eSdanielk1977 } 16000cdc022eSdanielk1977 160141a05b7bSdanielk1977 affinity = sqlite3ExprAffinity(pLeft); 1602e014a838Sdanielk1977 1603e014a838Sdanielk1977 /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)' 16048cff69dfSdrh ** expression it is handled the same way. An ephemeral table is 1605e014a838Sdanielk1977 ** filled with single-field index keys representing the results 1606e014a838Sdanielk1977 ** from the SELECT or the <exprlist>. 1607fef5208cSdrh ** 1608e014a838Sdanielk1977 ** If the 'x' expression is a column value, or the SELECT... 1609e014a838Sdanielk1977 ** statement returns a column value, then the affinity of that 1610e014a838Sdanielk1977 ** column is used to build the index keys. If both 'x' and the 1611e014a838Sdanielk1977 ** SELECT... statement are columns, then numeric affinity is used 1612e014a838Sdanielk1977 ** if either column has NUMERIC or INTEGER affinity. If neither 1613e014a838Sdanielk1977 ** 'x' nor the SELECT... statement are columns, then numeric affinity 1614e014a838Sdanielk1977 ** is used. 1615fef5208cSdrh */ 1616832508b7Sdrh pExpr->iTable = pParse->nTab++; 161741a05b7bSdanielk1977 addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, !isRowid); 1618d3d39e93Sdrh memset(&keyInfo, 0, sizeof(keyInfo)); 1619d3d39e93Sdrh keyInfo.nField = 1; 1620e014a838Sdanielk1977 16216ab3a2ecSdanielk1977 if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 1622e014a838Sdanielk1977 /* Case 1: expr IN (SELECT ...) 1623e014a838Sdanielk1977 ** 1624e014a838Sdanielk1977 ** Generate code to write the results of the select into the temporary 1625e014a838Sdanielk1977 ** table allocated and opened above. 1626e014a838Sdanielk1977 */ 16271013c932Sdrh SelectDest dest; 1628be5c89acSdrh ExprList *pEList; 16291013c932Sdrh 163041a05b7bSdanielk1977 assert( !isRowid ); 16311013c932Sdrh sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable); 16321bd10f8aSdrh dest.affinity = (u8)affinity; 1633e014a838Sdanielk1977 assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable ); 16346ab3a2ecSdanielk1977 if( sqlite3Select(pParse, pExpr->x.pSelect, &dest) ){ 16351450bc6eSdrh return 0; 163694ccde58Sdrh } 16376ab3a2ecSdanielk1977 pEList = pExpr->x.pSelect->pEList; 1638fd773cf9Sdrh if( ALWAYS(pEList!=0 && pEList->nExpr>0) ){ 1639bcbb04e5Sdanielk1977 keyInfo.aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft, 1640be5c89acSdrh pEList->a[0].pExpr); 16410202b29eSdanielk1977 } 1642fd773cf9Sdrh }else if( pExpr->x.pList!=0 ){ 1643fef5208cSdrh /* Case 2: expr IN (exprlist) 1644fef5208cSdrh ** 1645e014a838Sdanielk1977 ** For each expression, build an index key from the evaluation and 1646e014a838Sdanielk1977 ** store it in the temporary table. If <expr> is a column, then use 1647e014a838Sdanielk1977 ** that columns affinity when building index keys. If <expr> is not 1648e014a838Sdanielk1977 ** a column, use numeric affinity. 1649fef5208cSdrh */ 1650e014a838Sdanielk1977 int i; 16516ab3a2ecSdanielk1977 ExprList *pList = pExpr->x.pList; 165257dbd7b3Sdrh struct ExprList_item *pItem; 1653ecc31805Sdrh int r1, r2, r3; 165457dbd7b3Sdrh 1655e014a838Sdanielk1977 if( !affinity ){ 16568159a35fSdrh affinity = SQLITE_AFF_NONE; 1657e014a838Sdanielk1977 } 16587d10d5a6Sdrh keyInfo.aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft); 1659e014a838Sdanielk1977 1660e014a838Sdanielk1977 /* Loop through each expression in <exprlist>. */ 16612d401ab8Sdrh r1 = sqlite3GetTempReg(pParse); 16622d401ab8Sdrh r2 = sqlite3GetTempReg(pParse); 16634e7f36a2Sdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, r2); 166457dbd7b3Sdrh for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){ 166557dbd7b3Sdrh Expr *pE2 = pItem->pExpr; 1666e05c929bSdrh int iValToIns; 1667e014a838Sdanielk1977 166857dbd7b3Sdrh /* If the expression is not constant then we will need to 166957dbd7b3Sdrh ** disable the test that was generated above that makes sure 167057dbd7b3Sdrh ** this code only executes once. Because for a non-constant 167157dbd7b3Sdrh ** expression we need to rerun this code each time. 167257dbd7b3Sdrh */ 1673892d3179Sdrh if( testAddr && !sqlite3ExprIsConstant(pE2) ){ 1674892d3179Sdrh sqlite3VdbeChangeToNoop(v, testAddr-1, 2); 167557dbd7b3Sdrh testAddr = 0; 16764794b980Sdrh } 1677e014a838Sdanielk1977 1678e014a838Sdanielk1977 /* Evaluate the expression and insert it into the temp table */ 1679e05c929bSdrh if( isRowid && sqlite3ExprIsInteger(pE2, &iValToIns) ){ 1680e05c929bSdrh sqlite3VdbeAddOp3(v, OP_InsertInt, pExpr->iTable, r2, iValToIns); 1681e05c929bSdrh }else{ 1682ecc31805Sdrh r3 = sqlite3ExprCodeTarget(pParse, pE2, r1); 168341a05b7bSdanielk1977 if( isRowid ){ 1684e05c929bSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r3, 1685e05c929bSdrh sqlite3VdbeCurrentAddr(v)+2); 168641a05b7bSdanielk1977 sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3); 168741a05b7bSdanielk1977 }else{ 1688ecc31805Sdrh sqlite3VdbeAddOp4(v, OP_MakeRecord, r3, 1, r2, &affinity, 1); 16893c31fc23Sdrh sqlite3ExprCacheAffinityChange(pParse, r3, 1); 16902d401ab8Sdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, pExpr->iTable, r2); 1691fef5208cSdrh } 169241a05b7bSdanielk1977 } 1693e05c929bSdrh } 16942d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r1); 16952d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r2); 1696fef5208cSdrh } 169741a05b7bSdanielk1977 if( !isRowid ){ 169866a5167bSdrh sqlite3VdbeChangeP4(v, addr, (void *)&keyInfo, P4_KEYINFO); 169941a05b7bSdanielk1977 } 1700b3bce662Sdanielk1977 break; 1701fef5208cSdrh } 1702fef5208cSdrh 170351522cd3Sdrh case TK_EXISTS: 1704fd773cf9Sdrh case TK_SELECT: 1705fd773cf9Sdrh default: { 1706fd773cf9Sdrh /* If this has to be a scalar SELECT. Generate code to put the 1707fef5208cSdrh ** value of this select in a memory cell and record the number 1708fd773cf9Sdrh ** of the memory cell in iColumn. If this is an EXISTS, write 1709fd773cf9Sdrh ** an integer 0 (not exists) or 1 (exists) into a memory cell 1710fd773cf9Sdrh ** and record that memory cell in iColumn. 1711fef5208cSdrh */ 1712fd773cf9Sdrh static const Token one = { "1", 1 }; /* Token for literal value 1 */ 1713fd773cf9Sdrh Select *pSel; /* SELECT statement to encode */ 1714fd773cf9Sdrh SelectDest dest; /* How to deal with SELECt result */ 17151398ad36Sdrh 1716cf697396Sshane testcase( pExpr->op==TK_EXISTS ); 1717cf697396Sshane testcase( pExpr->op==TK_SELECT ); 1718cf697396Sshane assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT ); 1719cf697396Sshane 17206ab3a2ecSdanielk1977 assert( ExprHasProperty(pExpr, EP_xIsSelect) ); 17216ab3a2ecSdanielk1977 pSel = pExpr->x.pSelect; 17221013c932Sdrh sqlite3SelectDestInit(&dest, 0, ++pParse->nMem); 172351522cd3Sdrh if( pExpr->op==TK_SELECT ){ 17246c8c8ce0Sdanielk1977 dest.eDest = SRT_Mem; 17254c583128Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iParm); 1726d4e70ebdSdrh VdbeComment((v, "Init subquery result")); 172751522cd3Sdrh }else{ 17286c8c8ce0Sdanielk1977 dest.eDest = SRT_Exists; 17294c583128Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iParm); 1730d4e70ebdSdrh VdbeComment((v, "Init EXISTS result")); 173151522cd3Sdrh } 1732633e6d57Sdrh sqlite3ExprDelete(pParse->db, pSel->pLimit); 1733a1644fd8Sdanielk1977 pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, &one); 17347d10d5a6Sdrh if( sqlite3Select(pParse, pSel, &dest) ){ 17351450bc6eSdrh return 0; 173694ccde58Sdrh } 17371450bc6eSdrh rReg = dest.iParm; 173833e619fcSdrh ExprSetIrreducible(pExpr); 1739b3bce662Sdanielk1977 break; 174019a775c2Sdrh } 1741cce7d176Sdrh } 1742b3bce662Sdanielk1977 174357dbd7b3Sdrh if( testAddr ){ 1744892d3179Sdrh sqlite3VdbeJumpHere(v, testAddr-1); 1745b3bce662Sdanielk1977 } 1746ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 1747fc976065Sdanielk1977 17481450bc6eSdrh return rReg; 1749cce7d176Sdrh } 175051522cd3Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1751cce7d176Sdrh 1752e3365e6cSdrh #ifndef SQLITE_OMIT_SUBQUERY 1753e3365e6cSdrh /* 1754e3365e6cSdrh ** Generate code for an IN expression. 1755e3365e6cSdrh ** 1756e3365e6cSdrh ** x IN (SELECT ...) 1757e3365e6cSdrh ** x IN (value, value, ...) 1758e3365e6cSdrh ** 1759e3365e6cSdrh ** The left-hand side (LHS) is a scalar expression. The right-hand side (RHS) 1760e3365e6cSdrh ** is an array of zero or more values. The expression is true if the LHS is 1761e3365e6cSdrh ** contained within the RHS. The value of the expression is unknown (NULL) 1762e3365e6cSdrh ** if the LHS is NULL or if the LHS is not contained within the RHS and the 1763e3365e6cSdrh ** RHS contains one or more NULL values. 1764e3365e6cSdrh ** 1765e3365e6cSdrh ** This routine generates code will jump to destIfFalse if the LHS is not 1766e3365e6cSdrh ** contained within the RHS. If due to NULLs we cannot determine if the LHS 1767e3365e6cSdrh ** is contained in the RHS then jump to destIfNull. If the LHS is contained 1768e3365e6cSdrh ** within the RHS then fall through. 1769e3365e6cSdrh */ 1770e3365e6cSdrh static void sqlite3ExprCodeIN( 1771e3365e6cSdrh Parse *pParse, /* Parsing and code generating context */ 1772e3365e6cSdrh Expr *pExpr, /* The IN expression */ 1773e3365e6cSdrh int destIfFalse, /* Jump here if LHS is not contained in the RHS */ 1774e3365e6cSdrh int destIfNull /* Jump here if the results are unknown due to NULLs */ 1775e3365e6cSdrh ){ 1776e3365e6cSdrh int rRhsHasNull = 0; /* Register that is true if RHS contains NULL values */ 1777e3365e6cSdrh char affinity; /* Comparison affinity to use */ 1778e3365e6cSdrh int eType; /* Type of the RHS */ 1779e3365e6cSdrh int r1; /* Temporary use register */ 1780e3365e6cSdrh Vdbe *v; /* Statement under construction */ 1781e3365e6cSdrh 1782e3365e6cSdrh /* Compute the RHS. After this step, the table with cursor 1783e3365e6cSdrh ** pExpr->iTable will contains the values that make up the RHS. 1784e3365e6cSdrh */ 1785e3365e6cSdrh v = pParse->pVdbe; 1786e3365e6cSdrh assert( v!=0 ); /* OOM detected prior to this routine */ 1787e3365e6cSdrh VdbeNoopComment((v, "begin IN expr")); 1788e3365e6cSdrh eType = sqlite3FindInIndex(pParse, pExpr, &rRhsHasNull); 1789e3365e6cSdrh 1790e3365e6cSdrh /* Figure out the affinity to use to create a key from the results 1791e3365e6cSdrh ** of the expression. affinityStr stores a static string suitable for 1792e3365e6cSdrh ** P4 of OP_MakeRecord. 1793e3365e6cSdrh */ 1794e3365e6cSdrh affinity = comparisonAffinity(pExpr); 1795e3365e6cSdrh 1796e3365e6cSdrh /* Code the LHS, the <expr> from "<expr> IN (...)". 1797e3365e6cSdrh */ 1798e3365e6cSdrh sqlite3ExprCachePush(pParse); 1799e3365e6cSdrh r1 = sqlite3GetTempReg(pParse); 1800e3365e6cSdrh sqlite3ExprCode(pParse, pExpr->pLeft, r1); 1801e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_IsNull, r1, destIfNull); 1802e3365e6cSdrh 1803e3365e6cSdrh 1804e3365e6cSdrh if( eType==IN_INDEX_ROWID ){ 1805e3365e6cSdrh /* In this case, the RHS is the ROWID of table b-tree 1806e3365e6cSdrh */ 1807e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r1, destIfFalse); 1808e3365e6cSdrh sqlite3VdbeAddOp3(v, OP_NotExists, pExpr->iTable, destIfFalse, r1); 1809e3365e6cSdrh }else{ 1810e3365e6cSdrh /* In this case, the RHS is an index b-tree. 1811e3365e6cSdrh */ 18128cff69dfSdrh sqlite3VdbeAddOp4(v, OP_Affinity, r1, 1, 0, &affinity, 1); 1813e3365e6cSdrh 1814e3365e6cSdrh /* If the set membership test fails, then the result of the 1815e3365e6cSdrh ** "x IN (...)" expression must be either 0 or NULL. If the set 1816e3365e6cSdrh ** contains no NULL values, then the result is 0. If the set 1817e3365e6cSdrh ** contains one or more NULL values, then the result of the 1818e3365e6cSdrh ** expression is also NULL. 1819e3365e6cSdrh */ 1820e3365e6cSdrh if( rRhsHasNull==0 || destIfFalse==destIfNull ){ 1821e3365e6cSdrh /* This branch runs if it is known at compile time that the RHS 1822e3365e6cSdrh ** cannot contain NULL values. This happens as the result 1823e3365e6cSdrh ** of a "NOT NULL" constraint in the database schema. 1824e3365e6cSdrh ** 1825e3365e6cSdrh ** Also run this branch if NULL is equivalent to FALSE 1826e3365e6cSdrh ** for this particular IN operator. 1827e3365e6cSdrh */ 18288cff69dfSdrh sqlite3VdbeAddOp4Int(v, OP_NotFound, pExpr->iTable, destIfFalse, r1, 1); 1829e3365e6cSdrh 1830e3365e6cSdrh }else{ 1831e3365e6cSdrh /* In this branch, the RHS of the IN might contain a NULL and 1832e3365e6cSdrh ** the presence of a NULL on the RHS makes a difference in the 1833e3365e6cSdrh ** outcome. 1834e3365e6cSdrh */ 1835e3365e6cSdrh int j1, j2, j3; 1836e3365e6cSdrh 1837e3365e6cSdrh /* First check to see if the LHS is contained in the RHS. If so, 1838e3365e6cSdrh ** then the presence of NULLs in the RHS does not matter, so jump 1839e3365e6cSdrh ** over all of the code that follows. 1840e3365e6cSdrh */ 18418cff69dfSdrh j1 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, r1, 1); 1842e3365e6cSdrh 1843e3365e6cSdrh /* Here we begin generating code that runs if the LHS is not 1844e3365e6cSdrh ** contained within the RHS. Generate additional code that 1845e3365e6cSdrh ** tests the RHS for NULLs. If the RHS contains a NULL then 1846e3365e6cSdrh ** jump to destIfNull. If there are no NULLs in the RHS then 1847e3365e6cSdrh ** jump to destIfFalse. 1848e3365e6cSdrh */ 1849e3365e6cSdrh j2 = sqlite3VdbeAddOp1(v, OP_NotNull, rRhsHasNull); 18508cff69dfSdrh j3 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, rRhsHasNull, 1); 1851e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Integer, -1, rRhsHasNull); 1852e3365e6cSdrh sqlite3VdbeJumpHere(v, j3); 1853e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_AddImm, rRhsHasNull, 1); 1854e3365e6cSdrh sqlite3VdbeJumpHere(v, j2); 1855e3365e6cSdrh 1856e3365e6cSdrh /* Jump to the appropriate target depending on whether or not 1857e3365e6cSdrh ** the RHS contains a NULL 1858e3365e6cSdrh */ 1859e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_If, rRhsHasNull, destIfNull); 1860e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse); 1861e3365e6cSdrh 1862e3365e6cSdrh /* The OP_Found at the top of this branch jumps here when true, 1863e3365e6cSdrh ** causing the overall IN expression evaluation to fall through. 1864e3365e6cSdrh */ 1865e3365e6cSdrh sqlite3VdbeJumpHere(v, j1); 1866e3365e6cSdrh } 1867e3365e6cSdrh } 1868e3365e6cSdrh sqlite3ReleaseTempReg(pParse, r1); 1869e3365e6cSdrh sqlite3ExprCachePop(pParse, 1); 1870e3365e6cSdrh VdbeComment((v, "end IN expr")); 1871e3365e6cSdrh } 1872e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1873e3365e6cSdrh 1874cce7d176Sdrh /* 1875598f1340Sdrh ** Duplicate an 8-byte value 1876598f1340Sdrh */ 1877598f1340Sdrh static char *dup8bytes(Vdbe *v, const char *in){ 1878598f1340Sdrh char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8); 1879598f1340Sdrh if( out ){ 1880598f1340Sdrh memcpy(out, in, 8); 1881598f1340Sdrh } 1882598f1340Sdrh return out; 1883598f1340Sdrh } 1884598f1340Sdrh 1885598f1340Sdrh /* 1886598f1340Sdrh ** Generate an instruction that will put the floating point 18879cbf3425Sdrh ** value described by z[0..n-1] into register iMem. 18880cf19ed8Sdrh ** 18890cf19ed8Sdrh ** The z[] string will probably not be zero-terminated. But the 18900cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look 18910cf19ed8Sdrh ** like the continuation of the number. 1892598f1340Sdrh */ 1893b7916a78Sdrh static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){ 1894fd773cf9Sdrh if( ALWAYS(z!=0) ){ 1895598f1340Sdrh double value; 1896598f1340Sdrh char *zV; 1897598f1340Sdrh sqlite3AtoF(z, &value); 1898d0015161Sdrh assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */ 1899598f1340Sdrh if( negateFlag ) value = -value; 1900598f1340Sdrh zV = dup8bytes(v, (char*)&value); 19019de221dfSdrh sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL); 1902598f1340Sdrh } 1903598f1340Sdrh } 1904598f1340Sdrh 1905598f1340Sdrh 1906598f1340Sdrh /* 1907fec19aadSdrh ** Generate an instruction that will put the integer describe by 19089cbf3425Sdrh ** text z[0..n-1] into register iMem. 19090cf19ed8Sdrh ** 19100cf19ed8Sdrh ** The z[] string will probably not be zero-terminated. But the 19110cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look 19120cf19ed8Sdrh ** like the continuation of the number. 1913fec19aadSdrh */ 191492b01d53Sdrh static void codeInteger(Vdbe *v, Expr *pExpr, int negFlag, int iMem){ 191592b01d53Sdrh if( pExpr->flags & EP_IntValue ){ 191633e619fcSdrh int i = pExpr->u.iValue; 191792b01d53Sdrh if( negFlag ) i = -i; 191892b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Integer, i, iMem); 1919fd773cf9Sdrh }else{ 1920fd773cf9Sdrh const char *z = pExpr->u.zToken; 1921fd773cf9Sdrh assert( z!=0 ); 1922fd773cf9Sdrh if( sqlite3FitsIn64Bits(z, negFlag) ){ 1923598f1340Sdrh i64 value; 1924598f1340Sdrh char *zV; 1925598f1340Sdrh sqlite3Atoi64(z, &value); 19269de221dfSdrh if( negFlag ) value = -value; 1927598f1340Sdrh zV = dup8bytes(v, (char*)&value); 19289de221dfSdrh sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64); 1929fec19aadSdrh }else{ 1930b7916a78Sdrh codeReal(v, z, negFlag, iMem); 1931fec19aadSdrh } 1932fec19aadSdrh } 1933c9cf901dSdanielk1977 } 1934fec19aadSdrh 1935ceea3321Sdrh /* 1936ceea3321Sdrh ** Clear a cache entry. 1937ceea3321Sdrh */ 1938ceea3321Sdrh static void cacheEntryClear(Parse *pParse, struct yColCache *p){ 1939ceea3321Sdrh if( p->tempReg ){ 1940ceea3321Sdrh if( pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 1941ceea3321Sdrh pParse->aTempReg[pParse->nTempReg++] = p->iReg; 1942ceea3321Sdrh } 1943ceea3321Sdrh p->tempReg = 0; 1944ceea3321Sdrh } 1945ceea3321Sdrh } 1946ceea3321Sdrh 1947ceea3321Sdrh 1948ceea3321Sdrh /* 1949ceea3321Sdrh ** Record in the column cache that a particular column from a 1950ceea3321Sdrh ** particular table is stored in a particular register. 1951ceea3321Sdrh */ 1952ceea3321Sdrh void sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg){ 1953ceea3321Sdrh int i; 1954ceea3321Sdrh int minLru; 1955ceea3321Sdrh int idxLru; 1956ceea3321Sdrh struct yColCache *p; 1957ceea3321Sdrh 195820411ea7Sdrh assert( iReg>0 ); /* Register numbers are always positive */ 195920411ea7Sdrh assert( iCol>=-1 && iCol<32768 ); /* Finite column numbers */ 196020411ea7Sdrh 1961b6da74ebSdrh /* The SQLITE_ColumnCache flag disables the column cache. This is used 1962b6da74ebSdrh ** for testing only - to verify that SQLite always gets the same answer 1963b6da74ebSdrh ** with and without the column cache. 1964b6da74ebSdrh */ 1965b6da74ebSdrh if( pParse->db->flags & SQLITE_ColumnCache ) return; 1966b6da74ebSdrh 1967*27ee406eSdrh /* First replace any existing entry. 1968*27ee406eSdrh ** 1969*27ee406eSdrh ** Actually, the way the column cache is currently used, we are guaranteed 1970*27ee406eSdrh ** that the object will never already be in cache. Verify this guarantee. 1971*27ee406eSdrh */ 1972*27ee406eSdrh #ifndef NDEBUG 1973ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 1974*27ee406eSdrh #if 0 /* This code wold remove the entry from the cache if it existed */ 1975ceea3321Sdrh if( p->iReg && p->iTable==iTab && p->iColumn==iCol ){ 1976ceea3321Sdrh cacheEntryClear(pParse, p); 1977ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 1978ceea3321Sdrh p->iReg = iReg; 1979ceea3321Sdrh p->lru = pParse->iCacheCnt++; 1980ceea3321Sdrh return; 1981ceea3321Sdrh } 1982*27ee406eSdrh #endif 1983*27ee406eSdrh assert( p->iReg==0 || p->iTable!=iTab || p->iColumn!=iCol ); 1984ceea3321Sdrh } 1985*27ee406eSdrh #endif 1986ceea3321Sdrh 1987ceea3321Sdrh /* Find an empty slot and replace it */ 1988ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 1989ceea3321Sdrh if( p->iReg==0 ){ 1990ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 1991ceea3321Sdrh p->iTable = iTab; 1992ceea3321Sdrh p->iColumn = iCol; 1993ceea3321Sdrh p->iReg = iReg; 1994ceea3321Sdrh p->tempReg = 0; 1995ceea3321Sdrh p->lru = pParse->iCacheCnt++; 1996ceea3321Sdrh return; 1997ceea3321Sdrh } 1998ceea3321Sdrh } 1999ceea3321Sdrh 2000ceea3321Sdrh /* Replace the last recently used */ 2001ceea3321Sdrh minLru = 0x7fffffff; 2002ceea3321Sdrh idxLru = -1; 2003ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2004ceea3321Sdrh if( p->lru<minLru ){ 2005ceea3321Sdrh idxLru = i; 2006ceea3321Sdrh minLru = p->lru; 2007ceea3321Sdrh } 2008ceea3321Sdrh } 200920411ea7Sdrh if( ALWAYS(idxLru>=0) ){ 2010ceea3321Sdrh p = &pParse->aColCache[idxLru]; 2011ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 2012ceea3321Sdrh p->iTable = iTab; 2013ceea3321Sdrh p->iColumn = iCol; 2014ceea3321Sdrh p->iReg = iReg; 2015ceea3321Sdrh p->tempReg = 0; 2016ceea3321Sdrh p->lru = pParse->iCacheCnt++; 2017ceea3321Sdrh return; 2018ceea3321Sdrh } 2019ceea3321Sdrh } 2020ceea3321Sdrh 2021ceea3321Sdrh /* 2022ceea3321Sdrh ** Indicate that a register is being overwritten. Purge the register 2023ceea3321Sdrh ** from the column cache. 2024ceea3321Sdrh */ 2025ceea3321Sdrh void sqlite3ExprCacheRemove(Parse *pParse, int iReg){ 2026ceea3321Sdrh int i; 2027ceea3321Sdrh struct yColCache *p; 2028ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2029ceea3321Sdrh if( p->iReg==iReg ){ 2030ceea3321Sdrh cacheEntryClear(pParse, p); 2031ceea3321Sdrh p->iReg = 0; 2032ceea3321Sdrh } 2033ceea3321Sdrh } 2034ceea3321Sdrh } 2035ceea3321Sdrh 2036ceea3321Sdrh /* 2037ceea3321Sdrh ** Remember the current column cache context. Any new entries added 2038ceea3321Sdrh ** added to the column cache after this call are removed when the 2039ceea3321Sdrh ** corresponding pop occurs. 2040ceea3321Sdrh */ 2041ceea3321Sdrh void sqlite3ExprCachePush(Parse *pParse){ 2042ceea3321Sdrh pParse->iCacheLevel++; 2043ceea3321Sdrh } 2044ceea3321Sdrh 2045ceea3321Sdrh /* 2046ceea3321Sdrh ** Remove from the column cache any entries that were added since the 2047ceea3321Sdrh ** the previous N Push operations. In other words, restore the cache 2048ceea3321Sdrh ** to the state it was in N Pushes ago. 2049ceea3321Sdrh */ 2050ceea3321Sdrh void sqlite3ExprCachePop(Parse *pParse, int N){ 2051ceea3321Sdrh int i; 2052ceea3321Sdrh struct yColCache *p; 2053ceea3321Sdrh assert( N>0 ); 2054ceea3321Sdrh assert( pParse->iCacheLevel>=N ); 2055ceea3321Sdrh pParse->iCacheLevel -= N; 2056ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2057ceea3321Sdrh if( p->iReg && p->iLevel>pParse->iCacheLevel ){ 2058ceea3321Sdrh cacheEntryClear(pParse, p); 2059ceea3321Sdrh p->iReg = 0; 2060ceea3321Sdrh } 2061ceea3321Sdrh } 2062ceea3321Sdrh } 2063945498f3Sdrh 2064945498f3Sdrh /* 20655cd79239Sdrh ** When a cached column is reused, make sure that its register is 20665cd79239Sdrh ** no longer available as a temp register. ticket #3879: that same 20675cd79239Sdrh ** register might be in the cache in multiple places, so be sure to 20685cd79239Sdrh ** get them all. 20695cd79239Sdrh */ 20705cd79239Sdrh static void sqlite3ExprCachePinRegister(Parse *pParse, int iReg){ 20715cd79239Sdrh int i; 20725cd79239Sdrh struct yColCache *p; 20735cd79239Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 20745cd79239Sdrh if( p->iReg==iReg ){ 20755cd79239Sdrh p->tempReg = 0; 20765cd79239Sdrh } 20775cd79239Sdrh } 20785cd79239Sdrh } 20795cd79239Sdrh 20805cd79239Sdrh /* 2081945498f3Sdrh ** Generate code that will extract the iColumn-th column from 2082e55cbd72Sdrh ** table pTab and store the column value in a register. An effort 2083e55cbd72Sdrh ** is made to store the column value in register iReg, but this is 2084e55cbd72Sdrh ** not guaranteed. The location of the column value is returned. 2085e55cbd72Sdrh ** 2086e55cbd72Sdrh ** There must be an open cursor to pTab in iTable when this routine 2087e55cbd72Sdrh ** is called. If iColumn<0 then code is generated that extracts the rowid. 2088945498f3Sdrh */ 2089e55cbd72Sdrh int sqlite3ExprCodeGetColumn( 2090e55cbd72Sdrh Parse *pParse, /* Parsing and code generating context */ 20912133d822Sdrh Table *pTab, /* Description of the table we are reading from */ 20922133d822Sdrh int iColumn, /* Index of the table column */ 20932133d822Sdrh int iTable, /* The cursor pointing to the table */ 2094b6da74ebSdrh int iReg /* Store results here */ 20952133d822Sdrh ){ 2096e55cbd72Sdrh Vdbe *v = pParse->pVdbe; 2097e55cbd72Sdrh int i; 2098da250ea5Sdrh struct yColCache *p; 2099e55cbd72Sdrh 2100ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2101b6da74ebSdrh if( p->iReg>0 && p->iTable==iTable && p->iColumn==iColumn ){ 2102ceea3321Sdrh p->lru = pParse->iCacheCnt++; 21035cd79239Sdrh sqlite3ExprCachePinRegister(pParse, p->iReg); 2104da250ea5Sdrh return p->iReg; 2105e55cbd72Sdrh } 2106e55cbd72Sdrh } 2107e55cbd72Sdrh assert( v!=0 ); 2108945498f3Sdrh if( iColumn<0 ){ 2109044925beSdrh sqlite3VdbeAddOp2(v, OP_Rowid, iTable, iReg); 211020411ea7Sdrh }else if( ALWAYS(pTab!=0) ){ 2111945498f3Sdrh int op = IsVirtual(pTab) ? OP_VColumn : OP_Column; 21122133d822Sdrh sqlite3VdbeAddOp3(v, op, iTable, iColumn, iReg); 2113c7538b5fSdanielk1977 sqlite3ColumnDefault(v, pTab, iColumn, iReg); 2114945498f3Sdrh } 2115ceea3321Sdrh sqlite3ExprCacheStore(pParse, iTable, iColumn, iReg); 2116e55cbd72Sdrh return iReg; 2117e55cbd72Sdrh } 2118e55cbd72Sdrh 2119e55cbd72Sdrh /* 2120ceea3321Sdrh ** Clear all column cache entries. 2121e55cbd72Sdrh */ 2122ceea3321Sdrh void sqlite3ExprCacheClear(Parse *pParse){ 2123e55cbd72Sdrh int i; 2124ceea3321Sdrh struct yColCache *p; 2125ceea3321Sdrh 2126ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2127ceea3321Sdrh if( p->iReg ){ 2128ceea3321Sdrh cacheEntryClear(pParse, p); 2129ceea3321Sdrh p->iReg = 0; 2130e55cbd72Sdrh } 2131da250ea5Sdrh } 2132da250ea5Sdrh } 2133e55cbd72Sdrh 2134e55cbd72Sdrh /* 2135da250ea5Sdrh ** Record the fact that an affinity change has occurred on iCount 2136da250ea5Sdrh ** registers starting with iStart. 2137e55cbd72Sdrh */ 2138da250ea5Sdrh void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){ 2139da250ea5Sdrh int iEnd = iStart + iCount - 1; 2140e55cbd72Sdrh int i; 2141ceea3321Sdrh struct yColCache *p; 2142ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2143ceea3321Sdrh int r = p->iReg; 2144da250ea5Sdrh if( r>=iStart && r<=iEnd ){ 2145b6da74ebSdrh cacheEntryClear(pParse, p); 2146b6da74ebSdrh p->iReg = 0; 2147e55cbd72Sdrh } 2148e55cbd72Sdrh } 2149e55cbd72Sdrh } 2150e55cbd72Sdrh 2151e55cbd72Sdrh /* 2152b21e7c70Sdrh ** Generate code to move content from registers iFrom...iFrom+nReg-1 2153b21e7c70Sdrh ** over to iTo..iTo+nReg-1. Keep the column cache up-to-date. 2154e55cbd72Sdrh */ 2155b21e7c70Sdrh void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){ 2156e55cbd72Sdrh int i; 2157ceea3321Sdrh struct yColCache *p; 215820411ea7Sdrh if( NEVER(iFrom==iTo) ) return; 2159b21e7c70Sdrh sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg); 2160ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2161ceea3321Sdrh int x = p->iReg; 2162b21e7c70Sdrh if( x>=iFrom && x<iFrom+nReg ){ 2163ceea3321Sdrh p->iReg += iTo-iFrom; 2164e55cbd72Sdrh } 2165e55cbd72Sdrh } 2166945498f3Sdrh } 2167945498f3Sdrh 2168fec19aadSdrh /* 216992b01d53Sdrh ** Generate code to copy content from registers iFrom...iFrom+nReg-1 217092b01d53Sdrh ** over to iTo..iTo+nReg-1. 217192b01d53Sdrh */ 217292b01d53Sdrh void sqlite3ExprCodeCopy(Parse *pParse, int iFrom, int iTo, int nReg){ 217392b01d53Sdrh int i; 217420411ea7Sdrh if( NEVER(iFrom==iTo) ) return; 217592b01d53Sdrh for(i=0; i<nReg; i++){ 217692b01d53Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, iFrom+i, iTo+i); 217792b01d53Sdrh } 217892b01d53Sdrh } 217992b01d53Sdrh 218092b01d53Sdrh /* 2181652fbf55Sdrh ** Return true if any register in the range iFrom..iTo (inclusive) 2182652fbf55Sdrh ** is used as part of the column cache. 2183652fbf55Sdrh */ 2184652fbf55Sdrh static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){ 2185652fbf55Sdrh int i; 2186ceea3321Sdrh struct yColCache *p; 2187ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2188ceea3321Sdrh int r = p->iReg; 2189652fbf55Sdrh if( r>=iFrom && r<=iTo ) return 1; 2190652fbf55Sdrh } 2191652fbf55Sdrh return 0; 2192652fbf55Sdrh } 2193652fbf55Sdrh 2194652fbf55Sdrh /* 2195191b54cbSdrh ** If the last instruction coded is an ephemeral copy of any of 2196191b54cbSdrh ** the registers in the nReg registers beginning with iReg, then 2197191b54cbSdrh ** convert the last instruction from OP_SCopy to OP_Copy. 2198191b54cbSdrh */ 2199191b54cbSdrh void sqlite3ExprHardCopy(Parse *pParse, int iReg, int nReg){ 2200191b54cbSdrh VdbeOp *pOp; 2201191b54cbSdrh Vdbe *v; 2202191b54cbSdrh 220320411ea7Sdrh assert( pParse->db->mallocFailed==0 ); 2204191b54cbSdrh v = pParse->pVdbe; 220520411ea7Sdrh assert( v!=0 ); 220620411ea7Sdrh pOp = sqlite3VdbeGetOp(v, -1); 220720411ea7Sdrh assert( pOp!=0 ); 220820411ea7Sdrh if( pOp->opcode==OP_SCopy && pOp->p1>=iReg && pOp->p1<iReg+nReg ){ 2209191b54cbSdrh pOp->opcode = OP_Copy; 2210191b54cbSdrh } 2211191b54cbSdrh } 2212191b54cbSdrh 2213191b54cbSdrh /* 22148b213899Sdrh ** Generate code to store the value of the iAlias-th alias in register 22158b213899Sdrh ** target. The first time this is called, pExpr is evaluated to compute 22168b213899Sdrh ** the value of the alias. The value is stored in an auxiliary register 22178b213899Sdrh ** and the number of that register is returned. On subsequent calls, 22188b213899Sdrh ** the register number is returned without generating any code. 22198b213899Sdrh ** 22208b213899Sdrh ** Note that in order for this to work, code must be generated in the 22218b213899Sdrh ** same order that it is executed. 22228b213899Sdrh ** 22238b213899Sdrh ** Aliases are numbered starting with 1. So iAlias is in the range 22248b213899Sdrh ** of 1 to pParse->nAlias inclusive. 22258b213899Sdrh ** 22268b213899Sdrh ** pParse->aAlias[iAlias-1] records the register number where the value 22278b213899Sdrh ** of the iAlias-th alias is stored. If zero, that means that the 22288b213899Sdrh ** alias has not yet been computed. 22298b213899Sdrh */ 223031daa63fSdrh static int codeAlias(Parse *pParse, int iAlias, Expr *pExpr, int target){ 2231ceea3321Sdrh #if 0 22328b213899Sdrh sqlite3 *db = pParse->db; 22338b213899Sdrh int iReg; 2234555f8de7Sdrh if( pParse->nAliasAlloc<pParse->nAlias ){ 2235555f8de7Sdrh pParse->aAlias = sqlite3DbReallocOrFree(db, pParse->aAlias, 22368b213899Sdrh sizeof(pParse->aAlias[0])*pParse->nAlias ); 2237555f8de7Sdrh testcase( db->mallocFailed && pParse->nAliasAlloc>0 ); 22388b213899Sdrh if( db->mallocFailed ) return 0; 2239555f8de7Sdrh memset(&pParse->aAlias[pParse->nAliasAlloc], 0, 2240555f8de7Sdrh (pParse->nAlias-pParse->nAliasAlloc)*sizeof(pParse->aAlias[0])); 2241555f8de7Sdrh pParse->nAliasAlloc = pParse->nAlias; 22428b213899Sdrh } 22438b213899Sdrh assert( iAlias>0 && iAlias<=pParse->nAlias ); 22448b213899Sdrh iReg = pParse->aAlias[iAlias-1]; 22458b213899Sdrh if( iReg==0 ){ 2246ceea3321Sdrh if( pParse->iCacheLevel>0 ){ 224731daa63fSdrh iReg = sqlite3ExprCodeTarget(pParse, pExpr, target); 224831daa63fSdrh }else{ 22498b213899Sdrh iReg = ++pParse->nMem; 22508b213899Sdrh sqlite3ExprCode(pParse, pExpr, iReg); 22518b213899Sdrh pParse->aAlias[iAlias-1] = iReg; 22528b213899Sdrh } 225331daa63fSdrh } 22548b213899Sdrh return iReg; 2255ceea3321Sdrh #else 225660a4b538Sshane UNUSED_PARAMETER(iAlias); 2257ceea3321Sdrh return sqlite3ExprCodeTarget(pParse, pExpr, target); 2258ceea3321Sdrh #endif 22598b213899Sdrh } 22608b213899Sdrh 22618b213899Sdrh /* 2262cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given 22632dcef11bSdrh ** expression. Attempt to store the results in register "target". 22642dcef11bSdrh ** Return the register where results are stored. 2265389a1adbSdrh ** 22668b213899Sdrh ** With this routine, there is no guarantee that results will 22672dcef11bSdrh ** be stored in target. The result might be stored in some other 22682dcef11bSdrh ** register if it is convenient to do so. The calling function 22692dcef11bSdrh ** must check the return code and move the results to the desired 22702dcef11bSdrh ** register. 2271cce7d176Sdrh */ 2272678ccce8Sdrh int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){ 22732dcef11bSdrh Vdbe *v = pParse->pVdbe; /* The VM under construction */ 22742dcef11bSdrh int op; /* The opcode being coded */ 22752dcef11bSdrh int inReg = target; /* Results stored in register inReg */ 22762dcef11bSdrh int regFree1 = 0; /* If non-zero free this temporary register */ 22772dcef11bSdrh int regFree2 = 0; /* If non-zero free this temporary register */ 2278678ccce8Sdrh int r1, r2, r3, r4; /* Various register numbers */ 227920411ea7Sdrh sqlite3 *db = pParse->db; /* The database connection */ 2280ffe07b2dSdrh 22819cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 228220411ea7Sdrh if( v==0 ){ 228320411ea7Sdrh assert( pParse->db->mallocFailed ); 228420411ea7Sdrh return 0; 228520411ea7Sdrh } 2286389a1adbSdrh 2287389a1adbSdrh if( pExpr==0 ){ 2288389a1adbSdrh op = TK_NULL; 2289389a1adbSdrh }else{ 2290f2bc013cSdrh op = pExpr->op; 2291389a1adbSdrh } 2292f2bc013cSdrh switch( op ){ 229313449892Sdrh case TK_AGG_COLUMN: { 229413449892Sdrh AggInfo *pAggInfo = pExpr->pAggInfo; 229513449892Sdrh struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg]; 229613449892Sdrh if( !pAggInfo->directMode ){ 22979de221dfSdrh assert( pCol->iMem>0 ); 22989de221dfSdrh inReg = pCol->iMem; 229913449892Sdrh break; 230013449892Sdrh }else if( pAggInfo->useSortingIdx ){ 2301389a1adbSdrh sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdx, 2302389a1adbSdrh pCol->iSorterColumn, target); 230313449892Sdrh break; 230413449892Sdrh } 230513449892Sdrh /* Otherwise, fall thru into the TK_COLUMN case */ 230613449892Sdrh } 2307967e8b73Sdrh case TK_COLUMN: { 2308ffe07b2dSdrh if( pExpr->iTable<0 ){ 2309ffe07b2dSdrh /* This only happens when coding check constraints */ 2310aa9b8963Sdrh assert( pParse->ckBase>0 ); 2311aa9b8963Sdrh inReg = pExpr->iColumn + pParse->ckBase; 2312c4a3c779Sdrh }else{ 2313e55cbd72Sdrh inReg = sqlite3ExprCodeGetColumn(pParse, pExpr->pTab, 2314b6da74ebSdrh pExpr->iColumn, pExpr->iTable, target); 23152282792aSdrh } 2316cce7d176Sdrh break; 2317cce7d176Sdrh } 2318cce7d176Sdrh case TK_INTEGER: { 231992b01d53Sdrh codeInteger(v, pExpr, 0, target); 2320fec19aadSdrh break; 232151e9a445Sdrh } 2322598f1340Sdrh case TK_FLOAT: { 232333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 232433e619fcSdrh codeReal(v, pExpr->u.zToken, 0, target); 2325598f1340Sdrh break; 2326598f1340Sdrh } 2327fec19aadSdrh case TK_STRING: { 232833e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 232933e619fcSdrh sqlite3VdbeAddOp4(v, OP_String8, 0, target, 0, pExpr->u.zToken, 0); 2330cce7d176Sdrh break; 2331cce7d176Sdrh } 2332f0863fe5Sdrh case TK_NULL: { 23339de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2334f0863fe5Sdrh break; 2335f0863fe5Sdrh } 23365338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_BLOB_LITERAL 2337c572ef7fSdanielk1977 case TK_BLOB: { 23386c8c6cecSdrh int n; 23396c8c6cecSdrh const char *z; 2340ca48c90fSdrh char *zBlob; 234133e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 234233e619fcSdrh assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); 234333e619fcSdrh assert( pExpr->u.zToken[1]=='\'' ); 234433e619fcSdrh z = &pExpr->u.zToken[2]; 2345b7916a78Sdrh n = sqlite3Strlen30(z) - 1; 2346b7916a78Sdrh assert( z[n]=='\'' ); 2347ca48c90fSdrh zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n); 2348ca48c90fSdrh sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC); 2349c572ef7fSdanielk1977 break; 2350c572ef7fSdanielk1977 } 23515338a5f7Sdanielk1977 #endif 235250457896Sdrh case TK_VARIABLE: { 235308de1490Sdrh VdbeOp *pOp; 235433e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 235533e619fcSdrh assert( pExpr->u.zToken!=0 ); 235633e619fcSdrh assert( pExpr->u.zToken[0]!=0 ); 235733e619fcSdrh if( pExpr->u.zToken[1]==0 235820411ea7Sdrh && (pOp = sqlite3VdbeGetOp(v, -1))->opcode==OP_Variable 2359937d0deaSdan && pOp->p1+pOp->p3==pExpr->iColumn 236008de1490Sdrh && pOp->p2+pOp->p3==target 236108de1490Sdrh && pOp->p4.z==0 236208de1490Sdrh ){ 236308de1490Sdrh /* If the previous instruction was a copy of the previous unnamed 236408de1490Sdrh ** parameter into the previous register, then simply increment the 236508de1490Sdrh ** repeat count on the prior instruction rather than making a new 236608de1490Sdrh ** instruction. 236708de1490Sdrh */ 236808de1490Sdrh pOp->p3++; 236908de1490Sdrh }else{ 2370937d0deaSdan sqlite3VdbeAddOp3(v, OP_Variable, pExpr->iColumn, target, 1); 237133e619fcSdrh if( pExpr->u.zToken[1]!=0 ){ 237233e619fcSdrh sqlite3VdbeChangeP4(v, -1, pExpr->u.zToken, 0); 2373895d7472Sdrh } 237408de1490Sdrh } 237550457896Sdrh break; 237650457896Sdrh } 23774e0cff60Sdrh case TK_REGISTER: { 23789de221dfSdrh inReg = pExpr->iTable; 23794e0cff60Sdrh break; 23804e0cff60Sdrh } 23818b213899Sdrh case TK_AS: { 238231daa63fSdrh inReg = codeAlias(pParse, pExpr->iTable, pExpr->pLeft, target); 23838b213899Sdrh break; 23848b213899Sdrh } 2385487e262fSdrh #ifndef SQLITE_OMIT_CAST 2386487e262fSdrh case TK_CAST: { 2387487e262fSdrh /* Expressions of the form: CAST(pLeft AS token) */ 2388f0113000Sdanielk1977 int aff, to_op; 23892dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 239033e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 239133e619fcSdrh aff = sqlite3AffinityType(pExpr->u.zToken); 2392f0113000Sdanielk1977 to_op = aff - SQLITE_AFF_TEXT + OP_ToText; 2393f0113000Sdanielk1977 assert( to_op==OP_ToText || aff!=SQLITE_AFF_TEXT ); 2394f0113000Sdanielk1977 assert( to_op==OP_ToBlob || aff!=SQLITE_AFF_NONE ); 2395f0113000Sdanielk1977 assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC ); 2396f0113000Sdanielk1977 assert( to_op==OP_ToInt || aff!=SQLITE_AFF_INTEGER ); 2397f0113000Sdanielk1977 assert( to_op==OP_ToReal || aff!=SQLITE_AFF_REAL ); 2398c5499befSdrh testcase( to_op==OP_ToText ); 2399c5499befSdrh testcase( to_op==OP_ToBlob ); 2400c5499befSdrh testcase( to_op==OP_ToNumeric ); 2401c5499befSdrh testcase( to_op==OP_ToInt ); 2402c5499befSdrh testcase( to_op==OP_ToReal ); 24031735fa88Sdrh if( inReg!=target ){ 24041735fa88Sdrh sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target); 24051735fa88Sdrh inReg = target; 24061735fa88Sdrh } 24072dcef11bSdrh sqlite3VdbeAddOp1(v, to_op, inReg); 2408c5499befSdrh testcase( usedAsColumnCache(pParse, inReg, inReg) ); 2409b3843a82Sdrh sqlite3ExprCacheAffinityChange(pParse, inReg, 1); 2410487e262fSdrh break; 2411487e262fSdrh } 2412487e262fSdrh #endif /* SQLITE_OMIT_CAST */ 2413c9b84a1fSdrh case TK_LT: 2414c9b84a1fSdrh case TK_LE: 2415c9b84a1fSdrh case TK_GT: 2416c9b84a1fSdrh case TK_GE: 2417c9b84a1fSdrh case TK_NE: 2418c9b84a1fSdrh case TK_EQ: { 2419f2bc013cSdrh assert( TK_LT==OP_Lt ); 2420f2bc013cSdrh assert( TK_LE==OP_Le ); 2421f2bc013cSdrh assert( TK_GT==OP_Gt ); 2422f2bc013cSdrh assert( TK_GE==OP_Ge ); 2423f2bc013cSdrh assert( TK_EQ==OP_Eq ); 2424f2bc013cSdrh assert( TK_NE==OP_Ne ); 2425c5499befSdrh testcase( op==TK_LT ); 2426c5499befSdrh testcase( op==TK_LE ); 2427c5499befSdrh testcase( op==TK_GT ); 2428c5499befSdrh testcase( op==TK_GE ); 2429c5499befSdrh testcase( op==TK_EQ ); 2430c5499befSdrh testcase( op==TK_NE ); 2431b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2432b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 243335573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 243435573356Sdrh r1, r2, inReg, SQLITE_STOREP2); 2435c5499befSdrh testcase( regFree1==0 ); 2436c5499befSdrh testcase( regFree2==0 ); 2437a37cdde0Sdanielk1977 break; 2438c9b84a1fSdrh } 24396a2fe093Sdrh case TK_IS: 24406a2fe093Sdrh case TK_ISNOT: { 24416a2fe093Sdrh testcase( op==TK_IS ); 24426a2fe093Sdrh testcase( op==TK_ISNOT ); 2443b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2444b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 24456a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 24466a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 24476a2fe093Sdrh r1, r2, inReg, SQLITE_STOREP2 | SQLITE_NULLEQ); 24486a2fe093Sdrh testcase( regFree1==0 ); 24496a2fe093Sdrh testcase( regFree2==0 ); 24506a2fe093Sdrh break; 24516a2fe093Sdrh } 2452cce7d176Sdrh case TK_AND: 2453cce7d176Sdrh case TK_OR: 2454cce7d176Sdrh case TK_PLUS: 2455cce7d176Sdrh case TK_STAR: 2456cce7d176Sdrh case TK_MINUS: 2457bf4133cbSdrh case TK_REM: 2458bf4133cbSdrh case TK_BITAND: 2459bf4133cbSdrh case TK_BITOR: 246017c40294Sdrh case TK_SLASH: 2461bf4133cbSdrh case TK_LSHIFT: 2462855eb1cfSdrh case TK_RSHIFT: 24630040077dSdrh case TK_CONCAT: { 2464f2bc013cSdrh assert( TK_AND==OP_And ); 2465f2bc013cSdrh assert( TK_OR==OP_Or ); 2466f2bc013cSdrh assert( TK_PLUS==OP_Add ); 2467f2bc013cSdrh assert( TK_MINUS==OP_Subtract ); 2468f2bc013cSdrh assert( TK_REM==OP_Remainder ); 2469f2bc013cSdrh assert( TK_BITAND==OP_BitAnd ); 2470f2bc013cSdrh assert( TK_BITOR==OP_BitOr ); 2471f2bc013cSdrh assert( TK_SLASH==OP_Divide ); 2472f2bc013cSdrh assert( TK_LSHIFT==OP_ShiftLeft ); 2473f2bc013cSdrh assert( TK_RSHIFT==OP_ShiftRight ); 2474f2bc013cSdrh assert( TK_CONCAT==OP_Concat ); 2475c5499befSdrh testcase( op==TK_AND ); 2476c5499befSdrh testcase( op==TK_OR ); 2477c5499befSdrh testcase( op==TK_PLUS ); 2478c5499befSdrh testcase( op==TK_MINUS ); 2479c5499befSdrh testcase( op==TK_REM ); 2480c5499befSdrh testcase( op==TK_BITAND ); 2481c5499befSdrh testcase( op==TK_BITOR ); 2482c5499befSdrh testcase( op==TK_SLASH ); 2483c5499befSdrh testcase( op==TK_LSHIFT ); 2484c5499befSdrh testcase( op==TK_RSHIFT ); 2485c5499befSdrh testcase( op==TK_CONCAT ); 24862dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 24872dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 24885b6afba9Sdrh sqlite3VdbeAddOp3(v, op, r2, r1, target); 2489c5499befSdrh testcase( regFree1==0 ); 2490c5499befSdrh testcase( regFree2==0 ); 24910040077dSdrh break; 24920040077dSdrh } 2493cce7d176Sdrh case TK_UMINUS: { 2494fec19aadSdrh Expr *pLeft = pExpr->pLeft; 2495fec19aadSdrh assert( pLeft ); 2496fec19aadSdrh if( pLeft->op==TK_FLOAT ){ 249733e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 249833e619fcSdrh codeReal(v, pLeft->u.zToken, 1, target); 2499fbd60f82Sshane }else if( pLeft->op==TK_INTEGER ){ 250092b01d53Sdrh codeInteger(v, pLeft, 1, target); 25013c84ddffSdrh }else{ 25022dcef11bSdrh regFree1 = r1 = sqlite3GetTempReg(pParse); 25033c84ddffSdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, r1); 2504e55cbd72Sdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free2); 25052dcef11bSdrh sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target); 2506c5499befSdrh testcase( regFree2==0 ); 25073c84ddffSdrh } 25089de221dfSdrh inReg = target; 25096e142f54Sdrh break; 25106e142f54Sdrh } 2511bf4133cbSdrh case TK_BITNOT: 25126e142f54Sdrh case TK_NOT: { 2513f2bc013cSdrh assert( TK_BITNOT==OP_BitNot ); 2514f2bc013cSdrh assert( TK_NOT==OP_Not ); 2515c5499befSdrh testcase( op==TK_BITNOT ); 2516c5499befSdrh testcase( op==TK_NOT ); 2517e99fa2afSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2518e99fa2afSdrh testcase( regFree1==0 ); 2519e99fa2afSdrh inReg = target; 2520e99fa2afSdrh sqlite3VdbeAddOp2(v, op, r1, inReg); 2521cce7d176Sdrh break; 2522cce7d176Sdrh } 2523cce7d176Sdrh case TK_ISNULL: 2524cce7d176Sdrh case TK_NOTNULL: { 25256a288a33Sdrh int addr; 2526f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 2527f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 2528c5499befSdrh testcase( op==TK_ISNULL ); 2529c5499befSdrh testcase( op==TK_NOTNULL ); 25309de221dfSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 25312dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2532c5499befSdrh testcase( regFree1==0 ); 25332dcef11bSdrh addr = sqlite3VdbeAddOp1(v, op, r1); 25349de221dfSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, -1); 25356a288a33Sdrh sqlite3VdbeJumpHere(v, addr); 2536a37cdde0Sdanielk1977 break; 2537f2bc013cSdrh } 25382282792aSdrh case TK_AGG_FUNCTION: { 253913449892Sdrh AggInfo *pInfo = pExpr->pAggInfo; 25407e56e711Sdrh if( pInfo==0 ){ 254133e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 254233e619fcSdrh sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken); 25437e56e711Sdrh }else{ 25449de221dfSdrh inReg = pInfo->aFunc[pExpr->iAgg].iMem; 25457e56e711Sdrh } 25462282792aSdrh break; 25472282792aSdrh } 2548b71090fdSdrh case TK_CONST_FUNC: 2549cce7d176Sdrh case TK_FUNCTION: { 255012ffee8cSdrh ExprList *pFarg; /* List of function arguments */ 255112ffee8cSdrh int nFarg; /* Number of function arguments */ 255212ffee8cSdrh FuncDef *pDef; /* The function definition object */ 255312ffee8cSdrh int nId; /* Length of the function name in bytes */ 255412ffee8cSdrh const char *zId; /* The function name */ 255512ffee8cSdrh int constMask = 0; /* Mask of function arguments that are constant */ 255612ffee8cSdrh int i; /* Loop counter */ 255712ffee8cSdrh u8 enc = ENC(db); /* The text encoding used by this database */ 255812ffee8cSdrh CollSeq *pColl = 0; /* A collating sequence */ 255917435752Sdrh 25606ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 2561c5499befSdrh testcase( op==TK_CONST_FUNC ); 2562c5499befSdrh testcase( op==TK_FUNCTION ); 2563b7916a78Sdrh if( ExprHasAnyProperty(pExpr, EP_TokenOnly) ){ 256412ffee8cSdrh pFarg = 0; 256512ffee8cSdrh }else{ 256612ffee8cSdrh pFarg = pExpr->x.pList; 256712ffee8cSdrh } 256812ffee8cSdrh nFarg = pFarg ? pFarg->nExpr : 0; 256933e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 257033e619fcSdrh zId = pExpr->u.zToken; 2571b7916a78Sdrh nId = sqlite3Strlen30(zId); 257212ffee8cSdrh pDef = sqlite3FindFunction(db, zId, nId, nFarg, enc, 0); 2573feb306f5Sdrh if( pDef==0 ){ 2574feb306f5Sdrh sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId); 2575feb306f5Sdrh break; 2576feb306f5Sdrh } 2577ae6bb957Sdrh 2578ae6bb957Sdrh /* Attempt a direct implementation of the built-in COALESCE() and 2579ae6bb957Sdrh ** IFNULL() functions. This avoids unnecessary evalation of 2580ae6bb957Sdrh ** arguments past the first non-NULL argument. 2581ae6bb957Sdrh */ 2582ae6bb957Sdrh if( pDef->flags & SQLITE_FUNC_COALESCE ){ 2583ae6bb957Sdrh int endCoalesce = sqlite3VdbeMakeLabel(v); 2584ae6bb957Sdrh assert( nFarg>=2 ); 2585ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); 2586ae6bb957Sdrh for(i=1; i<nFarg; i++){ 2587ae6bb957Sdrh sqlite3VdbeAddOp2(v, OP_NotNull, target, endCoalesce); 2588ae6bb957Sdrh sqlite3ExprCacheRemove(pParse, target); 2589ae6bb957Sdrh sqlite3ExprCachePush(pParse); 2590ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[i].pExpr, target); 2591ae6bb957Sdrh sqlite3ExprCachePop(pParse, 1); 2592ae6bb957Sdrh } 2593ae6bb957Sdrh sqlite3VdbeResolveLabel(v, endCoalesce); 2594ae6bb957Sdrh break; 2595ae6bb957Sdrh } 2596ae6bb957Sdrh 2597ae6bb957Sdrh 259812ffee8cSdrh if( pFarg ){ 259912ffee8cSdrh r1 = sqlite3GetTempRange(pParse, nFarg); 2600d7d385ddSdrh sqlite3ExprCachePush(pParse); /* Ticket 2ea2425d34be */ 260112ffee8cSdrh sqlite3ExprCodeExprList(pParse, pFarg, r1, 1); 2602d7d385ddSdrh sqlite3ExprCachePop(pParse, 1); /* Ticket 2ea2425d34be */ 2603892d3179Sdrh }else{ 260412ffee8cSdrh r1 = 0; 2605892d3179Sdrh } 2606b7f6f68fSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE 2607a43fa227Sdrh /* Possibly overload the function if the first argument is 2608a43fa227Sdrh ** a virtual table column. 2609a43fa227Sdrh ** 2610a43fa227Sdrh ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the 2611a43fa227Sdrh ** second argument, not the first, as the argument to test to 2612a43fa227Sdrh ** see if it is a column in a virtual table. This is done because 2613a43fa227Sdrh ** the left operand of infix functions (the operand we want to 2614a43fa227Sdrh ** control overloading) ends up as the second argument to the 2615a43fa227Sdrh ** function. The expression "A glob B" is equivalent to 2616a43fa227Sdrh ** "glob(B,A). We want to use the A in "A glob B" to test 2617a43fa227Sdrh ** for function overloading. But we use the B term in "glob(B,A)". 2618a43fa227Sdrh */ 261912ffee8cSdrh if( nFarg>=2 && (pExpr->flags & EP_InfixFunc) ){ 262012ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr); 262112ffee8cSdrh }else if( nFarg>0 ){ 262212ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr); 2623b7f6f68fSdrh } 2624b7f6f68fSdrh #endif 2625f7bca574Sdrh for(i=0; i<nFarg; i++){ 2626f7bca574Sdrh if( i<32 && sqlite3ExprIsConstant(pFarg->a[i].pExpr) ){ 262713449892Sdrh constMask |= (1<<i); 2628d02eb1fdSdanielk1977 } 2629e82f5d04Sdrh if( (pDef->flags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){ 263012ffee8cSdrh pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr); 2631dc1bdc4fSdanielk1977 } 2632dc1bdc4fSdanielk1977 } 2633e82f5d04Sdrh if( pDef->flags & SQLITE_FUNC_NEEDCOLL ){ 26348b213899Sdrh if( !pColl ) pColl = db->pDfltColl; 263566a5167bSdrh sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ); 2636682f68b0Sdanielk1977 } 26372dcef11bSdrh sqlite3VdbeAddOp4(v, OP_Function, constMask, r1, target, 263866a5167bSdrh (char*)pDef, P4_FUNCDEF); 263912ffee8cSdrh sqlite3VdbeChangeP5(v, (u8)nFarg); 264012ffee8cSdrh if( nFarg ){ 264112ffee8cSdrh sqlite3ReleaseTempRange(pParse, r1, nFarg); 26422dcef11bSdrh } 264312ffee8cSdrh sqlite3ExprCacheAffinityChange(pParse, r1, nFarg); 26446ec2733bSdrh break; 26456ec2733bSdrh } 2646fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY 2647fe2093d7Sdrh case TK_EXISTS: 264819a775c2Sdrh case TK_SELECT: { 2649c5499befSdrh testcase( op==TK_EXISTS ); 2650c5499befSdrh testcase( op==TK_SELECT ); 26511450bc6eSdrh inReg = sqlite3CodeSubselect(pParse, pExpr, 0, 0); 265219a775c2Sdrh break; 265319a775c2Sdrh } 2654fef5208cSdrh case TK_IN: { 2655e3365e6cSdrh int destIfFalse = sqlite3VdbeMakeLabel(v); 2656e3365e6cSdrh int destIfNull = sqlite3VdbeMakeLabel(v); 2657e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2658e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); 265966ba23ceSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 2660e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse); 2661e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, 0); 2662e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull); 2663fef5208cSdrh break; 2664fef5208cSdrh } 2665e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */ 2666e3365e6cSdrh 2667e3365e6cSdrh 26682dcef11bSdrh /* 26692dcef11bSdrh ** x BETWEEN y AND z 26702dcef11bSdrh ** 26712dcef11bSdrh ** This is equivalent to 26722dcef11bSdrh ** 26732dcef11bSdrh ** x>=y AND x<=z 26742dcef11bSdrh ** 26752dcef11bSdrh ** X is stored in pExpr->pLeft. 26762dcef11bSdrh ** Y is stored in pExpr->pList->a[0].pExpr. 26772dcef11bSdrh ** Z is stored in pExpr->pList->a[1].pExpr. 26782dcef11bSdrh */ 2679fef5208cSdrh case TK_BETWEEN: { 2680be5c89acSdrh Expr *pLeft = pExpr->pLeft; 26816ab3a2ecSdanielk1977 struct ExprList_item *pLItem = pExpr->x.pList->a; 2682be5c89acSdrh Expr *pRight = pLItem->pExpr; 268335573356Sdrh 2684b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pLeft, ®Free1); 2685b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2686c5499befSdrh testcase( regFree1==0 ); 2687c5499befSdrh testcase( regFree2==0 ); 26882dcef11bSdrh r3 = sqlite3GetTempReg(pParse); 2689678ccce8Sdrh r4 = sqlite3GetTempReg(pParse); 269035573356Sdrh codeCompare(pParse, pLeft, pRight, OP_Ge, 269135573356Sdrh r1, r2, r3, SQLITE_STOREP2); 2692be5c89acSdrh pLItem++; 2693be5c89acSdrh pRight = pLItem->pExpr; 26942dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 26952dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2696c5499befSdrh testcase( regFree2==0 ); 2697678ccce8Sdrh codeCompare(pParse, pLeft, pRight, OP_Le, r1, r2, r4, SQLITE_STOREP2); 2698678ccce8Sdrh sqlite3VdbeAddOp3(v, OP_And, r3, r4, target); 26992dcef11bSdrh sqlite3ReleaseTempReg(pParse, r3); 2700678ccce8Sdrh sqlite3ReleaseTempReg(pParse, r4); 2701fef5208cSdrh break; 2702fef5208cSdrh } 27034f07e5fbSdrh case TK_UPLUS: { 27042dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 2705a2e00042Sdrh break; 2706a2e00042Sdrh } 27072dcef11bSdrh 2708165921a7Sdan case TK_TRIGGER: { 270965a7cd16Sdan /* If the opcode is TK_TRIGGER, then the expression is a reference 271065a7cd16Sdan ** to a column in the new.* or old.* pseudo-tables available to 271165a7cd16Sdan ** trigger programs. In this case Expr.iTable is set to 1 for the 271265a7cd16Sdan ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn 271365a7cd16Sdan ** is set to the column of the pseudo-table to read, or to -1 to 271465a7cd16Sdan ** read the rowid field. 271565a7cd16Sdan ** 271665a7cd16Sdan ** The expression is implemented using an OP_Param opcode. The p1 271765a7cd16Sdan ** parameter is set to 0 for an old.rowid reference, or to (i+1) 271865a7cd16Sdan ** to reference another column of the old.* pseudo-table, where 271965a7cd16Sdan ** i is the index of the column. For a new.rowid reference, p1 is 272065a7cd16Sdan ** set to (n+1), where n is the number of columns in each pseudo-table. 272165a7cd16Sdan ** For a reference to any other column in the new.* pseudo-table, p1 272265a7cd16Sdan ** is set to (n+2+i), where n and i are as defined previously. For 272365a7cd16Sdan ** example, if the table on which triggers are being fired is 272465a7cd16Sdan ** declared as: 272565a7cd16Sdan ** 272665a7cd16Sdan ** CREATE TABLE t1(a, b); 272765a7cd16Sdan ** 272865a7cd16Sdan ** Then p1 is interpreted as follows: 272965a7cd16Sdan ** 273065a7cd16Sdan ** p1==0 -> old.rowid p1==3 -> new.rowid 273165a7cd16Sdan ** p1==1 -> old.a p1==4 -> new.a 273265a7cd16Sdan ** p1==2 -> old.b p1==5 -> new.b 273365a7cd16Sdan */ 27342832ad42Sdan Table *pTab = pExpr->pTab; 273565a7cd16Sdan int p1 = pExpr->iTable * (pTab->nCol+1) + 1 + pExpr->iColumn; 273665a7cd16Sdan 273765a7cd16Sdan assert( pExpr->iTable==0 || pExpr->iTable==1 ); 273865a7cd16Sdan assert( pExpr->iColumn>=-1 && pExpr->iColumn<pTab->nCol ); 273965a7cd16Sdan assert( pTab->iPKey<0 || pExpr->iColumn!=pTab->iPKey ); 274065a7cd16Sdan assert( p1>=0 && p1<(pTab->nCol*2+2) ); 274165a7cd16Sdan 274265a7cd16Sdan sqlite3VdbeAddOp2(v, OP_Param, p1, target); 274376d462eeSdan VdbeComment((v, "%s.%s -> $%d", 2744165921a7Sdan (pExpr->iTable ? "new" : "old"), 274576d462eeSdan (pExpr->iColumn<0 ? "rowid" : pExpr->pTab->aCol[pExpr->iColumn].zName), 274676d462eeSdan target 2747165921a7Sdan )); 274865a7cd16Sdan 274965a7cd16Sdan /* If the column has REAL affinity, it may currently be stored as an 275065a7cd16Sdan ** integer. Use OP_RealAffinity to make sure it is really real. */ 27512832ad42Sdan if( pExpr->iColumn>=0 27522832ad42Sdan && pTab->aCol[pExpr->iColumn].affinity==SQLITE_AFF_REAL 27532832ad42Sdan ){ 27542832ad42Sdan sqlite3VdbeAddOp1(v, OP_RealAffinity, target); 27552832ad42Sdan } 2756165921a7Sdan break; 2757165921a7Sdan } 2758165921a7Sdan 2759165921a7Sdan 27602dcef11bSdrh /* 27612dcef11bSdrh ** Form A: 27622dcef11bSdrh ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 27632dcef11bSdrh ** 27642dcef11bSdrh ** Form B: 27652dcef11bSdrh ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 27662dcef11bSdrh ** 27672dcef11bSdrh ** Form A is can be transformed into the equivalent form B as follows: 27682dcef11bSdrh ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ... 27692dcef11bSdrh ** WHEN x=eN THEN rN ELSE y END 27702dcef11bSdrh ** 27712dcef11bSdrh ** X (if it exists) is in pExpr->pLeft. 27722dcef11bSdrh ** Y is in pExpr->pRight. The Y is also optional. If there is no 27732dcef11bSdrh ** ELSE clause and no other term matches, then the result of the 27742dcef11bSdrh ** exprssion is NULL. 27752dcef11bSdrh ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1]. 27762dcef11bSdrh ** 27772dcef11bSdrh ** The result of the expression is the Ri for the first matching Ei, 27782dcef11bSdrh ** or if there is no matching Ei, the ELSE term Y, or if there is 27792dcef11bSdrh ** no ELSE term, NULL. 27802dcef11bSdrh */ 278133cd4909Sdrh default: assert( op==TK_CASE ); { 27822dcef11bSdrh int endLabel; /* GOTO label for end of CASE stmt */ 27832dcef11bSdrh int nextCase; /* GOTO label for next WHEN clause */ 27842dcef11bSdrh int nExpr; /* 2x number of WHEN terms */ 27852dcef11bSdrh int i; /* Loop counter */ 27862dcef11bSdrh ExprList *pEList; /* List of WHEN terms */ 27872dcef11bSdrh struct ExprList_item *aListelem; /* Array of WHEN terms */ 27882dcef11bSdrh Expr opCompare; /* The X==Ei expression */ 27892dcef11bSdrh Expr cacheX; /* Cached expression X */ 27902dcef11bSdrh Expr *pX; /* The X expression */ 27911bd10f8aSdrh Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */ 2792ceea3321Sdrh VVA_ONLY( int iCacheLevel = pParse->iCacheLevel; ) 279317a7f8ddSdrh 27946ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) && pExpr->x.pList ); 27956ab3a2ecSdanielk1977 assert((pExpr->x.pList->nExpr % 2) == 0); 27966ab3a2ecSdanielk1977 assert(pExpr->x.pList->nExpr > 0); 27976ab3a2ecSdanielk1977 pEList = pExpr->x.pList; 2798be5c89acSdrh aListelem = pEList->a; 2799be5c89acSdrh nExpr = pEList->nExpr; 28002dcef11bSdrh endLabel = sqlite3VdbeMakeLabel(v); 28012dcef11bSdrh if( (pX = pExpr->pLeft)!=0 ){ 28022dcef11bSdrh cacheX = *pX; 280333cd4909Sdrh testcase( pX->op==TK_COLUMN ); 280433cd4909Sdrh testcase( pX->op==TK_REGISTER ); 28052dcef11bSdrh cacheX.iTable = sqlite3ExprCodeTemp(pParse, pX, ®Free1); 2806c5499befSdrh testcase( regFree1==0 ); 28072dcef11bSdrh cacheX.op = TK_REGISTER; 28082dcef11bSdrh opCompare.op = TK_EQ; 28092dcef11bSdrh opCompare.pLeft = &cacheX; 28102dcef11bSdrh pTest = &opCompare; 2811cce7d176Sdrh } 2812f5905aa7Sdrh for(i=0; i<nExpr; i=i+2){ 2813ceea3321Sdrh sqlite3ExprCachePush(pParse); 28142dcef11bSdrh if( pX ){ 28151bd10f8aSdrh assert( pTest!=0 ); 28162dcef11bSdrh opCompare.pRight = aListelem[i].pExpr; 2817f5905aa7Sdrh }else{ 28182dcef11bSdrh pTest = aListelem[i].pExpr; 281917a7f8ddSdrh } 28202dcef11bSdrh nextCase = sqlite3VdbeMakeLabel(v); 282133cd4909Sdrh testcase( pTest->op==TK_COLUMN ); 28222dcef11bSdrh sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL); 2823c5499befSdrh testcase( aListelem[i+1].pExpr->op==TK_COLUMN ); 2824c5499befSdrh testcase( aListelem[i+1].pExpr->op==TK_REGISTER ); 28259de221dfSdrh sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target); 28262dcef11bSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, endLabel); 2827ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 28282dcef11bSdrh sqlite3VdbeResolveLabel(v, nextCase); 2829f570f011Sdrh } 283017a7f8ddSdrh if( pExpr->pRight ){ 2831ceea3321Sdrh sqlite3ExprCachePush(pParse); 28329de221dfSdrh sqlite3ExprCode(pParse, pExpr->pRight, target); 2833ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 283417a7f8ddSdrh }else{ 28359de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 283617a7f8ddSdrh } 2837c1f4a19bSdanielk1977 assert( db->mallocFailed || pParse->nErr>0 2838c1f4a19bSdanielk1977 || pParse->iCacheLevel==iCacheLevel ); 28392dcef11bSdrh sqlite3VdbeResolveLabel(v, endLabel); 28406f34903eSdanielk1977 break; 28416f34903eSdanielk1977 } 28425338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER 28436f34903eSdanielk1977 case TK_RAISE: { 2844165921a7Sdan assert( pExpr->affinity==OE_Rollback 2845165921a7Sdan || pExpr->affinity==OE_Abort 2846165921a7Sdan || pExpr->affinity==OE_Fail 2847165921a7Sdan || pExpr->affinity==OE_Ignore 2848165921a7Sdan ); 2849e0af83acSdan if( !pParse->pTriggerTab ){ 2850e0af83acSdan sqlite3ErrorMsg(pParse, 2851e0af83acSdan "RAISE() may only be used within a trigger-program"); 2852e0af83acSdan return 0; 2853e0af83acSdan } 2854e0af83acSdan if( pExpr->affinity==OE_Abort ){ 2855e0af83acSdan sqlite3MayAbort(pParse); 2856e0af83acSdan } 285733e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 2858e0af83acSdan if( pExpr->affinity==OE_Ignore ){ 2859e0af83acSdan sqlite3VdbeAddOp4( 2860e0af83acSdan v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0); 2861e0af83acSdan }else{ 2862e0af83acSdan sqlite3HaltConstraint(pParse, pExpr->affinity, pExpr->u.zToken, 0); 2863e0af83acSdan } 2864e0af83acSdan 2865ffe07b2dSdrh break; 286617a7f8ddSdrh } 28675338a5f7Sdanielk1977 #endif 2868ffe07b2dSdrh } 28692dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 28702dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 28712dcef11bSdrh return inReg; 28725b6afba9Sdrh } 28732dcef11bSdrh 28742dcef11bSdrh /* 28752dcef11bSdrh ** Generate code to evaluate an expression and store the results 28762dcef11bSdrh ** into a register. Return the register number where the results 28772dcef11bSdrh ** are stored. 28782dcef11bSdrh ** 28792dcef11bSdrh ** If the register is a temporary register that can be deallocated, 2880678ccce8Sdrh ** then write its number into *pReg. If the result register is not 28812dcef11bSdrh ** a temporary, then set *pReg to zero. 28822dcef11bSdrh */ 28832dcef11bSdrh int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){ 28842dcef11bSdrh int r1 = sqlite3GetTempReg(pParse); 28852dcef11bSdrh int r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); 28862dcef11bSdrh if( r2==r1 ){ 28872dcef11bSdrh *pReg = r1; 28882dcef11bSdrh }else{ 28892dcef11bSdrh sqlite3ReleaseTempReg(pParse, r1); 28902dcef11bSdrh *pReg = 0; 28912dcef11bSdrh } 28922dcef11bSdrh return r2; 28932dcef11bSdrh } 28942dcef11bSdrh 28952dcef11bSdrh /* 28962dcef11bSdrh ** Generate code that will evaluate expression pExpr and store the 28972dcef11bSdrh ** results in register target. The results are guaranteed to appear 28982dcef11bSdrh ** in register target. 28992dcef11bSdrh */ 29002dcef11bSdrh int sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){ 29019cbf3425Sdrh int inReg; 29029cbf3425Sdrh 29039cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 29049cbf3425Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr, target); 29050e359b30Sdrh assert( pParse->pVdbe || pParse->db->mallocFailed ); 29060e359b30Sdrh if( inReg!=target && pParse->pVdbe ){ 29079cbf3425Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target); 290817a7f8ddSdrh } 2909389a1adbSdrh return target; 2910cce7d176Sdrh } 2911cce7d176Sdrh 2912cce7d176Sdrh /* 29132dcef11bSdrh ** Generate code that evalutes the given expression and puts the result 2914de4fcfddSdrh ** in register target. 291525303780Sdrh ** 29162dcef11bSdrh ** Also make a copy of the expression results into another "cache" register 29172dcef11bSdrh ** and modify the expression so that the next time it is evaluated, 29182dcef11bSdrh ** the result is a copy of the cache register. 29192dcef11bSdrh ** 29202dcef11bSdrh ** This routine is used for expressions that are used multiple 29212dcef11bSdrh ** times. They are evaluated once and the results of the expression 29222dcef11bSdrh ** are reused. 292325303780Sdrh */ 29242dcef11bSdrh int sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){ 292525303780Sdrh Vdbe *v = pParse->pVdbe; 29262dcef11bSdrh int inReg; 29272dcef11bSdrh inReg = sqlite3ExprCode(pParse, pExpr, target); 2928de4fcfddSdrh assert( target>0 ); 292920bc393cSdrh /* This routine is called for terms to INSERT or UPDATE. And the only 293020bc393cSdrh ** other place where expressions can be converted into TK_REGISTER is 293120bc393cSdrh ** in WHERE clause processing. So as currently implemented, there is 293220bc393cSdrh ** no way for a TK_REGISTER to exist here. But it seems prudent to 293320bc393cSdrh ** keep the ALWAYS() in case the conditions above change with future 293420bc393cSdrh ** modifications or enhancements. */ 293520bc393cSdrh if( ALWAYS(pExpr->op!=TK_REGISTER) ){ 293625303780Sdrh int iMem; 29372dcef11bSdrh iMem = ++pParse->nMem; 29382dcef11bSdrh sqlite3VdbeAddOp2(v, OP_Copy, inReg, iMem); 29392dcef11bSdrh pExpr->iTable = iMem; 2940937d0deaSdan pExpr->op2 = pExpr->op; 294125303780Sdrh pExpr->op = TK_REGISTER; 294225303780Sdrh } 29432dcef11bSdrh return inReg; 294425303780Sdrh } 29452dcef11bSdrh 2946678ccce8Sdrh /* 294747de955eSdrh ** Return TRUE if pExpr is an constant expression that is appropriate 294847de955eSdrh ** for factoring out of a loop. Appropriate expressions are: 294947de955eSdrh ** 295047de955eSdrh ** * Any expression that evaluates to two or more opcodes. 295147de955eSdrh ** 295247de955eSdrh ** * Any OP_Integer, OP_Real, OP_String, OP_Blob, OP_Null, 295347de955eSdrh ** or OP_Variable that does not need to be placed in a 295447de955eSdrh ** specific register. 295547de955eSdrh ** 295647de955eSdrh ** There is no point in factoring out single-instruction constant 295747de955eSdrh ** expressions that need to be placed in a particular register. 295847de955eSdrh ** We could factor them out, but then we would end up adding an 295947de955eSdrh ** OP_SCopy instruction to move the value into the correct register 296047de955eSdrh ** later. We might as well just use the original instruction and 296147de955eSdrh ** avoid the OP_SCopy. 296247de955eSdrh */ 296347de955eSdrh static int isAppropriateForFactoring(Expr *p){ 296447de955eSdrh if( !sqlite3ExprIsConstantNotJoin(p) ){ 296547de955eSdrh return 0; /* Only constant expressions are appropriate for factoring */ 296647de955eSdrh } 296747de955eSdrh if( (p->flags & EP_FixedDest)==0 ){ 296847de955eSdrh return 1; /* Any constant without a fixed destination is appropriate */ 296947de955eSdrh } 297047de955eSdrh while( p->op==TK_UPLUS ) p = p->pLeft; 297147de955eSdrh switch( p->op ){ 297247de955eSdrh #ifndef SQLITE_OMIT_BLOB_LITERAL 297347de955eSdrh case TK_BLOB: 297447de955eSdrh #endif 297547de955eSdrh case TK_VARIABLE: 297647de955eSdrh case TK_INTEGER: 297747de955eSdrh case TK_FLOAT: 297847de955eSdrh case TK_NULL: 297947de955eSdrh case TK_STRING: { 298047de955eSdrh testcase( p->op==TK_BLOB ); 298147de955eSdrh testcase( p->op==TK_VARIABLE ); 298247de955eSdrh testcase( p->op==TK_INTEGER ); 298347de955eSdrh testcase( p->op==TK_FLOAT ); 298447de955eSdrh testcase( p->op==TK_NULL ); 298547de955eSdrh testcase( p->op==TK_STRING ); 298647de955eSdrh /* Single-instruction constants with a fixed destination are 298747de955eSdrh ** better done in-line. If we factor them, they will just end 298847de955eSdrh ** up generating an OP_SCopy to move the value to the destination 298947de955eSdrh ** register. */ 299047de955eSdrh return 0; 299147de955eSdrh } 299247de955eSdrh case TK_UMINUS: { 299347de955eSdrh if( p->pLeft->op==TK_FLOAT || p->pLeft->op==TK_INTEGER ){ 299447de955eSdrh return 0; 299547de955eSdrh } 299647de955eSdrh break; 299747de955eSdrh } 299847de955eSdrh default: { 299947de955eSdrh break; 300047de955eSdrh } 300147de955eSdrh } 300247de955eSdrh return 1; 300347de955eSdrh } 300447de955eSdrh 300547de955eSdrh /* 300647de955eSdrh ** If pExpr is a constant expression that is appropriate for 300747de955eSdrh ** factoring out of a loop, then evaluate the expression 3008678ccce8Sdrh ** into a register and convert the expression into a TK_REGISTER 3009678ccce8Sdrh ** expression. 3010678ccce8Sdrh */ 30117d10d5a6Sdrh static int evalConstExpr(Walker *pWalker, Expr *pExpr){ 30127d10d5a6Sdrh Parse *pParse = pWalker->pParse; 301347de955eSdrh switch( pExpr->op ){ 3014e05c929bSdrh case TK_IN: 301547de955eSdrh case TK_REGISTER: { 301633cd4909Sdrh return WRC_Prune; 3017678ccce8Sdrh } 301847de955eSdrh case TK_FUNCTION: 301947de955eSdrh case TK_AGG_FUNCTION: 302047de955eSdrh case TK_CONST_FUNC: { 302147de955eSdrh /* The arguments to a function have a fixed destination. 302247de955eSdrh ** Mark them this way to avoid generated unneeded OP_SCopy 302347de955eSdrh ** instructions. 302447de955eSdrh */ 30256ab3a2ecSdanielk1977 ExprList *pList = pExpr->x.pList; 30266ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 302747de955eSdrh if( pList ){ 302847de955eSdrh int i = pList->nExpr; 302947de955eSdrh struct ExprList_item *pItem = pList->a; 303047de955eSdrh for(; i>0; i--, pItem++){ 303133cd4909Sdrh if( ALWAYS(pItem->pExpr) ) pItem->pExpr->flags |= EP_FixedDest; 303247de955eSdrh } 303347de955eSdrh } 303447de955eSdrh break; 303547de955eSdrh } 303647de955eSdrh } 303747de955eSdrh if( isAppropriateForFactoring(pExpr) ){ 3038678ccce8Sdrh int r1 = ++pParse->nMem; 3039678ccce8Sdrh int r2; 3040678ccce8Sdrh r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); 304133cd4909Sdrh if( NEVER(r1!=r2) ) sqlite3ReleaseTempReg(pParse, r1); 3042fcd4a150Sdan pExpr->op2 = pExpr->op; 3043678ccce8Sdrh pExpr->op = TK_REGISTER; 3044678ccce8Sdrh pExpr->iTable = r2; 30457d10d5a6Sdrh return WRC_Prune; 3046678ccce8Sdrh } 30477d10d5a6Sdrh return WRC_Continue; 3048678ccce8Sdrh } 3049678ccce8Sdrh 3050678ccce8Sdrh /* 3051678ccce8Sdrh ** Preevaluate constant subexpressions within pExpr and store the 3052678ccce8Sdrh ** results in registers. Modify pExpr so that the constant subexpresions 3053678ccce8Sdrh ** are TK_REGISTER opcodes that refer to the precomputed values. 3054678ccce8Sdrh */ 3055678ccce8Sdrh void sqlite3ExprCodeConstants(Parse *pParse, Expr *pExpr){ 30567d10d5a6Sdrh Walker w; 30577d10d5a6Sdrh w.xExprCallback = evalConstExpr; 30587d10d5a6Sdrh w.xSelectCallback = 0; 30597d10d5a6Sdrh w.pParse = pParse; 30607d10d5a6Sdrh sqlite3WalkExpr(&w, pExpr); 3061678ccce8Sdrh } 3062678ccce8Sdrh 306325303780Sdrh 306425303780Sdrh /* 3065268380caSdrh ** Generate code that pushes the value of every element of the given 30669cbf3425Sdrh ** expression list into a sequence of registers beginning at target. 3067268380caSdrh ** 3068892d3179Sdrh ** Return the number of elements evaluated. 3069268380caSdrh */ 30704adee20fSdanielk1977 int sqlite3ExprCodeExprList( 3071268380caSdrh Parse *pParse, /* Parsing context */ 3072389a1adbSdrh ExprList *pList, /* The expression list to be coded */ 3073191b54cbSdrh int target, /* Where to write results */ 3074d176611bSdrh int doHardCopy /* Make a hard copy of every element */ 3075268380caSdrh ){ 3076268380caSdrh struct ExprList_item *pItem; 30779cbf3425Sdrh int i, n; 30789d8b3072Sdrh assert( pList!=0 ); 30799cbf3425Sdrh assert( target>0 ); 3080268380caSdrh n = pList->nExpr; 3081191b54cbSdrh for(pItem=pList->a, i=0; i<n; i++, pItem++){ 30828b213899Sdrh if( pItem->iAlias ){ 308331daa63fSdrh int iReg = codeAlias(pParse, pItem->iAlias, pItem->pExpr, target+i); 30848b213899Sdrh Vdbe *v = sqlite3GetVdbe(pParse); 308531daa63fSdrh if( iReg!=target+i ){ 30868b213899Sdrh sqlite3VdbeAddOp2(v, OP_SCopy, iReg, target+i); 308731daa63fSdrh } 3088d176611bSdrh }else{ 3089191b54cbSdrh sqlite3ExprCode(pParse, pItem->pExpr, target+i); 30908b213899Sdrh } 309120411ea7Sdrh if( doHardCopy && !pParse->db->mallocFailed ){ 3092d176611bSdrh sqlite3ExprHardCopy(pParse, target, n); 3093d176611bSdrh } 3094268380caSdrh } 3095f9b596ebSdrh return n; 3096268380caSdrh } 3097268380caSdrh 3098268380caSdrh /* 309936c563a2Sdrh ** Generate code for a BETWEEN operator. 310036c563a2Sdrh ** 310136c563a2Sdrh ** x BETWEEN y AND z 310236c563a2Sdrh ** 310336c563a2Sdrh ** The above is equivalent to 310436c563a2Sdrh ** 310536c563a2Sdrh ** x>=y AND x<=z 310636c563a2Sdrh ** 310736c563a2Sdrh ** Code it as such, taking care to do the common subexpression 310836c563a2Sdrh ** elementation of x. 310936c563a2Sdrh */ 311036c563a2Sdrh static void exprCodeBetween( 311136c563a2Sdrh Parse *pParse, /* Parsing and code generating context */ 311236c563a2Sdrh Expr *pExpr, /* The BETWEEN expression */ 311336c563a2Sdrh int dest, /* Jump here if the jump is taken */ 311436c563a2Sdrh int jumpIfTrue, /* Take the jump if the BETWEEN is true */ 311536c563a2Sdrh int jumpIfNull /* Take the jump if the BETWEEN is NULL */ 311636c563a2Sdrh ){ 311736c563a2Sdrh Expr exprAnd; /* The AND operator in x>=y AND x<=z */ 311836c563a2Sdrh Expr compLeft; /* The x>=y term */ 311936c563a2Sdrh Expr compRight; /* The x<=z term */ 312036c563a2Sdrh Expr exprX; /* The x subexpression */ 312136c563a2Sdrh int regFree1 = 0; /* Temporary use register */ 312236c563a2Sdrh 312336c563a2Sdrh assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 312436c563a2Sdrh exprX = *pExpr->pLeft; 312536c563a2Sdrh exprAnd.op = TK_AND; 312636c563a2Sdrh exprAnd.pLeft = &compLeft; 312736c563a2Sdrh exprAnd.pRight = &compRight; 312836c563a2Sdrh compLeft.op = TK_GE; 312936c563a2Sdrh compLeft.pLeft = &exprX; 313036c563a2Sdrh compLeft.pRight = pExpr->x.pList->a[0].pExpr; 313136c563a2Sdrh compRight.op = TK_LE; 313236c563a2Sdrh compRight.pLeft = &exprX; 313336c563a2Sdrh compRight.pRight = pExpr->x.pList->a[1].pExpr; 313436c563a2Sdrh exprX.iTable = sqlite3ExprCodeTemp(pParse, &exprX, ®Free1); 313536c563a2Sdrh exprX.op = TK_REGISTER; 313636c563a2Sdrh if( jumpIfTrue ){ 313736c563a2Sdrh sqlite3ExprIfTrue(pParse, &exprAnd, dest, jumpIfNull); 313836c563a2Sdrh }else{ 313936c563a2Sdrh sqlite3ExprIfFalse(pParse, &exprAnd, dest, jumpIfNull); 314036c563a2Sdrh } 314136c563a2Sdrh sqlite3ReleaseTempReg(pParse, regFree1); 314236c563a2Sdrh 314336c563a2Sdrh /* Ensure adequate test coverage */ 314436c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1==0 ); 314536c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1!=0 ); 314636c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1==0 ); 314736c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1!=0 ); 314836c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1==0 ); 314936c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1!=0 ); 315036c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1==0 ); 315136c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1!=0 ); 315236c563a2Sdrh } 315336c563a2Sdrh 315436c563a2Sdrh /* 3155cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made 3156cce7d176Sdrh ** to the label "dest" if the expression is true but execution 3157cce7d176Sdrh ** continues straight thru if the expression is false. 3158f5905aa7Sdrh ** 3159f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then 316035573356Sdrh ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL. 3161f2bc013cSdrh ** 3162f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ) 3163f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding 3164f2bc013cSdrh ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in 3165f2bc013cSdrh ** the make process cause these values to align. Assert()s in the code 3166f2bc013cSdrh ** below verify that the numbers are aligned correctly. 3167cce7d176Sdrh */ 31684adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3169cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3170cce7d176Sdrh int op = 0; 31712dcef11bSdrh int regFree1 = 0; 31722dcef11bSdrh int regFree2 = 0; 31732dcef11bSdrh int r1, r2; 31742dcef11bSdrh 317535573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 317633cd4909Sdrh if( NEVER(v==0) ) return; /* Existance of VDBE checked by caller */ 317733cd4909Sdrh if( NEVER(pExpr==0) ) return; /* No way this can happen */ 3178f2bc013cSdrh op = pExpr->op; 3179f2bc013cSdrh switch( op ){ 3180cce7d176Sdrh case TK_AND: { 31814adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3182c5499befSdrh testcase( jumpIfNull==0 ); 3183ceea3321Sdrh sqlite3ExprCachePush(pParse); 318435573356Sdrh sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL); 31854adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 31864adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3187ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 3188cce7d176Sdrh break; 3189cce7d176Sdrh } 3190cce7d176Sdrh case TK_OR: { 3191c5499befSdrh testcase( jumpIfNull==0 ); 31924adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 31934adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 3194cce7d176Sdrh break; 3195cce7d176Sdrh } 3196cce7d176Sdrh case TK_NOT: { 3197c5499befSdrh testcase( jumpIfNull==0 ); 31984adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 3199cce7d176Sdrh break; 3200cce7d176Sdrh } 3201cce7d176Sdrh case TK_LT: 3202cce7d176Sdrh case TK_LE: 3203cce7d176Sdrh case TK_GT: 3204cce7d176Sdrh case TK_GE: 3205cce7d176Sdrh case TK_NE: 32060ac65892Sdrh case TK_EQ: { 3207f2bc013cSdrh assert( TK_LT==OP_Lt ); 3208f2bc013cSdrh assert( TK_LE==OP_Le ); 3209f2bc013cSdrh assert( TK_GT==OP_Gt ); 3210f2bc013cSdrh assert( TK_GE==OP_Ge ); 3211f2bc013cSdrh assert( TK_EQ==OP_Eq ); 3212f2bc013cSdrh assert( TK_NE==OP_Ne ); 3213c5499befSdrh testcase( op==TK_LT ); 3214c5499befSdrh testcase( op==TK_LE ); 3215c5499befSdrh testcase( op==TK_GT ); 3216c5499befSdrh testcase( op==TK_GE ); 3217c5499befSdrh testcase( op==TK_EQ ); 3218c5499befSdrh testcase( op==TK_NE ); 3219c5499befSdrh testcase( jumpIfNull==0 ); 3220b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3221b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 322235573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 32232dcef11bSdrh r1, r2, dest, jumpIfNull); 3224c5499befSdrh testcase( regFree1==0 ); 3225c5499befSdrh testcase( regFree2==0 ); 3226cce7d176Sdrh break; 3227cce7d176Sdrh } 32286a2fe093Sdrh case TK_IS: 32296a2fe093Sdrh case TK_ISNOT: { 32306a2fe093Sdrh testcase( op==TK_IS ); 32316a2fe093Sdrh testcase( op==TK_ISNOT ); 3232b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3233b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 32346a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 32356a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 32366a2fe093Sdrh r1, r2, dest, SQLITE_NULLEQ); 32376a2fe093Sdrh testcase( regFree1==0 ); 32386a2fe093Sdrh testcase( regFree2==0 ); 32396a2fe093Sdrh break; 32406a2fe093Sdrh } 3241cce7d176Sdrh case TK_ISNULL: 3242cce7d176Sdrh case TK_NOTNULL: { 3243f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 3244f2bc013cSdrh assert( TK_NOTNULL==OP_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: { 32535c03f30aSdrh testcase( jumpIfNull==0 ); 325436c563a2Sdrh exprCodeBetween(pParse, pExpr, dest, 1, jumpIfNull); 3255fef5208cSdrh break; 3256fef5208cSdrh } 3257e3365e6cSdrh case TK_IN: { 3258e3365e6cSdrh int destIfFalse = sqlite3VdbeMakeLabel(v); 3259e3365e6cSdrh int destIfNull = jumpIfNull ? dest : destIfFalse; 3260e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); 3261e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); 3262e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse); 3263e3365e6cSdrh break; 3264e3365e6cSdrh } 3265cce7d176Sdrh default: { 32662dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 32672dcef11bSdrh sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0); 3268c5499befSdrh testcase( regFree1==0 ); 3269c5499befSdrh testcase( jumpIfNull==0 ); 3270cce7d176Sdrh break; 3271cce7d176Sdrh } 3272cce7d176Sdrh } 32732dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 32742dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3275cce7d176Sdrh } 3276cce7d176Sdrh 3277cce7d176Sdrh /* 327866b89c8fSdrh ** Generate code for a boolean expression such that a jump is made 3279cce7d176Sdrh ** to the label "dest" if the expression is false but execution 3280cce7d176Sdrh ** continues straight thru if the expression is true. 3281f5905aa7Sdrh ** 3282f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then 328335573356Sdrh ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull 328435573356Sdrh ** is 0. 3285cce7d176Sdrh */ 32864adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3287cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3288cce7d176Sdrh int op = 0; 32892dcef11bSdrh int regFree1 = 0; 32902dcef11bSdrh int regFree2 = 0; 32912dcef11bSdrh int r1, r2; 32922dcef11bSdrh 329335573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 329433cd4909Sdrh if( NEVER(v==0) ) return; /* Existance of VDBE checked by caller */ 329533cd4909Sdrh if( pExpr==0 ) return; 3296f2bc013cSdrh 3297f2bc013cSdrh /* The value of pExpr->op and op are related as follows: 3298f2bc013cSdrh ** 3299f2bc013cSdrh ** pExpr->op op 3300f2bc013cSdrh ** --------- ---------- 3301f2bc013cSdrh ** TK_ISNULL OP_NotNull 3302f2bc013cSdrh ** TK_NOTNULL OP_IsNull 3303f2bc013cSdrh ** TK_NE OP_Eq 3304f2bc013cSdrh ** TK_EQ OP_Ne 3305f2bc013cSdrh ** TK_GT OP_Le 3306f2bc013cSdrh ** TK_LE OP_Gt 3307f2bc013cSdrh ** TK_GE OP_Lt 3308f2bc013cSdrh ** TK_LT OP_Ge 3309f2bc013cSdrh ** 3310f2bc013cSdrh ** For other values of pExpr->op, op is undefined and unused. 3311f2bc013cSdrh ** The value of TK_ and OP_ constants are arranged such that we 3312f2bc013cSdrh ** can compute the mapping above using the following expression. 3313f2bc013cSdrh ** Assert()s verify that the computation is correct. 3314f2bc013cSdrh */ 3315f2bc013cSdrh op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1); 3316f2bc013cSdrh 3317f2bc013cSdrh /* Verify correct alignment of TK_ and OP_ constants 3318f2bc013cSdrh */ 3319f2bc013cSdrh assert( pExpr->op!=TK_ISNULL || op==OP_NotNull ); 3320f2bc013cSdrh assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull ); 3321f2bc013cSdrh assert( pExpr->op!=TK_NE || op==OP_Eq ); 3322f2bc013cSdrh assert( pExpr->op!=TK_EQ || op==OP_Ne ); 3323f2bc013cSdrh assert( pExpr->op!=TK_LT || op==OP_Ge ); 3324f2bc013cSdrh assert( pExpr->op!=TK_LE || op==OP_Gt ); 3325f2bc013cSdrh assert( pExpr->op!=TK_GT || op==OP_Le ); 3326f2bc013cSdrh assert( pExpr->op!=TK_GE || op==OP_Lt ); 3327f2bc013cSdrh 3328cce7d176Sdrh switch( pExpr->op ){ 3329cce7d176Sdrh case TK_AND: { 3330c5499befSdrh testcase( jumpIfNull==0 ); 33314adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 33324adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 3333cce7d176Sdrh break; 3334cce7d176Sdrh } 3335cce7d176Sdrh case TK_OR: { 33364adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3337c5499befSdrh testcase( jumpIfNull==0 ); 3338ceea3321Sdrh sqlite3ExprCachePush(pParse); 333935573356Sdrh sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL); 33404adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 33414adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3342ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 3343cce7d176Sdrh break; 3344cce7d176Sdrh } 3345cce7d176Sdrh case TK_NOT: { 33465c03f30aSdrh testcase( jumpIfNull==0 ); 33474adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 3348cce7d176Sdrh break; 3349cce7d176Sdrh } 3350cce7d176Sdrh case TK_LT: 3351cce7d176Sdrh case TK_LE: 3352cce7d176Sdrh case TK_GT: 3353cce7d176Sdrh case TK_GE: 3354cce7d176Sdrh case TK_NE: 3355cce7d176Sdrh case TK_EQ: { 3356c5499befSdrh testcase( op==TK_LT ); 3357c5499befSdrh testcase( op==TK_LE ); 3358c5499befSdrh testcase( op==TK_GT ); 3359c5499befSdrh testcase( op==TK_GE ); 3360c5499befSdrh testcase( op==TK_EQ ); 3361c5499befSdrh testcase( op==TK_NE ); 3362c5499befSdrh testcase( jumpIfNull==0 ); 3363b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3364b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 336535573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 33662dcef11bSdrh r1, r2, dest, jumpIfNull); 3367c5499befSdrh testcase( regFree1==0 ); 3368c5499befSdrh testcase( regFree2==0 ); 3369cce7d176Sdrh break; 3370cce7d176Sdrh } 33716a2fe093Sdrh case TK_IS: 33726a2fe093Sdrh case TK_ISNOT: { 33736d4486aeSdrh testcase( pExpr->op==TK_IS ); 33746d4486aeSdrh testcase( pExpr->op==TK_ISNOT ); 3375b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3376b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 33776a2fe093Sdrh op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ; 33786a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 33796a2fe093Sdrh r1, r2, dest, SQLITE_NULLEQ); 33806a2fe093Sdrh testcase( regFree1==0 ); 33816a2fe093Sdrh testcase( regFree2==0 ); 33826a2fe093Sdrh break; 33836a2fe093Sdrh } 3384cce7d176Sdrh case TK_ISNULL: 3385cce7d176Sdrh case TK_NOTNULL: { 3386c5499befSdrh testcase( op==TK_ISNULL ); 3387c5499befSdrh testcase( op==TK_NOTNULL ); 33882dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 33892dcef11bSdrh sqlite3VdbeAddOp2(v, op, r1, dest); 3390c5499befSdrh testcase( regFree1==0 ); 3391cce7d176Sdrh break; 3392cce7d176Sdrh } 3393fef5208cSdrh case TK_BETWEEN: { 33945c03f30aSdrh testcase( jumpIfNull==0 ); 339536c563a2Sdrh exprCodeBetween(pParse, pExpr, dest, 0, jumpIfNull); 3396fef5208cSdrh break; 3397fef5208cSdrh } 3398e3365e6cSdrh case TK_IN: { 3399e3365e6cSdrh if( jumpIfNull ){ 3400e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, dest); 3401e3365e6cSdrh }else{ 3402e3365e6cSdrh int destIfNull = sqlite3VdbeMakeLabel(v); 3403e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, destIfNull); 3404e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull); 3405e3365e6cSdrh } 3406e3365e6cSdrh break; 3407e3365e6cSdrh } 3408cce7d176Sdrh default: { 34092dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 34102dcef11bSdrh sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0); 3411c5499befSdrh testcase( regFree1==0 ); 3412c5499befSdrh testcase( jumpIfNull==0 ); 3413cce7d176Sdrh break; 3414cce7d176Sdrh } 3415cce7d176Sdrh } 34162dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 34172dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3418cce7d176Sdrh } 34192282792aSdrh 34202282792aSdrh /* 34212282792aSdrh ** Do a deep comparison of two expression trees. Return TRUE (non-zero) 34222282792aSdrh ** if they are identical and return FALSE if they differ in any way. 3423d40aab0eSdrh ** 3424d40aab0eSdrh ** Sometimes this routine will return FALSE even if the two expressions 3425d40aab0eSdrh ** really are equivalent. If we cannot prove that the expressions are 3426d40aab0eSdrh ** identical, we return FALSE just to be safe. So if this routine 3427d40aab0eSdrh ** returns false, then you do not really know for certain if the two 3428d40aab0eSdrh ** expressions are the same. But if you get a TRUE return, then you 3429d40aab0eSdrh ** can be sure the expressions are the same. In the places where 3430d40aab0eSdrh ** this routine is used, it does not hurt to get an extra FALSE - that 3431d40aab0eSdrh ** just might result in some slightly slower code. But returning 3432d40aab0eSdrh ** an incorrect TRUE could lead to a malfunction. 34332282792aSdrh */ 34344adee20fSdanielk1977 int sqlite3ExprCompare(Expr *pA, Expr *pB){ 34352282792aSdrh int i; 34364b202ae2Sdanielk1977 if( pA==0||pB==0 ){ 34374b202ae2Sdanielk1977 return pB==pA; 34382282792aSdrh } 343933e619fcSdrh assert( !ExprHasAnyProperty(pA, EP_TokenOnly|EP_Reduced) ); 344033e619fcSdrh assert( !ExprHasAnyProperty(pB, EP_TokenOnly|EP_Reduced) ); 34416ab3a2ecSdanielk1977 if( ExprHasProperty(pA, EP_xIsSelect) || ExprHasProperty(pB, EP_xIsSelect) ){ 34426ab3a2ecSdanielk1977 return 0; 34436ab3a2ecSdanielk1977 } 3444fd357974Sdrh if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 0; 34456ab3a2ecSdanielk1977 if( pA->op!=pB->op ) return 0; 34464adee20fSdanielk1977 if( !sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 0; 34474adee20fSdanielk1977 if( !sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 0; 34486ab3a2ecSdanielk1977 34496ab3a2ecSdanielk1977 if( pA->x.pList && pB->x.pList ){ 34506ab3a2ecSdanielk1977 if( pA->x.pList->nExpr!=pB->x.pList->nExpr ) return 0; 34516ab3a2ecSdanielk1977 for(i=0; i<pA->x.pList->nExpr; i++){ 34526ab3a2ecSdanielk1977 Expr *pExprA = pA->x.pList->a[i].pExpr; 34536ab3a2ecSdanielk1977 Expr *pExprB = pB->x.pList->a[i].pExpr; 34546ab3a2ecSdanielk1977 if( !sqlite3ExprCompare(pExprA, pExprB) ) return 0; 34556ab3a2ecSdanielk1977 } 34566ab3a2ecSdanielk1977 }else if( pA->x.pList || pB->x.pList ){ 34572282792aSdrh return 0; 34582282792aSdrh } 34596ab3a2ecSdanielk1977 34602f2c01e5Sdrh if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 0; 346133e619fcSdrh if( ExprHasProperty(pA, EP_IntValue) ){ 346233e619fcSdrh if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){ 346333e619fcSdrh return 0; 346433e619fcSdrh } 346533e619fcSdrh }else if( pA->op!=TK_COLUMN && pA->u.zToken ){ 346620bc393cSdrh if( ExprHasProperty(pB, EP_IntValue) || NEVER(pB->u.zToken==0) ) return 0; 346733e619fcSdrh if( sqlite3StrICmp(pA->u.zToken,pB->u.zToken)!=0 ){ 34682646da7eSdrh return 0; 34692646da7eSdrh } 34702282792aSdrh } 34712282792aSdrh return 1; 34722282792aSdrh } 34732282792aSdrh 347413449892Sdrh 34752282792aSdrh /* 347613449892Sdrh ** Add a new element to the pAggInfo->aCol[] array. Return the index of 347713449892Sdrh ** the new element. Return a negative number if malloc fails. 34782282792aSdrh */ 347917435752Sdrh static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){ 348013449892Sdrh int i; 3481cf643729Sdrh pInfo->aCol = sqlite3ArrayAllocate( 348217435752Sdrh db, 3483cf643729Sdrh pInfo->aCol, 3484cf643729Sdrh sizeof(pInfo->aCol[0]), 3485cf643729Sdrh 3, 3486cf643729Sdrh &pInfo->nColumn, 3487cf643729Sdrh &pInfo->nColumnAlloc, 3488cf643729Sdrh &i 3489cf643729Sdrh ); 349013449892Sdrh return i; 34912282792aSdrh } 349213449892Sdrh 349313449892Sdrh /* 349413449892Sdrh ** Add a new element to the pAggInfo->aFunc[] array. Return the index of 349513449892Sdrh ** the new element. Return a negative number if malloc fails. 349613449892Sdrh */ 349717435752Sdrh static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){ 349813449892Sdrh int i; 3499cf643729Sdrh pInfo->aFunc = sqlite3ArrayAllocate( 350017435752Sdrh db, 3501cf643729Sdrh pInfo->aFunc, 3502cf643729Sdrh sizeof(pInfo->aFunc[0]), 3503cf643729Sdrh 3, 3504cf643729Sdrh &pInfo->nFunc, 3505cf643729Sdrh &pInfo->nFuncAlloc, 3506cf643729Sdrh &i 3507cf643729Sdrh ); 350813449892Sdrh return i; 35092282792aSdrh } 35102282792aSdrh 35112282792aSdrh /* 35127d10d5a6Sdrh ** This is the xExprCallback for a tree walker. It is used to 35137d10d5a6Sdrh ** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates 3514626a879aSdrh ** for additional information. 35152282792aSdrh */ 35167d10d5a6Sdrh static int analyzeAggregate(Walker *pWalker, Expr *pExpr){ 35172282792aSdrh int i; 35187d10d5a6Sdrh NameContext *pNC = pWalker->u.pNC; 3519a58fdfb1Sdanielk1977 Parse *pParse = pNC->pParse; 3520a58fdfb1Sdanielk1977 SrcList *pSrcList = pNC->pSrcList; 352113449892Sdrh AggInfo *pAggInfo = pNC->pAggInfo; 352213449892Sdrh 35232282792aSdrh switch( pExpr->op ){ 352489c69d00Sdrh case TK_AGG_COLUMN: 3525967e8b73Sdrh case TK_COLUMN: { 35268b213899Sdrh testcase( pExpr->op==TK_AGG_COLUMN ); 35278b213899Sdrh testcase( pExpr->op==TK_COLUMN ); 352813449892Sdrh /* Check to see if the column is in one of the tables in the FROM 352913449892Sdrh ** clause of the aggregate query */ 353020bc393cSdrh if( ALWAYS(pSrcList!=0) ){ 353113449892Sdrh struct SrcList_item *pItem = pSrcList->a; 353213449892Sdrh for(i=0; i<pSrcList->nSrc; i++, pItem++){ 353313449892Sdrh struct AggInfo_col *pCol; 353433e619fcSdrh assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 353513449892Sdrh if( pExpr->iTable==pItem->iCursor ){ 353613449892Sdrh /* If we reach this point, it means that pExpr refers to a table 353713449892Sdrh ** that is in the FROM clause of the aggregate query. 353813449892Sdrh ** 353913449892Sdrh ** Make an entry for the column in pAggInfo->aCol[] if there 354013449892Sdrh ** is not an entry there already. 354113449892Sdrh */ 35427f906d63Sdrh int k; 354313449892Sdrh pCol = pAggInfo->aCol; 35447f906d63Sdrh for(k=0; k<pAggInfo->nColumn; k++, pCol++){ 354513449892Sdrh if( pCol->iTable==pExpr->iTable && 354613449892Sdrh pCol->iColumn==pExpr->iColumn ){ 35472282792aSdrh break; 35482282792aSdrh } 35492282792aSdrh } 35501e536953Sdanielk1977 if( (k>=pAggInfo->nColumn) 35511e536953Sdanielk1977 && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0 35521e536953Sdanielk1977 ){ 35537f906d63Sdrh pCol = &pAggInfo->aCol[k]; 35540817d0dfSdanielk1977 pCol->pTab = pExpr->pTab; 355513449892Sdrh pCol->iTable = pExpr->iTable; 355613449892Sdrh pCol->iColumn = pExpr->iColumn; 35570a07c107Sdrh pCol->iMem = ++pParse->nMem; 355813449892Sdrh pCol->iSorterColumn = -1; 35595774b806Sdrh pCol->pExpr = pExpr; 356013449892Sdrh if( pAggInfo->pGroupBy ){ 356113449892Sdrh int j, n; 356213449892Sdrh ExprList *pGB = pAggInfo->pGroupBy; 356313449892Sdrh struct ExprList_item *pTerm = pGB->a; 356413449892Sdrh n = pGB->nExpr; 356513449892Sdrh for(j=0; j<n; j++, pTerm++){ 356613449892Sdrh Expr *pE = pTerm->pExpr; 356713449892Sdrh if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable && 356813449892Sdrh pE->iColumn==pExpr->iColumn ){ 356913449892Sdrh pCol->iSorterColumn = j; 357013449892Sdrh break; 35712282792aSdrh } 357213449892Sdrh } 357313449892Sdrh } 357413449892Sdrh if( pCol->iSorterColumn<0 ){ 357513449892Sdrh pCol->iSorterColumn = pAggInfo->nSortingColumn++; 357613449892Sdrh } 357713449892Sdrh } 357813449892Sdrh /* There is now an entry for pExpr in pAggInfo->aCol[] (either 357913449892Sdrh ** because it was there before or because we just created it). 358013449892Sdrh ** Convert the pExpr to be a TK_AGG_COLUMN referring to that 358113449892Sdrh ** pAggInfo->aCol[] entry. 358213449892Sdrh */ 358333e619fcSdrh ExprSetIrreducible(pExpr); 358413449892Sdrh pExpr->pAggInfo = pAggInfo; 358513449892Sdrh pExpr->op = TK_AGG_COLUMN; 3586cf697396Sshane pExpr->iAgg = (i16)k; 358713449892Sdrh break; 358813449892Sdrh } /* endif pExpr->iTable==pItem->iCursor */ 358913449892Sdrh } /* end loop over pSrcList */ 3590a58fdfb1Sdanielk1977 } 35917d10d5a6Sdrh return WRC_Prune; 35922282792aSdrh } 35932282792aSdrh case TK_AGG_FUNCTION: { 359413449892Sdrh /* The pNC->nDepth==0 test causes aggregate functions in subqueries 359513449892Sdrh ** to be ignored */ 3596a58fdfb1Sdanielk1977 if( pNC->nDepth==0 ){ 359713449892Sdrh /* Check to see if pExpr is a duplicate of another aggregate 359813449892Sdrh ** function that is already in the pAggInfo structure 359913449892Sdrh */ 360013449892Sdrh struct AggInfo_func *pItem = pAggInfo->aFunc; 360113449892Sdrh for(i=0; i<pAggInfo->nFunc; i++, pItem++){ 360213449892Sdrh if( sqlite3ExprCompare(pItem->pExpr, pExpr) ){ 36032282792aSdrh break; 36042282792aSdrh } 36052282792aSdrh } 360613449892Sdrh if( i>=pAggInfo->nFunc ){ 360713449892Sdrh /* pExpr is original. Make a new entry in pAggInfo->aFunc[] 360813449892Sdrh */ 360914db2665Sdanielk1977 u8 enc = ENC(pParse->db); 36101e536953Sdanielk1977 i = addAggInfoFunc(pParse->db, pAggInfo); 361113449892Sdrh if( i>=0 ){ 36126ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 361313449892Sdrh pItem = &pAggInfo->aFunc[i]; 361413449892Sdrh pItem->pExpr = pExpr; 36150a07c107Sdrh pItem->iMem = ++pParse->nMem; 361633e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 361713449892Sdrh pItem->pFunc = sqlite3FindFunction(pParse->db, 361833e619fcSdrh pExpr->u.zToken, sqlite3Strlen30(pExpr->u.zToken), 36196ab3a2ecSdanielk1977 pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0); 3620fd357974Sdrh if( pExpr->flags & EP_Distinct ){ 3621fd357974Sdrh pItem->iDistinct = pParse->nTab++; 3622fd357974Sdrh }else{ 3623fd357974Sdrh pItem->iDistinct = -1; 3624fd357974Sdrh } 36252282792aSdrh } 362613449892Sdrh } 362713449892Sdrh /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry 362813449892Sdrh */ 362933e619fcSdrh assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 363033e619fcSdrh ExprSetIrreducible(pExpr); 3631cf697396Sshane pExpr->iAgg = (i16)i; 363213449892Sdrh pExpr->pAggInfo = pAggInfo; 36337d10d5a6Sdrh return WRC_Prune; 36342282792aSdrh } 36352282792aSdrh } 3636a58fdfb1Sdanielk1977 } 36377d10d5a6Sdrh return WRC_Continue; 36387d10d5a6Sdrh } 36397d10d5a6Sdrh static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){ 36407d10d5a6Sdrh NameContext *pNC = pWalker->u.pNC; 36417d10d5a6Sdrh if( pNC->nDepth==0 ){ 3642a58fdfb1Sdanielk1977 pNC->nDepth++; 36437d10d5a6Sdrh sqlite3WalkSelect(pWalker, pSelect); 3644a58fdfb1Sdanielk1977 pNC->nDepth--; 36457d10d5a6Sdrh return WRC_Prune; 36467d10d5a6Sdrh }else{ 36477d10d5a6Sdrh return WRC_Continue; 3648a58fdfb1Sdanielk1977 } 36492282792aSdrh } 3650626a879aSdrh 3651626a879aSdrh /* 3652626a879aSdrh ** Analyze the given expression looking for aggregate functions and 3653626a879aSdrh ** for variables that need to be added to the pParse->aAgg[] array. 3654626a879aSdrh ** Make additional entries to the pParse->aAgg[] array as necessary. 3655626a879aSdrh ** 3656626a879aSdrh ** This routine should only be called after the expression has been 36577d10d5a6Sdrh ** analyzed by sqlite3ResolveExprNames(). 3658626a879aSdrh */ 3659d2b3e23bSdrh void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){ 36607d10d5a6Sdrh Walker w; 36617d10d5a6Sdrh w.xExprCallback = analyzeAggregate; 36627d10d5a6Sdrh w.xSelectCallback = analyzeAggregatesInSelect; 36637d10d5a6Sdrh w.u.pNC = pNC; 366420bc393cSdrh assert( pNC->pSrcList!=0 ); 36657d10d5a6Sdrh sqlite3WalkExpr(&w, pExpr); 36662282792aSdrh } 36675d9a4af9Sdrh 36685d9a4af9Sdrh /* 36695d9a4af9Sdrh ** Call sqlite3ExprAnalyzeAggregates() for every expression in an 36705d9a4af9Sdrh ** expression list. Return the number of errors. 36715d9a4af9Sdrh ** 36725d9a4af9Sdrh ** If an error is found, the analysis is cut short. 36735d9a4af9Sdrh */ 3674d2b3e23bSdrh void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){ 36755d9a4af9Sdrh struct ExprList_item *pItem; 36765d9a4af9Sdrh int i; 36775d9a4af9Sdrh if( pList ){ 3678d2b3e23bSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 3679d2b3e23bSdrh sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr); 36805d9a4af9Sdrh } 36815d9a4af9Sdrh } 36825d9a4af9Sdrh } 3683892d3179Sdrh 3684892d3179Sdrh /* 3685ceea3321Sdrh ** Allocate a single new register for use to hold some intermediate result. 3686892d3179Sdrh */ 3687892d3179Sdrh int sqlite3GetTempReg(Parse *pParse){ 3688e55cbd72Sdrh if( pParse->nTempReg==0 ){ 3689892d3179Sdrh return ++pParse->nMem; 3690892d3179Sdrh } 36912f425f6bSdanielk1977 return pParse->aTempReg[--pParse->nTempReg]; 3692892d3179Sdrh } 3693ceea3321Sdrh 3694ceea3321Sdrh /* 3695ceea3321Sdrh ** Deallocate a register, making available for reuse for some other 3696ceea3321Sdrh ** purpose. 3697ceea3321Sdrh ** 3698ceea3321Sdrh ** If a register is currently being used by the column cache, then 3699ceea3321Sdrh ** the dallocation is deferred until the column cache line that uses 3700ceea3321Sdrh ** the register becomes stale. 3701ceea3321Sdrh */ 3702892d3179Sdrh void sqlite3ReleaseTempReg(Parse *pParse, int iReg){ 37032dcef11bSdrh if( iReg && pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 3704ceea3321Sdrh int i; 3705ceea3321Sdrh struct yColCache *p; 3706ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 3707ceea3321Sdrh if( p->iReg==iReg ){ 3708ceea3321Sdrh p->tempReg = 1; 3709ceea3321Sdrh return; 3710ceea3321Sdrh } 3711ceea3321Sdrh } 3712892d3179Sdrh pParse->aTempReg[pParse->nTempReg++] = iReg; 3713892d3179Sdrh } 3714892d3179Sdrh } 3715892d3179Sdrh 3716892d3179Sdrh /* 3717892d3179Sdrh ** Allocate or deallocate a block of nReg consecutive registers 3718892d3179Sdrh */ 3719892d3179Sdrh int sqlite3GetTempRange(Parse *pParse, int nReg){ 3720e55cbd72Sdrh int i, n; 3721892d3179Sdrh i = pParse->iRangeReg; 3722e55cbd72Sdrh n = pParse->nRangeReg; 3723e55cbd72Sdrh if( nReg<=n && !usedAsColumnCache(pParse, i, i+n-1) ){ 3724892d3179Sdrh pParse->iRangeReg += nReg; 3725892d3179Sdrh pParse->nRangeReg -= nReg; 3726892d3179Sdrh }else{ 3727892d3179Sdrh i = pParse->nMem+1; 3728892d3179Sdrh pParse->nMem += nReg; 3729892d3179Sdrh } 3730892d3179Sdrh return i; 3731892d3179Sdrh } 3732892d3179Sdrh void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){ 3733892d3179Sdrh if( nReg>pParse->nRangeReg ){ 3734892d3179Sdrh pParse->nRangeReg = nReg; 3735892d3179Sdrh pParse->iRangeReg = iReg; 3736892d3179Sdrh } 3737892d3179Sdrh } 3738