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 /* 598342e49fSdrh ** Set the explicit collating sequence for an expression to the 608342e49fSdrh ** collating sequence supplied in the second argument. 618342e49fSdrh */ 628342e49fSdrh Expr *sqlite3ExprSetColl(Expr *pExpr, CollSeq *pColl){ 638342e49fSdrh if( pExpr && pColl ){ 648342e49fSdrh pExpr->pColl = pColl; 658342e49fSdrh pExpr->flags |= EP_ExpCollate; 668342e49fSdrh } 678342e49fSdrh return pExpr; 688342e49fSdrh } 698342e49fSdrh 708342e49fSdrh /* 718b4c40d8Sdrh ** Set the collating sequence for expression pExpr to be the collating 728b4c40d8Sdrh ** sequence named by pToken. Return a pointer to the revised expression. 73a34001c9Sdrh ** The collating sequence is marked as "explicit" using the EP_ExpCollate 74a34001c9Sdrh ** flag. An explicit collating sequence will override implicit 75a34001c9Sdrh ** collating sequences. 768b4c40d8Sdrh */ 778342e49fSdrh Expr *sqlite3ExprSetCollByToken(Parse *pParse, Expr *pExpr, Token *pCollName){ 7839002505Sdanielk1977 char *zColl = 0; /* Dequoted name of collation sequence */ 798b4c40d8Sdrh CollSeq *pColl; 80633e6d57Sdrh sqlite3 *db = pParse->db; 817d10d5a6Sdrh zColl = sqlite3NameFromToken(db, pCollName); 82c4a64facSdrh pColl = sqlite3LocateCollSeq(pParse, zColl); 838342e49fSdrh sqlite3ExprSetColl(pExpr, pColl); 84633e6d57Sdrh sqlite3DbFree(db, zColl); 858b4c40d8Sdrh return pExpr; 868b4c40d8Sdrh } 878b4c40d8Sdrh 888b4c40d8Sdrh /* 890202b29eSdanielk1977 ** Return the default collation sequence for the expression pExpr. If 900202b29eSdanielk1977 ** there is no default collation type, return 0. 910202b29eSdanielk1977 */ 927cedc8d4Sdanielk1977 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){ 937cedc8d4Sdanielk1977 CollSeq *pColl = 0; 947d10d5a6Sdrh Expr *p = pExpr; 9584e30ca0Sdrh while( p ){ 967e09fe0bSdrh int op; 977d10d5a6Sdrh pColl = p->pColl; 987d10d5a6Sdrh if( pColl ) break; 997d10d5a6Sdrh op = p->op; 10076d462eeSdan if( p->pTab!=0 && ( 10176d462eeSdan op==TK_AGG_COLUMN || op==TK_COLUMN || op==TK_REGISTER || op==TK_TRIGGER 10276d462eeSdan )){ 1037d10d5a6Sdrh /* op==TK_REGISTER && p->pTab!=0 happens when pExpr was originally 1047d10d5a6Sdrh ** a TK_COLUMN but was previously evaluated and cached in a register */ 1057d10d5a6Sdrh const char *zColl; 1067d10d5a6Sdrh int j = p->iColumn; 1077d10d5a6Sdrh if( j>=0 ){ 1087d10d5a6Sdrh sqlite3 *db = pParse->db; 1097d10d5a6Sdrh zColl = p->pTab->aCol[j].zColl; 110c4a64facSdrh pColl = sqlite3FindCollSeq(db, ENC(db), zColl, 0); 1117d10d5a6Sdrh pExpr->pColl = pColl; 1120202b29eSdanielk1977 } 1137d10d5a6Sdrh break; 1147d10d5a6Sdrh } 1157d10d5a6Sdrh if( op!=TK_CAST && op!=TK_UPLUS ){ 1167d10d5a6Sdrh break; 1177d10d5a6Sdrh } 1187d10d5a6Sdrh p = p->pLeft; 1190202b29eSdanielk1977 } 1207cedc8d4Sdanielk1977 if( sqlite3CheckCollSeq(pParse, pColl) ){ 1217cedc8d4Sdanielk1977 pColl = 0; 1227cedc8d4Sdanielk1977 } 1237cedc8d4Sdanielk1977 return pColl; 1240202b29eSdanielk1977 } 1250202b29eSdanielk1977 1260202b29eSdanielk1977 /* 127626a879aSdrh ** pExpr is an operand of a comparison operator. aff2 is the 128626a879aSdrh ** type affinity of the other operand. This routine returns the 12953db1458Sdrh ** type affinity that should be used for the comparison operator. 13053db1458Sdrh */ 131e014a838Sdanielk1977 char sqlite3CompareAffinity(Expr *pExpr, char aff2){ 132bf3b721fSdanielk1977 char aff1 = sqlite3ExprAffinity(pExpr); 133e014a838Sdanielk1977 if( aff1 && aff2 ){ 1348df447f0Sdrh /* Both sides of the comparison are columns. If one has numeric 1358df447f0Sdrh ** affinity, use that. Otherwise use no affinity. 136e014a838Sdanielk1977 */ 1378a51256cSdrh if( sqlite3IsNumericAffinity(aff1) || sqlite3IsNumericAffinity(aff2) ){ 138e014a838Sdanielk1977 return SQLITE_AFF_NUMERIC; 139e014a838Sdanielk1977 }else{ 140e014a838Sdanielk1977 return SQLITE_AFF_NONE; 141e014a838Sdanielk1977 } 142e014a838Sdanielk1977 }else if( !aff1 && !aff2 ){ 1435f6a87b3Sdrh /* Neither side of the comparison is a column. Compare the 1445f6a87b3Sdrh ** results directly. 145e014a838Sdanielk1977 */ 1465f6a87b3Sdrh return SQLITE_AFF_NONE; 147e014a838Sdanielk1977 }else{ 148e014a838Sdanielk1977 /* One side is a column, the other is not. Use the columns affinity. */ 149fe05af87Sdrh assert( aff1==0 || aff2==0 ); 150e014a838Sdanielk1977 return (aff1 + aff2); 151e014a838Sdanielk1977 } 152e014a838Sdanielk1977 } 153e014a838Sdanielk1977 15453db1458Sdrh /* 15553db1458Sdrh ** pExpr is a comparison operator. Return the type affinity that should 15653db1458Sdrh ** be applied to both operands prior to doing the comparison. 15753db1458Sdrh */ 158e014a838Sdanielk1977 static char comparisonAffinity(Expr *pExpr){ 159e014a838Sdanielk1977 char aff; 160e014a838Sdanielk1977 assert( pExpr->op==TK_EQ || pExpr->op==TK_IN || pExpr->op==TK_LT || 161e014a838Sdanielk1977 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || 1626a2fe093Sdrh pExpr->op==TK_NE || pExpr->op==TK_IS || pExpr->op==TK_ISNOT ); 163e014a838Sdanielk1977 assert( pExpr->pLeft ); 164bf3b721fSdanielk1977 aff = sqlite3ExprAffinity(pExpr->pLeft); 165e014a838Sdanielk1977 if( pExpr->pRight ){ 166e014a838Sdanielk1977 aff = sqlite3CompareAffinity(pExpr->pRight, aff); 1676ab3a2ecSdanielk1977 }else if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 1686ab3a2ecSdanielk1977 aff = sqlite3CompareAffinity(pExpr->x.pSelect->pEList->a[0].pExpr, aff); 1696ab3a2ecSdanielk1977 }else if( !aff ){ 170de087bd5Sdrh aff = SQLITE_AFF_NONE; 171e014a838Sdanielk1977 } 172e014a838Sdanielk1977 return aff; 173e014a838Sdanielk1977 } 174e014a838Sdanielk1977 175e014a838Sdanielk1977 /* 176e014a838Sdanielk1977 ** pExpr is a comparison expression, eg. '=', '<', IN(...) etc. 177e014a838Sdanielk1977 ** idx_affinity is the affinity of an indexed column. Return true 178e014a838Sdanielk1977 ** if the index with affinity idx_affinity may be used to implement 179e014a838Sdanielk1977 ** the comparison in pExpr. 180e014a838Sdanielk1977 */ 181e014a838Sdanielk1977 int sqlite3IndexAffinityOk(Expr *pExpr, char idx_affinity){ 182e014a838Sdanielk1977 char aff = comparisonAffinity(pExpr); 1838a51256cSdrh switch( aff ){ 1848a51256cSdrh case SQLITE_AFF_NONE: 1858a51256cSdrh return 1; 1868a51256cSdrh case SQLITE_AFF_TEXT: 1878a51256cSdrh return idx_affinity==SQLITE_AFF_TEXT; 1888a51256cSdrh default: 1898a51256cSdrh return sqlite3IsNumericAffinity(idx_affinity); 1908a51256cSdrh } 191e014a838Sdanielk1977 } 192e014a838Sdanielk1977 193a37cdde0Sdanielk1977 /* 19435573356Sdrh ** Return the P5 value that should be used for a binary comparison 195a37cdde0Sdanielk1977 ** opcode (OP_Eq, OP_Ge etc.) used to compare pExpr1 and pExpr2. 196a37cdde0Sdanielk1977 */ 19735573356Sdrh static u8 binaryCompareP5(Expr *pExpr1, Expr *pExpr2, int jumpIfNull){ 19835573356Sdrh u8 aff = (char)sqlite3ExprAffinity(pExpr2); 1991bd10f8aSdrh aff = (u8)sqlite3CompareAffinity(pExpr1, aff) | (u8)jumpIfNull; 20035573356Sdrh return aff; 201a37cdde0Sdanielk1977 } 202a37cdde0Sdanielk1977 203a2e00042Sdrh /* 2040202b29eSdanielk1977 ** Return a pointer to the collation sequence that should be used by 2050202b29eSdanielk1977 ** a binary comparison operator comparing pLeft and pRight. 2060202b29eSdanielk1977 ** 2070202b29eSdanielk1977 ** If the left hand expression has a collating sequence type, then it is 2080202b29eSdanielk1977 ** used. Otherwise the collation sequence for the right hand expression 2090202b29eSdanielk1977 ** is used, or the default (BINARY) if neither expression has a collating 2100202b29eSdanielk1977 ** type. 211bcbb04e5Sdanielk1977 ** 212bcbb04e5Sdanielk1977 ** Argument pRight (but not pLeft) may be a null pointer. In this case, 213bcbb04e5Sdanielk1977 ** it is not considered. 2140202b29eSdanielk1977 */ 215bcbb04e5Sdanielk1977 CollSeq *sqlite3BinaryCompareCollSeq( 216bcbb04e5Sdanielk1977 Parse *pParse, 217bcbb04e5Sdanielk1977 Expr *pLeft, 218bcbb04e5Sdanielk1977 Expr *pRight 219bcbb04e5Sdanielk1977 ){ 220ec41ddacSdrh CollSeq *pColl; 221ec41ddacSdrh assert( pLeft ); 222ec41ddacSdrh if( pLeft->flags & EP_ExpCollate ){ 223ec41ddacSdrh assert( pLeft->pColl ); 224ec41ddacSdrh pColl = pLeft->pColl; 225bcbb04e5Sdanielk1977 }else if( pRight && pRight->flags & EP_ExpCollate ){ 226ec41ddacSdrh assert( pRight->pColl ); 227ec41ddacSdrh pColl = pRight->pColl; 228ec41ddacSdrh }else{ 229ec41ddacSdrh pColl = sqlite3ExprCollSeq(pParse, pLeft); 2300202b29eSdanielk1977 if( !pColl ){ 2317cedc8d4Sdanielk1977 pColl = sqlite3ExprCollSeq(pParse, pRight); 2320202b29eSdanielk1977 } 233ec41ddacSdrh } 2340202b29eSdanielk1977 return pColl; 2350202b29eSdanielk1977 } 2360202b29eSdanielk1977 2370202b29eSdanielk1977 /* 238be5c89acSdrh ** Generate code for a comparison operator. 239be5c89acSdrh */ 240be5c89acSdrh static int codeCompare( 241be5c89acSdrh Parse *pParse, /* The parsing (and code generating) context */ 242be5c89acSdrh Expr *pLeft, /* The left operand */ 243be5c89acSdrh Expr *pRight, /* The right operand */ 244be5c89acSdrh int opcode, /* The comparison opcode */ 24535573356Sdrh int in1, int in2, /* Register holding operands */ 246be5c89acSdrh int dest, /* Jump here if true. */ 247be5c89acSdrh int jumpIfNull /* If true, jump if either operand is NULL */ 248be5c89acSdrh ){ 24935573356Sdrh int p5; 25035573356Sdrh int addr; 25135573356Sdrh CollSeq *p4; 25235573356Sdrh 25335573356Sdrh p4 = sqlite3BinaryCompareCollSeq(pParse, pLeft, pRight); 25435573356Sdrh p5 = binaryCompareP5(pLeft, pRight, jumpIfNull); 25535573356Sdrh addr = sqlite3VdbeAddOp4(pParse->pVdbe, opcode, in2, dest, in1, 25635573356Sdrh (void*)p4, P4_COLLSEQ); 2571bd10f8aSdrh sqlite3VdbeChangeP5(pParse->pVdbe, (u8)p5); 25835573356Sdrh return addr; 259be5c89acSdrh } 260be5c89acSdrh 2614b5255acSdanielk1977 #if SQLITE_MAX_EXPR_DEPTH>0 2624b5255acSdanielk1977 /* 2634b5255acSdanielk1977 ** Check that argument nHeight is less than or equal to the maximum 2644b5255acSdanielk1977 ** expression depth allowed. If it is not, leave an error message in 2654b5255acSdanielk1977 ** pParse. 2664b5255acSdanielk1977 */ 2677d10d5a6Sdrh int sqlite3ExprCheckHeight(Parse *pParse, int nHeight){ 2684b5255acSdanielk1977 int rc = SQLITE_OK; 2694b5255acSdanielk1977 int mxHeight = pParse->db->aLimit[SQLITE_LIMIT_EXPR_DEPTH]; 2704b5255acSdanielk1977 if( nHeight>mxHeight ){ 2714b5255acSdanielk1977 sqlite3ErrorMsg(pParse, 2724b5255acSdanielk1977 "Expression tree is too large (maximum depth %d)", mxHeight 2734b5255acSdanielk1977 ); 2744b5255acSdanielk1977 rc = SQLITE_ERROR; 2754b5255acSdanielk1977 } 2764b5255acSdanielk1977 return rc; 2774b5255acSdanielk1977 } 2784b5255acSdanielk1977 2794b5255acSdanielk1977 /* The following three functions, heightOfExpr(), heightOfExprList() 2804b5255acSdanielk1977 ** and heightOfSelect(), are used to determine the maximum height 2814b5255acSdanielk1977 ** of any expression tree referenced by the structure passed as the 2824b5255acSdanielk1977 ** first argument. 2834b5255acSdanielk1977 ** 2844b5255acSdanielk1977 ** If this maximum height is greater than the current value pointed 2854b5255acSdanielk1977 ** to by pnHeight, the second parameter, then set *pnHeight to that 2864b5255acSdanielk1977 ** value. 2874b5255acSdanielk1977 */ 2884b5255acSdanielk1977 static void heightOfExpr(Expr *p, int *pnHeight){ 2894b5255acSdanielk1977 if( p ){ 2904b5255acSdanielk1977 if( p->nHeight>*pnHeight ){ 2914b5255acSdanielk1977 *pnHeight = p->nHeight; 2924b5255acSdanielk1977 } 2934b5255acSdanielk1977 } 2944b5255acSdanielk1977 } 2954b5255acSdanielk1977 static void heightOfExprList(ExprList *p, int *pnHeight){ 2964b5255acSdanielk1977 if( p ){ 2974b5255acSdanielk1977 int i; 2984b5255acSdanielk1977 for(i=0; i<p->nExpr; i++){ 2994b5255acSdanielk1977 heightOfExpr(p->a[i].pExpr, pnHeight); 3004b5255acSdanielk1977 } 3014b5255acSdanielk1977 } 3024b5255acSdanielk1977 } 3034b5255acSdanielk1977 static void heightOfSelect(Select *p, int *pnHeight){ 3044b5255acSdanielk1977 if( p ){ 3054b5255acSdanielk1977 heightOfExpr(p->pWhere, pnHeight); 3064b5255acSdanielk1977 heightOfExpr(p->pHaving, pnHeight); 3074b5255acSdanielk1977 heightOfExpr(p->pLimit, pnHeight); 3084b5255acSdanielk1977 heightOfExpr(p->pOffset, pnHeight); 3094b5255acSdanielk1977 heightOfExprList(p->pEList, pnHeight); 3104b5255acSdanielk1977 heightOfExprList(p->pGroupBy, pnHeight); 3114b5255acSdanielk1977 heightOfExprList(p->pOrderBy, pnHeight); 3124b5255acSdanielk1977 heightOfSelect(p->pPrior, pnHeight); 3134b5255acSdanielk1977 } 3144b5255acSdanielk1977 } 3154b5255acSdanielk1977 3164b5255acSdanielk1977 /* 3174b5255acSdanielk1977 ** Set the Expr.nHeight variable in the structure passed as an 3184b5255acSdanielk1977 ** argument. An expression with no children, Expr.pList or 3194b5255acSdanielk1977 ** Expr.pSelect member has a height of 1. Any other expression 3204b5255acSdanielk1977 ** has a height equal to the maximum height of any other 3214b5255acSdanielk1977 ** referenced Expr plus one. 3224b5255acSdanielk1977 */ 3234b5255acSdanielk1977 static void exprSetHeight(Expr *p){ 3244b5255acSdanielk1977 int nHeight = 0; 3254b5255acSdanielk1977 heightOfExpr(p->pLeft, &nHeight); 3264b5255acSdanielk1977 heightOfExpr(p->pRight, &nHeight); 3276ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 3286ab3a2ecSdanielk1977 heightOfSelect(p->x.pSelect, &nHeight); 3296ab3a2ecSdanielk1977 }else{ 3306ab3a2ecSdanielk1977 heightOfExprList(p->x.pList, &nHeight); 3316ab3a2ecSdanielk1977 } 3324b5255acSdanielk1977 p->nHeight = nHeight + 1; 3334b5255acSdanielk1977 } 3344b5255acSdanielk1977 3354b5255acSdanielk1977 /* 3364b5255acSdanielk1977 ** Set the Expr.nHeight variable using the exprSetHeight() function. If 3374b5255acSdanielk1977 ** the height is greater than the maximum allowed expression depth, 3384b5255acSdanielk1977 ** leave an error in pParse. 3394b5255acSdanielk1977 */ 3404b5255acSdanielk1977 void sqlite3ExprSetHeight(Parse *pParse, Expr *p){ 3414b5255acSdanielk1977 exprSetHeight(p); 3427d10d5a6Sdrh sqlite3ExprCheckHeight(pParse, p->nHeight); 3434b5255acSdanielk1977 } 3444b5255acSdanielk1977 3454b5255acSdanielk1977 /* 3464b5255acSdanielk1977 ** Return the maximum height of any expression tree referenced 3474b5255acSdanielk1977 ** by the select statement passed as an argument. 3484b5255acSdanielk1977 */ 3494b5255acSdanielk1977 int sqlite3SelectExprHeight(Select *p){ 3504b5255acSdanielk1977 int nHeight = 0; 3514b5255acSdanielk1977 heightOfSelect(p, &nHeight); 3524b5255acSdanielk1977 return nHeight; 3534b5255acSdanielk1977 } 3544b5255acSdanielk1977 #else 3554b5255acSdanielk1977 #define exprSetHeight(y) 3564b5255acSdanielk1977 #endif /* SQLITE_MAX_EXPR_DEPTH>0 */ 3574b5255acSdanielk1977 358be5c89acSdrh /* 359b7916a78Sdrh ** This routine is the core allocator for Expr nodes. 360b7916a78Sdrh ** 361a76b5dfcSdrh ** Construct a new expression node and return a pointer to it. Memory 362b7916a78Sdrh ** for this node and for the pToken argument is a single allocation 363b7916a78Sdrh ** obtained from sqlite3DbMalloc(). The calling function 364a76b5dfcSdrh ** is responsible for making sure the node eventually gets freed. 365b7916a78Sdrh ** 366b7916a78Sdrh ** If dequote is true, then the token (if it exists) is dequoted. 367b7916a78Sdrh ** If dequote is false, no dequoting is performance. The deQuote 368b7916a78Sdrh ** parameter is ignored if pToken is NULL or if the token does not 369b7916a78Sdrh ** appear to be quoted. If the quotes were of the form "..." (double-quotes) 370b7916a78Sdrh ** then the EP_DblQuoted flag is set on the expression node. 37133e619fcSdrh ** 37233e619fcSdrh ** Special case: If op==TK_INTEGER and pToken points to a string that 37333e619fcSdrh ** can be translated into a 32-bit integer, then the token is not 37433e619fcSdrh ** stored in u.zToken. Instead, the integer values is written 37533e619fcSdrh ** into u.iValue and the EP_IntValue flag is set. No extra storage 37633e619fcSdrh ** is allocated to hold the integer text and the dequote flag is ignored. 377a76b5dfcSdrh */ 378b7916a78Sdrh Expr *sqlite3ExprAlloc( 379a1644fd8Sdanielk1977 sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 38017435752Sdrh int op, /* Expression opcode */ 381b7916a78Sdrh const Token *pToken, /* Token argument. Might be NULL */ 382b7916a78Sdrh int dequote /* True to dequote */ 38317435752Sdrh ){ 384a76b5dfcSdrh Expr *pNew; 38533e619fcSdrh int nExtra = 0; 386cf697396Sshane int iValue = 0; 387b7916a78Sdrh 388b7916a78Sdrh if( pToken ){ 38933e619fcSdrh if( op!=TK_INTEGER || pToken->z==0 39033e619fcSdrh || sqlite3GetInt32(pToken->z, &iValue)==0 ){ 391b7916a78Sdrh nExtra = pToken->n+1; 392d50ffc41Sdrh assert( iValue>=0 ); 39333e619fcSdrh } 394a76b5dfcSdrh } 395b7916a78Sdrh pNew = sqlite3DbMallocZero(db, sizeof(Expr)+nExtra); 396b7916a78Sdrh if( pNew ){ 3971bd10f8aSdrh pNew->op = (u8)op; 398a58fdfb1Sdanielk1977 pNew->iAgg = -1; 399a76b5dfcSdrh if( pToken ){ 40033e619fcSdrh if( nExtra==0 ){ 40133e619fcSdrh pNew->flags |= EP_IntValue; 40233e619fcSdrh pNew->u.iValue = iValue; 40333e619fcSdrh }else{ 404d9da78a2Sdrh int c; 40533e619fcSdrh pNew->u.zToken = (char*)&pNew[1]; 406b07028f7Sdrh assert( pToken->z!=0 || pToken->n==0 ); 407b07028f7Sdrh if( pToken->n ) memcpy(pNew->u.zToken, pToken->z, pToken->n); 40833e619fcSdrh pNew->u.zToken[pToken->n] = 0; 409b7916a78Sdrh if( dequote && nExtra>=3 410d9da78a2Sdrh && ((c = pToken->z[0])=='\'' || c=='"' || c=='[' || c=='`') ){ 41133e619fcSdrh sqlite3Dequote(pNew->u.zToken); 41224fb627aSdrh if( c=='"' ) pNew->flags |= EP_DblQuoted; 413a34001c9Sdrh } 414a34001c9Sdrh } 41533e619fcSdrh } 416b7916a78Sdrh #if SQLITE_MAX_EXPR_DEPTH>0 417b7916a78Sdrh pNew->nHeight = 1; 418b7916a78Sdrh #endif 419a34001c9Sdrh } 420a76b5dfcSdrh return pNew; 421a76b5dfcSdrh } 422a76b5dfcSdrh 423a76b5dfcSdrh /* 424b7916a78Sdrh ** Allocate a new expression node from a zero-terminated token that has 425b7916a78Sdrh ** already been dequoted. 426b7916a78Sdrh */ 427b7916a78Sdrh Expr *sqlite3Expr( 428b7916a78Sdrh sqlite3 *db, /* Handle for sqlite3DbMallocZero() (may be null) */ 429b7916a78Sdrh int op, /* Expression opcode */ 430b7916a78Sdrh const char *zToken /* Token argument. Might be NULL */ 431b7916a78Sdrh ){ 432b7916a78Sdrh Token x; 433b7916a78Sdrh x.z = zToken; 434b7916a78Sdrh x.n = zToken ? sqlite3Strlen30(zToken) : 0; 435b7916a78Sdrh return sqlite3ExprAlloc(db, op, &x, 0); 436b7916a78Sdrh } 437b7916a78Sdrh 438b7916a78Sdrh /* 439b7916a78Sdrh ** Attach subtrees pLeft and pRight to the Expr node pRoot. 440b7916a78Sdrh ** 441b7916a78Sdrh ** If pRoot==NULL that means that a memory allocation error has occurred. 442b7916a78Sdrh ** In that case, delete the subtrees pLeft and pRight. 443b7916a78Sdrh */ 444b7916a78Sdrh void sqlite3ExprAttachSubtrees( 445b7916a78Sdrh sqlite3 *db, 446b7916a78Sdrh Expr *pRoot, 447b7916a78Sdrh Expr *pLeft, 448b7916a78Sdrh Expr *pRight 449b7916a78Sdrh ){ 450b7916a78Sdrh if( pRoot==0 ){ 451b7916a78Sdrh assert( db->mallocFailed ); 452b7916a78Sdrh sqlite3ExprDelete(db, pLeft); 453b7916a78Sdrh sqlite3ExprDelete(db, pRight); 454b7916a78Sdrh }else{ 455b7916a78Sdrh if( pRight ){ 456b7916a78Sdrh pRoot->pRight = pRight; 457b7916a78Sdrh if( pRight->flags & EP_ExpCollate ){ 458b7916a78Sdrh pRoot->flags |= EP_ExpCollate; 459b7916a78Sdrh pRoot->pColl = pRight->pColl; 460b7916a78Sdrh } 461b7916a78Sdrh } 462b7916a78Sdrh if( pLeft ){ 463b7916a78Sdrh pRoot->pLeft = pLeft; 464b7916a78Sdrh if( pLeft->flags & EP_ExpCollate ){ 465b7916a78Sdrh pRoot->flags |= EP_ExpCollate; 466b7916a78Sdrh pRoot->pColl = pLeft->pColl; 467b7916a78Sdrh } 468b7916a78Sdrh } 469b7916a78Sdrh exprSetHeight(pRoot); 470b7916a78Sdrh } 471b7916a78Sdrh } 472b7916a78Sdrh 473b7916a78Sdrh /* 474bf664469Sdrh ** Allocate a Expr node which joins as many as two subtrees. 475b7916a78Sdrh ** 476bf664469Sdrh ** One or both of the subtrees can be NULL. Return a pointer to the new 477bf664469Sdrh ** Expr node. Or, if an OOM error occurs, set pParse->db->mallocFailed, 478bf664469Sdrh ** free the subtrees and return NULL. 479206f3d96Sdrh */ 48017435752Sdrh Expr *sqlite3PExpr( 48117435752Sdrh Parse *pParse, /* Parsing context */ 48217435752Sdrh int op, /* Expression opcode */ 48317435752Sdrh Expr *pLeft, /* Left operand */ 48417435752Sdrh Expr *pRight, /* Right operand */ 48517435752Sdrh const Token *pToken /* Argument token */ 48617435752Sdrh ){ 487b7916a78Sdrh Expr *p = sqlite3ExprAlloc(pParse->db, op, pToken, 1); 488b7916a78Sdrh sqlite3ExprAttachSubtrees(pParse->db, p, pLeft, pRight); 4892b359bdbSdan if( p ) { 4902b359bdbSdan sqlite3ExprCheckHeight(pParse, p->nHeight); 4912b359bdbSdan } 4924e0cff60Sdrh return p; 4934e0cff60Sdrh } 4944e0cff60Sdrh 4954e0cff60Sdrh /* 49691bb0eedSdrh ** Join two expressions using an AND operator. If either expression is 49791bb0eedSdrh ** NULL, then just return the other expression. 49891bb0eedSdrh */ 4991e536953Sdanielk1977 Expr *sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight){ 50091bb0eedSdrh if( pLeft==0 ){ 50191bb0eedSdrh return pRight; 50291bb0eedSdrh }else if( pRight==0 ){ 50391bb0eedSdrh return pLeft; 50491bb0eedSdrh }else{ 505b7916a78Sdrh Expr *pNew = sqlite3ExprAlloc(db, TK_AND, 0, 0); 506b7916a78Sdrh sqlite3ExprAttachSubtrees(db, pNew, pLeft, pRight); 507b7916a78Sdrh return pNew; 508a76b5dfcSdrh } 509a76b5dfcSdrh } 510a76b5dfcSdrh 511a76b5dfcSdrh /* 512a76b5dfcSdrh ** Construct a new expression node for a function with multiple 513a76b5dfcSdrh ** arguments. 514a76b5dfcSdrh */ 51517435752Sdrh Expr *sqlite3ExprFunction(Parse *pParse, ExprList *pList, Token *pToken){ 516a76b5dfcSdrh Expr *pNew; 517633e6d57Sdrh sqlite3 *db = pParse->db; 5184b202ae2Sdanielk1977 assert( pToken ); 519b7916a78Sdrh pNew = sqlite3ExprAlloc(db, TK_FUNCTION, pToken, 1); 520a76b5dfcSdrh if( pNew==0 ){ 521d9da78a2Sdrh sqlite3ExprListDelete(db, pList); /* Avoid memory leak when malloc fails */ 522a76b5dfcSdrh return 0; 523a76b5dfcSdrh } 5246ab3a2ecSdanielk1977 pNew->x.pList = pList; 5256ab3a2ecSdanielk1977 assert( !ExprHasProperty(pNew, EP_xIsSelect) ); 5264b5255acSdanielk1977 sqlite3ExprSetHeight(pParse, pNew); 527a76b5dfcSdrh return pNew; 528a76b5dfcSdrh } 529a76b5dfcSdrh 530a76b5dfcSdrh /* 531fa6bc000Sdrh ** Assign a variable number to an expression that encodes a wildcard 532fa6bc000Sdrh ** in the original SQL statement. 533fa6bc000Sdrh ** 534fa6bc000Sdrh ** Wildcards consisting of a single "?" are assigned the next sequential 535fa6bc000Sdrh ** variable number. 536fa6bc000Sdrh ** 537fa6bc000Sdrh ** Wildcards of the form "?nnn" are assigned the number "nnn". We make 538fa6bc000Sdrh ** sure "nnn" is not too be to avoid a denial of service attack when 539fa6bc000Sdrh ** the SQL statement comes from an external source. 540fa6bc000Sdrh ** 54151f49f17Sdrh ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number 542fa6bc000Sdrh ** as the previous instance of the same wildcard. Or if this is the first 543fa6bc000Sdrh ** instance of the wildcard, the next sequenial variable number is 544fa6bc000Sdrh ** assigned. 545fa6bc000Sdrh */ 546fa6bc000Sdrh void sqlite3ExprAssignVarNumber(Parse *pParse, Expr *pExpr){ 54717435752Sdrh sqlite3 *db = pParse->db; 548b7916a78Sdrh const char *z; 54917435752Sdrh 550fa6bc000Sdrh if( pExpr==0 ) return; 55133e619fcSdrh assert( !ExprHasAnyProperty(pExpr, EP_IntValue|EP_Reduced|EP_TokenOnly) ); 55233e619fcSdrh z = pExpr->u.zToken; 553b7916a78Sdrh assert( z!=0 ); 554b7916a78Sdrh assert( z[0]!=0 ); 555b7916a78Sdrh if( z[1]==0 ){ 556fa6bc000Sdrh /* Wildcard of the form "?". Assign the next variable number */ 557b7916a78Sdrh assert( z[0]=='?' ); 5588677d308Sdrh pExpr->iColumn = (ynVar)(++pParse->nVar); 559124c0b49Sdrh }else{ 560124c0b49Sdrh ynVar x = 0; 561124c0b49Sdrh u32 n = sqlite3Strlen30(z); 562124c0b49Sdrh if( z[0]=='?' ){ 563fa6bc000Sdrh /* Wildcard of the form "?nnn". Convert "nnn" to an integer and 564fa6bc000Sdrh ** use it as the variable number */ 565c8d735aeSdan i64 i; 566124c0b49Sdrh int bOk = 0==sqlite3Atoi64(&z[1], &i, n-1, SQLITE_UTF8); 567124c0b49Sdrh pExpr->iColumn = x = (ynVar)i; 568c5499befSdrh testcase( i==0 ); 569c5499befSdrh testcase( i==1 ); 570c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]-1 ); 571c5499befSdrh testcase( i==db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ); 572c8d735aeSdan if( bOk==0 || i<1 || i>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 573fa6bc000Sdrh sqlite3ErrorMsg(pParse, "variable number must be between ?1 and ?%d", 574bb4957f8Sdrh db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER]); 575124c0b49Sdrh x = 0; 576fa6bc000Sdrh } 577fa6bc000Sdrh if( i>pParse->nVar ){ 5781df2db7fSshaneh pParse->nVar = (int)i; 579fa6bc000Sdrh } 580fa6bc000Sdrh }else{ 58151f49f17Sdrh /* Wildcards like ":aaa", "$aaa" or "@aaa". Reuse the same variable 582fa6bc000Sdrh ** number as the prior appearance of the same name, or if the name 583fa6bc000Sdrh ** has never appeared before, reuse the same variable number 584fa6bc000Sdrh */ 585124c0b49Sdrh ynVar i; 586124c0b49Sdrh for(i=0; i<pParse->nzVar; i++){ 587124c0b49Sdrh if( pParse->azVar[i] && memcmp(pParse->azVar[i],z,n+1)==0 ){ 588124c0b49Sdrh pExpr->iColumn = x = (ynVar)i+1; 589fa6bc000Sdrh break; 590fa6bc000Sdrh } 591fa6bc000Sdrh } 592124c0b49Sdrh if( x==0 ) x = pExpr->iColumn = (ynVar)(++pParse->nVar); 593fa6bc000Sdrh } 594124c0b49Sdrh if( x>0 ){ 595124c0b49Sdrh if( x>pParse->nzVar ){ 596124c0b49Sdrh char **a; 597124c0b49Sdrh a = sqlite3DbRealloc(db, pParse->azVar, x*sizeof(a[0])); 598124c0b49Sdrh if( a==0 ) return; /* Error reported through db->mallocFailed */ 599124c0b49Sdrh pParse->azVar = a; 600124c0b49Sdrh memset(&a[pParse->nzVar], 0, (x-pParse->nzVar)*sizeof(a[0])); 601124c0b49Sdrh pParse->nzVar = x; 602124c0b49Sdrh } 603124c0b49Sdrh if( z[0]!='?' || pParse->azVar[x-1]==0 ){ 604124c0b49Sdrh sqlite3DbFree(db, pParse->azVar[x-1]); 605124c0b49Sdrh pParse->azVar[x-1] = sqlite3DbStrNDup(db, z, n); 606fa6bc000Sdrh } 607fa6bc000Sdrh } 608fa6bc000Sdrh } 609bb4957f8Sdrh if( !pParse->nErr && pParse->nVar>db->aLimit[SQLITE_LIMIT_VARIABLE_NUMBER] ){ 610832b2664Sdanielk1977 sqlite3ErrorMsg(pParse, "too many SQL variables"); 611832b2664Sdanielk1977 } 612fa6bc000Sdrh } 613fa6bc000Sdrh 614fa6bc000Sdrh /* 615f6963f99Sdan ** Recursively delete an expression tree. 616a2e00042Sdrh */ 617f6963f99Sdan void sqlite3ExprDelete(sqlite3 *db, Expr *p){ 618f6963f99Sdan if( p==0 ) return; 619d50ffc41Sdrh /* Sanity check: Assert that the IntValue is non-negative if it exists */ 620d50ffc41Sdrh assert( !ExprHasProperty(p, EP_IntValue) || p->u.iValue>=0 ); 621b7916a78Sdrh if( !ExprHasAnyProperty(p, EP_TokenOnly) ){ 622633e6d57Sdrh sqlite3ExprDelete(db, p->pLeft); 623633e6d57Sdrh sqlite3ExprDelete(db, p->pRight); 62433e619fcSdrh if( !ExprHasProperty(p, EP_Reduced) && (p->flags2 & EP2_MallocedToken)!=0 ){ 62533e619fcSdrh sqlite3DbFree(db, p->u.zToken); 6266ab3a2ecSdanielk1977 } 6276ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 6286ab3a2ecSdanielk1977 sqlite3SelectDelete(db, p->x.pSelect); 6296ab3a2ecSdanielk1977 }else{ 6306ab3a2ecSdanielk1977 sqlite3ExprListDelete(db, p->x.pList); 6316ab3a2ecSdanielk1977 } 6326ab3a2ecSdanielk1977 } 63333e619fcSdrh if( !ExprHasProperty(p, EP_Static) ){ 634633e6d57Sdrh sqlite3DbFree(db, p); 635a2e00042Sdrh } 63633e619fcSdrh } 637a2e00042Sdrh 638d2687b77Sdrh /* 6396ab3a2ecSdanielk1977 ** Return the number of bytes allocated for the expression structure 6406ab3a2ecSdanielk1977 ** passed as the first argument. This is always one of EXPR_FULLSIZE, 6416ab3a2ecSdanielk1977 ** EXPR_REDUCEDSIZE or EXPR_TOKENONLYSIZE. 6426ab3a2ecSdanielk1977 */ 6436ab3a2ecSdanielk1977 static int exprStructSize(Expr *p){ 6446ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_TokenOnly) ) return EXPR_TOKENONLYSIZE; 6456ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_Reduced) ) return EXPR_REDUCEDSIZE; 6466ab3a2ecSdanielk1977 return EXPR_FULLSIZE; 6476ab3a2ecSdanielk1977 } 6486ab3a2ecSdanielk1977 6496ab3a2ecSdanielk1977 /* 65033e619fcSdrh ** The dupedExpr*Size() routines each return the number of bytes required 65133e619fcSdrh ** to store a copy of an expression or expression tree. They differ in 65233e619fcSdrh ** how much of the tree is measured. 65333e619fcSdrh ** 65433e619fcSdrh ** dupedExprStructSize() Size of only the Expr structure 65533e619fcSdrh ** dupedExprNodeSize() Size of Expr + space for token 65633e619fcSdrh ** dupedExprSize() Expr + token + subtree components 65733e619fcSdrh ** 65833e619fcSdrh *************************************************************************** 65933e619fcSdrh ** 66033e619fcSdrh ** The dupedExprStructSize() function returns two values OR-ed together: 66133e619fcSdrh ** (1) the space required for a copy of the Expr structure only and 66233e619fcSdrh ** (2) the EP_xxx flags that indicate what the structure size should be. 66333e619fcSdrh ** The return values is always one of: 66433e619fcSdrh ** 66533e619fcSdrh ** EXPR_FULLSIZE 66633e619fcSdrh ** EXPR_REDUCEDSIZE | EP_Reduced 66733e619fcSdrh ** EXPR_TOKENONLYSIZE | EP_TokenOnly 66833e619fcSdrh ** 66933e619fcSdrh ** The size of the structure can be found by masking the return value 67033e619fcSdrh ** of this routine with 0xfff. The flags can be found by masking the 67133e619fcSdrh ** return value with EP_Reduced|EP_TokenOnly. 67233e619fcSdrh ** 67333e619fcSdrh ** Note that with flags==EXPRDUP_REDUCE, this routines works on full-size 67433e619fcSdrh ** (unreduced) Expr objects as they or originally constructed by the parser. 67533e619fcSdrh ** During expression analysis, extra information is computed and moved into 67633e619fcSdrh ** later parts of teh Expr object and that extra information might get chopped 67733e619fcSdrh ** off if the expression is reduced. Note also that it does not work to 67833e619fcSdrh ** make a EXPRDUP_REDUCE copy of a reduced expression. It is only legal 67933e619fcSdrh ** to reduce a pristine expression tree from the parser. The implementation 68033e619fcSdrh ** of dupedExprStructSize() contain multiple assert() statements that attempt 68133e619fcSdrh ** to enforce this constraint. 6826ab3a2ecSdanielk1977 */ 6836ab3a2ecSdanielk1977 static int dupedExprStructSize(Expr *p, int flags){ 6846ab3a2ecSdanielk1977 int nSize; 68533e619fcSdrh assert( flags==EXPRDUP_REDUCE || flags==0 ); /* Only one flag value allowed */ 6866ab3a2ecSdanielk1977 if( 0==(flags&EXPRDUP_REDUCE) ){ 6876ab3a2ecSdanielk1977 nSize = EXPR_FULLSIZE; 6886ab3a2ecSdanielk1977 }else{ 68933e619fcSdrh assert( !ExprHasAnyProperty(p, EP_TokenOnly|EP_Reduced) ); 69033e619fcSdrh assert( !ExprHasProperty(p, EP_FromJoin) ); 69133e619fcSdrh assert( (p->flags2 & EP2_MallocedToken)==0 ); 69233e619fcSdrh assert( (p->flags2 & EP2_Irreducible)==0 ); 69333e619fcSdrh if( p->pLeft || p->pRight || p->pColl || p->x.pList ){ 69433e619fcSdrh nSize = EXPR_REDUCEDSIZE | EP_Reduced; 69533e619fcSdrh }else{ 69633e619fcSdrh nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly; 69733e619fcSdrh } 6986ab3a2ecSdanielk1977 } 6996ab3a2ecSdanielk1977 return nSize; 7006ab3a2ecSdanielk1977 } 7016ab3a2ecSdanielk1977 7026ab3a2ecSdanielk1977 /* 70333e619fcSdrh ** This function returns the space in bytes required to store the copy 70433e619fcSdrh ** of the Expr structure and a copy of the Expr.u.zToken string (if that 70533e619fcSdrh ** string is defined.) 7066ab3a2ecSdanielk1977 */ 7076ab3a2ecSdanielk1977 static int dupedExprNodeSize(Expr *p, int flags){ 70833e619fcSdrh int nByte = dupedExprStructSize(p, flags) & 0xfff; 70933e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 71033e619fcSdrh nByte += sqlite3Strlen30(p->u.zToken)+1; 7116ab3a2ecSdanielk1977 } 712bc73971dSdanielk1977 return ROUND8(nByte); 7136ab3a2ecSdanielk1977 } 7146ab3a2ecSdanielk1977 7156ab3a2ecSdanielk1977 /* 7166ab3a2ecSdanielk1977 ** Return the number of bytes required to create a duplicate of the 7176ab3a2ecSdanielk1977 ** expression passed as the first argument. The second argument is a 7186ab3a2ecSdanielk1977 ** mask containing EXPRDUP_XXX flags. 7196ab3a2ecSdanielk1977 ** 7206ab3a2ecSdanielk1977 ** The value returned includes space to create a copy of the Expr struct 72133e619fcSdrh ** itself and the buffer referred to by Expr.u.zToken, if any. 7226ab3a2ecSdanielk1977 ** 7236ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the return value includes 7246ab3a2ecSdanielk1977 ** space to duplicate all Expr nodes in the tree formed by Expr.pLeft 7256ab3a2ecSdanielk1977 ** and Expr.pRight variables (but not for any structures pointed to or 7266ab3a2ecSdanielk1977 ** descended from the Expr.x.pList or Expr.x.pSelect variables). 7276ab3a2ecSdanielk1977 */ 7286ab3a2ecSdanielk1977 static int dupedExprSize(Expr *p, int flags){ 7296ab3a2ecSdanielk1977 int nByte = 0; 7306ab3a2ecSdanielk1977 if( p ){ 7316ab3a2ecSdanielk1977 nByte = dupedExprNodeSize(p, flags); 7326ab3a2ecSdanielk1977 if( flags&EXPRDUP_REDUCE ){ 733b7916a78Sdrh nByte += dupedExprSize(p->pLeft, flags) + dupedExprSize(p->pRight, flags); 7346ab3a2ecSdanielk1977 } 7356ab3a2ecSdanielk1977 } 7366ab3a2ecSdanielk1977 return nByte; 7376ab3a2ecSdanielk1977 } 7386ab3a2ecSdanielk1977 7396ab3a2ecSdanielk1977 /* 7406ab3a2ecSdanielk1977 ** This function is similar to sqlite3ExprDup(), except that if pzBuffer 7416ab3a2ecSdanielk1977 ** is not NULL then *pzBuffer is assumed to point to a buffer large enough 74233e619fcSdrh ** to store the copy of expression p, the copies of p->u.zToken 7436ab3a2ecSdanielk1977 ** (if applicable), and the copies of the p->pLeft and p->pRight expressions, 7446ab3a2ecSdanielk1977 ** if any. Before returning, *pzBuffer is set to the first byte passed the 7456ab3a2ecSdanielk1977 ** portion of the buffer copied into by this function. 7466ab3a2ecSdanielk1977 */ 7476ab3a2ecSdanielk1977 static Expr *exprDup(sqlite3 *db, Expr *p, int flags, u8 **pzBuffer){ 7486ab3a2ecSdanielk1977 Expr *pNew = 0; /* Value to return */ 7496ab3a2ecSdanielk1977 if( p ){ 7506ab3a2ecSdanielk1977 const int isReduced = (flags&EXPRDUP_REDUCE); 7516ab3a2ecSdanielk1977 u8 *zAlloc; 75233e619fcSdrh u32 staticFlag = 0; 7536ab3a2ecSdanielk1977 7546ab3a2ecSdanielk1977 assert( pzBuffer==0 || isReduced ); 7556ab3a2ecSdanielk1977 7566ab3a2ecSdanielk1977 /* Figure out where to write the new Expr structure. */ 7576ab3a2ecSdanielk1977 if( pzBuffer ){ 7586ab3a2ecSdanielk1977 zAlloc = *pzBuffer; 75933e619fcSdrh staticFlag = EP_Static; 7606ab3a2ecSdanielk1977 }else{ 7616ab3a2ecSdanielk1977 zAlloc = sqlite3DbMallocRaw(db, dupedExprSize(p, flags)); 7626ab3a2ecSdanielk1977 } 7636ab3a2ecSdanielk1977 pNew = (Expr *)zAlloc; 7646ab3a2ecSdanielk1977 7656ab3a2ecSdanielk1977 if( pNew ){ 7666ab3a2ecSdanielk1977 /* Set nNewSize to the size allocated for the structure pointed to 7676ab3a2ecSdanielk1977 ** by pNew. This is either EXPR_FULLSIZE, EXPR_REDUCEDSIZE or 7686ab3a2ecSdanielk1977 ** EXPR_TOKENONLYSIZE. nToken is set to the number of bytes consumed 76933e619fcSdrh ** by the copy of the p->u.zToken string (if any). 7706ab3a2ecSdanielk1977 */ 77133e619fcSdrh const unsigned nStructSize = dupedExprStructSize(p, flags); 77233e619fcSdrh const int nNewSize = nStructSize & 0xfff; 77333e619fcSdrh int nToken; 77433e619fcSdrh if( !ExprHasProperty(p, EP_IntValue) && p->u.zToken ){ 77533e619fcSdrh nToken = sqlite3Strlen30(p->u.zToken) + 1; 77633e619fcSdrh }else{ 77733e619fcSdrh nToken = 0; 77833e619fcSdrh } 7796ab3a2ecSdanielk1977 if( isReduced ){ 7806ab3a2ecSdanielk1977 assert( ExprHasProperty(p, EP_Reduced)==0 ); 7816ab3a2ecSdanielk1977 memcpy(zAlloc, p, nNewSize); 7826ab3a2ecSdanielk1977 }else{ 7836ab3a2ecSdanielk1977 int nSize = exprStructSize(p); 7846ab3a2ecSdanielk1977 memcpy(zAlloc, p, nSize); 7856ab3a2ecSdanielk1977 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize); 7866ab3a2ecSdanielk1977 } 7876ab3a2ecSdanielk1977 78833e619fcSdrh /* Set the EP_Reduced, EP_TokenOnly, and EP_Static flags appropriately. */ 78933e619fcSdrh pNew->flags &= ~(EP_Reduced|EP_TokenOnly|EP_Static); 79033e619fcSdrh pNew->flags |= nStructSize & (EP_Reduced|EP_TokenOnly); 79133e619fcSdrh pNew->flags |= staticFlag; 7926ab3a2ecSdanielk1977 79333e619fcSdrh /* Copy the p->u.zToken string, if any. */ 7946ab3a2ecSdanielk1977 if( nToken ){ 79533e619fcSdrh char *zToken = pNew->u.zToken = (char*)&zAlloc[nNewSize]; 79633e619fcSdrh memcpy(zToken, p->u.zToken, nToken); 7976ab3a2ecSdanielk1977 } 7986ab3a2ecSdanielk1977 7996ab3a2ecSdanielk1977 if( 0==((p->flags|pNew->flags) & EP_TokenOnly) ){ 8006ab3a2ecSdanielk1977 /* Fill in the pNew->x.pSelect or pNew->x.pList member. */ 8016ab3a2ecSdanielk1977 if( ExprHasProperty(p, EP_xIsSelect) ){ 8026ab3a2ecSdanielk1977 pNew->x.pSelect = sqlite3SelectDup(db, p->x.pSelect, isReduced); 8036ab3a2ecSdanielk1977 }else{ 8046ab3a2ecSdanielk1977 pNew->x.pList = sqlite3ExprListDup(db, p->x.pList, isReduced); 8056ab3a2ecSdanielk1977 } 8066ab3a2ecSdanielk1977 } 8076ab3a2ecSdanielk1977 8086ab3a2ecSdanielk1977 /* Fill in pNew->pLeft and pNew->pRight. */ 809b7916a78Sdrh if( ExprHasAnyProperty(pNew, EP_Reduced|EP_TokenOnly) ){ 8106ab3a2ecSdanielk1977 zAlloc += dupedExprNodeSize(p, flags); 8116ab3a2ecSdanielk1977 if( ExprHasProperty(pNew, EP_Reduced) ){ 8126ab3a2ecSdanielk1977 pNew->pLeft = exprDup(db, p->pLeft, EXPRDUP_REDUCE, &zAlloc); 8136ab3a2ecSdanielk1977 pNew->pRight = exprDup(db, p->pRight, EXPRDUP_REDUCE, &zAlloc); 8146ab3a2ecSdanielk1977 } 8156ab3a2ecSdanielk1977 if( pzBuffer ){ 8166ab3a2ecSdanielk1977 *pzBuffer = zAlloc; 8176ab3a2ecSdanielk1977 } 818b7916a78Sdrh }else{ 819b7916a78Sdrh pNew->flags2 = 0; 820b7916a78Sdrh if( !ExprHasAnyProperty(p, EP_TokenOnly) ){ 8216ab3a2ecSdanielk1977 pNew->pLeft = sqlite3ExprDup(db, p->pLeft, 0); 8226ab3a2ecSdanielk1977 pNew->pRight = sqlite3ExprDup(db, p->pRight, 0); 8236ab3a2ecSdanielk1977 } 8246ab3a2ecSdanielk1977 } 825b7916a78Sdrh 826b7916a78Sdrh } 8276ab3a2ecSdanielk1977 } 8286ab3a2ecSdanielk1977 return pNew; 8296ab3a2ecSdanielk1977 } 8306ab3a2ecSdanielk1977 8316ab3a2ecSdanielk1977 /* 832ff78bd2fSdrh ** The following group of routines make deep copies of expressions, 833ff78bd2fSdrh ** expression lists, ID lists, and select statements. The copies can 834ff78bd2fSdrh ** be deleted (by being passed to their respective ...Delete() routines) 835ff78bd2fSdrh ** without effecting the originals. 836ff78bd2fSdrh ** 8374adee20fSdanielk1977 ** The expression list, ID, and source lists return by sqlite3ExprListDup(), 8384adee20fSdanielk1977 ** sqlite3IdListDup(), and sqlite3SrcListDup() can not be further expanded 839ad3cab52Sdrh ** by subsequent calls to sqlite*ListAppend() routines. 840ff78bd2fSdrh ** 841ad3cab52Sdrh ** Any tables that the SrcList might point to are not duplicated. 8426ab3a2ecSdanielk1977 ** 843b7916a78Sdrh ** The flags parameter contains a combination of the EXPRDUP_XXX flags. 8446ab3a2ecSdanielk1977 ** If the EXPRDUP_REDUCE flag is set, then the structure returned is a 8456ab3a2ecSdanielk1977 ** truncated version of the usual Expr structure that will be stored as 8466ab3a2ecSdanielk1977 ** part of the in-memory representation of the database schema. 847ff78bd2fSdrh */ 8486ab3a2ecSdanielk1977 Expr *sqlite3ExprDup(sqlite3 *db, Expr *p, int flags){ 8496ab3a2ecSdanielk1977 return exprDup(db, p, flags, 0); 850ff78bd2fSdrh } 8516ab3a2ecSdanielk1977 ExprList *sqlite3ExprListDup(sqlite3 *db, ExprList *p, int flags){ 852ff78bd2fSdrh ExprList *pNew; 853145716b3Sdrh struct ExprList_item *pItem, *pOldItem; 854ff78bd2fSdrh int i; 855ff78bd2fSdrh if( p==0 ) return 0; 85617435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 857ff78bd2fSdrh if( pNew==0 ) return 0; 85831dad9daSdanielk1977 pNew->iECursor = 0; 859d872bb18Sdrh pNew->nExpr = i = p->nExpr; 860d872bb18Sdrh if( (flags & EXPRDUP_REDUCE)==0 ) for(i=1; i<p->nExpr; i+=i){} 861d872bb18Sdrh pNew->a = pItem = sqlite3DbMallocRaw(db, i*sizeof(p->a[0]) ); 862e0048400Sdanielk1977 if( pItem==0 ){ 863633e6d57Sdrh sqlite3DbFree(db, pNew); 864e0048400Sdanielk1977 return 0; 865e0048400Sdanielk1977 } 866145716b3Sdrh pOldItem = p->a; 867145716b3Sdrh for(i=0; i<p->nExpr; i++, pItem++, pOldItem++){ 8686ab3a2ecSdanielk1977 Expr *pOldExpr = pOldItem->pExpr; 869b5526ea6Sdrh pItem->pExpr = sqlite3ExprDup(db, pOldExpr, flags); 87017435752Sdrh pItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 871b7916a78Sdrh pItem->zSpan = sqlite3DbStrDup(db, pOldItem->zSpan); 872145716b3Sdrh pItem->sortOrder = pOldItem->sortOrder; 8733e7bc9caSdrh pItem->done = 0; 8744b3ac73cSdrh pItem->iOrderByCol = pOldItem->iOrderByCol; 8758b213899Sdrh pItem->iAlias = pOldItem->iAlias; 876ff78bd2fSdrh } 877ff78bd2fSdrh return pNew; 878ff78bd2fSdrh } 87993758c8dSdanielk1977 88093758c8dSdanielk1977 /* 88193758c8dSdanielk1977 ** If cursors, triggers, views and subqueries are all omitted from 88293758c8dSdanielk1977 ** the build, then none of the following routines, except for 88393758c8dSdanielk1977 ** sqlite3SelectDup(), can be called. sqlite3SelectDup() is sometimes 88493758c8dSdanielk1977 ** called with a NULL argument. 88593758c8dSdanielk1977 */ 8866a67fe8eSdanielk1977 #if !defined(SQLITE_OMIT_VIEW) || !defined(SQLITE_OMIT_TRIGGER) \ 8876a67fe8eSdanielk1977 || !defined(SQLITE_OMIT_SUBQUERY) 8886ab3a2ecSdanielk1977 SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){ 889ad3cab52Sdrh SrcList *pNew; 890ad3cab52Sdrh int i; 891113088ecSdrh int nByte; 892ad3cab52Sdrh if( p==0 ) return 0; 893113088ecSdrh nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0); 89417435752Sdrh pNew = sqlite3DbMallocRaw(db, nByte ); 895ad3cab52Sdrh if( pNew==0 ) return 0; 8964305d103Sdrh pNew->nSrc = pNew->nAlloc = p->nSrc; 897ad3cab52Sdrh for(i=0; i<p->nSrc; i++){ 8984efc4754Sdrh struct SrcList_item *pNewItem = &pNew->a[i]; 8994efc4754Sdrh struct SrcList_item *pOldItem = &p->a[i]; 900ed8a3bb1Sdrh Table *pTab; 90117435752Sdrh pNewItem->zDatabase = sqlite3DbStrDup(db, pOldItem->zDatabase); 90217435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 90317435752Sdrh pNewItem->zAlias = sqlite3DbStrDup(db, pOldItem->zAlias); 9044efc4754Sdrh pNewItem->jointype = pOldItem->jointype; 9054efc4754Sdrh pNewItem->iCursor = pOldItem->iCursor; 9065b6a9ed4Sdrh pNewItem->addrFillSub = pOldItem->addrFillSub; 9075b6a9ed4Sdrh pNewItem->regReturn = pOldItem->regReturn; 908da79cf0cSdan pNewItem->isCorrelated = pOldItem->isCorrelated; 90985574e31Sdanielk1977 pNewItem->zIndex = sqlite3DbStrDup(db, pOldItem->zIndex); 91085574e31Sdanielk1977 pNewItem->notIndexed = pOldItem->notIndexed; 91185574e31Sdanielk1977 pNewItem->pIndex = pOldItem->pIndex; 912ed8a3bb1Sdrh pTab = pNewItem->pTab = pOldItem->pTab; 913ed8a3bb1Sdrh if( pTab ){ 914ed8a3bb1Sdrh pTab->nRef++; 915a1cb183dSdanielk1977 } 9166ab3a2ecSdanielk1977 pNewItem->pSelect = sqlite3SelectDup(db, pOldItem->pSelect, flags); 9176ab3a2ecSdanielk1977 pNewItem->pOn = sqlite3ExprDup(db, pOldItem->pOn, flags); 91817435752Sdrh pNewItem->pUsing = sqlite3IdListDup(db, pOldItem->pUsing); 9196c18b6e0Sdanielk1977 pNewItem->colUsed = pOldItem->colUsed; 920ad3cab52Sdrh } 921ad3cab52Sdrh return pNew; 922ad3cab52Sdrh } 92317435752Sdrh IdList *sqlite3IdListDup(sqlite3 *db, IdList *p){ 924ff78bd2fSdrh IdList *pNew; 925ff78bd2fSdrh int i; 926ff78bd2fSdrh if( p==0 ) return 0; 92717435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*pNew) ); 928ff78bd2fSdrh if( pNew==0 ) return 0; 9296c535158Sdrh pNew->nId = p->nId; 93017435752Sdrh pNew->a = sqlite3DbMallocRaw(db, p->nId*sizeof(p->a[0]) ); 931d5d56523Sdanielk1977 if( pNew->a==0 ){ 932633e6d57Sdrh sqlite3DbFree(db, pNew); 933d5d56523Sdanielk1977 return 0; 934d5d56523Sdanielk1977 } 9356c535158Sdrh /* Note that because the size of the allocation for p->a[] is not 9366c535158Sdrh ** necessarily a power of two, sqlite3IdListAppend() may not be called 9376c535158Sdrh ** on the duplicate created by this function. */ 938ff78bd2fSdrh for(i=0; i<p->nId; i++){ 9394efc4754Sdrh struct IdList_item *pNewItem = &pNew->a[i]; 9404efc4754Sdrh struct IdList_item *pOldItem = &p->a[i]; 94117435752Sdrh pNewItem->zName = sqlite3DbStrDup(db, pOldItem->zName); 9424efc4754Sdrh pNewItem->idx = pOldItem->idx; 943ff78bd2fSdrh } 944ff78bd2fSdrh return pNew; 945ff78bd2fSdrh } 9466ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 94723b1b372Sdrh Select *pNew, *pPrior; 948ff78bd2fSdrh if( p==0 ) return 0; 94917435752Sdrh pNew = sqlite3DbMallocRaw(db, sizeof(*p) ); 950ff78bd2fSdrh if( pNew==0 ) return 0; 951b7916a78Sdrh pNew->pEList = sqlite3ExprListDup(db, p->pEList, flags); 9526ab3a2ecSdanielk1977 pNew->pSrc = sqlite3SrcListDup(db, p->pSrc, flags); 9536ab3a2ecSdanielk1977 pNew->pWhere = sqlite3ExprDup(db, p->pWhere, flags); 9546ab3a2ecSdanielk1977 pNew->pGroupBy = sqlite3ExprListDup(db, p->pGroupBy, flags); 9556ab3a2ecSdanielk1977 pNew->pHaving = sqlite3ExprDup(db, p->pHaving, flags); 9566ab3a2ecSdanielk1977 pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, flags); 957ff78bd2fSdrh pNew->op = p->op; 95823b1b372Sdrh pNew->pPrior = pPrior = sqlite3SelectDup(db, p->pPrior, flags); 95923b1b372Sdrh if( pPrior ) pPrior->pNext = pNew; 96023b1b372Sdrh pNew->pNext = 0; 9616ab3a2ecSdanielk1977 pNew->pLimit = sqlite3ExprDup(db, p->pLimit, flags); 9626ab3a2ecSdanielk1977 pNew->pOffset = sqlite3ExprDup(db, p->pOffset, flags); 96392b01d53Sdrh pNew->iLimit = 0; 96492b01d53Sdrh pNew->iOffset = 0; 9657d10d5a6Sdrh pNew->selFlags = p->selFlags & ~SF_UsesEphemeral; 9660342b1f5Sdrh pNew->pRightmost = 0; 967b9bb7c18Sdrh pNew->addrOpenEphm[0] = -1; 968b9bb7c18Sdrh pNew->addrOpenEphm[1] = -1; 969b9bb7c18Sdrh pNew->addrOpenEphm[2] = -1; 970ff78bd2fSdrh return pNew; 971ff78bd2fSdrh } 97293758c8dSdanielk1977 #else 9736ab3a2ecSdanielk1977 Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ 97493758c8dSdanielk1977 assert( p==0 ); 97593758c8dSdanielk1977 return 0; 97693758c8dSdanielk1977 } 97793758c8dSdanielk1977 #endif 978ff78bd2fSdrh 979ff78bd2fSdrh 980ff78bd2fSdrh /* 981a76b5dfcSdrh ** Add a new element to the end of an expression list. If pList is 982a76b5dfcSdrh ** initially NULL, then create a new expression list. 983b7916a78Sdrh ** 984b7916a78Sdrh ** If a memory allocation error occurs, the entire list is freed and 985b7916a78Sdrh ** NULL is returned. If non-NULL is returned, then it is guaranteed 986b7916a78Sdrh ** that the new entry was successfully appended. 987a76b5dfcSdrh */ 98817435752Sdrh ExprList *sqlite3ExprListAppend( 98917435752Sdrh Parse *pParse, /* Parsing context */ 99017435752Sdrh ExprList *pList, /* List to which to append. Might be NULL */ 991b7916a78Sdrh Expr *pExpr /* Expression to be appended. Might be NULL */ 99217435752Sdrh ){ 99317435752Sdrh sqlite3 *db = pParse->db; 994a76b5dfcSdrh if( pList==0 ){ 99517435752Sdrh pList = sqlite3DbMallocZero(db, sizeof(ExprList) ); 996a76b5dfcSdrh if( pList==0 ){ 997d5d56523Sdanielk1977 goto no_mem; 998a76b5dfcSdrh } 999d872bb18Sdrh pList->a = sqlite3DbMallocRaw(db, sizeof(pList->a[0])); 1000d872bb18Sdrh if( pList->a==0 ) goto no_mem; 1001d872bb18Sdrh }else if( (pList->nExpr & (pList->nExpr-1))==0 ){ 1002d5d56523Sdanielk1977 struct ExprList_item *a; 1003d872bb18Sdrh assert( pList->nExpr>0 ); 1004d872bb18Sdrh a = sqlite3DbRealloc(db, pList->a, pList->nExpr*2*sizeof(pList->a[0])); 1005d5d56523Sdanielk1977 if( a==0 ){ 1006d5d56523Sdanielk1977 goto no_mem; 1007a76b5dfcSdrh } 1008d5d56523Sdanielk1977 pList->a = a; 1009a76b5dfcSdrh } 10104efc4754Sdrh assert( pList->a!=0 ); 1011b7916a78Sdrh if( 1 ){ 10124efc4754Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr++]; 10134efc4754Sdrh memset(pItem, 0, sizeof(*pItem)); 1014e94ddc9eSdanielk1977 pItem->pExpr = pExpr; 1015a76b5dfcSdrh } 1016a76b5dfcSdrh return pList; 1017d5d56523Sdanielk1977 1018d5d56523Sdanielk1977 no_mem: 1019d5d56523Sdanielk1977 /* Avoid leaking memory if malloc has failed. */ 1020633e6d57Sdrh sqlite3ExprDelete(db, pExpr); 1021633e6d57Sdrh sqlite3ExprListDelete(db, pList); 1022d5d56523Sdanielk1977 return 0; 1023a76b5dfcSdrh } 1024a76b5dfcSdrh 1025a76b5dfcSdrh /* 1026b7916a78Sdrh ** Set the ExprList.a[].zName element of the most recently added item 1027b7916a78Sdrh ** on the expression list. 1028b7916a78Sdrh ** 1029b7916a78Sdrh ** pList might be NULL following an OOM error. But pName should never be 1030b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1031b7916a78Sdrh ** is set. 1032b7916a78Sdrh */ 1033b7916a78Sdrh void sqlite3ExprListSetName( 1034b7916a78Sdrh Parse *pParse, /* Parsing context */ 1035b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1036b7916a78Sdrh Token *pName, /* Name to be added */ 1037b7916a78Sdrh int dequote /* True to cause the name to be dequoted */ 1038b7916a78Sdrh ){ 1039b7916a78Sdrh assert( pList!=0 || pParse->db->mallocFailed!=0 ); 1040b7916a78Sdrh if( pList ){ 1041b7916a78Sdrh struct ExprList_item *pItem; 1042b7916a78Sdrh assert( pList->nExpr>0 ); 1043b7916a78Sdrh pItem = &pList->a[pList->nExpr-1]; 1044b7916a78Sdrh assert( pItem->zName==0 ); 1045b7916a78Sdrh pItem->zName = sqlite3DbStrNDup(pParse->db, pName->z, pName->n); 1046b7916a78Sdrh if( dequote && pItem->zName ) sqlite3Dequote(pItem->zName); 1047b7916a78Sdrh } 1048b7916a78Sdrh } 1049b7916a78Sdrh 1050b7916a78Sdrh /* 1051b7916a78Sdrh ** Set the ExprList.a[].zSpan element of the most recently added item 1052b7916a78Sdrh ** on the expression list. 1053b7916a78Sdrh ** 1054b7916a78Sdrh ** pList might be NULL following an OOM error. But pSpan should never be 1055b7916a78Sdrh ** NULL. If a memory allocation fails, the pParse->db->mallocFailed flag 1056b7916a78Sdrh ** is set. 1057b7916a78Sdrh */ 1058b7916a78Sdrh void sqlite3ExprListSetSpan( 1059b7916a78Sdrh Parse *pParse, /* Parsing context */ 1060b7916a78Sdrh ExprList *pList, /* List to which to add the span. */ 1061b7916a78Sdrh ExprSpan *pSpan /* The span to be added */ 1062b7916a78Sdrh ){ 1063b7916a78Sdrh sqlite3 *db = pParse->db; 1064b7916a78Sdrh assert( pList!=0 || db->mallocFailed!=0 ); 1065b7916a78Sdrh if( pList ){ 1066b7916a78Sdrh struct ExprList_item *pItem = &pList->a[pList->nExpr-1]; 1067b7916a78Sdrh assert( pList->nExpr>0 ); 1068b7916a78Sdrh assert( db->mallocFailed || pItem->pExpr==pSpan->pExpr ); 1069b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1070b7916a78Sdrh pItem->zSpan = sqlite3DbStrNDup(db, (char*)pSpan->zStart, 1071cf697396Sshane (int)(pSpan->zEnd - pSpan->zStart)); 1072b7916a78Sdrh } 1073b7916a78Sdrh } 1074b7916a78Sdrh 1075b7916a78Sdrh /* 10767a15a4beSdanielk1977 ** If the expression list pEList contains more than iLimit elements, 10777a15a4beSdanielk1977 ** leave an error message in pParse. 10787a15a4beSdanielk1977 */ 10797a15a4beSdanielk1977 void sqlite3ExprListCheckLength( 10807a15a4beSdanielk1977 Parse *pParse, 10817a15a4beSdanielk1977 ExprList *pEList, 10827a15a4beSdanielk1977 const char *zObject 10837a15a4beSdanielk1977 ){ 1084b1a6c3c1Sdrh int mx = pParse->db->aLimit[SQLITE_LIMIT_COLUMN]; 1085c5499befSdrh testcase( pEList && pEList->nExpr==mx ); 1086c5499befSdrh testcase( pEList && pEList->nExpr==mx+1 ); 1087b1a6c3c1Sdrh if( pEList && pEList->nExpr>mx ){ 10887a15a4beSdanielk1977 sqlite3ErrorMsg(pParse, "too many columns in %s", zObject); 10897a15a4beSdanielk1977 } 10907a15a4beSdanielk1977 } 10917a15a4beSdanielk1977 10927a15a4beSdanielk1977 /* 1093a76b5dfcSdrh ** Delete an entire expression list. 1094a76b5dfcSdrh */ 1095633e6d57Sdrh void sqlite3ExprListDelete(sqlite3 *db, ExprList *pList){ 1096a76b5dfcSdrh int i; 1097be5c89acSdrh struct ExprList_item *pItem; 1098a76b5dfcSdrh if( pList==0 ) return; 1099d872bb18Sdrh assert( pList->a!=0 || pList->nExpr==0 ); 1100be5c89acSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 1101633e6d57Sdrh sqlite3ExprDelete(db, pItem->pExpr); 1102633e6d57Sdrh sqlite3DbFree(db, pItem->zName); 1103b7916a78Sdrh sqlite3DbFree(db, pItem->zSpan); 1104a76b5dfcSdrh } 1105633e6d57Sdrh sqlite3DbFree(db, pList->a); 1106633e6d57Sdrh sqlite3DbFree(db, pList); 1107a76b5dfcSdrh } 1108a76b5dfcSdrh 1109a76b5dfcSdrh /* 11107d10d5a6Sdrh ** These routines are Walker callbacks. Walker.u.pi is a pointer 11117d10d5a6Sdrh ** to an integer. These routines are checking an expression to see 11127d10d5a6Sdrh ** if it is a constant. Set *Walker.u.pi to 0 if the expression is 11137d10d5a6Sdrh ** not constant. 111473b211abSdrh ** 11157d10d5a6Sdrh ** These callback routines are used to implement the following: 1116626a879aSdrh ** 11177d10d5a6Sdrh ** sqlite3ExprIsConstant() 11187d10d5a6Sdrh ** sqlite3ExprIsConstantNotJoin() 11197d10d5a6Sdrh ** sqlite3ExprIsConstantOrFunction() 112087abf5c0Sdrh ** 1121626a879aSdrh */ 11227d10d5a6Sdrh static int exprNodeIsConstant(Walker *pWalker, Expr *pExpr){ 1123626a879aSdrh 11247d10d5a6Sdrh /* If pWalker->u.i is 3 then any term of the expression that comes from 11250a168377Sdrh ** the ON or USING clauses of a join disqualifies the expression 11260a168377Sdrh ** from being considered constant. */ 11277d10d5a6Sdrh if( pWalker->u.i==3 && ExprHasAnyProperty(pExpr, EP_FromJoin) ){ 11287d10d5a6Sdrh pWalker->u.i = 0; 11297d10d5a6Sdrh return WRC_Abort; 11300a168377Sdrh } 11310a168377Sdrh 1132626a879aSdrh switch( pExpr->op ){ 1133eb55bd2fSdrh /* Consider functions to be constant if all their arguments are constant 11347d10d5a6Sdrh ** and pWalker->u.i==2 */ 1135eb55bd2fSdrh case TK_FUNCTION: 11367d10d5a6Sdrh if( pWalker->u.i==2 ) return 0; 1137eb55bd2fSdrh /* Fall through */ 1138626a879aSdrh case TK_ID: 1139626a879aSdrh case TK_COLUMN: 1140626a879aSdrh case TK_AGG_FUNCTION: 114113449892Sdrh case TK_AGG_COLUMN: 1142c5499befSdrh testcase( pExpr->op==TK_ID ); 1143c5499befSdrh testcase( pExpr->op==TK_COLUMN ); 1144c5499befSdrh testcase( pExpr->op==TK_AGG_FUNCTION ); 1145c5499befSdrh testcase( pExpr->op==TK_AGG_COLUMN ); 11467d10d5a6Sdrh pWalker->u.i = 0; 11477d10d5a6Sdrh return WRC_Abort; 1148626a879aSdrh default: 1149b74b1017Sdrh testcase( pExpr->op==TK_SELECT ); /* selectNodeIsConstant will disallow */ 1150b74b1017Sdrh testcase( pExpr->op==TK_EXISTS ); /* selectNodeIsConstant will disallow */ 11517d10d5a6Sdrh return WRC_Continue; 1152626a879aSdrh } 1153626a879aSdrh } 115462c14b34Sdanielk1977 static int selectNodeIsConstant(Walker *pWalker, Select *NotUsed){ 115562c14b34Sdanielk1977 UNUSED_PARAMETER(NotUsed); 11567d10d5a6Sdrh pWalker->u.i = 0; 11577d10d5a6Sdrh return WRC_Abort; 11587d10d5a6Sdrh } 11597d10d5a6Sdrh static int exprIsConst(Expr *p, int initFlag){ 11607d10d5a6Sdrh Walker w; 11617d10d5a6Sdrh w.u.i = initFlag; 11627d10d5a6Sdrh w.xExprCallback = exprNodeIsConstant; 11637d10d5a6Sdrh w.xSelectCallback = selectNodeIsConstant; 11647d10d5a6Sdrh sqlite3WalkExpr(&w, p); 11657d10d5a6Sdrh return w.u.i; 11667d10d5a6Sdrh } 1167626a879aSdrh 1168626a879aSdrh /* 1169fef5208cSdrh ** Walk an expression tree. Return 1 if the expression is constant 1170eb55bd2fSdrh ** and 0 if it involves variables or function calls. 11712398937bSdrh ** 11722398937bSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 11732398937bSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 11742398937bSdrh ** a constant. 1175fef5208cSdrh */ 11764adee20fSdanielk1977 int sqlite3ExprIsConstant(Expr *p){ 11777d10d5a6Sdrh return exprIsConst(p, 1); 1178fef5208cSdrh } 1179fef5208cSdrh 1180fef5208cSdrh /* 1181eb55bd2fSdrh ** Walk an expression tree. Return 1 if the expression is constant 11820a168377Sdrh ** that does no originate from the ON or USING clauses of a join. 11830a168377Sdrh ** Return 0 if it involves variables or function calls or terms from 11840a168377Sdrh ** an ON or USING clause. 11850a168377Sdrh */ 11860a168377Sdrh int sqlite3ExprIsConstantNotJoin(Expr *p){ 11877d10d5a6Sdrh return exprIsConst(p, 3); 11880a168377Sdrh } 11890a168377Sdrh 11900a168377Sdrh /* 11910a168377Sdrh ** Walk an expression tree. Return 1 if the expression is constant 1192eb55bd2fSdrh ** or a function call with constant arguments. Return and 0 if there 1193eb55bd2fSdrh ** are any variables. 1194eb55bd2fSdrh ** 1195eb55bd2fSdrh ** For the purposes of this function, a double-quoted string (ex: "abc") 1196eb55bd2fSdrh ** is considered a variable but a single-quoted string (ex: 'abc') is 1197eb55bd2fSdrh ** a constant. 1198eb55bd2fSdrh */ 1199eb55bd2fSdrh int sqlite3ExprIsConstantOrFunction(Expr *p){ 12007d10d5a6Sdrh return exprIsConst(p, 2); 1201eb55bd2fSdrh } 1202eb55bd2fSdrh 1203eb55bd2fSdrh /* 120473b211abSdrh ** If the expression p codes a constant integer that is small enough 1205202b2df7Sdrh ** to fit in a 32-bit integer, return 1 and put the value of the integer 1206202b2df7Sdrh ** in *pValue. If the expression is not an integer or if it is too big 1207202b2df7Sdrh ** to fit in a signed 32-bit integer, return 0 and leave *pValue unchanged. 1208e4de1febSdrh */ 12094adee20fSdanielk1977 int sqlite3ExprIsInteger(Expr *p, int *pValue){ 121092b01d53Sdrh int rc = 0; 1211cd92e84dSdrh 1212cd92e84dSdrh /* If an expression is an integer literal that fits in a signed 32-bit 1213cd92e84dSdrh ** integer, then the EP_IntValue flag will have already been set */ 1214cd92e84dSdrh assert( p->op!=TK_INTEGER || (p->flags & EP_IntValue)!=0 1215cd92e84dSdrh || sqlite3GetInt32(p->u.zToken, &rc)==0 ); 1216cd92e84dSdrh 121792b01d53Sdrh if( p->flags & EP_IntValue ){ 121833e619fcSdrh *pValue = p->u.iValue; 1219e4de1febSdrh return 1; 1220e4de1febSdrh } 122192b01d53Sdrh switch( p->op ){ 12224b59ab5eSdrh case TK_UPLUS: { 122392b01d53Sdrh rc = sqlite3ExprIsInteger(p->pLeft, pValue); 1224f6e369a1Sdrh break; 12254b59ab5eSdrh } 1226e4de1febSdrh case TK_UMINUS: { 1227e4de1febSdrh int v; 12284adee20fSdanielk1977 if( sqlite3ExprIsInteger(p->pLeft, &v) ){ 1229e4de1febSdrh *pValue = -v; 123092b01d53Sdrh rc = 1; 1231e4de1febSdrh } 1232e4de1febSdrh break; 1233e4de1febSdrh } 1234e4de1febSdrh default: break; 1235e4de1febSdrh } 123692b01d53Sdrh return rc; 1237e4de1febSdrh } 1238e4de1febSdrh 1239e4de1febSdrh /* 1240039fc32eSdrh ** Return FALSE if there is no chance that the expression can be NULL. 1241039fc32eSdrh ** 1242039fc32eSdrh ** If the expression might be NULL or if the expression is too complex 1243039fc32eSdrh ** to tell return TRUE. 1244039fc32eSdrh ** 1245039fc32eSdrh ** This routine is used as an optimization, to skip OP_IsNull opcodes 1246039fc32eSdrh ** when we know that a value cannot be NULL. Hence, a false positive 1247039fc32eSdrh ** (returning TRUE when in fact the expression can never be NULL) might 1248039fc32eSdrh ** be a small performance hit but is otherwise harmless. On the other 1249039fc32eSdrh ** hand, a false negative (returning FALSE when the result could be NULL) 1250039fc32eSdrh ** will likely result in an incorrect answer. So when in doubt, return 1251039fc32eSdrh ** TRUE. 1252039fc32eSdrh */ 1253039fc32eSdrh int sqlite3ExprCanBeNull(const Expr *p){ 1254039fc32eSdrh u8 op; 1255cd7f457eSdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } 1256039fc32eSdrh op = p->op; 1257039fc32eSdrh if( op==TK_REGISTER ) op = p->op2; 1258039fc32eSdrh switch( op ){ 1259039fc32eSdrh case TK_INTEGER: 1260039fc32eSdrh case TK_STRING: 1261039fc32eSdrh case TK_FLOAT: 1262039fc32eSdrh case TK_BLOB: 1263039fc32eSdrh return 0; 1264039fc32eSdrh default: 1265039fc32eSdrh return 1; 1266039fc32eSdrh } 1267039fc32eSdrh } 1268039fc32eSdrh 1269039fc32eSdrh /* 12702f2855b6Sdrh ** Generate an OP_IsNull instruction that tests register iReg and jumps 12712f2855b6Sdrh ** to location iDest if the value in iReg is NULL. The value in iReg 12722f2855b6Sdrh ** was computed by pExpr. If we can look at pExpr at compile-time and 12732f2855b6Sdrh ** determine that it can never generate a NULL, then the OP_IsNull operation 12742f2855b6Sdrh ** can be omitted. 12752f2855b6Sdrh */ 12762f2855b6Sdrh void sqlite3ExprCodeIsNullJump( 12772f2855b6Sdrh Vdbe *v, /* The VDBE under construction */ 12782f2855b6Sdrh const Expr *pExpr, /* Only generate OP_IsNull if this expr can be NULL */ 12792f2855b6Sdrh int iReg, /* Test the value in this register for NULL */ 12802f2855b6Sdrh int iDest /* Jump here if the value is null */ 12812f2855b6Sdrh ){ 12822f2855b6Sdrh if( sqlite3ExprCanBeNull(pExpr) ){ 12832f2855b6Sdrh sqlite3VdbeAddOp2(v, OP_IsNull, iReg, iDest); 12842f2855b6Sdrh } 12852f2855b6Sdrh } 12862f2855b6Sdrh 12872f2855b6Sdrh /* 1288039fc32eSdrh ** Return TRUE if the given expression is a constant which would be 1289039fc32eSdrh ** unchanged by OP_Affinity with the affinity given in the second 1290039fc32eSdrh ** argument. 1291039fc32eSdrh ** 1292039fc32eSdrh ** This routine is used to determine if the OP_Affinity operation 1293039fc32eSdrh ** can be omitted. When in doubt return FALSE. A false negative 1294039fc32eSdrh ** is harmless. A false positive, however, can result in the wrong 1295039fc32eSdrh ** answer. 1296039fc32eSdrh */ 1297039fc32eSdrh int sqlite3ExprNeedsNoAffinityChange(const Expr *p, char aff){ 1298039fc32eSdrh u8 op; 1299039fc32eSdrh if( aff==SQLITE_AFF_NONE ) return 1; 1300cd7f457eSdrh while( p->op==TK_UPLUS || p->op==TK_UMINUS ){ p = p->pLeft; } 1301039fc32eSdrh op = p->op; 1302039fc32eSdrh if( op==TK_REGISTER ) op = p->op2; 1303039fc32eSdrh switch( op ){ 1304039fc32eSdrh case TK_INTEGER: { 1305039fc32eSdrh return aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC; 1306039fc32eSdrh } 1307039fc32eSdrh case TK_FLOAT: { 1308039fc32eSdrh return aff==SQLITE_AFF_REAL || aff==SQLITE_AFF_NUMERIC; 1309039fc32eSdrh } 1310039fc32eSdrh case TK_STRING: { 1311039fc32eSdrh return aff==SQLITE_AFF_TEXT; 1312039fc32eSdrh } 1313039fc32eSdrh case TK_BLOB: { 1314039fc32eSdrh return 1; 1315039fc32eSdrh } 13162f2855b6Sdrh case TK_COLUMN: { 131788376ca7Sdrh assert( p->iTable>=0 ); /* p cannot be part of a CHECK constraint */ 131888376ca7Sdrh return p->iColumn<0 13192f2855b6Sdrh && (aff==SQLITE_AFF_INTEGER || aff==SQLITE_AFF_NUMERIC); 13202f2855b6Sdrh } 1321039fc32eSdrh default: { 1322039fc32eSdrh return 0; 1323039fc32eSdrh } 1324039fc32eSdrh } 1325039fc32eSdrh } 1326039fc32eSdrh 1327039fc32eSdrh /* 1328c4a3c779Sdrh ** Return TRUE if the given string is a row-id column name. 1329c4a3c779Sdrh */ 13304adee20fSdanielk1977 int sqlite3IsRowid(const char *z){ 13314adee20fSdanielk1977 if( sqlite3StrICmp(z, "_ROWID_")==0 ) return 1; 13324adee20fSdanielk1977 if( sqlite3StrICmp(z, "ROWID")==0 ) return 1; 13334adee20fSdanielk1977 if( sqlite3StrICmp(z, "OID")==0 ) return 1; 1334c4a3c779Sdrh return 0; 1335c4a3c779Sdrh } 1336c4a3c779Sdrh 13379a96b668Sdanielk1977 /* 1338b74b1017Sdrh ** Return true if we are able to the IN operator optimization on a 1339b74b1017Sdrh ** query of the form 1340b287f4b6Sdrh ** 1341b74b1017Sdrh ** x IN (SELECT ...) 1342b287f4b6Sdrh ** 1343b74b1017Sdrh ** Where the SELECT... clause is as specified by the parameter to this 1344b74b1017Sdrh ** routine. 1345b74b1017Sdrh ** 1346b74b1017Sdrh ** The Select object passed in has already been preprocessed and no 1347b74b1017Sdrh ** errors have been found. 1348b287f4b6Sdrh */ 1349b287f4b6Sdrh #ifndef SQLITE_OMIT_SUBQUERY 1350b287f4b6Sdrh static int isCandidateForInOpt(Select *p){ 1351b287f4b6Sdrh SrcList *pSrc; 1352b287f4b6Sdrh ExprList *pEList; 1353b287f4b6Sdrh Table *pTab; 1354b287f4b6Sdrh if( p==0 ) return 0; /* right-hand side of IN is SELECT */ 1355b287f4b6Sdrh if( p->pPrior ) return 0; /* Not a compound SELECT */ 13567d10d5a6Sdrh if( p->selFlags & (SF_Distinct|SF_Aggregate) ){ 1357b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Distinct ); 1358b74b1017Sdrh testcase( (p->selFlags & (SF_Distinct|SF_Aggregate))==SF_Aggregate ); 13597d10d5a6Sdrh return 0; /* No DISTINCT keyword and no aggregate functions */ 13607d10d5a6Sdrh } 1361b74b1017Sdrh assert( p->pGroupBy==0 ); /* Has no GROUP BY clause */ 1362b287f4b6Sdrh if( p->pLimit ) return 0; /* Has no LIMIT clause */ 1363b74b1017Sdrh assert( p->pOffset==0 ); /* No LIMIT means no OFFSET */ 1364b287f4b6Sdrh if( p->pWhere ) return 0; /* Has no WHERE clause */ 1365b287f4b6Sdrh pSrc = p->pSrc; 1366d1fa7bcaSdrh assert( pSrc!=0 ); 1367d1fa7bcaSdrh if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */ 1368b74b1017Sdrh if( pSrc->a[0].pSelect ) return 0; /* FROM is not a subquery or view */ 1369b287f4b6Sdrh pTab = pSrc->a[0].pTab; 1370b74b1017Sdrh if( NEVER(pTab==0) ) return 0; 1371b74b1017Sdrh assert( pTab->pSelect==0 ); /* FROM clause is not a view */ 1372b287f4b6Sdrh if( IsVirtual(pTab) ) return 0; /* FROM clause not a virtual table */ 1373b287f4b6Sdrh pEList = p->pEList; 1374b287f4b6Sdrh if( pEList->nExpr!=1 ) return 0; /* One column in the result set */ 1375b287f4b6Sdrh if( pEList->a[0].pExpr->op!=TK_COLUMN ) return 0; /* Result is a column */ 1376b287f4b6Sdrh return 1; 1377b287f4b6Sdrh } 1378b287f4b6Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1379b287f4b6Sdrh 1380b287f4b6Sdrh /* 13811d8cb21fSdan ** Code an OP_Once instruction and allocate space for its flag. Return the 13821d8cb21fSdan ** address of the new instruction. 13831d8cb21fSdan */ 13841d8cb21fSdan int sqlite3CodeOnce(Parse *pParse){ 13851d8cb21fSdan Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ 13861d8cb21fSdan return sqlite3VdbeAddOp1(v, OP_Once, pParse->nOnce++); 13871d8cb21fSdan } 13881d8cb21fSdan 13891d8cb21fSdan /* 13909a96b668Sdanielk1977 ** This function is used by the implementation of the IN (...) operator. 13919a96b668Sdanielk1977 ** It's job is to find or create a b-tree structure that may be used 13929a96b668Sdanielk1977 ** either to test for membership of the (...) set or to iterate through 139385b623f2Sdrh ** its members, skipping duplicates. 13949a96b668Sdanielk1977 ** 1395b74b1017Sdrh ** The index of the cursor opened on the b-tree (database table, database index 13969a96b668Sdanielk1977 ** or ephermal table) is stored in pX->iTable before this function returns. 1397b74b1017Sdrh ** The returned value of this function indicates the b-tree type, as follows: 13989a96b668Sdanielk1977 ** 13999a96b668Sdanielk1977 ** IN_INDEX_ROWID - The cursor was opened on a database table. 14002d401ab8Sdrh ** IN_INDEX_INDEX - The cursor was opened on a database index. 14019a96b668Sdanielk1977 ** IN_INDEX_EPH - The cursor was opened on a specially created and 14029a96b668Sdanielk1977 ** populated epheremal table. 14039a96b668Sdanielk1977 ** 1404b74b1017Sdrh ** An existing b-tree may only be used if the SELECT is of the simple 14059a96b668Sdanielk1977 ** form: 14069a96b668Sdanielk1977 ** 14079a96b668Sdanielk1977 ** SELECT <column> FROM <table> 14089a96b668Sdanielk1977 ** 1409b74b1017Sdrh ** If the prNotFound parameter is 0, then the b-tree will be used to iterate 14109a96b668Sdanielk1977 ** through the set members, skipping any duplicates. In this case an 14119a96b668Sdanielk1977 ** epheremal table must be used unless the selected <column> is guaranteed 14129a96b668Sdanielk1977 ** to be unique - either because it is an INTEGER PRIMARY KEY or it 1413b74b1017Sdrh ** has a UNIQUE constraint or UNIQUE index. 14140cdc022eSdanielk1977 ** 1415b74b1017Sdrh ** If the prNotFound parameter is not 0, then the b-tree will be used 14160cdc022eSdanielk1977 ** for fast set membership tests. In this case an epheremal table must 14170cdc022eSdanielk1977 ** be used unless <column> is an INTEGER PRIMARY KEY or an index can 14180cdc022eSdanielk1977 ** be found with <column> as its left-most column. 14190cdc022eSdanielk1977 ** 1420b74b1017Sdrh ** When the b-tree is being used for membership tests, the calling function 14210cdc022eSdanielk1977 ** needs to know whether or not the structure contains an SQL NULL 14220cdc022eSdanielk1977 ** value in order to correctly evaluate expressions like "X IN (Y, Z)". 1423e3365e6cSdrh ** If there is any chance that the (...) might contain a NULL value at 14240cdc022eSdanielk1977 ** runtime, then a register is allocated and the register number written 1425e3365e6cSdrh ** to *prNotFound. If there is no chance that the (...) contains a 14260cdc022eSdanielk1977 ** NULL value, then *prNotFound is left unchanged. 14270cdc022eSdanielk1977 ** 14280cdc022eSdanielk1977 ** If a register is allocated and its location stored in *prNotFound, then 1429e3365e6cSdrh ** its initial value is NULL. If the (...) does not remain constant 1430e3365e6cSdrh ** for the duration of the query (i.e. the SELECT within the (...) 1431b74b1017Sdrh ** is a correlated subquery) then the value of the allocated register is 1432e3365e6cSdrh ** reset to NULL each time the subquery is rerun. This allows the 1433b74b1017Sdrh ** caller to use vdbe code equivalent to the following: 14340cdc022eSdanielk1977 ** 14350cdc022eSdanielk1977 ** if( register==NULL ){ 14360cdc022eSdanielk1977 ** has_null = <test if data structure contains null> 14370cdc022eSdanielk1977 ** register = 1 14380cdc022eSdanielk1977 ** } 14390cdc022eSdanielk1977 ** 14400cdc022eSdanielk1977 ** in order to avoid running the <test if data structure contains null> 14410cdc022eSdanielk1977 ** test more often than is necessary. 14429a96b668Sdanielk1977 */ 1443284f4acaSdanielk1977 #ifndef SQLITE_OMIT_SUBQUERY 14440cdc022eSdanielk1977 int sqlite3FindInIndex(Parse *pParse, Expr *pX, int *prNotFound){ 1445b74b1017Sdrh Select *p; /* SELECT to the right of IN operator */ 1446b74b1017Sdrh int eType = 0; /* Type of RHS table. IN_INDEX_* */ 1447b74b1017Sdrh int iTab = pParse->nTab++; /* Cursor of the RHS table */ 1448b74b1017Sdrh int mustBeUnique = (prNotFound==0); /* True if RHS must be unique */ 1449b8475df8Sdrh Vdbe *v = sqlite3GetVdbe(pParse); /* Virtual machine being coded */ 14509a96b668Sdanielk1977 14511450bc6eSdrh assert( pX->op==TK_IN ); 14521450bc6eSdrh 1453b74b1017Sdrh /* Check to see if an existing table or index can be used to 1454b74b1017Sdrh ** satisfy the query. This is preferable to generating a new 1455b74b1017Sdrh ** ephemeral table. 14569a96b668Sdanielk1977 */ 14576ab3a2ecSdanielk1977 p = (ExprHasProperty(pX, EP_xIsSelect) ? pX->x.pSelect : 0); 1458fd773cf9Sdrh if( ALWAYS(pParse->nErr==0) && isCandidateForInOpt(p) ){ 1459e1fb65a0Sdanielk1977 sqlite3 *db = pParse->db; /* Database connection */ 1460b07028f7Sdrh Table *pTab; /* Table <table>. */ 1461b07028f7Sdrh Expr *pExpr; /* Expression <column> */ 1462b07028f7Sdrh int iCol; /* Index of column <column> */ 1463e1fb65a0Sdanielk1977 int iDb; /* Database idx for pTab */ 1464e1fb65a0Sdanielk1977 1465b07028f7Sdrh assert( p ); /* Because of isCandidateForInOpt(p) */ 1466b07028f7Sdrh assert( p->pEList!=0 ); /* Because of isCandidateForInOpt(p) */ 1467b07028f7Sdrh assert( p->pEList->a[0].pExpr!=0 ); /* Because of isCandidateForInOpt(p) */ 1468b07028f7Sdrh assert( p->pSrc!=0 ); /* Because of isCandidateForInOpt(p) */ 1469b07028f7Sdrh pTab = p->pSrc->a[0].pTab; 1470b07028f7Sdrh pExpr = p->pEList->a[0].pExpr; 1471b07028f7Sdrh iCol = pExpr->iColumn; 1472b07028f7Sdrh 1473e1fb65a0Sdanielk1977 /* Code an OP_VerifyCookie and OP_TableLock for <table>. */ 1474e1fb65a0Sdanielk1977 iDb = sqlite3SchemaToIndex(db, pTab->pSchema); 1475e1fb65a0Sdanielk1977 sqlite3CodeVerifySchema(pParse, iDb); 1476e1fb65a0Sdanielk1977 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName); 14779a96b668Sdanielk1977 14789a96b668Sdanielk1977 /* This function is only called from two places. In both cases the vdbe 14799a96b668Sdanielk1977 ** has already been allocated. So assume sqlite3GetVdbe() is always 14809a96b668Sdanielk1977 ** successful here. 14819a96b668Sdanielk1977 */ 14829a96b668Sdanielk1977 assert(v); 14839a96b668Sdanielk1977 if( iCol<0 ){ 14849a96b668Sdanielk1977 int iAddr; 14859a96b668Sdanielk1977 14861d8cb21fSdan iAddr = sqlite3CodeOnce(pParse); 14879a96b668Sdanielk1977 14889a96b668Sdanielk1977 sqlite3OpenTable(pParse, iTab, iDb, pTab, OP_OpenRead); 14899a96b668Sdanielk1977 eType = IN_INDEX_ROWID; 14909a96b668Sdanielk1977 14919a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr); 14929a96b668Sdanielk1977 }else{ 1493e1fb65a0Sdanielk1977 Index *pIdx; /* Iterator variable */ 1494e1fb65a0Sdanielk1977 14959a96b668Sdanielk1977 /* The collation sequence used by the comparison. If an index is to 14969a96b668Sdanielk1977 ** be used in place of a temp-table, it must be ordered according 1497e1fb65a0Sdanielk1977 ** to this collation sequence. */ 14989a96b668Sdanielk1977 CollSeq *pReq = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pExpr); 14999a96b668Sdanielk1977 15009a96b668Sdanielk1977 /* Check that the affinity that will be used to perform the 15019a96b668Sdanielk1977 ** comparison is the same as the affinity of the column. If 15029a96b668Sdanielk1977 ** it is not, it is not possible to use any index. 15039a96b668Sdanielk1977 */ 15049a96b668Sdanielk1977 char aff = comparisonAffinity(pX); 15059a96b668Sdanielk1977 int affinity_ok = (pTab->aCol[iCol].affinity==aff||aff==SQLITE_AFF_NONE); 15069a96b668Sdanielk1977 15079a96b668Sdanielk1977 for(pIdx=pTab->pIndex; pIdx && eType==0 && affinity_ok; pIdx=pIdx->pNext){ 15089a96b668Sdanielk1977 if( (pIdx->aiColumn[0]==iCol) 1509b74b1017Sdrh && sqlite3FindCollSeq(db, ENC(db), pIdx->azColl[0], 0)==pReq 15109a96b668Sdanielk1977 && (!mustBeUnique || (pIdx->nColumn==1 && pIdx->onError!=OE_None)) 15119a96b668Sdanielk1977 ){ 15129a96b668Sdanielk1977 int iAddr; 15139a96b668Sdanielk1977 char *pKey; 15149a96b668Sdanielk1977 15159a96b668Sdanielk1977 pKey = (char *)sqlite3IndexKeyinfo(pParse, pIdx); 15161d8cb21fSdan iAddr = sqlite3CodeOnce(pParse); 15179a96b668Sdanielk1977 1518207872a4Sdanielk1977 sqlite3VdbeAddOp4(v, OP_OpenRead, iTab, pIdx->tnum, iDb, 151966a5167bSdrh pKey,P4_KEYINFO_HANDOFF); 1520207872a4Sdanielk1977 VdbeComment((v, "%s", pIdx->zName)); 15219a96b668Sdanielk1977 eType = IN_INDEX_INDEX; 15229a96b668Sdanielk1977 15239a96b668Sdanielk1977 sqlite3VdbeJumpHere(v, iAddr); 15240cdc022eSdanielk1977 if( prNotFound && !pTab->aCol[iCol].notNull ){ 15250cdc022eSdanielk1977 *prNotFound = ++pParse->nMem; 1526b8475df8Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, *prNotFound); 15270cdc022eSdanielk1977 } 15289a96b668Sdanielk1977 } 15299a96b668Sdanielk1977 } 15309a96b668Sdanielk1977 } 15319a96b668Sdanielk1977 } 15329a96b668Sdanielk1977 15339a96b668Sdanielk1977 if( eType==0 ){ 15341450bc6eSdrh /* Could not found an existing table or index to use as the RHS b-tree. 1535b74b1017Sdrh ** We will have to generate an ephemeral table to do the job. 1536b74b1017Sdrh */ 1537cf4d38aaSdrh double savedNQueryLoop = pParse->nQueryLoop; 15380cdc022eSdanielk1977 int rMayHaveNull = 0; 153941a05b7bSdanielk1977 eType = IN_INDEX_EPH; 15400cdc022eSdanielk1977 if( prNotFound ){ 15410cdc022eSdanielk1977 *prNotFound = rMayHaveNull = ++pParse->nMem; 1542b8475df8Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, *prNotFound); 1543cf4d38aaSdrh }else{ 1544cf4d38aaSdrh testcase( pParse->nQueryLoop>(double)1 ); 1545cf4d38aaSdrh pParse->nQueryLoop = (double)1; 1546cf4d38aaSdrh if( pX->pLeft->iColumn<0 && !ExprHasAnyProperty(pX, EP_xIsSelect) ){ 154741a05b7bSdanielk1977 eType = IN_INDEX_ROWID; 15480cdc022eSdanielk1977 } 1549cf4d38aaSdrh } 155041a05b7bSdanielk1977 sqlite3CodeSubselect(pParse, pX, rMayHaveNull, eType==IN_INDEX_ROWID); 1551cf4d38aaSdrh pParse->nQueryLoop = savedNQueryLoop; 15529a96b668Sdanielk1977 }else{ 15539a96b668Sdanielk1977 pX->iTable = iTab; 15549a96b668Sdanielk1977 } 15559a96b668Sdanielk1977 return eType; 15569a96b668Sdanielk1977 } 1557284f4acaSdanielk1977 #endif 1558626a879aSdrh 1559626a879aSdrh /* 1560d4187c71Sdrh ** Generate code for scalar subqueries used as a subquery expression, EXISTS, 1561d4187c71Sdrh ** or IN operators. Examples: 1562626a879aSdrh ** 15639cbe6352Sdrh ** (SELECT a FROM b) -- subquery 15649cbe6352Sdrh ** EXISTS (SELECT a FROM b) -- EXISTS subquery 15659cbe6352Sdrh ** x IN (4,5,11) -- IN operator with list on right-hand side 15669cbe6352Sdrh ** x IN (SELECT a FROM b) -- IN operator with subquery on the right 1567fef5208cSdrh ** 15689cbe6352Sdrh ** The pExpr parameter describes the expression that contains the IN 15699cbe6352Sdrh ** operator or subquery. 157041a05b7bSdanielk1977 ** 157141a05b7bSdanielk1977 ** If parameter isRowid is non-zero, then expression pExpr is guaranteed 157241a05b7bSdanielk1977 ** to be of the form "<rowid> IN (?, ?, ?)", where <rowid> is a reference 157341a05b7bSdanielk1977 ** to some integer key column of a table B-Tree. In this case, use an 157441a05b7bSdanielk1977 ** intkey B-Tree to store the set of IN(...) values instead of the usual 157541a05b7bSdanielk1977 ** (slower) variable length keys B-Tree. 1576fd773cf9Sdrh ** 1577fd773cf9Sdrh ** If rMayHaveNull is non-zero, that means that the operation is an IN 1578fd773cf9Sdrh ** (not a SELECT or EXISTS) and that the RHS might contains NULLs. 1579fd773cf9Sdrh ** Furthermore, the IN is in a WHERE clause and that we really want 1580fd773cf9Sdrh ** to iterate over the RHS of the IN operator in order to quickly locate 1581fd773cf9Sdrh ** all corresponding LHS elements. All this routine does is initialize 1582fd773cf9Sdrh ** the register given by rMayHaveNull to NULL. Calling routines will take 1583fd773cf9Sdrh ** care of changing this register value to non-NULL if the RHS is NULL-free. 1584fd773cf9Sdrh ** 1585fd773cf9Sdrh ** If rMayHaveNull is zero, that means that the subquery is being used 1586fd773cf9Sdrh ** for membership testing only. There is no need to initialize any 1587fd773cf9Sdrh ** registers to indicate the presense or absence of NULLs on the RHS. 15881450bc6eSdrh ** 15891450bc6eSdrh ** For a SELECT or EXISTS operator, return the register that holds the 15901450bc6eSdrh ** result. For IN operators or if an error occurs, the return value is 0. 1591cce7d176Sdrh */ 159251522cd3Sdrh #ifndef SQLITE_OMIT_SUBQUERY 15931450bc6eSdrh int sqlite3CodeSubselect( 1594fd773cf9Sdrh Parse *pParse, /* Parsing context */ 1595fd773cf9Sdrh Expr *pExpr, /* The IN, SELECT, or EXISTS operator */ 1596fd773cf9Sdrh int rMayHaveNull, /* Register that records whether NULLs exist in RHS */ 1597fd773cf9Sdrh int isRowid /* If true, LHS of IN operator is a rowid */ 159841a05b7bSdanielk1977 ){ 1599dfd2d9f6Sdrh int testAddr = -1; /* One-time test address */ 16001450bc6eSdrh int rReg = 0; /* Register storing resulting */ 1601b3bce662Sdanielk1977 Vdbe *v = sqlite3GetVdbe(pParse); 16021450bc6eSdrh if( NEVER(v==0) ) return 0; 1603ceea3321Sdrh sqlite3ExprCachePush(pParse); 1604fc976065Sdanielk1977 160557dbd7b3Sdrh /* This code must be run in its entirety every time it is encountered 160657dbd7b3Sdrh ** if any of the following is true: 160757dbd7b3Sdrh ** 160857dbd7b3Sdrh ** * The right-hand side is a correlated subquery 160957dbd7b3Sdrh ** * The right-hand side is an expression list containing variables 161057dbd7b3Sdrh ** * We are inside a trigger 161157dbd7b3Sdrh ** 161257dbd7b3Sdrh ** If all of the above are false, then we can run this code just once 161357dbd7b3Sdrh ** save the results, and reuse the same result on subsequent invocations. 1614b3bce662Sdanielk1977 */ 16151d8cb21fSdan if( !ExprHasAnyProperty(pExpr, EP_VarSelect) ){ 16161d8cb21fSdan testAddr = sqlite3CodeOnce(pParse); 1617b3bce662Sdanielk1977 } 1618b3bce662Sdanielk1977 16194a07e3dbSdan #ifndef SQLITE_OMIT_EXPLAIN 16204a07e3dbSdan if( pParse->explain==2 ){ 16214a07e3dbSdan char *zMsg = sqlite3MPrintf( 1622dfd2d9f6Sdrh pParse->db, "EXECUTE %s%s SUBQUERY %d", testAddr>=0?"":"CORRELATED ", 16234a07e3dbSdan pExpr->op==TK_IN?"LIST":"SCALAR", pParse->iNextSelectId 16244a07e3dbSdan ); 16254a07e3dbSdan sqlite3VdbeAddOp4(v, OP_Explain, pParse->iSelectId, 0, 0, zMsg, P4_DYNAMIC); 16264a07e3dbSdan } 16274a07e3dbSdan #endif 16284a07e3dbSdan 1629cce7d176Sdrh switch( pExpr->op ){ 1630fef5208cSdrh case TK_IN: { 1631d4187c71Sdrh char affinity; /* Affinity of the LHS of the IN */ 1632d4187c71Sdrh KeyInfo keyInfo; /* Keyinfo for the generated table */ 1633b9bb7c18Sdrh int addr; /* Address of OP_OpenEphemeral instruction */ 1634d4187c71Sdrh Expr *pLeft = pExpr->pLeft; /* the LHS of the IN operator */ 1635d3d39e93Sdrh 16360cdc022eSdanielk1977 if( rMayHaveNull ){ 16370cdc022eSdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, rMayHaveNull); 16380cdc022eSdanielk1977 } 16390cdc022eSdanielk1977 164041a05b7bSdanielk1977 affinity = sqlite3ExprAffinity(pLeft); 1641e014a838Sdanielk1977 1642e014a838Sdanielk1977 /* Whether this is an 'x IN(SELECT...)' or an 'x IN(<exprlist>)' 16438cff69dfSdrh ** expression it is handled the same way. An ephemeral table is 1644e014a838Sdanielk1977 ** filled with single-field index keys representing the results 1645e014a838Sdanielk1977 ** from the SELECT or the <exprlist>. 1646fef5208cSdrh ** 1647e014a838Sdanielk1977 ** If the 'x' expression is a column value, or the SELECT... 1648e014a838Sdanielk1977 ** statement returns a column value, then the affinity of that 1649e014a838Sdanielk1977 ** column is used to build the index keys. If both 'x' and the 1650e014a838Sdanielk1977 ** SELECT... statement are columns, then numeric affinity is used 1651e014a838Sdanielk1977 ** if either column has NUMERIC or INTEGER affinity. If neither 1652e014a838Sdanielk1977 ** 'x' nor the SELECT... statement are columns, then numeric affinity 1653e014a838Sdanielk1977 ** is used. 1654fef5208cSdrh */ 1655832508b7Sdrh pExpr->iTable = pParse->nTab++; 165641a05b7bSdanielk1977 addr = sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pExpr->iTable, !isRowid); 1657d4187c71Sdrh if( rMayHaveNull==0 ) sqlite3VdbeChangeP5(v, BTREE_UNORDERED); 1658d3d39e93Sdrh memset(&keyInfo, 0, sizeof(keyInfo)); 1659d3d39e93Sdrh keyInfo.nField = 1; 1660e014a838Sdanielk1977 16616ab3a2ecSdanielk1977 if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 1662e014a838Sdanielk1977 /* Case 1: expr IN (SELECT ...) 1663e014a838Sdanielk1977 ** 1664e014a838Sdanielk1977 ** Generate code to write the results of the select into the temporary 1665e014a838Sdanielk1977 ** table allocated and opened above. 1666e014a838Sdanielk1977 */ 16671013c932Sdrh SelectDest dest; 1668be5c89acSdrh ExprList *pEList; 16691013c932Sdrh 167041a05b7bSdanielk1977 assert( !isRowid ); 16711013c932Sdrh sqlite3SelectDestInit(&dest, SRT_Set, pExpr->iTable); 16721bd10f8aSdrh dest.affinity = (u8)affinity; 1673e014a838Sdanielk1977 assert( (pExpr->iTable&0x0000FFFF)==pExpr->iTable ); 167448b5b041Sdrh pExpr->x.pSelect->iLimit = 0; 16756ab3a2ecSdanielk1977 if( sqlite3Select(pParse, pExpr->x.pSelect, &dest) ){ 16761450bc6eSdrh return 0; 167794ccde58Sdrh } 16786ab3a2ecSdanielk1977 pEList = pExpr->x.pSelect->pEList; 1679fd773cf9Sdrh if( ALWAYS(pEList!=0 && pEList->nExpr>0) ){ 1680bcbb04e5Sdanielk1977 keyInfo.aColl[0] = sqlite3BinaryCompareCollSeq(pParse, pExpr->pLeft, 1681be5c89acSdrh pEList->a[0].pExpr); 16820202b29eSdanielk1977 } 1683a7d2db17Sdrh }else if( ALWAYS(pExpr->x.pList!=0) ){ 1684fef5208cSdrh /* Case 2: expr IN (exprlist) 1685fef5208cSdrh ** 1686e014a838Sdanielk1977 ** For each expression, build an index key from the evaluation and 1687e014a838Sdanielk1977 ** store it in the temporary table. If <expr> is a column, then use 1688e014a838Sdanielk1977 ** that columns affinity when building index keys. If <expr> is not 1689e014a838Sdanielk1977 ** a column, use numeric affinity. 1690fef5208cSdrh */ 1691e014a838Sdanielk1977 int i; 16926ab3a2ecSdanielk1977 ExprList *pList = pExpr->x.pList; 169357dbd7b3Sdrh struct ExprList_item *pItem; 1694ecc31805Sdrh int r1, r2, r3; 169557dbd7b3Sdrh 1696e014a838Sdanielk1977 if( !affinity ){ 16978159a35fSdrh affinity = SQLITE_AFF_NONE; 1698e014a838Sdanielk1977 } 16997d10d5a6Sdrh keyInfo.aColl[0] = sqlite3ExprCollSeq(pParse, pExpr->pLeft); 1700e014a838Sdanielk1977 1701e014a838Sdanielk1977 /* Loop through each expression in <exprlist>. */ 17022d401ab8Sdrh r1 = sqlite3GetTempReg(pParse); 17032d401ab8Sdrh r2 = sqlite3GetTempReg(pParse); 17044e7f36a2Sdanielk1977 sqlite3VdbeAddOp2(v, OP_Null, 0, r2); 170557dbd7b3Sdrh for(i=pList->nExpr, pItem=pList->a; i>0; i--, pItem++){ 170657dbd7b3Sdrh Expr *pE2 = pItem->pExpr; 1707e05c929bSdrh int iValToIns; 1708e014a838Sdanielk1977 170957dbd7b3Sdrh /* If the expression is not constant then we will need to 171057dbd7b3Sdrh ** disable the test that was generated above that makes sure 171157dbd7b3Sdrh ** this code only executes once. Because for a non-constant 171257dbd7b3Sdrh ** expression we need to rerun this code each time. 171357dbd7b3Sdrh */ 1714dfd2d9f6Sdrh if( testAddr>=0 && !sqlite3ExprIsConstant(pE2) ){ 171548f2d3b1Sdrh sqlite3VdbeChangeToNoop(v, testAddr); 1716dfd2d9f6Sdrh testAddr = -1; 17174794b980Sdrh } 1718e014a838Sdanielk1977 1719e014a838Sdanielk1977 /* Evaluate the expression and insert it into the temp table */ 1720e05c929bSdrh if( isRowid && sqlite3ExprIsInteger(pE2, &iValToIns) ){ 1721e05c929bSdrh sqlite3VdbeAddOp3(v, OP_InsertInt, pExpr->iTable, r2, iValToIns); 1722e05c929bSdrh }else{ 1723ecc31805Sdrh r3 = sqlite3ExprCodeTarget(pParse, pE2, r1); 172441a05b7bSdanielk1977 if( isRowid ){ 1725e05c929bSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r3, 1726e05c929bSdrh sqlite3VdbeCurrentAddr(v)+2); 172741a05b7bSdanielk1977 sqlite3VdbeAddOp3(v, OP_Insert, pExpr->iTable, r2, r3); 172841a05b7bSdanielk1977 }else{ 1729ecc31805Sdrh sqlite3VdbeAddOp4(v, OP_MakeRecord, r3, 1, r2, &affinity, 1); 17303c31fc23Sdrh sqlite3ExprCacheAffinityChange(pParse, r3, 1); 17312d401ab8Sdrh sqlite3VdbeAddOp2(v, OP_IdxInsert, pExpr->iTable, r2); 1732fef5208cSdrh } 173341a05b7bSdanielk1977 } 1734e05c929bSdrh } 17352d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r1); 17362d401ab8Sdrh sqlite3ReleaseTempReg(pParse, r2); 1737fef5208cSdrh } 173841a05b7bSdanielk1977 if( !isRowid ){ 173966a5167bSdrh sqlite3VdbeChangeP4(v, addr, (void *)&keyInfo, P4_KEYINFO); 174041a05b7bSdanielk1977 } 1741b3bce662Sdanielk1977 break; 1742fef5208cSdrh } 1743fef5208cSdrh 174451522cd3Sdrh case TK_EXISTS: 1745fd773cf9Sdrh case TK_SELECT: 1746fd773cf9Sdrh default: { 1747fd773cf9Sdrh /* If this has to be a scalar SELECT. Generate code to put the 1748fef5208cSdrh ** value of this select in a memory cell and record the number 1749fd773cf9Sdrh ** of the memory cell in iColumn. If this is an EXISTS, write 1750fd773cf9Sdrh ** an integer 0 (not exists) or 1 (exists) into a memory cell 1751fd773cf9Sdrh ** and record that memory cell in iColumn. 1752fef5208cSdrh */ 1753fd773cf9Sdrh Select *pSel; /* SELECT statement to encode */ 1754fd773cf9Sdrh SelectDest dest; /* How to deal with SELECt result */ 17551398ad36Sdrh 1756cf697396Sshane testcase( pExpr->op==TK_EXISTS ); 1757cf697396Sshane testcase( pExpr->op==TK_SELECT ); 1758cf697396Sshane assert( pExpr->op==TK_EXISTS || pExpr->op==TK_SELECT ); 1759cf697396Sshane 17606ab3a2ecSdanielk1977 assert( ExprHasProperty(pExpr, EP_xIsSelect) ); 17616ab3a2ecSdanielk1977 pSel = pExpr->x.pSelect; 17621013c932Sdrh sqlite3SelectDestInit(&dest, 0, ++pParse->nMem); 176351522cd3Sdrh if( pExpr->op==TK_SELECT ){ 17646c8c8ce0Sdanielk1977 dest.eDest = SRT_Mem; 17654c583128Sdrh sqlite3VdbeAddOp2(v, OP_Null, 0, dest.iParm); 1766d4e70ebdSdrh VdbeComment((v, "Init subquery result")); 176751522cd3Sdrh }else{ 17686c8c8ce0Sdanielk1977 dest.eDest = SRT_Exists; 17694c583128Sdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, dest.iParm); 1770d4e70ebdSdrh VdbeComment((v, "Init EXISTS result")); 177151522cd3Sdrh } 1772633e6d57Sdrh sqlite3ExprDelete(pParse->db, pSel->pLimit); 1773094430ebSdrh pSel->pLimit = sqlite3PExpr(pParse, TK_INTEGER, 0, 0, 1774094430ebSdrh &sqlite3IntTokens[1]); 177548b5b041Sdrh pSel->iLimit = 0; 17767d10d5a6Sdrh if( sqlite3Select(pParse, pSel, &dest) ){ 17771450bc6eSdrh return 0; 177894ccde58Sdrh } 17791450bc6eSdrh rReg = dest.iParm; 178033e619fcSdrh ExprSetIrreducible(pExpr); 1781b3bce662Sdanielk1977 break; 178219a775c2Sdrh } 1783cce7d176Sdrh } 1784b3bce662Sdanielk1977 1785dfd2d9f6Sdrh if( testAddr>=0 ){ 178648f2d3b1Sdrh sqlite3VdbeJumpHere(v, testAddr); 1787b3bce662Sdanielk1977 } 1788ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 1789fc976065Sdanielk1977 17901450bc6eSdrh return rReg; 1791cce7d176Sdrh } 179251522cd3Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1793cce7d176Sdrh 1794e3365e6cSdrh #ifndef SQLITE_OMIT_SUBQUERY 1795e3365e6cSdrh /* 1796e3365e6cSdrh ** Generate code for an IN expression. 1797e3365e6cSdrh ** 1798e3365e6cSdrh ** x IN (SELECT ...) 1799e3365e6cSdrh ** x IN (value, value, ...) 1800e3365e6cSdrh ** 1801e3365e6cSdrh ** The left-hand side (LHS) is a scalar expression. The right-hand side (RHS) 1802e3365e6cSdrh ** is an array of zero or more values. The expression is true if the LHS is 1803e3365e6cSdrh ** contained within the RHS. The value of the expression is unknown (NULL) 1804e3365e6cSdrh ** if the LHS is NULL or if the LHS is not contained within the RHS and the 1805e3365e6cSdrh ** RHS contains one or more NULL values. 1806e3365e6cSdrh ** 1807e3365e6cSdrh ** This routine generates code will jump to destIfFalse if the LHS is not 1808e3365e6cSdrh ** contained within the RHS. If due to NULLs we cannot determine if the LHS 1809e3365e6cSdrh ** is contained in the RHS then jump to destIfNull. If the LHS is contained 1810e3365e6cSdrh ** within the RHS then fall through. 1811e3365e6cSdrh */ 1812e3365e6cSdrh static void sqlite3ExprCodeIN( 1813e3365e6cSdrh Parse *pParse, /* Parsing and code generating context */ 1814e3365e6cSdrh Expr *pExpr, /* The IN expression */ 1815e3365e6cSdrh int destIfFalse, /* Jump here if LHS is not contained in the RHS */ 1816e3365e6cSdrh int destIfNull /* Jump here if the results are unknown due to NULLs */ 1817e3365e6cSdrh ){ 1818e3365e6cSdrh int rRhsHasNull = 0; /* Register that is true if RHS contains NULL values */ 1819e3365e6cSdrh char affinity; /* Comparison affinity to use */ 1820e3365e6cSdrh int eType; /* Type of the RHS */ 1821e3365e6cSdrh int r1; /* Temporary use register */ 1822e3365e6cSdrh Vdbe *v; /* Statement under construction */ 1823e3365e6cSdrh 1824e3365e6cSdrh /* Compute the RHS. After this step, the table with cursor 1825e3365e6cSdrh ** pExpr->iTable will contains the values that make up the RHS. 1826e3365e6cSdrh */ 1827e3365e6cSdrh v = pParse->pVdbe; 1828e3365e6cSdrh assert( v!=0 ); /* OOM detected prior to this routine */ 1829e3365e6cSdrh VdbeNoopComment((v, "begin IN expr")); 1830e3365e6cSdrh eType = sqlite3FindInIndex(pParse, pExpr, &rRhsHasNull); 1831e3365e6cSdrh 1832e3365e6cSdrh /* Figure out the affinity to use to create a key from the results 1833e3365e6cSdrh ** of the expression. affinityStr stores a static string suitable for 1834e3365e6cSdrh ** P4 of OP_MakeRecord. 1835e3365e6cSdrh */ 1836e3365e6cSdrh affinity = comparisonAffinity(pExpr); 1837e3365e6cSdrh 1838e3365e6cSdrh /* Code the LHS, the <expr> from "<expr> IN (...)". 1839e3365e6cSdrh */ 1840e3365e6cSdrh sqlite3ExprCachePush(pParse); 1841e3365e6cSdrh r1 = sqlite3GetTempReg(pParse); 1842e3365e6cSdrh sqlite3ExprCode(pParse, pExpr->pLeft, r1); 1843e3365e6cSdrh 1844094430ebSdrh /* If the LHS is NULL, then the result is either false or NULL depending 1845094430ebSdrh ** on whether the RHS is empty or not, respectively. 1846094430ebSdrh */ 1847094430ebSdrh if( destIfNull==destIfFalse ){ 1848094430ebSdrh /* Shortcut for the common case where the false and NULL outcomes are 1849094430ebSdrh ** the same. */ 1850094430ebSdrh sqlite3VdbeAddOp2(v, OP_IsNull, r1, destIfNull); 1851094430ebSdrh }else{ 1852094430ebSdrh int addr1 = sqlite3VdbeAddOp1(v, OP_NotNull, r1); 1853094430ebSdrh sqlite3VdbeAddOp2(v, OP_Rewind, pExpr->iTable, destIfFalse); 1854094430ebSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfNull); 1855094430ebSdrh sqlite3VdbeJumpHere(v, addr1); 1856094430ebSdrh } 1857e3365e6cSdrh 1858e3365e6cSdrh if( eType==IN_INDEX_ROWID ){ 1859e3365e6cSdrh /* In this case, the RHS is the ROWID of table b-tree 1860e3365e6cSdrh */ 1861e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_MustBeInt, r1, destIfFalse); 1862e3365e6cSdrh sqlite3VdbeAddOp3(v, OP_NotExists, pExpr->iTable, destIfFalse, r1); 1863e3365e6cSdrh }else{ 1864e3365e6cSdrh /* In this case, the RHS is an index b-tree. 1865e3365e6cSdrh */ 18668cff69dfSdrh sqlite3VdbeAddOp4(v, OP_Affinity, r1, 1, 0, &affinity, 1); 1867e3365e6cSdrh 1868e3365e6cSdrh /* If the set membership test fails, then the result of the 1869e3365e6cSdrh ** "x IN (...)" expression must be either 0 or NULL. If the set 1870e3365e6cSdrh ** contains no NULL values, then the result is 0. If the set 1871e3365e6cSdrh ** contains one or more NULL values, then the result of the 1872e3365e6cSdrh ** expression is also NULL. 1873e3365e6cSdrh */ 1874e3365e6cSdrh if( rRhsHasNull==0 || destIfFalse==destIfNull ){ 1875e3365e6cSdrh /* This branch runs if it is known at compile time that the RHS 1876e3365e6cSdrh ** cannot contain NULL values. This happens as the result 1877e3365e6cSdrh ** of a "NOT NULL" constraint in the database schema. 1878e3365e6cSdrh ** 1879e3365e6cSdrh ** Also run this branch if NULL is equivalent to FALSE 1880e3365e6cSdrh ** for this particular IN operator. 1881e3365e6cSdrh */ 18828cff69dfSdrh sqlite3VdbeAddOp4Int(v, OP_NotFound, pExpr->iTable, destIfFalse, r1, 1); 1883e3365e6cSdrh 1884e3365e6cSdrh }else{ 1885e3365e6cSdrh /* In this branch, the RHS of the IN might contain a NULL and 1886e3365e6cSdrh ** the presence of a NULL on the RHS makes a difference in the 1887e3365e6cSdrh ** outcome. 1888e3365e6cSdrh */ 1889e3365e6cSdrh int j1, j2, j3; 1890e3365e6cSdrh 1891e3365e6cSdrh /* First check to see if the LHS is contained in the RHS. If so, 1892e3365e6cSdrh ** then the presence of NULLs in the RHS does not matter, so jump 1893e3365e6cSdrh ** over all of the code that follows. 1894e3365e6cSdrh */ 18958cff69dfSdrh j1 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, r1, 1); 1896e3365e6cSdrh 1897e3365e6cSdrh /* Here we begin generating code that runs if the LHS is not 1898e3365e6cSdrh ** contained within the RHS. Generate additional code that 1899e3365e6cSdrh ** tests the RHS for NULLs. If the RHS contains a NULL then 1900e3365e6cSdrh ** jump to destIfNull. If there are no NULLs in the RHS then 1901e3365e6cSdrh ** jump to destIfFalse. 1902e3365e6cSdrh */ 1903e3365e6cSdrh j2 = sqlite3VdbeAddOp1(v, OP_NotNull, rRhsHasNull); 19048cff69dfSdrh j3 = sqlite3VdbeAddOp4Int(v, OP_Found, pExpr->iTable, 0, rRhsHasNull, 1); 1905e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Integer, -1, rRhsHasNull); 1906e3365e6cSdrh sqlite3VdbeJumpHere(v, j3); 1907e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_AddImm, rRhsHasNull, 1); 1908e3365e6cSdrh sqlite3VdbeJumpHere(v, j2); 1909e3365e6cSdrh 1910e3365e6cSdrh /* Jump to the appropriate target depending on whether or not 1911e3365e6cSdrh ** the RHS contains a NULL 1912e3365e6cSdrh */ 1913e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_If, rRhsHasNull, destIfNull); 1914e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, destIfFalse); 1915e3365e6cSdrh 1916e3365e6cSdrh /* The OP_Found at the top of this branch jumps here when true, 1917e3365e6cSdrh ** causing the overall IN expression evaluation to fall through. 1918e3365e6cSdrh */ 1919e3365e6cSdrh sqlite3VdbeJumpHere(v, j1); 1920e3365e6cSdrh } 1921e3365e6cSdrh } 1922e3365e6cSdrh sqlite3ReleaseTempReg(pParse, r1); 1923e3365e6cSdrh sqlite3ExprCachePop(pParse, 1); 1924e3365e6cSdrh VdbeComment((v, "end IN expr")); 1925e3365e6cSdrh } 1926e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */ 1927e3365e6cSdrh 1928cce7d176Sdrh /* 1929598f1340Sdrh ** Duplicate an 8-byte value 1930598f1340Sdrh */ 1931598f1340Sdrh static char *dup8bytes(Vdbe *v, const char *in){ 1932598f1340Sdrh char *out = sqlite3DbMallocRaw(sqlite3VdbeDb(v), 8); 1933598f1340Sdrh if( out ){ 1934598f1340Sdrh memcpy(out, in, 8); 1935598f1340Sdrh } 1936598f1340Sdrh return out; 1937598f1340Sdrh } 1938598f1340Sdrh 193913573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 1940598f1340Sdrh /* 1941598f1340Sdrh ** Generate an instruction that will put the floating point 19429cbf3425Sdrh ** value described by z[0..n-1] into register iMem. 19430cf19ed8Sdrh ** 19440cf19ed8Sdrh ** The z[] string will probably not be zero-terminated. But the 19450cf19ed8Sdrh ** z[n] character is guaranteed to be something that does not look 19460cf19ed8Sdrh ** like the continuation of the number. 1947598f1340Sdrh */ 1948b7916a78Sdrh static void codeReal(Vdbe *v, const char *z, int negateFlag, int iMem){ 1949fd773cf9Sdrh if( ALWAYS(z!=0) ){ 1950598f1340Sdrh double value; 1951598f1340Sdrh char *zV; 19529339da1fSdrh sqlite3AtoF(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); 1953d0015161Sdrh assert( !sqlite3IsNaN(value) ); /* The new AtoF never returns NaN */ 1954598f1340Sdrh if( negateFlag ) value = -value; 1955598f1340Sdrh zV = dup8bytes(v, (char*)&value); 19569de221dfSdrh sqlite3VdbeAddOp4(v, OP_Real, 0, iMem, 0, zV, P4_REAL); 1957598f1340Sdrh } 1958598f1340Sdrh } 195913573c71Sdrh #endif 1960598f1340Sdrh 1961598f1340Sdrh 1962598f1340Sdrh /* 1963fec19aadSdrh ** Generate an instruction that will put the integer describe by 19649cbf3425Sdrh ** text z[0..n-1] into register iMem. 19650cf19ed8Sdrh ** 19665f1d6b61Sshaneh ** Expr.u.zToken is always UTF8 and zero-terminated. 1967fec19aadSdrh */ 196813573c71Sdrh static void codeInteger(Parse *pParse, Expr *pExpr, int negFlag, int iMem){ 196913573c71Sdrh Vdbe *v = pParse->pVdbe; 197092b01d53Sdrh if( pExpr->flags & EP_IntValue ){ 197133e619fcSdrh int i = pExpr->u.iValue; 1972d50ffc41Sdrh assert( i>=0 ); 197392b01d53Sdrh if( negFlag ) i = -i; 197492b01d53Sdrh sqlite3VdbeAddOp2(v, OP_Integer, i, iMem); 1975fd773cf9Sdrh }else{ 19765f1d6b61Sshaneh int c; 19775f1d6b61Sshaneh i64 value; 1978fd773cf9Sdrh const char *z = pExpr->u.zToken; 1979fd773cf9Sdrh assert( z!=0 ); 19805f1d6b61Sshaneh c = sqlite3Atoi64(z, &value, sqlite3Strlen30(z), SQLITE_UTF8); 19815f1d6b61Sshaneh if( c==0 || (c==2 && negFlag) ){ 1982598f1340Sdrh char *zV; 1983158b9cb9Sdrh if( negFlag ){ value = c==2 ? SMALLEST_INT64 : -value; } 1984598f1340Sdrh zV = dup8bytes(v, (char*)&value); 19859de221dfSdrh sqlite3VdbeAddOp4(v, OP_Int64, 0, iMem, 0, zV, P4_INT64); 1986fec19aadSdrh }else{ 198713573c71Sdrh #ifdef SQLITE_OMIT_FLOATING_POINT 198813573c71Sdrh sqlite3ErrorMsg(pParse, "oversized integer: %s%s", negFlag ? "-" : "", z); 198913573c71Sdrh #else 1990b7916a78Sdrh codeReal(v, z, negFlag, iMem); 199113573c71Sdrh #endif 1992fec19aadSdrh } 1993fec19aadSdrh } 1994c9cf901dSdanielk1977 } 1995fec19aadSdrh 1996ceea3321Sdrh /* 1997ceea3321Sdrh ** Clear a cache entry. 1998ceea3321Sdrh */ 1999ceea3321Sdrh static void cacheEntryClear(Parse *pParse, struct yColCache *p){ 2000ceea3321Sdrh if( p->tempReg ){ 2001ceea3321Sdrh if( pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 2002ceea3321Sdrh pParse->aTempReg[pParse->nTempReg++] = p->iReg; 2003ceea3321Sdrh } 2004ceea3321Sdrh p->tempReg = 0; 2005ceea3321Sdrh } 2006ceea3321Sdrh } 2007ceea3321Sdrh 2008ceea3321Sdrh 2009ceea3321Sdrh /* 2010ceea3321Sdrh ** Record in the column cache that a particular column from a 2011ceea3321Sdrh ** particular table is stored in a particular register. 2012ceea3321Sdrh */ 2013ceea3321Sdrh void sqlite3ExprCacheStore(Parse *pParse, int iTab, int iCol, int iReg){ 2014ceea3321Sdrh int i; 2015ceea3321Sdrh int minLru; 2016ceea3321Sdrh int idxLru; 2017ceea3321Sdrh struct yColCache *p; 2018ceea3321Sdrh 201920411ea7Sdrh assert( iReg>0 ); /* Register numbers are always positive */ 202020411ea7Sdrh assert( iCol>=-1 && iCol<32768 ); /* Finite column numbers */ 202120411ea7Sdrh 2022b6da74ebSdrh /* The SQLITE_ColumnCache flag disables the column cache. This is used 2023b6da74ebSdrh ** for testing only - to verify that SQLite always gets the same answer 2024b6da74ebSdrh ** with and without the column cache. 2025b6da74ebSdrh */ 2026b6da74ebSdrh if( pParse->db->flags & SQLITE_ColumnCache ) return; 2027b6da74ebSdrh 202827ee406eSdrh /* First replace any existing entry. 202927ee406eSdrh ** 203027ee406eSdrh ** Actually, the way the column cache is currently used, we are guaranteed 203127ee406eSdrh ** that the object will never already be in cache. Verify this guarantee. 203227ee406eSdrh */ 203327ee406eSdrh #ifndef NDEBUG 2034ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 203527ee406eSdrh assert( p->iReg==0 || p->iTable!=iTab || p->iColumn!=iCol ); 2036ceea3321Sdrh } 203727ee406eSdrh #endif 2038ceea3321Sdrh 2039ceea3321Sdrh /* Find an empty slot and replace it */ 2040ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2041ceea3321Sdrh if( p->iReg==0 ){ 2042ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 2043ceea3321Sdrh p->iTable = iTab; 2044ceea3321Sdrh p->iColumn = iCol; 2045ceea3321Sdrh p->iReg = iReg; 2046ceea3321Sdrh p->tempReg = 0; 2047ceea3321Sdrh p->lru = pParse->iCacheCnt++; 2048ceea3321Sdrh return; 2049ceea3321Sdrh } 2050ceea3321Sdrh } 2051ceea3321Sdrh 2052ceea3321Sdrh /* Replace the last recently used */ 2053ceea3321Sdrh minLru = 0x7fffffff; 2054ceea3321Sdrh idxLru = -1; 2055ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2056ceea3321Sdrh if( p->lru<minLru ){ 2057ceea3321Sdrh idxLru = i; 2058ceea3321Sdrh minLru = p->lru; 2059ceea3321Sdrh } 2060ceea3321Sdrh } 206120411ea7Sdrh if( ALWAYS(idxLru>=0) ){ 2062ceea3321Sdrh p = &pParse->aColCache[idxLru]; 2063ceea3321Sdrh p->iLevel = pParse->iCacheLevel; 2064ceea3321Sdrh p->iTable = iTab; 2065ceea3321Sdrh p->iColumn = iCol; 2066ceea3321Sdrh p->iReg = iReg; 2067ceea3321Sdrh p->tempReg = 0; 2068ceea3321Sdrh p->lru = pParse->iCacheCnt++; 2069ceea3321Sdrh return; 2070ceea3321Sdrh } 2071ceea3321Sdrh } 2072ceea3321Sdrh 2073ceea3321Sdrh /* 2074f49f3523Sdrh ** Indicate that registers between iReg..iReg+nReg-1 are being overwritten. 2075f49f3523Sdrh ** Purge the range of registers from the column cache. 2076ceea3321Sdrh */ 2077f49f3523Sdrh void sqlite3ExprCacheRemove(Parse *pParse, int iReg, int nReg){ 2078ceea3321Sdrh int i; 2079f49f3523Sdrh int iLast = iReg + nReg - 1; 2080ceea3321Sdrh struct yColCache *p; 2081ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2082f49f3523Sdrh int r = p->iReg; 2083f49f3523Sdrh if( r>=iReg && r<=iLast ){ 2084ceea3321Sdrh cacheEntryClear(pParse, p); 2085ceea3321Sdrh p->iReg = 0; 2086ceea3321Sdrh } 2087ceea3321Sdrh } 2088ceea3321Sdrh } 2089ceea3321Sdrh 2090ceea3321Sdrh /* 2091ceea3321Sdrh ** Remember the current column cache context. Any new entries added 2092ceea3321Sdrh ** added to the column cache after this call are removed when the 2093ceea3321Sdrh ** corresponding pop occurs. 2094ceea3321Sdrh */ 2095ceea3321Sdrh void sqlite3ExprCachePush(Parse *pParse){ 2096ceea3321Sdrh pParse->iCacheLevel++; 2097ceea3321Sdrh } 2098ceea3321Sdrh 2099ceea3321Sdrh /* 2100ceea3321Sdrh ** Remove from the column cache any entries that were added since the 2101ceea3321Sdrh ** the previous N Push operations. In other words, restore the cache 2102ceea3321Sdrh ** to the state it was in N Pushes ago. 2103ceea3321Sdrh */ 2104ceea3321Sdrh void sqlite3ExprCachePop(Parse *pParse, int N){ 2105ceea3321Sdrh int i; 2106ceea3321Sdrh struct yColCache *p; 2107ceea3321Sdrh assert( N>0 ); 2108ceea3321Sdrh assert( pParse->iCacheLevel>=N ); 2109ceea3321Sdrh pParse->iCacheLevel -= N; 2110ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2111ceea3321Sdrh if( p->iReg && p->iLevel>pParse->iCacheLevel ){ 2112ceea3321Sdrh cacheEntryClear(pParse, p); 2113ceea3321Sdrh p->iReg = 0; 2114ceea3321Sdrh } 2115ceea3321Sdrh } 2116ceea3321Sdrh } 2117945498f3Sdrh 2118945498f3Sdrh /* 21195cd79239Sdrh ** When a cached column is reused, make sure that its register is 21205cd79239Sdrh ** no longer available as a temp register. ticket #3879: that same 21215cd79239Sdrh ** register might be in the cache in multiple places, so be sure to 21225cd79239Sdrh ** get them all. 21235cd79239Sdrh */ 21245cd79239Sdrh static void sqlite3ExprCachePinRegister(Parse *pParse, int iReg){ 21255cd79239Sdrh int i; 21265cd79239Sdrh struct yColCache *p; 21275cd79239Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 21285cd79239Sdrh if( p->iReg==iReg ){ 21295cd79239Sdrh p->tempReg = 0; 21305cd79239Sdrh } 21315cd79239Sdrh } 21325cd79239Sdrh } 21335cd79239Sdrh 21345cd79239Sdrh /* 21355c092e8aSdrh ** Generate code to extract the value of the iCol-th column of a table. 21365c092e8aSdrh */ 21375c092e8aSdrh void sqlite3ExprCodeGetColumnOfTable( 21385c092e8aSdrh Vdbe *v, /* The VDBE under construction */ 21395c092e8aSdrh Table *pTab, /* The table containing the value */ 21405c092e8aSdrh int iTabCur, /* The cursor for this table */ 21415c092e8aSdrh int iCol, /* Index of the column to extract */ 21425c092e8aSdrh int regOut /* Extract the valud into this register */ 21435c092e8aSdrh ){ 21445c092e8aSdrh if( iCol<0 || iCol==pTab->iPKey ){ 21455c092e8aSdrh sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut); 21465c092e8aSdrh }else{ 21475c092e8aSdrh int op = IsVirtual(pTab) ? OP_VColumn : OP_Column; 21485c092e8aSdrh sqlite3VdbeAddOp3(v, op, iTabCur, iCol, regOut); 21495c092e8aSdrh } 21505c092e8aSdrh if( iCol>=0 ){ 21515c092e8aSdrh sqlite3ColumnDefault(v, pTab, iCol, regOut); 21525c092e8aSdrh } 21535c092e8aSdrh } 21545c092e8aSdrh 21555c092e8aSdrh /* 2156945498f3Sdrh ** Generate code that will extract the iColumn-th column from 2157e55cbd72Sdrh ** table pTab and store the column value in a register. An effort 2158e55cbd72Sdrh ** is made to store the column value in register iReg, but this is 2159e55cbd72Sdrh ** not guaranteed. The location of the column value is returned. 2160e55cbd72Sdrh ** 2161e55cbd72Sdrh ** There must be an open cursor to pTab in iTable when this routine 2162e55cbd72Sdrh ** is called. If iColumn<0 then code is generated that extracts the rowid. 2163945498f3Sdrh */ 2164e55cbd72Sdrh int sqlite3ExprCodeGetColumn( 2165e55cbd72Sdrh Parse *pParse, /* Parsing and code generating context */ 21662133d822Sdrh Table *pTab, /* Description of the table we are reading from */ 21672133d822Sdrh int iColumn, /* Index of the table column */ 21682133d822Sdrh int iTable, /* The cursor pointing to the table */ 2169a748fdccSdrh int iReg, /* Store results here */ 2170a748fdccSdrh u8 p5 /* P5 value for OP_Column */ 21712133d822Sdrh ){ 2172e55cbd72Sdrh Vdbe *v = pParse->pVdbe; 2173e55cbd72Sdrh int i; 2174da250ea5Sdrh struct yColCache *p; 2175e55cbd72Sdrh 2176ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2177b6da74ebSdrh if( p->iReg>0 && p->iTable==iTable && p->iColumn==iColumn ){ 2178ceea3321Sdrh p->lru = pParse->iCacheCnt++; 21795cd79239Sdrh sqlite3ExprCachePinRegister(pParse, p->iReg); 2180da250ea5Sdrh return p->iReg; 2181e55cbd72Sdrh } 2182e55cbd72Sdrh } 2183e55cbd72Sdrh assert( v!=0 ); 21845c092e8aSdrh sqlite3ExprCodeGetColumnOfTable(v, pTab, iTable, iColumn, iReg); 2185a748fdccSdrh if( p5 ){ 2186a748fdccSdrh sqlite3VdbeChangeP5(v, p5); 2187a748fdccSdrh }else{ 2188ceea3321Sdrh sqlite3ExprCacheStore(pParse, iTable, iColumn, iReg); 2189a748fdccSdrh } 2190e55cbd72Sdrh return iReg; 2191e55cbd72Sdrh } 2192e55cbd72Sdrh 2193e55cbd72Sdrh /* 2194ceea3321Sdrh ** Clear all column cache entries. 2195e55cbd72Sdrh */ 2196ceea3321Sdrh void sqlite3ExprCacheClear(Parse *pParse){ 2197e55cbd72Sdrh int i; 2198ceea3321Sdrh struct yColCache *p; 2199ceea3321Sdrh 2200ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2201ceea3321Sdrh if( p->iReg ){ 2202ceea3321Sdrh cacheEntryClear(pParse, p); 2203ceea3321Sdrh p->iReg = 0; 2204e55cbd72Sdrh } 2205da250ea5Sdrh } 2206da250ea5Sdrh } 2207e55cbd72Sdrh 2208e55cbd72Sdrh /* 2209da250ea5Sdrh ** Record the fact that an affinity change has occurred on iCount 2210da250ea5Sdrh ** registers starting with iStart. 2211e55cbd72Sdrh */ 2212da250ea5Sdrh void sqlite3ExprCacheAffinityChange(Parse *pParse, int iStart, int iCount){ 2213f49f3523Sdrh sqlite3ExprCacheRemove(pParse, iStart, iCount); 2214e55cbd72Sdrh } 2215e55cbd72Sdrh 2216e55cbd72Sdrh /* 2217b21e7c70Sdrh ** Generate code to move content from registers iFrom...iFrom+nReg-1 2218b21e7c70Sdrh ** over to iTo..iTo+nReg-1. Keep the column cache up-to-date. 2219e55cbd72Sdrh */ 2220b21e7c70Sdrh void sqlite3ExprCodeMove(Parse *pParse, int iFrom, int iTo, int nReg){ 2221e55cbd72Sdrh int i; 2222ceea3321Sdrh struct yColCache *p; 222320411ea7Sdrh if( NEVER(iFrom==iTo) ) return; 2224b21e7c70Sdrh sqlite3VdbeAddOp3(pParse->pVdbe, OP_Move, iFrom, iTo, nReg); 2225ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2226ceea3321Sdrh int x = p->iReg; 2227b21e7c70Sdrh if( x>=iFrom && x<iFrom+nReg ){ 2228ceea3321Sdrh p->iReg += iTo-iFrom; 2229e55cbd72Sdrh } 2230e55cbd72Sdrh } 2231945498f3Sdrh } 2232945498f3Sdrh 2233fec19aadSdrh /* 223492b01d53Sdrh ** Generate code to copy content from registers iFrom...iFrom+nReg-1 223592b01d53Sdrh ** over to iTo..iTo+nReg-1. 223692b01d53Sdrh */ 223792b01d53Sdrh void sqlite3ExprCodeCopy(Parse *pParse, int iFrom, int iTo, int nReg){ 223892b01d53Sdrh int i; 223920411ea7Sdrh if( NEVER(iFrom==iTo) ) return; 224092b01d53Sdrh for(i=0; i<nReg; i++){ 224192b01d53Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, iFrom+i, iTo+i); 224292b01d53Sdrh } 224392b01d53Sdrh } 224492b01d53Sdrh 2245f49f3523Sdrh #if defined(SQLITE_DEBUG) || defined(SQLITE_COVERAGE_TEST) 224692b01d53Sdrh /* 2247652fbf55Sdrh ** Return true if any register in the range iFrom..iTo (inclusive) 2248652fbf55Sdrh ** is used as part of the column cache. 2249f49f3523Sdrh ** 2250f49f3523Sdrh ** This routine is used within assert() and testcase() macros only 2251f49f3523Sdrh ** and does not appear in a normal build. 2252652fbf55Sdrh */ 2253652fbf55Sdrh static int usedAsColumnCache(Parse *pParse, int iFrom, int iTo){ 2254652fbf55Sdrh int i; 2255ceea3321Sdrh struct yColCache *p; 2256ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 2257ceea3321Sdrh int r = p->iReg; 2258f49f3523Sdrh if( r>=iFrom && r<=iTo ) return 1; /*NO_TEST*/ 2259652fbf55Sdrh } 2260652fbf55Sdrh return 0; 2261652fbf55Sdrh } 2262f49f3523Sdrh #endif /* SQLITE_DEBUG || SQLITE_COVERAGE_TEST */ 2263652fbf55Sdrh 2264652fbf55Sdrh /* 2265cce7d176Sdrh ** Generate code into the current Vdbe to evaluate the given 22662dcef11bSdrh ** expression. Attempt to store the results in register "target". 22672dcef11bSdrh ** Return the register where results are stored. 2268389a1adbSdrh ** 22698b213899Sdrh ** With this routine, there is no guarantee that results will 22702dcef11bSdrh ** be stored in target. The result might be stored in some other 22712dcef11bSdrh ** register if it is convenient to do so. The calling function 22722dcef11bSdrh ** must check the return code and move the results to the desired 22732dcef11bSdrh ** register. 2274cce7d176Sdrh */ 2275678ccce8Sdrh int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target){ 22762dcef11bSdrh Vdbe *v = pParse->pVdbe; /* The VM under construction */ 22772dcef11bSdrh int op; /* The opcode being coded */ 22782dcef11bSdrh int inReg = target; /* Results stored in register inReg */ 22792dcef11bSdrh int regFree1 = 0; /* If non-zero free this temporary register */ 22802dcef11bSdrh int regFree2 = 0; /* If non-zero free this temporary register */ 2281678ccce8Sdrh int r1, r2, r3, r4; /* Various register numbers */ 228220411ea7Sdrh sqlite3 *db = pParse->db; /* The database connection */ 2283ffe07b2dSdrh 22849cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 228520411ea7Sdrh if( v==0 ){ 228620411ea7Sdrh assert( pParse->db->mallocFailed ); 228720411ea7Sdrh return 0; 228820411ea7Sdrh } 2289389a1adbSdrh 2290389a1adbSdrh if( pExpr==0 ){ 2291389a1adbSdrh op = TK_NULL; 2292389a1adbSdrh }else{ 2293f2bc013cSdrh op = pExpr->op; 2294389a1adbSdrh } 2295f2bc013cSdrh switch( op ){ 229613449892Sdrh case TK_AGG_COLUMN: { 229713449892Sdrh AggInfo *pAggInfo = pExpr->pAggInfo; 229813449892Sdrh struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg]; 229913449892Sdrh if( !pAggInfo->directMode ){ 23009de221dfSdrh assert( pCol->iMem>0 ); 23019de221dfSdrh inReg = pCol->iMem; 230213449892Sdrh break; 230313449892Sdrh }else if( pAggInfo->useSortingIdx ){ 23045134d135Sdan sqlite3VdbeAddOp3(v, OP_Column, pAggInfo->sortingIdxPTab, 2305389a1adbSdrh pCol->iSorterColumn, target); 230613449892Sdrh break; 230713449892Sdrh } 230813449892Sdrh /* Otherwise, fall thru into the TK_COLUMN case */ 230913449892Sdrh } 2310967e8b73Sdrh case TK_COLUMN: { 2311ffe07b2dSdrh if( pExpr->iTable<0 ){ 2312ffe07b2dSdrh /* This only happens when coding check constraints */ 2313aa9b8963Sdrh assert( pParse->ckBase>0 ); 2314aa9b8963Sdrh inReg = pExpr->iColumn + pParse->ckBase; 2315c4a3c779Sdrh }else{ 2316e55cbd72Sdrh inReg = sqlite3ExprCodeGetColumn(pParse, pExpr->pTab, 2317a748fdccSdrh pExpr->iColumn, pExpr->iTable, target, 2318a748fdccSdrh pExpr->op2); 23192282792aSdrh } 2320cce7d176Sdrh break; 2321cce7d176Sdrh } 2322cce7d176Sdrh case TK_INTEGER: { 232313573c71Sdrh codeInteger(pParse, pExpr, 0, target); 2324fec19aadSdrh break; 232551e9a445Sdrh } 232613573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 2327598f1340Sdrh case TK_FLOAT: { 232833e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 232933e619fcSdrh codeReal(v, pExpr->u.zToken, 0, target); 2330598f1340Sdrh break; 2331598f1340Sdrh } 233213573c71Sdrh #endif 2333fec19aadSdrh case TK_STRING: { 233433e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 233533e619fcSdrh sqlite3VdbeAddOp4(v, OP_String8, 0, target, 0, pExpr->u.zToken, 0); 2336cce7d176Sdrh break; 2337cce7d176Sdrh } 2338f0863fe5Sdrh case TK_NULL: { 23399de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2340f0863fe5Sdrh break; 2341f0863fe5Sdrh } 23425338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_BLOB_LITERAL 2343c572ef7fSdanielk1977 case TK_BLOB: { 23446c8c6cecSdrh int n; 23456c8c6cecSdrh const char *z; 2346ca48c90fSdrh char *zBlob; 234733e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 234833e619fcSdrh assert( pExpr->u.zToken[0]=='x' || pExpr->u.zToken[0]=='X' ); 234933e619fcSdrh assert( pExpr->u.zToken[1]=='\'' ); 235033e619fcSdrh z = &pExpr->u.zToken[2]; 2351b7916a78Sdrh n = sqlite3Strlen30(z) - 1; 2352b7916a78Sdrh assert( z[n]=='\'' ); 2353ca48c90fSdrh zBlob = sqlite3HexToBlob(sqlite3VdbeDb(v), z, n); 2354ca48c90fSdrh sqlite3VdbeAddOp4(v, OP_Blob, n/2, target, 0, zBlob, P4_DYNAMIC); 2355c572ef7fSdanielk1977 break; 2356c572ef7fSdanielk1977 } 23575338a5f7Sdanielk1977 #endif 235850457896Sdrh case TK_VARIABLE: { 235933e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 236033e619fcSdrh assert( pExpr->u.zToken!=0 ); 236133e619fcSdrh assert( pExpr->u.zToken[0]!=0 ); 2362eaf52d88Sdrh sqlite3VdbeAddOp2(v, OP_Variable, pExpr->iColumn, target); 236333e619fcSdrh if( pExpr->u.zToken[1]!=0 ){ 236404e9eeadSdrh assert( pExpr->u.zToken[0]=='?' 236504e9eeadSdrh || strcmp(pExpr->u.zToken, pParse->azVar[pExpr->iColumn-1])==0 ); 236604e9eeadSdrh sqlite3VdbeChangeP4(v, -1, pParse->azVar[pExpr->iColumn-1], P4_STATIC); 2367895d7472Sdrh } 236850457896Sdrh break; 236950457896Sdrh } 23704e0cff60Sdrh case TK_REGISTER: { 23719de221dfSdrh inReg = pExpr->iTable; 23724e0cff60Sdrh break; 23734e0cff60Sdrh } 23748b213899Sdrh case TK_AS: { 23757445ffe2Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 23768b213899Sdrh break; 23778b213899Sdrh } 2378487e262fSdrh #ifndef SQLITE_OMIT_CAST 2379487e262fSdrh case TK_CAST: { 2380487e262fSdrh /* Expressions of the form: CAST(pLeft AS token) */ 2381f0113000Sdanielk1977 int aff, to_op; 23822dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 238333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 238433e619fcSdrh aff = sqlite3AffinityType(pExpr->u.zToken); 2385f0113000Sdanielk1977 to_op = aff - SQLITE_AFF_TEXT + OP_ToText; 2386f0113000Sdanielk1977 assert( to_op==OP_ToText || aff!=SQLITE_AFF_TEXT ); 2387f0113000Sdanielk1977 assert( to_op==OP_ToBlob || aff!=SQLITE_AFF_NONE ); 2388f0113000Sdanielk1977 assert( to_op==OP_ToNumeric || aff!=SQLITE_AFF_NUMERIC ); 2389f0113000Sdanielk1977 assert( to_op==OP_ToInt || aff!=SQLITE_AFF_INTEGER ); 2390f0113000Sdanielk1977 assert( to_op==OP_ToReal || aff!=SQLITE_AFF_REAL ); 2391c5499befSdrh testcase( to_op==OP_ToText ); 2392c5499befSdrh testcase( to_op==OP_ToBlob ); 2393c5499befSdrh testcase( to_op==OP_ToNumeric ); 2394c5499befSdrh testcase( to_op==OP_ToInt ); 2395c5499befSdrh testcase( to_op==OP_ToReal ); 23961735fa88Sdrh if( inReg!=target ){ 23971735fa88Sdrh sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target); 23981735fa88Sdrh inReg = target; 23991735fa88Sdrh } 24002dcef11bSdrh sqlite3VdbeAddOp1(v, to_op, inReg); 2401c5499befSdrh testcase( usedAsColumnCache(pParse, inReg, inReg) ); 2402b3843a82Sdrh sqlite3ExprCacheAffinityChange(pParse, inReg, 1); 2403487e262fSdrh break; 2404487e262fSdrh } 2405487e262fSdrh #endif /* SQLITE_OMIT_CAST */ 2406c9b84a1fSdrh case TK_LT: 2407c9b84a1fSdrh case TK_LE: 2408c9b84a1fSdrh case TK_GT: 2409c9b84a1fSdrh case TK_GE: 2410c9b84a1fSdrh case TK_NE: 2411c9b84a1fSdrh case TK_EQ: { 2412f2bc013cSdrh assert( TK_LT==OP_Lt ); 2413f2bc013cSdrh assert( TK_LE==OP_Le ); 2414f2bc013cSdrh assert( TK_GT==OP_Gt ); 2415f2bc013cSdrh assert( TK_GE==OP_Ge ); 2416f2bc013cSdrh assert( TK_EQ==OP_Eq ); 2417f2bc013cSdrh assert( TK_NE==OP_Ne ); 2418c5499befSdrh testcase( op==TK_LT ); 2419c5499befSdrh testcase( op==TK_LE ); 2420c5499befSdrh testcase( op==TK_GT ); 2421c5499befSdrh testcase( op==TK_GE ); 2422c5499befSdrh testcase( op==TK_EQ ); 2423c5499befSdrh testcase( op==TK_NE ); 2424b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2425b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 242635573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 242735573356Sdrh r1, r2, inReg, SQLITE_STOREP2); 2428c5499befSdrh testcase( regFree1==0 ); 2429c5499befSdrh testcase( regFree2==0 ); 2430a37cdde0Sdanielk1977 break; 2431c9b84a1fSdrh } 24326a2fe093Sdrh case TK_IS: 24336a2fe093Sdrh case TK_ISNOT: { 24346a2fe093Sdrh testcase( op==TK_IS ); 24356a2fe093Sdrh testcase( op==TK_ISNOT ); 2436b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2437b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 24386a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 24396a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 24406a2fe093Sdrh r1, r2, inReg, SQLITE_STOREP2 | SQLITE_NULLEQ); 24416a2fe093Sdrh testcase( regFree1==0 ); 24426a2fe093Sdrh testcase( regFree2==0 ); 24436a2fe093Sdrh break; 24446a2fe093Sdrh } 2445cce7d176Sdrh case TK_AND: 2446cce7d176Sdrh case TK_OR: 2447cce7d176Sdrh case TK_PLUS: 2448cce7d176Sdrh case TK_STAR: 2449cce7d176Sdrh case TK_MINUS: 2450bf4133cbSdrh case TK_REM: 2451bf4133cbSdrh case TK_BITAND: 2452bf4133cbSdrh case TK_BITOR: 245317c40294Sdrh case TK_SLASH: 2454bf4133cbSdrh case TK_LSHIFT: 2455855eb1cfSdrh case TK_RSHIFT: 24560040077dSdrh case TK_CONCAT: { 2457f2bc013cSdrh assert( TK_AND==OP_And ); 2458f2bc013cSdrh assert( TK_OR==OP_Or ); 2459f2bc013cSdrh assert( TK_PLUS==OP_Add ); 2460f2bc013cSdrh assert( TK_MINUS==OP_Subtract ); 2461f2bc013cSdrh assert( TK_REM==OP_Remainder ); 2462f2bc013cSdrh assert( TK_BITAND==OP_BitAnd ); 2463f2bc013cSdrh assert( TK_BITOR==OP_BitOr ); 2464f2bc013cSdrh assert( TK_SLASH==OP_Divide ); 2465f2bc013cSdrh assert( TK_LSHIFT==OP_ShiftLeft ); 2466f2bc013cSdrh assert( TK_RSHIFT==OP_ShiftRight ); 2467f2bc013cSdrh assert( TK_CONCAT==OP_Concat ); 2468c5499befSdrh testcase( op==TK_AND ); 2469c5499befSdrh testcase( op==TK_OR ); 2470c5499befSdrh testcase( op==TK_PLUS ); 2471c5499befSdrh testcase( op==TK_MINUS ); 2472c5499befSdrh testcase( op==TK_REM ); 2473c5499befSdrh testcase( op==TK_BITAND ); 2474c5499befSdrh testcase( op==TK_BITOR ); 2475c5499befSdrh testcase( op==TK_SLASH ); 2476c5499befSdrh testcase( op==TK_LSHIFT ); 2477c5499befSdrh testcase( op==TK_RSHIFT ); 2478c5499befSdrh testcase( op==TK_CONCAT ); 24792dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 24802dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 24815b6afba9Sdrh sqlite3VdbeAddOp3(v, op, r2, r1, target); 2482c5499befSdrh testcase( regFree1==0 ); 2483c5499befSdrh testcase( regFree2==0 ); 24840040077dSdrh break; 24850040077dSdrh } 2486cce7d176Sdrh case TK_UMINUS: { 2487fec19aadSdrh Expr *pLeft = pExpr->pLeft; 2488fec19aadSdrh assert( pLeft ); 248913573c71Sdrh if( pLeft->op==TK_INTEGER ){ 249013573c71Sdrh codeInteger(pParse, pLeft, 1, target); 249113573c71Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 249213573c71Sdrh }else if( pLeft->op==TK_FLOAT ){ 249333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 249433e619fcSdrh codeReal(v, pLeft->u.zToken, 1, target); 249513573c71Sdrh #endif 24963c84ddffSdrh }else{ 24972dcef11bSdrh regFree1 = r1 = sqlite3GetTempReg(pParse); 24983c84ddffSdrh sqlite3VdbeAddOp2(v, OP_Integer, 0, r1); 2499e55cbd72Sdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free2); 25002dcef11bSdrh sqlite3VdbeAddOp3(v, OP_Subtract, r2, r1, target); 2501c5499befSdrh testcase( regFree2==0 ); 25023c84ddffSdrh } 25039de221dfSdrh inReg = target; 25046e142f54Sdrh break; 25056e142f54Sdrh } 2506bf4133cbSdrh case TK_BITNOT: 25076e142f54Sdrh case TK_NOT: { 2508f2bc013cSdrh assert( TK_BITNOT==OP_BitNot ); 2509f2bc013cSdrh assert( TK_NOT==OP_Not ); 2510c5499befSdrh testcase( op==TK_BITNOT ); 2511c5499befSdrh testcase( op==TK_NOT ); 2512e99fa2afSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2513e99fa2afSdrh testcase( regFree1==0 ); 2514e99fa2afSdrh inReg = target; 2515e99fa2afSdrh sqlite3VdbeAddOp2(v, op, r1, inReg); 2516cce7d176Sdrh break; 2517cce7d176Sdrh } 2518cce7d176Sdrh case TK_ISNULL: 2519cce7d176Sdrh case TK_NOTNULL: { 25206a288a33Sdrh int addr; 2521f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 2522f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 2523c5499befSdrh testcase( op==TK_ISNULL ); 2524c5499befSdrh testcase( op==TK_NOTNULL ); 25259de221dfSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 25262dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 2527c5499befSdrh testcase( regFree1==0 ); 25282dcef11bSdrh addr = sqlite3VdbeAddOp1(v, op, r1); 25299de221dfSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, -1); 25306a288a33Sdrh sqlite3VdbeJumpHere(v, addr); 2531a37cdde0Sdanielk1977 break; 2532f2bc013cSdrh } 25332282792aSdrh case TK_AGG_FUNCTION: { 253413449892Sdrh AggInfo *pInfo = pExpr->pAggInfo; 25357e56e711Sdrh if( pInfo==0 ){ 253633e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 253733e619fcSdrh sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken); 25387e56e711Sdrh }else{ 25399de221dfSdrh inReg = pInfo->aFunc[pExpr->iAgg].iMem; 25407e56e711Sdrh } 25412282792aSdrh break; 25422282792aSdrh } 2543b71090fdSdrh case TK_CONST_FUNC: 2544cce7d176Sdrh case TK_FUNCTION: { 254512ffee8cSdrh ExprList *pFarg; /* List of function arguments */ 254612ffee8cSdrh int nFarg; /* Number of function arguments */ 254712ffee8cSdrh FuncDef *pDef; /* The function definition object */ 254812ffee8cSdrh int nId; /* Length of the function name in bytes */ 254912ffee8cSdrh const char *zId; /* The function name */ 255012ffee8cSdrh int constMask = 0; /* Mask of function arguments that are constant */ 255112ffee8cSdrh int i; /* Loop counter */ 255212ffee8cSdrh u8 enc = ENC(db); /* The text encoding used by this database */ 255312ffee8cSdrh CollSeq *pColl = 0; /* A collating sequence */ 255417435752Sdrh 25556ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 2556c5499befSdrh testcase( op==TK_CONST_FUNC ); 2557c5499befSdrh testcase( op==TK_FUNCTION ); 2558b7916a78Sdrh if( ExprHasAnyProperty(pExpr, EP_TokenOnly) ){ 255912ffee8cSdrh pFarg = 0; 256012ffee8cSdrh }else{ 256112ffee8cSdrh pFarg = pExpr->x.pList; 256212ffee8cSdrh } 256312ffee8cSdrh nFarg = pFarg ? pFarg->nExpr : 0; 256433e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 256533e619fcSdrh zId = pExpr->u.zToken; 2566b7916a78Sdrh nId = sqlite3Strlen30(zId); 256712ffee8cSdrh pDef = sqlite3FindFunction(db, zId, nId, nFarg, enc, 0); 2568feb306f5Sdrh if( pDef==0 ){ 2569feb306f5Sdrh sqlite3ErrorMsg(pParse, "unknown function: %.*s()", nId, zId); 2570feb306f5Sdrh break; 2571feb306f5Sdrh } 2572ae6bb957Sdrh 2573ae6bb957Sdrh /* Attempt a direct implementation of the built-in COALESCE() and 2574ae6bb957Sdrh ** IFNULL() functions. This avoids unnecessary evalation of 2575ae6bb957Sdrh ** arguments past the first non-NULL argument. 2576ae6bb957Sdrh */ 2577ae6bb957Sdrh if( pDef->flags & SQLITE_FUNC_COALESCE ){ 2578ae6bb957Sdrh int endCoalesce = sqlite3VdbeMakeLabel(v); 2579ae6bb957Sdrh assert( nFarg>=2 ); 2580ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[0].pExpr, target); 2581ae6bb957Sdrh for(i=1; i<nFarg; i++){ 2582ae6bb957Sdrh sqlite3VdbeAddOp2(v, OP_NotNull, target, endCoalesce); 2583f49f3523Sdrh sqlite3ExprCacheRemove(pParse, target, 1); 2584ae6bb957Sdrh sqlite3ExprCachePush(pParse); 2585ae6bb957Sdrh sqlite3ExprCode(pParse, pFarg->a[i].pExpr, target); 2586ae6bb957Sdrh sqlite3ExprCachePop(pParse, 1); 2587ae6bb957Sdrh } 2588ae6bb957Sdrh sqlite3VdbeResolveLabel(v, endCoalesce); 2589ae6bb957Sdrh break; 2590ae6bb957Sdrh } 2591ae6bb957Sdrh 2592ae6bb957Sdrh 259312ffee8cSdrh if( pFarg ){ 259412ffee8cSdrh r1 = sqlite3GetTempRange(pParse, nFarg); 2595a748fdccSdrh 2596a748fdccSdrh /* For length() and typeof() functions with a column argument, 2597a748fdccSdrh ** set the P5 parameter to the OP_Column opcode to OPFLAG_LENGTHARG 2598a748fdccSdrh ** or OPFLAG_TYPEOFARG respectively, to avoid unnecessary data 2599a748fdccSdrh ** loading. 2600a748fdccSdrh */ 2601a748fdccSdrh if( (pDef->flags & (SQLITE_FUNC_LENGTH|SQLITE_FUNC_TYPEOF))!=0 ){ 2602*4e245a4cSdrh u8 exprOp; 2603a748fdccSdrh assert( nFarg==1 ); 2604a748fdccSdrh assert( pFarg->a[0].pExpr!=0 ); 2605*4e245a4cSdrh exprOp = pFarg->a[0].pExpr->op; 2606*4e245a4cSdrh if( exprOp==TK_COLUMN || exprOp==TK_AGG_COLUMN ){ 2607a748fdccSdrh assert( SQLITE_FUNC_LENGTH==OPFLAG_LENGTHARG ); 2608a748fdccSdrh assert( SQLITE_FUNC_TYPEOF==OPFLAG_TYPEOFARG ); 2609a748fdccSdrh testcase( pDef->flags==SQLITE_FUNC_LENGTH ); 2610a748fdccSdrh pFarg->a[0].pExpr->op2 = pDef->flags; 2611a748fdccSdrh } 2612a748fdccSdrh } 2613a748fdccSdrh 2614d7d385ddSdrh sqlite3ExprCachePush(pParse); /* Ticket 2ea2425d34be */ 261512ffee8cSdrh sqlite3ExprCodeExprList(pParse, pFarg, r1, 1); 2616d7d385ddSdrh sqlite3ExprCachePop(pParse, 1); /* Ticket 2ea2425d34be */ 2617892d3179Sdrh }else{ 261812ffee8cSdrh r1 = 0; 2619892d3179Sdrh } 2620b7f6f68fSdrh #ifndef SQLITE_OMIT_VIRTUALTABLE 2621a43fa227Sdrh /* Possibly overload the function if the first argument is 2622a43fa227Sdrh ** a virtual table column. 2623a43fa227Sdrh ** 2624a43fa227Sdrh ** For infix functions (LIKE, GLOB, REGEXP, and MATCH) use the 2625a43fa227Sdrh ** second argument, not the first, as the argument to test to 2626a43fa227Sdrh ** see if it is a column in a virtual table. This is done because 2627a43fa227Sdrh ** the left operand of infix functions (the operand we want to 2628a43fa227Sdrh ** control overloading) ends up as the second argument to the 2629a43fa227Sdrh ** function. The expression "A glob B" is equivalent to 2630a43fa227Sdrh ** "glob(B,A). We want to use the A in "A glob B" to test 2631a43fa227Sdrh ** for function overloading. But we use the B term in "glob(B,A)". 2632a43fa227Sdrh */ 263312ffee8cSdrh if( nFarg>=2 && (pExpr->flags & EP_InfixFunc) ){ 263412ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[1].pExpr); 263512ffee8cSdrh }else if( nFarg>0 ){ 263612ffee8cSdrh pDef = sqlite3VtabOverloadFunction(db, pDef, nFarg, pFarg->a[0].pExpr); 2637b7f6f68fSdrh } 2638b7f6f68fSdrh #endif 2639f7bca574Sdrh for(i=0; i<nFarg; i++){ 2640f7bca574Sdrh if( i<32 && sqlite3ExprIsConstant(pFarg->a[i].pExpr) ){ 264113449892Sdrh constMask |= (1<<i); 2642d02eb1fdSdanielk1977 } 2643e82f5d04Sdrh if( (pDef->flags & SQLITE_FUNC_NEEDCOLL)!=0 && !pColl ){ 264412ffee8cSdrh pColl = sqlite3ExprCollSeq(pParse, pFarg->a[i].pExpr); 2645dc1bdc4fSdanielk1977 } 2646dc1bdc4fSdanielk1977 } 2647e82f5d04Sdrh if( pDef->flags & SQLITE_FUNC_NEEDCOLL ){ 26488b213899Sdrh if( !pColl ) pColl = db->pDfltColl; 264966a5167bSdrh sqlite3VdbeAddOp4(v, OP_CollSeq, 0, 0, 0, (char *)pColl, P4_COLLSEQ); 2650682f68b0Sdanielk1977 } 26512dcef11bSdrh sqlite3VdbeAddOp4(v, OP_Function, constMask, r1, target, 265266a5167bSdrh (char*)pDef, P4_FUNCDEF); 265312ffee8cSdrh sqlite3VdbeChangeP5(v, (u8)nFarg); 265412ffee8cSdrh if( nFarg ){ 265512ffee8cSdrh sqlite3ReleaseTempRange(pParse, r1, nFarg); 26562dcef11bSdrh } 26576ec2733bSdrh break; 26586ec2733bSdrh } 2659fe2093d7Sdrh #ifndef SQLITE_OMIT_SUBQUERY 2660fe2093d7Sdrh case TK_EXISTS: 266119a775c2Sdrh case TK_SELECT: { 2662c5499befSdrh testcase( op==TK_EXISTS ); 2663c5499befSdrh testcase( op==TK_SELECT ); 26641450bc6eSdrh inReg = sqlite3CodeSubselect(pParse, pExpr, 0, 0); 266519a775c2Sdrh break; 266619a775c2Sdrh } 2667fef5208cSdrh case TK_IN: { 2668e3365e6cSdrh int destIfFalse = sqlite3VdbeMakeLabel(v); 2669e3365e6cSdrh int destIfNull = sqlite3VdbeMakeLabel(v); 2670e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 2671e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); 267266ba23ceSdrh sqlite3VdbeAddOp2(v, OP_Integer, 1, target); 2673e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse); 2674e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_AddImm, target, 0); 2675e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull); 2676fef5208cSdrh break; 2677fef5208cSdrh } 2678e3365e6cSdrh #endif /* SQLITE_OMIT_SUBQUERY */ 2679e3365e6cSdrh 2680e3365e6cSdrh 26812dcef11bSdrh /* 26822dcef11bSdrh ** x BETWEEN y AND z 26832dcef11bSdrh ** 26842dcef11bSdrh ** This is equivalent to 26852dcef11bSdrh ** 26862dcef11bSdrh ** x>=y AND x<=z 26872dcef11bSdrh ** 26882dcef11bSdrh ** X is stored in pExpr->pLeft. 26892dcef11bSdrh ** Y is stored in pExpr->pList->a[0].pExpr. 26902dcef11bSdrh ** Z is stored in pExpr->pList->a[1].pExpr. 26912dcef11bSdrh */ 2692fef5208cSdrh case TK_BETWEEN: { 2693be5c89acSdrh Expr *pLeft = pExpr->pLeft; 26946ab3a2ecSdanielk1977 struct ExprList_item *pLItem = pExpr->x.pList->a; 2695be5c89acSdrh Expr *pRight = pLItem->pExpr; 269635573356Sdrh 2697b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pLeft, ®Free1); 2698b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2699c5499befSdrh testcase( regFree1==0 ); 2700c5499befSdrh testcase( regFree2==0 ); 27012dcef11bSdrh r3 = sqlite3GetTempReg(pParse); 2702678ccce8Sdrh r4 = sqlite3GetTempReg(pParse); 270335573356Sdrh codeCompare(pParse, pLeft, pRight, OP_Ge, 270435573356Sdrh r1, r2, r3, SQLITE_STOREP2); 2705be5c89acSdrh pLItem++; 2706be5c89acSdrh pRight = pLItem->pExpr; 27072dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 27082dcef11bSdrh r2 = sqlite3ExprCodeTemp(pParse, pRight, ®Free2); 2709c5499befSdrh testcase( regFree2==0 ); 2710678ccce8Sdrh codeCompare(pParse, pLeft, pRight, OP_Le, r1, r2, r4, SQLITE_STOREP2); 2711678ccce8Sdrh sqlite3VdbeAddOp3(v, OP_And, r3, r4, target); 27122dcef11bSdrh sqlite3ReleaseTempReg(pParse, r3); 2713678ccce8Sdrh sqlite3ReleaseTempReg(pParse, r4); 2714fef5208cSdrh break; 2715fef5208cSdrh } 27164f07e5fbSdrh case TK_UPLUS: { 27172dcef11bSdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr->pLeft, target); 2718a2e00042Sdrh break; 2719a2e00042Sdrh } 27202dcef11bSdrh 2721165921a7Sdan case TK_TRIGGER: { 272265a7cd16Sdan /* If the opcode is TK_TRIGGER, then the expression is a reference 272365a7cd16Sdan ** to a column in the new.* or old.* pseudo-tables available to 272465a7cd16Sdan ** trigger programs. In this case Expr.iTable is set to 1 for the 272565a7cd16Sdan ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn 272665a7cd16Sdan ** is set to the column of the pseudo-table to read, or to -1 to 272765a7cd16Sdan ** read the rowid field. 272865a7cd16Sdan ** 272965a7cd16Sdan ** The expression is implemented using an OP_Param opcode. The p1 273065a7cd16Sdan ** parameter is set to 0 for an old.rowid reference, or to (i+1) 273165a7cd16Sdan ** to reference another column of the old.* pseudo-table, where 273265a7cd16Sdan ** i is the index of the column. For a new.rowid reference, p1 is 273365a7cd16Sdan ** set to (n+1), where n is the number of columns in each pseudo-table. 273465a7cd16Sdan ** For a reference to any other column in the new.* pseudo-table, p1 273565a7cd16Sdan ** is set to (n+2+i), where n and i are as defined previously. For 273665a7cd16Sdan ** example, if the table on which triggers are being fired is 273765a7cd16Sdan ** declared as: 273865a7cd16Sdan ** 273965a7cd16Sdan ** CREATE TABLE t1(a, b); 274065a7cd16Sdan ** 274165a7cd16Sdan ** Then p1 is interpreted as follows: 274265a7cd16Sdan ** 274365a7cd16Sdan ** p1==0 -> old.rowid p1==3 -> new.rowid 274465a7cd16Sdan ** p1==1 -> old.a p1==4 -> new.a 274565a7cd16Sdan ** p1==2 -> old.b p1==5 -> new.b 274665a7cd16Sdan */ 27472832ad42Sdan Table *pTab = pExpr->pTab; 274865a7cd16Sdan int p1 = pExpr->iTable * (pTab->nCol+1) + 1 + pExpr->iColumn; 274965a7cd16Sdan 275065a7cd16Sdan assert( pExpr->iTable==0 || pExpr->iTable==1 ); 275165a7cd16Sdan assert( pExpr->iColumn>=-1 && pExpr->iColumn<pTab->nCol ); 275265a7cd16Sdan assert( pTab->iPKey<0 || pExpr->iColumn!=pTab->iPKey ); 275365a7cd16Sdan assert( p1>=0 && p1<(pTab->nCol*2+2) ); 275465a7cd16Sdan 275565a7cd16Sdan sqlite3VdbeAddOp2(v, OP_Param, p1, target); 275676d462eeSdan VdbeComment((v, "%s.%s -> $%d", 2757165921a7Sdan (pExpr->iTable ? "new" : "old"), 275876d462eeSdan (pExpr->iColumn<0 ? "rowid" : pExpr->pTab->aCol[pExpr->iColumn].zName), 275976d462eeSdan target 2760165921a7Sdan )); 276165a7cd16Sdan 276244dbca83Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 276365a7cd16Sdan /* If the column has REAL affinity, it may currently be stored as an 276465a7cd16Sdan ** integer. Use OP_RealAffinity to make sure it is really real. */ 27652832ad42Sdan if( pExpr->iColumn>=0 27662832ad42Sdan && pTab->aCol[pExpr->iColumn].affinity==SQLITE_AFF_REAL 27672832ad42Sdan ){ 27682832ad42Sdan sqlite3VdbeAddOp1(v, OP_RealAffinity, target); 27692832ad42Sdan } 277044dbca83Sdrh #endif 2771165921a7Sdan break; 2772165921a7Sdan } 2773165921a7Sdan 2774165921a7Sdan 27752dcef11bSdrh /* 27762dcef11bSdrh ** Form A: 27772dcef11bSdrh ** CASE x WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 27782dcef11bSdrh ** 27792dcef11bSdrh ** Form B: 27802dcef11bSdrh ** CASE WHEN e1 THEN r1 WHEN e2 THEN r2 ... WHEN eN THEN rN ELSE y END 27812dcef11bSdrh ** 27822dcef11bSdrh ** Form A is can be transformed into the equivalent form B as follows: 27832dcef11bSdrh ** CASE WHEN x=e1 THEN r1 WHEN x=e2 THEN r2 ... 27842dcef11bSdrh ** WHEN x=eN THEN rN ELSE y END 27852dcef11bSdrh ** 27862dcef11bSdrh ** X (if it exists) is in pExpr->pLeft. 27872dcef11bSdrh ** Y is in pExpr->pRight. The Y is also optional. If there is no 27882dcef11bSdrh ** ELSE clause and no other term matches, then the result of the 27892dcef11bSdrh ** exprssion is NULL. 27902dcef11bSdrh ** Ei is in pExpr->pList->a[i*2] and Ri is pExpr->pList->a[i*2+1]. 27912dcef11bSdrh ** 27922dcef11bSdrh ** The result of the expression is the Ri for the first matching Ei, 27932dcef11bSdrh ** or if there is no matching Ei, the ELSE term Y, or if there is 27942dcef11bSdrh ** no ELSE term, NULL. 27952dcef11bSdrh */ 279633cd4909Sdrh default: assert( op==TK_CASE ); { 27972dcef11bSdrh int endLabel; /* GOTO label for end of CASE stmt */ 27982dcef11bSdrh int nextCase; /* GOTO label for next WHEN clause */ 27992dcef11bSdrh int nExpr; /* 2x number of WHEN terms */ 28002dcef11bSdrh int i; /* Loop counter */ 28012dcef11bSdrh ExprList *pEList; /* List of WHEN terms */ 28022dcef11bSdrh struct ExprList_item *aListelem; /* Array of WHEN terms */ 28032dcef11bSdrh Expr opCompare; /* The X==Ei expression */ 28042dcef11bSdrh Expr cacheX; /* Cached expression X */ 28052dcef11bSdrh Expr *pX; /* The X expression */ 28061bd10f8aSdrh Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */ 2807ceea3321Sdrh VVA_ONLY( int iCacheLevel = pParse->iCacheLevel; ) 280817a7f8ddSdrh 28096ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) && pExpr->x.pList ); 28106ab3a2ecSdanielk1977 assert((pExpr->x.pList->nExpr % 2) == 0); 28116ab3a2ecSdanielk1977 assert(pExpr->x.pList->nExpr > 0); 28126ab3a2ecSdanielk1977 pEList = pExpr->x.pList; 2813be5c89acSdrh aListelem = pEList->a; 2814be5c89acSdrh nExpr = pEList->nExpr; 28152dcef11bSdrh endLabel = sqlite3VdbeMakeLabel(v); 28162dcef11bSdrh if( (pX = pExpr->pLeft)!=0 ){ 28172dcef11bSdrh cacheX = *pX; 281833cd4909Sdrh testcase( pX->op==TK_COLUMN ); 281933cd4909Sdrh testcase( pX->op==TK_REGISTER ); 28202dcef11bSdrh cacheX.iTable = sqlite3ExprCodeTemp(pParse, pX, ®Free1); 2821c5499befSdrh testcase( regFree1==0 ); 28222dcef11bSdrh cacheX.op = TK_REGISTER; 28232dcef11bSdrh opCompare.op = TK_EQ; 28242dcef11bSdrh opCompare.pLeft = &cacheX; 28252dcef11bSdrh pTest = &opCompare; 28268b1db07fSdrh /* Ticket b351d95f9cd5ef17e9d9dbae18f5ca8611190001: 28278b1db07fSdrh ** The value in regFree1 might get SCopy-ed into the file result. 28288b1db07fSdrh ** So make sure that the regFree1 register is not reused for other 28298b1db07fSdrh ** purposes and possibly overwritten. */ 28308b1db07fSdrh regFree1 = 0; 2831cce7d176Sdrh } 2832f5905aa7Sdrh for(i=0; i<nExpr; i=i+2){ 2833ceea3321Sdrh sqlite3ExprCachePush(pParse); 28342dcef11bSdrh if( pX ){ 28351bd10f8aSdrh assert( pTest!=0 ); 28362dcef11bSdrh opCompare.pRight = aListelem[i].pExpr; 2837f5905aa7Sdrh }else{ 28382dcef11bSdrh pTest = aListelem[i].pExpr; 283917a7f8ddSdrh } 28402dcef11bSdrh nextCase = sqlite3VdbeMakeLabel(v); 284133cd4909Sdrh testcase( pTest->op==TK_COLUMN ); 28422dcef11bSdrh sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL); 2843c5499befSdrh testcase( aListelem[i+1].pExpr->op==TK_COLUMN ); 2844c5499befSdrh testcase( aListelem[i+1].pExpr->op==TK_REGISTER ); 28459de221dfSdrh sqlite3ExprCode(pParse, aListelem[i+1].pExpr, target); 28462dcef11bSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, endLabel); 2847ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 28482dcef11bSdrh sqlite3VdbeResolveLabel(v, nextCase); 2849f570f011Sdrh } 285017a7f8ddSdrh if( pExpr->pRight ){ 2851ceea3321Sdrh sqlite3ExprCachePush(pParse); 28529de221dfSdrh sqlite3ExprCode(pParse, pExpr->pRight, target); 2853ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 285417a7f8ddSdrh }else{ 28559de221dfSdrh sqlite3VdbeAddOp2(v, OP_Null, 0, target); 285617a7f8ddSdrh } 2857c1f4a19bSdanielk1977 assert( db->mallocFailed || pParse->nErr>0 2858c1f4a19bSdanielk1977 || pParse->iCacheLevel==iCacheLevel ); 28592dcef11bSdrh sqlite3VdbeResolveLabel(v, endLabel); 28606f34903eSdanielk1977 break; 28616f34903eSdanielk1977 } 28625338a5f7Sdanielk1977 #ifndef SQLITE_OMIT_TRIGGER 28636f34903eSdanielk1977 case TK_RAISE: { 2864165921a7Sdan assert( pExpr->affinity==OE_Rollback 2865165921a7Sdan || pExpr->affinity==OE_Abort 2866165921a7Sdan || pExpr->affinity==OE_Fail 2867165921a7Sdan || pExpr->affinity==OE_Ignore 2868165921a7Sdan ); 2869e0af83acSdan if( !pParse->pTriggerTab ){ 2870e0af83acSdan sqlite3ErrorMsg(pParse, 2871e0af83acSdan "RAISE() may only be used within a trigger-program"); 2872e0af83acSdan return 0; 2873e0af83acSdan } 2874e0af83acSdan if( pExpr->affinity==OE_Abort ){ 2875e0af83acSdan sqlite3MayAbort(pParse); 2876e0af83acSdan } 287733e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 2878e0af83acSdan if( pExpr->affinity==OE_Ignore ){ 2879e0af83acSdan sqlite3VdbeAddOp4( 2880e0af83acSdan v, OP_Halt, SQLITE_OK, OE_Ignore, 0, pExpr->u.zToken,0); 2881e0af83acSdan }else{ 2882e0af83acSdan sqlite3HaltConstraint(pParse, pExpr->affinity, pExpr->u.zToken, 0); 2883e0af83acSdan } 2884e0af83acSdan 2885ffe07b2dSdrh break; 288617a7f8ddSdrh } 28875338a5f7Sdanielk1977 #endif 2888ffe07b2dSdrh } 28892dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 28902dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 28912dcef11bSdrh return inReg; 28925b6afba9Sdrh } 28932dcef11bSdrh 28942dcef11bSdrh /* 28952dcef11bSdrh ** Generate code to evaluate an expression and store the results 28962dcef11bSdrh ** into a register. Return the register number where the results 28972dcef11bSdrh ** are stored. 28982dcef11bSdrh ** 28992dcef11bSdrh ** If the register is a temporary register that can be deallocated, 2900678ccce8Sdrh ** then write its number into *pReg. If the result register is not 29012dcef11bSdrh ** a temporary, then set *pReg to zero. 29022dcef11bSdrh */ 29032dcef11bSdrh int sqlite3ExprCodeTemp(Parse *pParse, Expr *pExpr, int *pReg){ 29042dcef11bSdrh int r1 = sqlite3GetTempReg(pParse); 29052dcef11bSdrh int r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); 29062dcef11bSdrh if( r2==r1 ){ 29072dcef11bSdrh *pReg = r1; 29082dcef11bSdrh }else{ 29092dcef11bSdrh sqlite3ReleaseTempReg(pParse, r1); 29102dcef11bSdrh *pReg = 0; 29112dcef11bSdrh } 29122dcef11bSdrh return r2; 29132dcef11bSdrh } 29142dcef11bSdrh 29152dcef11bSdrh /* 29162dcef11bSdrh ** Generate code that will evaluate expression pExpr and store the 29172dcef11bSdrh ** results in register target. The results are guaranteed to appear 29182dcef11bSdrh ** in register target. 29192dcef11bSdrh */ 29202dcef11bSdrh int sqlite3ExprCode(Parse *pParse, Expr *pExpr, int target){ 29219cbf3425Sdrh int inReg; 29229cbf3425Sdrh 29239cbf3425Sdrh assert( target>0 && target<=pParse->nMem ); 2924ebc16717Sdrh if( pExpr && pExpr->op==TK_REGISTER ){ 2925ebc16717Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_Copy, pExpr->iTable, target); 2926ebc16717Sdrh }else{ 29279cbf3425Sdrh inReg = sqlite3ExprCodeTarget(pParse, pExpr, target); 29280e359b30Sdrh assert( pParse->pVdbe || pParse->db->mallocFailed ); 29290e359b30Sdrh if( inReg!=target && pParse->pVdbe ){ 29309cbf3425Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target); 293117a7f8ddSdrh } 2932ebc16717Sdrh } 2933389a1adbSdrh return target; 2934cce7d176Sdrh } 2935cce7d176Sdrh 2936cce7d176Sdrh /* 29372dcef11bSdrh ** Generate code that evalutes the given expression and puts the result 2938de4fcfddSdrh ** in register target. 293925303780Sdrh ** 29402dcef11bSdrh ** Also make a copy of the expression results into another "cache" register 29412dcef11bSdrh ** and modify the expression so that the next time it is evaluated, 29422dcef11bSdrh ** the result is a copy of the cache register. 29432dcef11bSdrh ** 29442dcef11bSdrh ** This routine is used for expressions that are used multiple 29452dcef11bSdrh ** times. They are evaluated once and the results of the expression 29462dcef11bSdrh ** are reused. 294725303780Sdrh */ 29482dcef11bSdrh int sqlite3ExprCodeAndCache(Parse *pParse, Expr *pExpr, int target){ 294925303780Sdrh Vdbe *v = pParse->pVdbe; 29502dcef11bSdrh int inReg; 29512dcef11bSdrh inReg = sqlite3ExprCode(pParse, pExpr, target); 2952de4fcfddSdrh assert( target>0 ); 295320bc393cSdrh /* This routine is called for terms to INSERT or UPDATE. And the only 295420bc393cSdrh ** other place where expressions can be converted into TK_REGISTER is 295520bc393cSdrh ** in WHERE clause processing. So as currently implemented, there is 295620bc393cSdrh ** no way for a TK_REGISTER to exist here. But it seems prudent to 295720bc393cSdrh ** keep the ALWAYS() in case the conditions above change with future 295820bc393cSdrh ** modifications or enhancements. */ 295920bc393cSdrh if( ALWAYS(pExpr->op!=TK_REGISTER) ){ 296025303780Sdrh int iMem; 29612dcef11bSdrh iMem = ++pParse->nMem; 29622dcef11bSdrh sqlite3VdbeAddOp2(v, OP_Copy, inReg, iMem); 29632dcef11bSdrh pExpr->iTable = iMem; 2964937d0deaSdan pExpr->op2 = pExpr->op; 296525303780Sdrh pExpr->op = TK_REGISTER; 296625303780Sdrh } 29672dcef11bSdrh return inReg; 296825303780Sdrh } 29692dcef11bSdrh 2970678a9aa7Sdrh #if defined(SQLITE_ENABLE_TREE_EXPLAIN) 29717e02e5e6Sdrh /* 29727e02e5e6Sdrh ** Generate a human-readable explanation of an expression tree. 29737e02e5e6Sdrh */ 2974a84203a0Sdrh void sqlite3ExplainExpr(Vdbe *pOut, Expr *pExpr){ 2975a84203a0Sdrh int op; /* The opcode being coded */ 2976a84203a0Sdrh const char *zBinOp = 0; /* Binary operator */ 2977a84203a0Sdrh const char *zUniOp = 0; /* Unary operator */ 2978a84203a0Sdrh if( pExpr==0 ){ 2979a84203a0Sdrh op = TK_NULL; 29807e02e5e6Sdrh }else{ 2981a84203a0Sdrh op = pExpr->op; 29827e02e5e6Sdrh } 2983a84203a0Sdrh switch( op ){ 2984a84203a0Sdrh case TK_AGG_COLUMN: { 298504b8342bSdrh sqlite3ExplainPrintf(pOut, "AGG{%d:%d}", 298604b8342bSdrh pExpr->iTable, pExpr->iColumn); 2987a84203a0Sdrh break; 29887e02e5e6Sdrh } 2989a84203a0Sdrh case TK_COLUMN: { 2990a84203a0Sdrh if( pExpr->iTable<0 ){ 2991a84203a0Sdrh /* This only happens when coding check constraints */ 2992a84203a0Sdrh sqlite3ExplainPrintf(pOut, "COLUMN(%d)", pExpr->iColumn); 2993a84203a0Sdrh }else{ 299404b8342bSdrh sqlite3ExplainPrintf(pOut, "{%d:%d}", 299504b8342bSdrh pExpr->iTable, pExpr->iColumn); 2996a84203a0Sdrh } 2997a84203a0Sdrh break; 2998a84203a0Sdrh } 2999a84203a0Sdrh case TK_INTEGER: { 3000a84203a0Sdrh if( pExpr->flags & EP_IntValue ){ 300104b8342bSdrh sqlite3ExplainPrintf(pOut, "%d", pExpr->u.iValue); 3002a84203a0Sdrh }else{ 300304b8342bSdrh sqlite3ExplainPrintf(pOut, "%s", pExpr->u.zToken); 3004a84203a0Sdrh } 3005a84203a0Sdrh break; 3006a84203a0Sdrh } 3007a84203a0Sdrh #ifndef SQLITE_OMIT_FLOATING_POINT 3008a84203a0Sdrh case TK_FLOAT: { 300904b8342bSdrh sqlite3ExplainPrintf(pOut,"%s", pExpr->u.zToken); 3010a84203a0Sdrh break; 3011a84203a0Sdrh } 3012a84203a0Sdrh #endif 3013a84203a0Sdrh case TK_STRING: { 301404b8342bSdrh sqlite3ExplainPrintf(pOut,"%Q", pExpr->u.zToken); 3015a84203a0Sdrh break; 3016a84203a0Sdrh } 3017a84203a0Sdrh case TK_NULL: { 3018a84203a0Sdrh sqlite3ExplainPrintf(pOut,"NULL"); 3019a84203a0Sdrh break; 3020a84203a0Sdrh } 3021a84203a0Sdrh #ifndef SQLITE_OMIT_BLOB_LITERAL 3022a84203a0Sdrh case TK_BLOB: { 302304b8342bSdrh sqlite3ExplainPrintf(pOut,"%s", pExpr->u.zToken); 3024a84203a0Sdrh break; 3025a84203a0Sdrh } 3026a84203a0Sdrh #endif 3027a84203a0Sdrh case TK_VARIABLE: { 3028a84203a0Sdrh sqlite3ExplainPrintf(pOut,"VARIABLE(%s,%d)", 3029a84203a0Sdrh pExpr->u.zToken, pExpr->iColumn); 3030a84203a0Sdrh break; 3031a84203a0Sdrh } 3032a84203a0Sdrh case TK_REGISTER: { 3033a84203a0Sdrh sqlite3ExplainPrintf(pOut,"REGISTER(%d)", pExpr->iTable); 3034a84203a0Sdrh break; 3035a84203a0Sdrh } 3036a84203a0Sdrh case TK_AS: { 3037a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3038a84203a0Sdrh break; 3039a84203a0Sdrh } 3040a84203a0Sdrh #ifndef SQLITE_OMIT_CAST 3041a84203a0Sdrh case TK_CAST: { 3042a84203a0Sdrh /* Expressions of the form: CAST(pLeft AS token) */ 3043a84203a0Sdrh const char *zAff = "unk"; 3044a84203a0Sdrh switch( sqlite3AffinityType(pExpr->u.zToken) ){ 3045a84203a0Sdrh case SQLITE_AFF_TEXT: zAff = "TEXT"; break; 3046a84203a0Sdrh case SQLITE_AFF_NONE: zAff = "NONE"; break; 3047a84203a0Sdrh case SQLITE_AFF_NUMERIC: zAff = "NUMERIC"; break; 3048a84203a0Sdrh case SQLITE_AFF_INTEGER: zAff = "INTEGER"; break; 3049a84203a0Sdrh case SQLITE_AFF_REAL: zAff = "REAL"; break; 3050a84203a0Sdrh } 3051a84203a0Sdrh sqlite3ExplainPrintf(pOut, "CAST-%s(", zAff); 3052a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3053a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3054a84203a0Sdrh break; 3055a84203a0Sdrh } 3056a84203a0Sdrh #endif /* SQLITE_OMIT_CAST */ 3057a84203a0Sdrh case TK_LT: zBinOp = "LT"; break; 3058a84203a0Sdrh case TK_LE: zBinOp = "LE"; break; 3059a84203a0Sdrh case TK_GT: zBinOp = "GT"; break; 3060a84203a0Sdrh case TK_GE: zBinOp = "GE"; break; 3061a84203a0Sdrh case TK_NE: zBinOp = "NE"; break; 3062a84203a0Sdrh case TK_EQ: zBinOp = "EQ"; break; 3063a84203a0Sdrh case TK_IS: zBinOp = "IS"; break; 3064a84203a0Sdrh case TK_ISNOT: zBinOp = "ISNOT"; break; 3065a84203a0Sdrh case TK_AND: zBinOp = "AND"; break; 3066a84203a0Sdrh case TK_OR: zBinOp = "OR"; break; 3067a84203a0Sdrh case TK_PLUS: zBinOp = "ADD"; break; 3068a84203a0Sdrh case TK_STAR: zBinOp = "MUL"; break; 3069a84203a0Sdrh case TK_MINUS: zBinOp = "SUB"; break; 3070a84203a0Sdrh case TK_REM: zBinOp = "REM"; break; 3071a84203a0Sdrh case TK_BITAND: zBinOp = "BITAND"; break; 3072a84203a0Sdrh case TK_BITOR: zBinOp = "BITOR"; break; 3073a84203a0Sdrh case TK_SLASH: zBinOp = "DIV"; break; 3074a84203a0Sdrh case TK_LSHIFT: zBinOp = "LSHIFT"; break; 3075a84203a0Sdrh case TK_RSHIFT: zBinOp = "RSHIFT"; break; 3076a84203a0Sdrh case TK_CONCAT: zBinOp = "CONCAT"; break; 3077a84203a0Sdrh 3078a84203a0Sdrh case TK_UMINUS: zUniOp = "UMINUS"; break; 3079a84203a0Sdrh case TK_UPLUS: zUniOp = "UPLUS"; break; 3080a84203a0Sdrh case TK_BITNOT: zUniOp = "BITNOT"; break; 3081a84203a0Sdrh case TK_NOT: zUniOp = "NOT"; break; 3082a84203a0Sdrh case TK_ISNULL: zUniOp = "ISNULL"; break; 3083a84203a0Sdrh case TK_NOTNULL: zUniOp = "NOTNULL"; break; 3084a84203a0Sdrh 3085a84203a0Sdrh case TK_AGG_FUNCTION: 3086a84203a0Sdrh case TK_CONST_FUNC: 3087a84203a0Sdrh case TK_FUNCTION: { 3088a84203a0Sdrh ExprList *pFarg; /* List of function arguments */ 3089a84203a0Sdrh if( ExprHasAnyProperty(pExpr, EP_TokenOnly) ){ 3090a84203a0Sdrh pFarg = 0; 3091a84203a0Sdrh }else{ 3092a84203a0Sdrh pFarg = pExpr->x.pList; 3093a84203a0Sdrh } 3094a84203a0Sdrh sqlite3ExplainPrintf(pOut, "%sFUNCTION:%s(", 3095a84203a0Sdrh op==TK_AGG_FUNCTION ? "AGG_" : "", 3096a84203a0Sdrh pExpr->u.zToken); 3097a84203a0Sdrh if( pFarg ){ 3098a84203a0Sdrh sqlite3ExplainExprList(pOut, pFarg); 30997e02e5e6Sdrh } 31007e02e5e6Sdrh sqlite3ExplainPrintf(pOut, ")"); 3101a84203a0Sdrh break; 3102a84203a0Sdrh } 3103a84203a0Sdrh #ifndef SQLITE_OMIT_SUBQUERY 3104a84203a0Sdrh case TK_EXISTS: { 3105a84203a0Sdrh sqlite3ExplainPrintf(pOut, "EXISTS("); 3106a84203a0Sdrh sqlite3ExplainSelect(pOut, pExpr->x.pSelect); 3107a84203a0Sdrh sqlite3ExplainPrintf(pOut,")"); 3108a84203a0Sdrh break; 3109a84203a0Sdrh } 3110a84203a0Sdrh case TK_SELECT: { 3111a84203a0Sdrh sqlite3ExplainPrintf(pOut, "("); 3112a84203a0Sdrh sqlite3ExplainSelect(pOut, pExpr->x.pSelect); 3113a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3114a84203a0Sdrh break; 3115a84203a0Sdrh } 3116a84203a0Sdrh case TK_IN: { 3117a84203a0Sdrh sqlite3ExplainPrintf(pOut, "IN("); 3118a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3119a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3120a84203a0Sdrh if( ExprHasProperty(pExpr, EP_xIsSelect) ){ 3121a84203a0Sdrh sqlite3ExplainSelect(pOut, pExpr->x.pSelect); 3122a84203a0Sdrh }else{ 3123a84203a0Sdrh sqlite3ExplainExprList(pOut, pExpr->x.pList); 3124a84203a0Sdrh } 3125a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3126a84203a0Sdrh break; 3127a84203a0Sdrh } 3128a84203a0Sdrh #endif /* SQLITE_OMIT_SUBQUERY */ 3129a84203a0Sdrh 3130a84203a0Sdrh /* 3131a84203a0Sdrh ** x BETWEEN y AND z 3132a84203a0Sdrh ** 3133a84203a0Sdrh ** This is equivalent to 3134a84203a0Sdrh ** 3135a84203a0Sdrh ** x>=y AND x<=z 3136a84203a0Sdrh ** 3137a84203a0Sdrh ** X is stored in pExpr->pLeft. 3138a84203a0Sdrh ** Y is stored in pExpr->pList->a[0].pExpr. 3139a84203a0Sdrh ** Z is stored in pExpr->pList->a[1].pExpr. 3140a84203a0Sdrh */ 3141a84203a0Sdrh case TK_BETWEEN: { 3142a84203a0Sdrh Expr *pX = pExpr->pLeft; 3143a84203a0Sdrh Expr *pY = pExpr->x.pList->a[0].pExpr; 3144a84203a0Sdrh Expr *pZ = pExpr->x.pList->a[1].pExpr; 3145a84203a0Sdrh sqlite3ExplainPrintf(pOut, "BETWEEN("); 3146a84203a0Sdrh sqlite3ExplainExpr(pOut, pX); 3147a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3148a84203a0Sdrh sqlite3ExplainExpr(pOut, pY); 3149a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3150a84203a0Sdrh sqlite3ExplainExpr(pOut, pZ); 3151a84203a0Sdrh sqlite3ExplainPrintf(pOut, ")"); 3152a84203a0Sdrh break; 3153a84203a0Sdrh } 3154a84203a0Sdrh case TK_TRIGGER: { 3155a84203a0Sdrh /* If the opcode is TK_TRIGGER, then the expression is a reference 3156a84203a0Sdrh ** to a column in the new.* or old.* pseudo-tables available to 3157a84203a0Sdrh ** trigger programs. In this case Expr.iTable is set to 1 for the 3158a84203a0Sdrh ** new.* pseudo-table, or 0 for the old.* pseudo-table. Expr.iColumn 3159a84203a0Sdrh ** is set to the column of the pseudo-table to read, or to -1 to 3160a84203a0Sdrh ** read the rowid field. 3161a84203a0Sdrh */ 3162a84203a0Sdrh sqlite3ExplainPrintf(pOut, "%s(%d)", 3163a84203a0Sdrh pExpr->iTable ? "NEW" : "OLD", pExpr->iColumn); 3164a84203a0Sdrh break; 3165a84203a0Sdrh } 3166a84203a0Sdrh case TK_CASE: { 3167a84203a0Sdrh sqlite3ExplainPrintf(pOut, "CASE("); 3168a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3169a84203a0Sdrh sqlite3ExplainPrintf(pOut, ","); 3170a84203a0Sdrh sqlite3ExplainExprList(pOut, pExpr->x.pList); 3171a84203a0Sdrh break; 3172a84203a0Sdrh } 3173a84203a0Sdrh #ifndef SQLITE_OMIT_TRIGGER 3174a84203a0Sdrh case TK_RAISE: { 3175a84203a0Sdrh const char *zType = "unk"; 3176a84203a0Sdrh switch( pExpr->affinity ){ 3177a84203a0Sdrh case OE_Rollback: zType = "rollback"; break; 3178a84203a0Sdrh case OE_Abort: zType = "abort"; break; 3179a84203a0Sdrh case OE_Fail: zType = "fail"; break; 3180a84203a0Sdrh case OE_Ignore: zType = "ignore"; break; 3181a84203a0Sdrh } 3182a84203a0Sdrh sqlite3ExplainPrintf(pOut, "RAISE-%s(%s)", zType, pExpr->u.zToken); 3183a84203a0Sdrh break; 3184a84203a0Sdrh } 3185a84203a0Sdrh #endif 3186a84203a0Sdrh } 3187a84203a0Sdrh if( zBinOp ){ 3188a84203a0Sdrh sqlite3ExplainPrintf(pOut,"%s(", zBinOp); 3189a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3190a84203a0Sdrh sqlite3ExplainPrintf(pOut,","); 3191a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pRight); 3192a84203a0Sdrh sqlite3ExplainPrintf(pOut,")"); 3193a84203a0Sdrh }else if( zUniOp ){ 3194a84203a0Sdrh sqlite3ExplainPrintf(pOut,"%s(", zUniOp); 3195a84203a0Sdrh sqlite3ExplainExpr(pOut, pExpr->pLeft); 3196a84203a0Sdrh sqlite3ExplainPrintf(pOut,")"); 3197a84203a0Sdrh } 31987e02e5e6Sdrh } 3199678a9aa7Sdrh #endif /* defined(SQLITE_ENABLE_TREE_EXPLAIN) */ 32007e02e5e6Sdrh 3201678a9aa7Sdrh #if defined(SQLITE_ENABLE_TREE_EXPLAIN) 32027e02e5e6Sdrh /* 32037e02e5e6Sdrh ** Generate a human-readable explanation of an expression list. 32047e02e5e6Sdrh */ 32057e02e5e6Sdrh void sqlite3ExplainExprList(Vdbe *pOut, ExprList *pList){ 32067e02e5e6Sdrh int i; 3207a84203a0Sdrh if( pList==0 || pList->nExpr==0 ){ 32087e02e5e6Sdrh sqlite3ExplainPrintf(pOut, "(empty-list)"); 32097e02e5e6Sdrh return; 3210a84203a0Sdrh }else if( pList->nExpr==1 ){ 3211a84203a0Sdrh sqlite3ExplainExpr(pOut, pList->a[0].pExpr); 3212a84203a0Sdrh }else{ 32137e02e5e6Sdrh sqlite3ExplainPush(pOut); 32147e02e5e6Sdrh for(i=0; i<pList->nExpr; i++){ 3215a84203a0Sdrh sqlite3ExplainPrintf(pOut, "item[%d] = ", i); 32167e02e5e6Sdrh sqlite3ExplainPush(pOut); 32177e02e5e6Sdrh sqlite3ExplainExpr(pOut, pList->a[i].pExpr); 32187e02e5e6Sdrh sqlite3ExplainPop(pOut); 32197e02e5e6Sdrh if( i<pList->nExpr-1 ){ 32207e02e5e6Sdrh sqlite3ExplainNL(pOut); 32217e02e5e6Sdrh } 32227e02e5e6Sdrh } 32237e02e5e6Sdrh sqlite3ExplainPop(pOut); 32247e02e5e6Sdrh } 3225a84203a0Sdrh } 32267e02e5e6Sdrh #endif /* SQLITE_DEBUG */ 32277e02e5e6Sdrh 3228678ccce8Sdrh /* 322947de955eSdrh ** Return TRUE if pExpr is an constant expression that is appropriate 323047de955eSdrh ** for factoring out of a loop. Appropriate expressions are: 323147de955eSdrh ** 323247de955eSdrh ** * Any expression that evaluates to two or more opcodes. 323347de955eSdrh ** 323447de955eSdrh ** * Any OP_Integer, OP_Real, OP_String, OP_Blob, OP_Null, 323547de955eSdrh ** or OP_Variable that does not need to be placed in a 323647de955eSdrh ** specific register. 323747de955eSdrh ** 323847de955eSdrh ** There is no point in factoring out single-instruction constant 323947de955eSdrh ** expressions that need to be placed in a particular register. 324047de955eSdrh ** We could factor them out, but then we would end up adding an 324147de955eSdrh ** OP_SCopy instruction to move the value into the correct register 324247de955eSdrh ** later. We might as well just use the original instruction and 324347de955eSdrh ** avoid the OP_SCopy. 324447de955eSdrh */ 324547de955eSdrh static int isAppropriateForFactoring(Expr *p){ 324647de955eSdrh if( !sqlite3ExprIsConstantNotJoin(p) ){ 324747de955eSdrh return 0; /* Only constant expressions are appropriate for factoring */ 324847de955eSdrh } 324947de955eSdrh if( (p->flags & EP_FixedDest)==0 ){ 325047de955eSdrh return 1; /* Any constant without a fixed destination is appropriate */ 325147de955eSdrh } 325247de955eSdrh while( p->op==TK_UPLUS ) p = p->pLeft; 325347de955eSdrh switch( p->op ){ 325447de955eSdrh #ifndef SQLITE_OMIT_BLOB_LITERAL 325547de955eSdrh case TK_BLOB: 325647de955eSdrh #endif 325747de955eSdrh case TK_VARIABLE: 325847de955eSdrh case TK_INTEGER: 325947de955eSdrh case TK_FLOAT: 326047de955eSdrh case TK_NULL: 326147de955eSdrh case TK_STRING: { 326247de955eSdrh testcase( p->op==TK_BLOB ); 326347de955eSdrh testcase( p->op==TK_VARIABLE ); 326447de955eSdrh testcase( p->op==TK_INTEGER ); 326547de955eSdrh testcase( p->op==TK_FLOAT ); 326647de955eSdrh testcase( p->op==TK_NULL ); 326747de955eSdrh testcase( p->op==TK_STRING ); 326847de955eSdrh /* Single-instruction constants with a fixed destination are 326947de955eSdrh ** better done in-line. If we factor them, they will just end 327047de955eSdrh ** up generating an OP_SCopy to move the value to the destination 327147de955eSdrh ** register. */ 327247de955eSdrh return 0; 327347de955eSdrh } 327447de955eSdrh case TK_UMINUS: { 327547de955eSdrh if( p->pLeft->op==TK_FLOAT || p->pLeft->op==TK_INTEGER ){ 327647de955eSdrh return 0; 327747de955eSdrh } 327847de955eSdrh break; 327947de955eSdrh } 328047de955eSdrh default: { 328147de955eSdrh break; 328247de955eSdrh } 328347de955eSdrh } 328447de955eSdrh return 1; 328547de955eSdrh } 328647de955eSdrh 328747de955eSdrh /* 328847de955eSdrh ** If pExpr is a constant expression that is appropriate for 328947de955eSdrh ** factoring out of a loop, then evaluate the expression 3290678ccce8Sdrh ** into a register and convert the expression into a TK_REGISTER 3291678ccce8Sdrh ** expression. 3292678ccce8Sdrh */ 32937d10d5a6Sdrh static int evalConstExpr(Walker *pWalker, Expr *pExpr){ 32947d10d5a6Sdrh Parse *pParse = pWalker->pParse; 329547de955eSdrh switch( pExpr->op ){ 3296e05c929bSdrh case TK_IN: 329747de955eSdrh case TK_REGISTER: { 329833cd4909Sdrh return WRC_Prune; 3299678ccce8Sdrh } 330047de955eSdrh case TK_FUNCTION: 330147de955eSdrh case TK_AGG_FUNCTION: 330247de955eSdrh case TK_CONST_FUNC: { 330347de955eSdrh /* The arguments to a function have a fixed destination. 330447de955eSdrh ** Mark them this way to avoid generated unneeded OP_SCopy 330547de955eSdrh ** instructions. 330647de955eSdrh */ 33076ab3a2ecSdanielk1977 ExprList *pList = pExpr->x.pList; 33086ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 330947de955eSdrh if( pList ){ 331047de955eSdrh int i = pList->nExpr; 331147de955eSdrh struct ExprList_item *pItem = pList->a; 331247de955eSdrh for(; i>0; i--, pItem++){ 331333cd4909Sdrh if( ALWAYS(pItem->pExpr) ) pItem->pExpr->flags |= EP_FixedDest; 331447de955eSdrh } 331547de955eSdrh } 331647de955eSdrh break; 331747de955eSdrh } 331847de955eSdrh } 331947de955eSdrh if( isAppropriateForFactoring(pExpr) ){ 3320678ccce8Sdrh int r1 = ++pParse->nMem; 3321678ccce8Sdrh int r2; 3322678ccce8Sdrh r2 = sqlite3ExprCodeTarget(pParse, pExpr, r1); 332333cd4909Sdrh if( NEVER(r1!=r2) ) sqlite3ReleaseTempReg(pParse, r1); 3324fcd4a150Sdan pExpr->op2 = pExpr->op; 3325678ccce8Sdrh pExpr->op = TK_REGISTER; 3326678ccce8Sdrh pExpr->iTable = r2; 33277d10d5a6Sdrh return WRC_Prune; 3328678ccce8Sdrh } 33297d10d5a6Sdrh return WRC_Continue; 3330678ccce8Sdrh } 3331678ccce8Sdrh 3332678ccce8Sdrh /* 3333678ccce8Sdrh ** Preevaluate constant subexpressions within pExpr and store the 3334678ccce8Sdrh ** results in registers. Modify pExpr so that the constant subexpresions 3335678ccce8Sdrh ** are TK_REGISTER opcodes that refer to the precomputed values. 3336f58ee7f1Sdrh ** 3337f58ee7f1Sdrh ** This routine is a no-op if the jump to the cookie-check code has 3338f58ee7f1Sdrh ** already occur. Since the cookie-check jump is generated prior to 3339f58ee7f1Sdrh ** any other serious processing, this check ensures that there is no 3340f58ee7f1Sdrh ** way to accidently bypass the constant initializations. 3341f58ee7f1Sdrh ** 3342f58ee7f1Sdrh ** This routine is also a no-op if the SQLITE_FactorOutConst optimization 3343f58ee7f1Sdrh ** is disabled via the sqlite3_test_control(SQLITE_TESTCTRL_OPTIMIZATIONS) 3344f58ee7f1Sdrh ** interface. This allows test logic to verify that the same answer is 3345f58ee7f1Sdrh ** obtained for queries regardless of whether or not constants are 3346f58ee7f1Sdrh ** precomputed into registers or if they are inserted in-line. 3347678ccce8Sdrh */ 3348678ccce8Sdrh void sqlite3ExprCodeConstants(Parse *pParse, Expr *pExpr){ 33497d10d5a6Sdrh Walker w; 335048b5b041Sdrh if( pParse->cookieGoto ) return; 3351f58ee7f1Sdrh if( (pParse->db->flags & SQLITE_FactorOutConst)!=0 ) return; 33527d10d5a6Sdrh w.xExprCallback = evalConstExpr; 3353ef4c0598Sdrh w.xSelectCallback = 0; 33547d10d5a6Sdrh w.pParse = pParse; 33557d10d5a6Sdrh sqlite3WalkExpr(&w, pExpr); 3356678ccce8Sdrh } 3357678ccce8Sdrh 335825303780Sdrh 335925303780Sdrh /* 3360268380caSdrh ** Generate code that pushes the value of every element of the given 33619cbf3425Sdrh ** expression list into a sequence of registers beginning at target. 3362268380caSdrh ** 3363892d3179Sdrh ** Return the number of elements evaluated. 3364268380caSdrh */ 33654adee20fSdanielk1977 int sqlite3ExprCodeExprList( 3366268380caSdrh Parse *pParse, /* Parsing context */ 3367389a1adbSdrh ExprList *pList, /* The expression list to be coded */ 3368191b54cbSdrh int target, /* Where to write results */ 3369d176611bSdrh int doHardCopy /* Make a hard copy of every element */ 3370268380caSdrh ){ 3371268380caSdrh struct ExprList_item *pItem; 33729cbf3425Sdrh int i, n; 33739d8b3072Sdrh assert( pList!=0 ); 33749cbf3425Sdrh assert( target>0 ); 3375d81a142bSdrh assert( pParse->pVdbe!=0 ); /* Never gets this far otherwise */ 3376268380caSdrh n = pList->nExpr; 3377191b54cbSdrh for(pItem=pList->a, i=0; i<n; i++, pItem++){ 33787445ffe2Sdrh Expr *pExpr = pItem->pExpr; 33797445ffe2Sdrh int inReg = sqlite3ExprCodeTarget(pParse, pExpr, target+i); 3380746fd9ccSdrh if( inReg!=target+i ){ 33817445ffe2Sdrh sqlite3VdbeAddOp2(pParse->pVdbe, doHardCopy ? OP_Copy : OP_SCopy, 33827445ffe2Sdrh inReg, target+i); 3383d176611bSdrh } 3384268380caSdrh } 3385f9b596ebSdrh return n; 3386268380caSdrh } 3387268380caSdrh 3388268380caSdrh /* 338936c563a2Sdrh ** Generate code for a BETWEEN operator. 339036c563a2Sdrh ** 339136c563a2Sdrh ** x BETWEEN y AND z 339236c563a2Sdrh ** 339336c563a2Sdrh ** The above is equivalent to 339436c563a2Sdrh ** 339536c563a2Sdrh ** x>=y AND x<=z 339636c563a2Sdrh ** 339736c563a2Sdrh ** Code it as such, taking care to do the common subexpression 339836c563a2Sdrh ** elementation of x. 339936c563a2Sdrh */ 340036c563a2Sdrh static void exprCodeBetween( 340136c563a2Sdrh Parse *pParse, /* Parsing and code generating context */ 340236c563a2Sdrh Expr *pExpr, /* The BETWEEN expression */ 340336c563a2Sdrh int dest, /* Jump here if the jump is taken */ 340436c563a2Sdrh int jumpIfTrue, /* Take the jump if the BETWEEN is true */ 340536c563a2Sdrh int jumpIfNull /* Take the jump if the BETWEEN is NULL */ 340636c563a2Sdrh ){ 340736c563a2Sdrh Expr exprAnd; /* The AND operator in x>=y AND x<=z */ 340836c563a2Sdrh Expr compLeft; /* The x>=y term */ 340936c563a2Sdrh Expr compRight; /* The x<=z term */ 341036c563a2Sdrh Expr exprX; /* The x subexpression */ 341136c563a2Sdrh int regFree1 = 0; /* Temporary use register */ 341236c563a2Sdrh 341336c563a2Sdrh assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 341436c563a2Sdrh exprX = *pExpr->pLeft; 341536c563a2Sdrh exprAnd.op = TK_AND; 341636c563a2Sdrh exprAnd.pLeft = &compLeft; 341736c563a2Sdrh exprAnd.pRight = &compRight; 341836c563a2Sdrh compLeft.op = TK_GE; 341936c563a2Sdrh compLeft.pLeft = &exprX; 342036c563a2Sdrh compLeft.pRight = pExpr->x.pList->a[0].pExpr; 342136c563a2Sdrh compRight.op = TK_LE; 342236c563a2Sdrh compRight.pLeft = &exprX; 342336c563a2Sdrh compRight.pRight = pExpr->x.pList->a[1].pExpr; 342436c563a2Sdrh exprX.iTable = sqlite3ExprCodeTemp(pParse, &exprX, ®Free1); 342536c563a2Sdrh exprX.op = TK_REGISTER; 342636c563a2Sdrh if( jumpIfTrue ){ 342736c563a2Sdrh sqlite3ExprIfTrue(pParse, &exprAnd, dest, jumpIfNull); 342836c563a2Sdrh }else{ 342936c563a2Sdrh sqlite3ExprIfFalse(pParse, &exprAnd, dest, jumpIfNull); 343036c563a2Sdrh } 343136c563a2Sdrh sqlite3ReleaseTempReg(pParse, regFree1); 343236c563a2Sdrh 343336c563a2Sdrh /* Ensure adequate test coverage */ 343436c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1==0 ); 343536c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull==0 && regFree1!=0 ); 343636c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1==0 ); 343736c563a2Sdrh testcase( jumpIfTrue==0 && jumpIfNull!=0 && regFree1!=0 ); 343836c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1==0 ); 343936c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull==0 && regFree1!=0 ); 344036c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1==0 ); 344136c563a2Sdrh testcase( jumpIfTrue!=0 && jumpIfNull!=0 && regFree1!=0 ); 344236c563a2Sdrh } 344336c563a2Sdrh 344436c563a2Sdrh /* 3445cce7d176Sdrh ** Generate code for a boolean expression such that a jump is made 3446cce7d176Sdrh ** to the label "dest" if the expression is true but execution 3447cce7d176Sdrh ** continues straight thru if the expression is false. 3448f5905aa7Sdrh ** 3449f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false), then 345035573356Sdrh ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL. 3451f2bc013cSdrh ** 3452f2bc013cSdrh ** This code depends on the fact that certain token values (ex: TK_EQ) 3453f2bc013cSdrh ** are the same as opcode values (ex: OP_Eq) that implement the corresponding 3454f2bc013cSdrh ** operation. Special comments in vdbe.c and the mkopcodeh.awk script in 3455f2bc013cSdrh ** the make process cause these values to align. Assert()s in the code 3456f2bc013cSdrh ** below verify that the numbers are aligned correctly. 3457cce7d176Sdrh */ 34584adee20fSdanielk1977 void sqlite3ExprIfTrue(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3459cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3460cce7d176Sdrh int op = 0; 34612dcef11bSdrh int regFree1 = 0; 34622dcef11bSdrh int regFree2 = 0; 34632dcef11bSdrh int r1, r2; 34642dcef11bSdrh 346535573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 346633cd4909Sdrh if( NEVER(v==0) ) return; /* Existance of VDBE checked by caller */ 346733cd4909Sdrh if( NEVER(pExpr==0) ) return; /* No way this can happen */ 3468f2bc013cSdrh op = pExpr->op; 3469f2bc013cSdrh switch( op ){ 3470cce7d176Sdrh case TK_AND: { 34714adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3472c5499befSdrh testcase( jumpIfNull==0 ); 3473ceea3321Sdrh sqlite3ExprCachePush(pParse); 347435573356Sdrh sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL); 34754adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 34764adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3477ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 3478cce7d176Sdrh break; 3479cce7d176Sdrh } 3480cce7d176Sdrh case TK_OR: { 3481c5499befSdrh testcase( jumpIfNull==0 ); 34824adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 34834adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pRight, dest, jumpIfNull); 3484cce7d176Sdrh break; 3485cce7d176Sdrh } 3486cce7d176Sdrh case TK_NOT: { 3487c5499befSdrh testcase( jumpIfNull==0 ); 34884adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 3489cce7d176Sdrh break; 3490cce7d176Sdrh } 3491cce7d176Sdrh case TK_LT: 3492cce7d176Sdrh case TK_LE: 3493cce7d176Sdrh case TK_GT: 3494cce7d176Sdrh case TK_GE: 3495cce7d176Sdrh case TK_NE: 34960ac65892Sdrh case TK_EQ: { 3497f2bc013cSdrh assert( TK_LT==OP_Lt ); 3498f2bc013cSdrh assert( TK_LE==OP_Le ); 3499f2bc013cSdrh assert( TK_GT==OP_Gt ); 3500f2bc013cSdrh assert( TK_GE==OP_Ge ); 3501f2bc013cSdrh assert( TK_EQ==OP_Eq ); 3502f2bc013cSdrh assert( TK_NE==OP_Ne ); 3503c5499befSdrh testcase( op==TK_LT ); 3504c5499befSdrh testcase( op==TK_LE ); 3505c5499befSdrh testcase( op==TK_GT ); 3506c5499befSdrh testcase( op==TK_GE ); 3507c5499befSdrh testcase( op==TK_EQ ); 3508c5499befSdrh testcase( op==TK_NE ); 3509c5499befSdrh testcase( jumpIfNull==0 ); 3510b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3511b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 351235573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 35132dcef11bSdrh r1, r2, dest, jumpIfNull); 3514c5499befSdrh testcase( regFree1==0 ); 3515c5499befSdrh testcase( regFree2==0 ); 3516cce7d176Sdrh break; 3517cce7d176Sdrh } 35186a2fe093Sdrh case TK_IS: 35196a2fe093Sdrh case TK_ISNOT: { 35206a2fe093Sdrh testcase( op==TK_IS ); 35216a2fe093Sdrh testcase( op==TK_ISNOT ); 3522b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3523b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 35246a2fe093Sdrh op = (op==TK_IS) ? TK_EQ : TK_NE; 35256a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 35266a2fe093Sdrh r1, r2, dest, SQLITE_NULLEQ); 35276a2fe093Sdrh testcase( regFree1==0 ); 35286a2fe093Sdrh testcase( regFree2==0 ); 35296a2fe093Sdrh break; 35306a2fe093Sdrh } 3531cce7d176Sdrh case TK_ISNULL: 3532cce7d176Sdrh case TK_NOTNULL: { 3533f2bc013cSdrh assert( TK_ISNULL==OP_IsNull ); 3534f2bc013cSdrh assert( TK_NOTNULL==OP_NotNull ); 3535c5499befSdrh testcase( op==TK_ISNULL ); 3536c5499befSdrh testcase( op==TK_NOTNULL ); 35372dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 35382dcef11bSdrh sqlite3VdbeAddOp2(v, op, r1, dest); 3539c5499befSdrh testcase( regFree1==0 ); 3540cce7d176Sdrh break; 3541cce7d176Sdrh } 3542fef5208cSdrh case TK_BETWEEN: { 35435c03f30aSdrh testcase( jumpIfNull==0 ); 354436c563a2Sdrh exprCodeBetween(pParse, pExpr, dest, 1, jumpIfNull); 3545fef5208cSdrh break; 3546fef5208cSdrh } 3547bb201344Sshaneh #ifndef SQLITE_OMIT_SUBQUERY 3548e3365e6cSdrh case TK_IN: { 3549e3365e6cSdrh int destIfFalse = sqlite3VdbeMakeLabel(v); 3550e3365e6cSdrh int destIfNull = jumpIfNull ? dest : destIfFalse; 3551e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, destIfFalse, destIfNull); 3552e3365e6cSdrh sqlite3VdbeAddOp2(v, OP_Goto, 0, dest); 3553e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfFalse); 3554e3365e6cSdrh break; 3555e3365e6cSdrh } 3556bb201344Sshaneh #endif 3557cce7d176Sdrh default: { 35582dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 35592dcef11bSdrh sqlite3VdbeAddOp3(v, OP_If, r1, dest, jumpIfNull!=0); 3560c5499befSdrh testcase( regFree1==0 ); 3561c5499befSdrh testcase( jumpIfNull==0 ); 3562cce7d176Sdrh break; 3563cce7d176Sdrh } 3564cce7d176Sdrh } 35652dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 35662dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3567cce7d176Sdrh } 3568cce7d176Sdrh 3569cce7d176Sdrh /* 357066b89c8fSdrh ** Generate code for a boolean expression such that a jump is made 3571cce7d176Sdrh ** to the label "dest" if the expression is false but execution 3572cce7d176Sdrh ** continues straight thru if the expression is true. 3573f5905aa7Sdrh ** 3574f5905aa7Sdrh ** If the expression evaluates to NULL (neither true nor false) then 357535573356Sdrh ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull 357635573356Sdrh ** is 0. 3577cce7d176Sdrh */ 35784adee20fSdanielk1977 void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){ 3579cce7d176Sdrh Vdbe *v = pParse->pVdbe; 3580cce7d176Sdrh int op = 0; 35812dcef11bSdrh int regFree1 = 0; 35822dcef11bSdrh int regFree2 = 0; 35832dcef11bSdrh int r1, r2; 35842dcef11bSdrh 358535573356Sdrh assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 ); 358633cd4909Sdrh if( NEVER(v==0) ) return; /* Existance of VDBE checked by caller */ 358733cd4909Sdrh if( pExpr==0 ) return; 3588f2bc013cSdrh 3589f2bc013cSdrh /* The value of pExpr->op and op are related as follows: 3590f2bc013cSdrh ** 3591f2bc013cSdrh ** pExpr->op op 3592f2bc013cSdrh ** --------- ---------- 3593f2bc013cSdrh ** TK_ISNULL OP_NotNull 3594f2bc013cSdrh ** TK_NOTNULL OP_IsNull 3595f2bc013cSdrh ** TK_NE OP_Eq 3596f2bc013cSdrh ** TK_EQ OP_Ne 3597f2bc013cSdrh ** TK_GT OP_Le 3598f2bc013cSdrh ** TK_LE OP_Gt 3599f2bc013cSdrh ** TK_GE OP_Lt 3600f2bc013cSdrh ** TK_LT OP_Ge 3601f2bc013cSdrh ** 3602f2bc013cSdrh ** For other values of pExpr->op, op is undefined and unused. 3603f2bc013cSdrh ** The value of TK_ and OP_ constants are arranged such that we 3604f2bc013cSdrh ** can compute the mapping above using the following expression. 3605f2bc013cSdrh ** Assert()s verify that the computation is correct. 3606f2bc013cSdrh */ 3607f2bc013cSdrh op = ((pExpr->op+(TK_ISNULL&1))^1)-(TK_ISNULL&1); 3608f2bc013cSdrh 3609f2bc013cSdrh /* Verify correct alignment of TK_ and OP_ constants 3610f2bc013cSdrh */ 3611f2bc013cSdrh assert( pExpr->op!=TK_ISNULL || op==OP_NotNull ); 3612f2bc013cSdrh assert( pExpr->op!=TK_NOTNULL || op==OP_IsNull ); 3613f2bc013cSdrh assert( pExpr->op!=TK_NE || op==OP_Eq ); 3614f2bc013cSdrh assert( pExpr->op!=TK_EQ || op==OP_Ne ); 3615f2bc013cSdrh assert( pExpr->op!=TK_LT || op==OP_Ge ); 3616f2bc013cSdrh assert( pExpr->op!=TK_LE || op==OP_Gt ); 3617f2bc013cSdrh assert( pExpr->op!=TK_GT || op==OP_Le ); 3618f2bc013cSdrh assert( pExpr->op!=TK_GE || op==OP_Lt ); 3619f2bc013cSdrh 3620cce7d176Sdrh switch( pExpr->op ){ 3621cce7d176Sdrh case TK_AND: { 3622c5499befSdrh testcase( jumpIfNull==0 ); 36234adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pLeft, dest, jumpIfNull); 36244adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 3625cce7d176Sdrh break; 3626cce7d176Sdrh } 3627cce7d176Sdrh case TK_OR: { 36284adee20fSdanielk1977 int d2 = sqlite3VdbeMakeLabel(v); 3629c5499befSdrh testcase( jumpIfNull==0 ); 3630ceea3321Sdrh sqlite3ExprCachePush(pParse); 363135573356Sdrh sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL); 36324adee20fSdanielk1977 sqlite3ExprIfFalse(pParse, pExpr->pRight, dest, jumpIfNull); 36334adee20fSdanielk1977 sqlite3VdbeResolveLabel(v, d2); 3634ceea3321Sdrh sqlite3ExprCachePop(pParse, 1); 3635cce7d176Sdrh break; 3636cce7d176Sdrh } 3637cce7d176Sdrh case TK_NOT: { 36385c03f30aSdrh testcase( jumpIfNull==0 ); 36394adee20fSdanielk1977 sqlite3ExprIfTrue(pParse, pExpr->pLeft, dest, jumpIfNull); 3640cce7d176Sdrh break; 3641cce7d176Sdrh } 3642cce7d176Sdrh case TK_LT: 3643cce7d176Sdrh case TK_LE: 3644cce7d176Sdrh case TK_GT: 3645cce7d176Sdrh case TK_GE: 3646cce7d176Sdrh case TK_NE: 3647cce7d176Sdrh case TK_EQ: { 3648c5499befSdrh testcase( op==TK_LT ); 3649c5499befSdrh testcase( op==TK_LE ); 3650c5499befSdrh testcase( op==TK_GT ); 3651c5499befSdrh testcase( op==TK_GE ); 3652c5499befSdrh testcase( op==TK_EQ ); 3653c5499befSdrh testcase( op==TK_NE ); 3654c5499befSdrh testcase( jumpIfNull==0 ); 3655b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3656b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 365735573356Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 36582dcef11bSdrh r1, r2, dest, jumpIfNull); 3659c5499befSdrh testcase( regFree1==0 ); 3660c5499befSdrh testcase( regFree2==0 ); 3661cce7d176Sdrh break; 3662cce7d176Sdrh } 36636a2fe093Sdrh case TK_IS: 36646a2fe093Sdrh case TK_ISNOT: { 36656d4486aeSdrh testcase( pExpr->op==TK_IS ); 36666d4486aeSdrh testcase( pExpr->op==TK_ISNOT ); 3667b6da74ebSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 3668b6da74ebSdrh r2 = sqlite3ExprCodeTemp(pParse, pExpr->pRight, ®Free2); 36696a2fe093Sdrh op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ; 36706a2fe093Sdrh codeCompare(pParse, pExpr->pLeft, pExpr->pRight, op, 36716a2fe093Sdrh r1, r2, dest, SQLITE_NULLEQ); 36726a2fe093Sdrh testcase( regFree1==0 ); 36736a2fe093Sdrh testcase( regFree2==0 ); 36746a2fe093Sdrh break; 36756a2fe093Sdrh } 3676cce7d176Sdrh case TK_ISNULL: 3677cce7d176Sdrh case TK_NOTNULL: { 3678c5499befSdrh testcase( op==TK_ISNULL ); 3679c5499befSdrh testcase( op==TK_NOTNULL ); 36802dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, ®Free1); 36812dcef11bSdrh sqlite3VdbeAddOp2(v, op, r1, dest); 3682c5499befSdrh testcase( regFree1==0 ); 3683cce7d176Sdrh break; 3684cce7d176Sdrh } 3685fef5208cSdrh case TK_BETWEEN: { 36865c03f30aSdrh testcase( jumpIfNull==0 ); 368736c563a2Sdrh exprCodeBetween(pParse, pExpr, dest, 0, jumpIfNull); 3688fef5208cSdrh break; 3689fef5208cSdrh } 3690bb201344Sshaneh #ifndef SQLITE_OMIT_SUBQUERY 3691e3365e6cSdrh case TK_IN: { 3692e3365e6cSdrh if( jumpIfNull ){ 3693e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, dest); 3694e3365e6cSdrh }else{ 3695e3365e6cSdrh int destIfNull = sqlite3VdbeMakeLabel(v); 3696e3365e6cSdrh sqlite3ExprCodeIN(pParse, pExpr, dest, destIfNull); 3697e3365e6cSdrh sqlite3VdbeResolveLabel(v, destIfNull); 3698e3365e6cSdrh } 3699e3365e6cSdrh break; 3700e3365e6cSdrh } 3701bb201344Sshaneh #endif 3702cce7d176Sdrh default: { 37032dcef11bSdrh r1 = sqlite3ExprCodeTemp(pParse, pExpr, ®Free1); 37042dcef11bSdrh sqlite3VdbeAddOp3(v, OP_IfNot, r1, dest, jumpIfNull!=0); 3705c5499befSdrh testcase( regFree1==0 ); 3706c5499befSdrh testcase( jumpIfNull==0 ); 3707cce7d176Sdrh break; 3708cce7d176Sdrh } 3709cce7d176Sdrh } 37102dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree1); 37112dcef11bSdrh sqlite3ReleaseTempReg(pParse, regFree2); 3712cce7d176Sdrh } 37132282792aSdrh 37142282792aSdrh /* 37151d9da70aSdrh ** Do a deep comparison of two expression trees. Return 0 if the two 37161d9da70aSdrh ** expressions are completely identical. Return 1 if they differ only 37171d9da70aSdrh ** by a COLLATE operator at the top level. Return 2 if there are differences 37181d9da70aSdrh ** other than the top-level COLLATE operator. 3719d40aab0eSdrh ** 37201d9da70aSdrh ** Sometimes this routine will return 2 even if the two expressions 3721d40aab0eSdrh ** really are equivalent. If we cannot prove that the expressions are 37221d9da70aSdrh ** identical, we return 2 just to be safe. So if this routine 37231d9da70aSdrh ** returns 2, then you do not really know for certain if the two 37241d9da70aSdrh ** expressions are the same. But if you get a 0 or 1 return, then you 3725d40aab0eSdrh ** can be sure the expressions are the same. In the places where 37261d9da70aSdrh ** this routine is used, it does not hurt to get an extra 2 - that 3727d40aab0eSdrh ** just might result in some slightly slower code. But returning 37281d9da70aSdrh ** an incorrect 0 or 1 could lead to a malfunction. 37292282792aSdrh */ 37304adee20fSdanielk1977 int sqlite3ExprCompare(Expr *pA, Expr *pB){ 37314b202ae2Sdanielk1977 if( pA==0||pB==0 ){ 37321d9da70aSdrh return pB==pA ? 0 : 2; 37332282792aSdrh } 373433e619fcSdrh assert( !ExprHasAnyProperty(pA, EP_TokenOnly|EP_Reduced) ); 373533e619fcSdrh assert( !ExprHasAnyProperty(pB, EP_TokenOnly|EP_Reduced) ); 37366ab3a2ecSdanielk1977 if( ExprHasProperty(pA, EP_xIsSelect) || ExprHasProperty(pB, EP_xIsSelect) ){ 37371d9da70aSdrh return 2; 37386ab3a2ecSdanielk1977 } 37391d9da70aSdrh if( (pA->flags & EP_Distinct)!=(pB->flags & EP_Distinct) ) return 2; 37401d9da70aSdrh if( pA->op!=pB->op ) return 2; 37411d9da70aSdrh if( sqlite3ExprCompare(pA->pLeft, pB->pLeft) ) return 2; 37421d9da70aSdrh if( sqlite3ExprCompare(pA->pRight, pB->pRight) ) return 2; 37438c6f666bSdrh if( sqlite3ExprListCompare(pA->x.pList, pB->x.pList) ) return 2; 37441d9da70aSdrh if( pA->iTable!=pB->iTable || pA->iColumn!=pB->iColumn ) return 2; 374533e619fcSdrh if( ExprHasProperty(pA, EP_IntValue) ){ 374633e619fcSdrh if( !ExprHasProperty(pB, EP_IntValue) || pA->u.iValue!=pB->u.iValue ){ 37471d9da70aSdrh return 2; 374833e619fcSdrh } 374933e619fcSdrh }else if( pA->op!=TK_COLUMN && pA->u.zToken ){ 37501d9da70aSdrh if( ExprHasProperty(pB, EP_IntValue) || NEVER(pB->u.zToken==0) ) return 2; 37516b93c9aeSdrh if( strcmp(pA->u.zToken,pB->u.zToken)!=0 ){ 37521d9da70aSdrh return 2; 37531d9da70aSdrh } 37541d9da70aSdrh } 37551d9da70aSdrh if( (pA->flags & EP_ExpCollate)!=(pB->flags & EP_ExpCollate) ) return 1; 37561d9da70aSdrh if( (pA->flags & EP_ExpCollate)!=0 && pA->pColl!=pB->pColl ) return 2; 37572646da7eSdrh return 0; 37582646da7eSdrh } 37592282792aSdrh 37608c6f666bSdrh /* 37618c6f666bSdrh ** Compare two ExprList objects. Return 0 if they are identical and 37628c6f666bSdrh ** non-zero if they differ in any way. 37638c6f666bSdrh ** 37648c6f666bSdrh ** This routine might return non-zero for equivalent ExprLists. The 37658c6f666bSdrh ** only consequence will be disabled optimizations. But this routine 37668c6f666bSdrh ** must never return 0 if the two ExprList objects are different, or 37678c6f666bSdrh ** a malfunction will result. 37688c6f666bSdrh ** 37698c6f666bSdrh ** Two NULL pointers are considered to be the same. But a NULL pointer 37708c6f666bSdrh ** always differs from a non-NULL pointer. 37718c6f666bSdrh */ 37728c6f666bSdrh int sqlite3ExprListCompare(ExprList *pA, ExprList *pB){ 37738c6f666bSdrh int i; 37748c6f666bSdrh if( pA==0 && pB==0 ) return 0; 37758c6f666bSdrh if( pA==0 || pB==0 ) return 1; 37768c6f666bSdrh if( pA->nExpr!=pB->nExpr ) return 1; 37778c6f666bSdrh for(i=0; i<pA->nExpr; i++){ 37788c6f666bSdrh Expr *pExprA = pA->a[i].pExpr; 37798c6f666bSdrh Expr *pExprB = pB->a[i].pExpr; 37808c6f666bSdrh if( pA->a[i].sortOrder!=pB->a[i].sortOrder ) return 1; 37818c6f666bSdrh if( sqlite3ExprCompare(pExprA, pExprB) ) return 1; 37828c6f666bSdrh } 37838c6f666bSdrh return 0; 37848c6f666bSdrh } 378513449892Sdrh 37862282792aSdrh /* 378713449892Sdrh ** Add a new element to the pAggInfo->aCol[] array. Return the index of 378813449892Sdrh ** the new element. Return a negative number if malloc fails. 37892282792aSdrh */ 379017435752Sdrh static int addAggInfoColumn(sqlite3 *db, AggInfo *pInfo){ 379113449892Sdrh int i; 3792cf643729Sdrh pInfo->aCol = sqlite3ArrayAllocate( 379317435752Sdrh db, 3794cf643729Sdrh pInfo->aCol, 3795cf643729Sdrh sizeof(pInfo->aCol[0]), 3796cf643729Sdrh &pInfo->nColumn, 3797cf643729Sdrh &i 3798cf643729Sdrh ); 379913449892Sdrh return i; 38002282792aSdrh } 380113449892Sdrh 380213449892Sdrh /* 380313449892Sdrh ** Add a new element to the pAggInfo->aFunc[] array. Return the index of 380413449892Sdrh ** the new element. Return a negative number if malloc fails. 380513449892Sdrh */ 380617435752Sdrh static int addAggInfoFunc(sqlite3 *db, AggInfo *pInfo){ 380713449892Sdrh int i; 3808cf643729Sdrh pInfo->aFunc = sqlite3ArrayAllocate( 380917435752Sdrh db, 3810cf643729Sdrh pInfo->aFunc, 3811cf643729Sdrh sizeof(pInfo->aFunc[0]), 3812cf643729Sdrh &pInfo->nFunc, 3813cf643729Sdrh &i 3814cf643729Sdrh ); 381513449892Sdrh return i; 38162282792aSdrh } 38172282792aSdrh 38182282792aSdrh /* 38197d10d5a6Sdrh ** This is the xExprCallback for a tree walker. It is used to 38207d10d5a6Sdrh ** implement sqlite3ExprAnalyzeAggregates(). See sqlite3ExprAnalyzeAggregates 3821626a879aSdrh ** for additional information. 38222282792aSdrh */ 38237d10d5a6Sdrh static int analyzeAggregate(Walker *pWalker, Expr *pExpr){ 38242282792aSdrh int i; 38257d10d5a6Sdrh NameContext *pNC = pWalker->u.pNC; 3826a58fdfb1Sdanielk1977 Parse *pParse = pNC->pParse; 3827a58fdfb1Sdanielk1977 SrcList *pSrcList = pNC->pSrcList; 382813449892Sdrh AggInfo *pAggInfo = pNC->pAggInfo; 382913449892Sdrh 38302282792aSdrh switch( pExpr->op ){ 383189c69d00Sdrh case TK_AGG_COLUMN: 3832967e8b73Sdrh case TK_COLUMN: { 38338b213899Sdrh testcase( pExpr->op==TK_AGG_COLUMN ); 38348b213899Sdrh testcase( pExpr->op==TK_COLUMN ); 383513449892Sdrh /* Check to see if the column is in one of the tables in the FROM 383613449892Sdrh ** clause of the aggregate query */ 383720bc393cSdrh if( ALWAYS(pSrcList!=0) ){ 383813449892Sdrh struct SrcList_item *pItem = pSrcList->a; 383913449892Sdrh for(i=0; i<pSrcList->nSrc; i++, pItem++){ 384013449892Sdrh struct AggInfo_col *pCol; 384133e619fcSdrh assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 384213449892Sdrh if( pExpr->iTable==pItem->iCursor ){ 384313449892Sdrh /* If we reach this point, it means that pExpr refers to a table 384413449892Sdrh ** that is in the FROM clause of the aggregate query. 384513449892Sdrh ** 384613449892Sdrh ** Make an entry for the column in pAggInfo->aCol[] if there 384713449892Sdrh ** is not an entry there already. 384813449892Sdrh */ 38497f906d63Sdrh int k; 385013449892Sdrh pCol = pAggInfo->aCol; 38517f906d63Sdrh for(k=0; k<pAggInfo->nColumn; k++, pCol++){ 385213449892Sdrh if( pCol->iTable==pExpr->iTable && 385313449892Sdrh pCol->iColumn==pExpr->iColumn ){ 38542282792aSdrh break; 38552282792aSdrh } 38562282792aSdrh } 38571e536953Sdanielk1977 if( (k>=pAggInfo->nColumn) 38581e536953Sdanielk1977 && (k = addAggInfoColumn(pParse->db, pAggInfo))>=0 38591e536953Sdanielk1977 ){ 38607f906d63Sdrh pCol = &pAggInfo->aCol[k]; 38610817d0dfSdanielk1977 pCol->pTab = pExpr->pTab; 386213449892Sdrh pCol->iTable = pExpr->iTable; 386313449892Sdrh pCol->iColumn = pExpr->iColumn; 38640a07c107Sdrh pCol->iMem = ++pParse->nMem; 386513449892Sdrh pCol->iSorterColumn = -1; 38665774b806Sdrh pCol->pExpr = pExpr; 386713449892Sdrh if( pAggInfo->pGroupBy ){ 386813449892Sdrh int j, n; 386913449892Sdrh ExprList *pGB = pAggInfo->pGroupBy; 387013449892Sdrh struct ExprList_item *pTerm = pGB->a; 387113449892Sdrh n = pGB->nExpr; 387213449892Sdrh for(j=0; j<n; j++, pTerm++){ 387313449892Sdrh Expr *pE = pTerm->pExpr; 387413449892Sdrh if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable && 387513449892Sdrh pE->iColumn==pExpr->iColumn ){ 387613449892Sdrh pCol->iSorterColumn = j; 387713449892Sdrh break; 38782282792aSdrh } 387913449892Sdrh } 388013449892Sdrh } 388113449892Sdrh if( pCol->iSorterColumn<0 ){ 388213449892Sdrh pCol->iSorterColumn = pAggInfo->nSortingColumn++; 388313449892Sdrh } 388413449892Sdrh } 388513449892Sdrh /* There is now an entry for pExpr in pAggInfo->aCol[] (either 388613449892Sdrh ** because it was there before or because we just created it). 388713449892Sdrh ** Convert the pExpr to be a TK_AGG_COLUMN referring to that 388813449892Sdrh ** pAggInfo->aCol[] entry. 388913449892Sdrh */ 389033e619fcSdrh ExprSetIrreducible(pExpr); 389113449892Sdrh pExpr->pAggInfo = pAggInfo; 389213449892Sdrh pExpr->op = TK_AGG_COLUMN; 3893cf697396Sshane pExpr->iAgg = (i16)k; 389413449892Sdrh break; 389513449892Sdrh } /* endif pExpr->iTable==pItem->iCursor */ 389613449892Sdrh } /* end loop over pSrcList */ 3897a58fdfb1Sdanielk1977 } 38987d10d5a6Sdrh return WRC_Prune; 38992282792aSdrh } 39002282792aSdrh case TK_AGG_FUNCTION: { 390113449892Sdrh /* The pNC->nDepth==0 test causes aggregate functions in subqueries 390213449892Sdrh ** to be ignored */ 3903a58fdfb1Sdanielk1977 if( pNC->nDepth==0 ){ 390413449892Sdrh /* Check to see if pExpr is a duplicate of another aggregate 390513449892Sdrh ** function that is already in the pAggInfo structure 390613449892Sdrh */ 390713449892Sdrh struct AggInfo_func *pItem = pAggInfo->aFunc; 390813449892Sdrh for(i=0; i<pAggInfo->nFunc; i++, pItem++){ 39091d9da70aSdrh if( sqlite3ExprCompare(pItem->pExpr, pExpr)==0 ){ 39102282792aSdrh break; 39112282792aSdrh } 39122282792aSdrh } 391313449892Sdrh if( i>=pAggInfo->nFunc ){ 391413449892Sdrh /* pExpr is original. Make a new entry in pAggInfo->aFunc[] 391513449892Sdrh */ 391614db2665Sdanielk1977 u8 enc = ENC(pParse->db); 39171e536953Sdanielk1977 i = addAggInfoFunc(pParse->db, pAggInfo); 391813449892Sdrh if( i>=0 ){ 39196ab3a2ecSdanielk1977 assert( !ExprHasProperty(pExpr, EP_xIsSelect) ); 392013449892Sdrh pItem = &pAggInfo->aFunc[i]; 392113449892Sdrh pItem->pExpr = pExpr; 39220a07c107Sdrh pItem->iMem = ++pParse->nMem; 392333e619fcSdrh assert( !ExprHasProperty(pExpr, EP_IntValue) ); 392413449892Sdrh pItem->pFunc = sqlite3FindFunction(pParse->db, 392533e619fcSdrh pExpr->u.zToken, sqlite3Strlen30(pExpr->u.zToken), 39266ab3a2ecSdanielk1977 pExpr->x.pList ? pExpr->x.pList->nExpr : 0, enc, 0); 3927fd357974Sdrh if( pExpr->flags & EP_Distinct ){ 3928fd357974Sdrh pItem->iDistinct = pParse->nTab++; 3929fd357974Sdrh }else{ 3930fd357974Sdrh pItem->iDistinct = -1; 3931fd357974Sdrh } 39322282792aSdrh } 393313449892Sdrh } 393413449892Sdrh /* Make pExpr point to the appropriate pAggInfo->aFunc[] entry 393513449892Sdrh */ 393633e619fcSdrh assert( !ExprHasAnyProperty(pExpr, EP_TokenOnly|EP_Reduced) ); 393733e619fcSdrh ExprSetIrreducible(pExpr); 3938cf697396Sshane pExpr->iAgg = (i16)i; 393913449892Sdrh pExpr->pAggInfo = pAggInfo; 39407d10d5a6Sdrh return WRC_Prune; 39412282792aSdrh } 39422282792aSdrh } 3943a58fdfb1Sdanielk1977 } 39447d10d5a6Sdrh return WRC_Continue; 39457d10d5a6Sdrh } 39467d10d5a6Sdrh static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){ 39477d10d5a6Sdrh NameContext *pNC = pWalker->u.pNC; 39487d10d5a6Sdrh if( pNC->nDepth==0 ){ 3949a58fdfb1Sdanielk1977 pNC->nDepth++; 39507d10d5a6Sdrh sqlite3WalkSelect(pWalker, pSelect); 3951a58fdfb1Sdanielk1977 pNC->nDepth--; 39527d10d5a6Sdrh return WRC_Prune; 39537d10d5a6Sdrh }else{ 39547d10d5a6Sdrh return WRC_Continue; 3955a58fdfb1Sdanielk1977 } 39562282792aSdrh } 3957626a879aSdrh 3958626a879aSdrh /* 3959626a879aSdrh ** Analyze the given expression looking for aggregate functions and 3960626a879aSdrh ** for variables that need to be added to the pParse->aAgg[] array. 3961626a879aSdrh ** Make additional entries to the pParse->aAgg[] array as necessary. 3962626a879aSdrh ** 3963626a879aSdrh ** This routine should only be called after the expression has been 39647d10d5a6Sdrh ** analyzed by sqlite3ResolveExprNames(). 3965626a879aSdrh */ 3966d2b3e23bSdrh void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){ 39677d10d5a6Sdrh Walker w; 39687d10d5a6Sdrh w.xExprCallback = analyzeAggregate; 39697d10d5a6Sdrh w.xSelectCallback = analyzeAggregatesInSelect; 39707d10d5a6Sdrh w.u.pNC = pNC; 397120bc393cSdrh assert( pNC->pSrcList!=0 ); 39727d10d5a6Sdrh sqlite3WalkExpr(&w, pExpr); 39732282792aSdrh } 39745d9a4af9Sdrh 39755d9a4af9Sdrh /* 39765d9a4af9Sdrh ** Call sqlite3ExprAnalyzeAggregates() for every expression in an 39775d9a4af9Sdrh ** expression list. Return the number of errors. 39785d9a4af9Sdrh ** 39795d9a4af9Sdrh ** If an error is found, the analysis is cut short. 39805d9a4af9Sdrh */ 3981d2b3e23bSdrh void sqlite3ExprAnalyzeAggList(NameContext *pNC, ExprList *pList){ 39825d9a4af9Sdrh struct ExprList_item *pItem; 39835d9a4af9Sdrh int i; 39845d9a4af9Sdrh if( pList ){ 3985d2b3e23bSdrh for(pItem=pList->a, i=0; i<pList->nExpr; i++, pItem++){ 3986d2b3e23bSdrh sqlite3ExprAnalyzeAggregates(pNC, pItem->pExpr); 39875d9a4af9Sdrh } 39885d9a4af9Sdrh } 39895d9a4af9Sdrh } 3990892d3179Sdrh 3991892d3179Sdrh /* 3992ceea3321Sdrh ** Allocate a single new register for use to hold some intermediate result. 3993892d3179Sdrh */ 3994892d3179Sdrh int sqlite3GetTempReg(Parse *pParse){ 3995e55cbd72Sdrh if( pParse->nTempReg==0 ){ 3996892d3179Sdrh return ++pParse->nMem; 3997892d3179Sdrh } 39982f425f6bSdanielk1977 return pParse->aTempReg[--pParse->nTempReg]; 3999892d3179Sdrh } 4000ceea3321Sdrh 4001ceea3321Sdrh /* 4002ceea3321Sdrh ** Deallocate a register, making available for reuse for some other 4003ceea3321Sdrh ** purpose. 4004ceea3321Sdrh ** 4005ceea3321Sdrh ** If a register is currently being used by the column cache, then 4006ceea3321Sdrh ** the dallocation is deferred until the column cache line that uses 4007ceea3321Sdrh ** the register becomes stale. 4008ceea3321Sdrh */ 4009892d3179Sdrh void sqlite3ReleaseTempReg(Parse *pParse, int iReg){ 40102dcef11bSdrh if( iReg && pParse->nTempReg<ArraySize(pParse->aTempReg) ){ 4011ceea3321Sdrh int i; 4012ceea3321Sdrh struct yColCache *p; 4013ceea3321Sdrh for(i=0, p=pParse->aColCache; i<SQLITE_N_COLCACHE; i++, p++){ 4014ceea3321Sdrh if( p->iReg==iReg ){ 4015ceea3321Sdrh p->tempReg = 1; 4016ceea3321Sdrh return; 4017ceea3321Sdrh } 4018ceea3321Sdrh } 4019892d3179Sdrh pParse->aTempReg[pParse->nTempReg++] = iReg; 4020892d3179Sdrh } 4021892d3179Sdrh } 4022892d3179Sdrh 4023892d3179Sdrh /* 4024892d3179Sdrh ** Allocate or deallocate a block of nReg consecutive registers 4025892d3179Sdrh */ 4026892d3179Sdrh int sqlite3GetTempRange(Parse *pParse, int nReg){ 4027e55cbd72Sdrh int i, n; 4028892d3179Sdrh i = pParse->iRangeReg; 4029e55cbd72Sdrh n = pParse->nRangeReg; 4030f49f3523Sdrh if( nReg<=n ){ 4031f49f3523Sdrh assert( !usedAsColumnCache(pParse, i, i+n-1) ); 4032892d3179Sdrh pParse->iRangeReg += nReg; 4033892d3179Sdrh pParse->nRangeReg -= nReg; 4034892d3179Sdrh }else{ 4035892d3179Sdrh i = pParse->nMem+1; 4036892d3179Sdrh pParse->nMem += nReg; 4037892d3179Sdrh } 4038892d3179Sdrh return i; 4039892d3179Sdrh } 4040892d3179Sdrh void sqlite3ReleaseTempRange(Parse *pParse, int iReg, int nReg){ 4041f49f3523Sdrh sqlite3ExprCacheRemove(pParse, iReg, nReg); 4042892d3179Sdrh if( nReg>pParse->nRangeReg ){ 4043892d3179Sdrh pParse->nRangeReg = nReg; 4044892d3179Sdrh pParse->iRangeReg = iReg; 4045892d3179Sdrh } 4046892d3179Sdrh } 4047cdc69557Sdrh 4048cdc69557Sdrh /* 4049cdc69557Sdrh ** Mark all temporary registers as being unavailable for reuse. 4050cdc69557Sdrh */ 4051cdc69557Sdrh void sqlite3ClearTempRegCache(Parse *pParse){ 4052cdc69557Sdrh pParse->nTempReg = 0; 4053cdc69557Sdrh pParse->nRangeReg = 0; 4054cdc69557Sdrh } 4055