2000-05-29 18:26:00 +04:00
|
|
|
/*
|
|
|
|
** Copyright (c) 1999, 2000 D. Richard Hipp
|
|
|
|
**
|
|
|
|
** This program is free software; you can redistribute it and/or
|
|
|
|
** modify it under the terms of the GNU General Public
|
|
|
|
** License as published by the Free Software Foundation; either
|
|
|
|
** version 2 of the License, or (at your option) any later version.
|
|
|
|
**
|
|
|
|
** This program is distributed in the hope that it will be useful,
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
** General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public
|
|
|
|
** License along with this library; if not, write to the
|
|
|
|
** Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
** Boston, MA 02111-1307, USA.
|
|
|
|
**
|
|
|
|
** Author contact information:
|
|
|
|
** drh@hwaci.com
|
|
|
|
** http://www.hwaci.com/drh/
|
|
|
|
**
|
|
|
|
*************************************************************************
|
|
|
|
** This module contains C code that generates VDBE code used to process
|
|
|
|
** the WHERE clause of SQL statements. Also found here are subroutines
|
|
|
|
** to generate VDBE code to evaluate expressions.
|
|
|
|
**
|
2000-05-30 07:28:35 +04:00
|
|
|
** $Id: where.c,v 1.2 2000/05/30 03:28:36 drh Exp $
|
2000-05-29 18:26:00 +04:00
|
|
|
*/
|
|
|
|
#include "sqliteInt.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
** The query generator uses an array of instances of this structure to
|
|
|
|
** help it analyze the subexpressions of the WHERE clause. Each WHERE
|
|
|
|
** clause subexpression is separated from the others by an AND operator.
|
|
|
|
*/
|
|
|
|
typedef struct ExprInfo ExprInfo;
|
|
|
|
struct ExprInfo {
|
|
|
|
Expr *p; /* Pointer to the subexpression */
|
|
|
|
int indexable; /* True if this subexprssion is usable by an index */
|
|
|
|
int idxLeft; /* p->pLeft is a field in this table number. -1 if
|
|
|
|
** p->pLeft is not the field of any table */
|
|
|
|
int idxRight; /* p->pRight is a field in this table number. -1 if
|
|
|
|
** p->pRight is not the field of any table */
|
|
|
|
unsigned prereqLeft; /* Tables referenced by p->pLeft */
|
|
|
|
unsigned prereqRight; /* Tables referenced by p->pRight */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Determine the number of elements in an array.
|
|
|
|
*/
|
|
|
|
#define ARRAYSIZE(X) (sizeof(X)/sizeof(X[0]))
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This routine is used to divide the WHERE expression into subexpressions
|
|
|
|
** separated by the AND operator.
|
|
|
|
**
|
|
|
|
** aSlot[] is an array of subexpressions structures.
|
|
|
|
** There are nSlot spaces left in this array. This routine attempts to
|
|
|
|
** split pExpr into subexpressions and fills aSlot[] with those subexpressions.
|
|
|
|
** The return value is the number of slots filled.
|
|
|
|
*/
|
|
|
|
static int exprSplit(int nSlot, ExprInfo *aSlot, Expr *pExpr){
|
|
|
|
int cnt = 0;
|
|
|
|
if( pExpr==0 || nSlot<1 ) return 0;
|
|
|
|
if( nSlot==1 || pExpr->op!=TK_AND ){
|
|
|
|
aSlot[0].p = pExpr;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if( pExpr->pLeft->op!=TK_AND ){
|
|
|
|
aSlot[0].p = pExpr->pLeft;
|
|
|
|
cnt = 1 + exprSplit(nSlot-1, &aSlot[1], pExpr->pRight);
|
|
|
|
}else{
|
|
|
|
cnt = exprSplit(nSlot, aSlot, pExpr->pRight);
|
|
|
|
cnt += exprSplit(nSlot-cnt, &aSlot[cnt], pExpr->pLeft);
|
|
|
|
}
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** This routine walks (recursively) an expression tree and generates
|
|
|
|
** a bitmask indicating which tables are used in that expression
|
|
|
|
** tree. Bit 0 of the mask is set if table 0 is used. But 1 is set
|
|
|
|
** if table 1 is used. And so forth.
|
|
|
|
**
|
|
|
|
** In order for this routine to work, the calling function must have
|
|
|
|
** previously invoked sqliteExprResolveIds() on the expression. See
|
|
|
|
** the header comment on that routine for additional information.
|
|
|
|
*/
|
|
|
|
static int exprTableUsage(Expr *p){
|
|
|
|
unsigned int mask = 0;
|
|
|
|
if( p==0 ) return 0;
|
|
|
|
if( p->op==TK_FIELD ){
|
|
|
|
return 1<<p->iTable;
|
|
|
|
}
|
|
|
|
if( p->pRight ){
|
|
|
|
mask = exprTableUsage(p->pRight);
|
|
|
|
}
|
|
|
|
if( p->pLeft ){
|
|
|
|
mask |= exprTableUsage(p->pLeft);
|
|
|
|
}
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** The input to this routine is an ExprInfo structure with only the
|
|
|
|
** "p" field filled in. The job of this routine is to analyze the
|
|
|
|
** subexpression and populate all the other fields of the ExprInfo
|
|
|
|
** structure.
|
|
|
|
*/
|
|
|
|
static void exprAnalyze(ExprInfo *pInfo){
|
|
|
|
Expr *pExpr = pInfo->p;
|
|
|
|
pInfo->prereqLeft = exprTableUsage(pExpr->pLeft);
|
|
|
|
pInfo->prereqRight = exprTableUsage(pExpr->pRight);
|
|
|
|
pInfo->indexable = 0;
|
|
|
|
pInfo->idxLeft = -1;
|
|
|
|
pInfo->idxRight = -1;
|
|
|
|
if( pExpr->op==TK_EQ && (pInfo->prereqRight & pInfo->prereqLeft)==0 ){
|
|
|
|
if( pExpr->pRight->op==TK_FIELD ){
|
|
|
|
pInfo->idxRight = pExpr->pRight->iTable;
|
|
|
|
pInfo->indexable = 1;
|
|
|
|
}
|
|
|
|
if( pExpr->pLeft->op==TK_FIELD ){
|
|
|
|
pInfo->idxLeft = pExpr->pLeft->iTable;
|
|
|
|
pInfo->indexable = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Generating the beginning of the loop used for WHERE clause processing.
|
|
|
|
** The return value is a pointer to an (opaque) structure that contains
|
|
|
|
** information needed to terminate the loop. Later, the calling routine
|
|
|
|
** should invoke sqliteWhereEnd() with the return value of this function
|
|
|
|
** in order to complete the WHERE clause processing.
|
|
|
|
**
|
|
|
|
** If an error occurs, this routine returns NULL.
|
|
|
|
*/
|
|
|
|
WhereInfo *sqliteWhereBegin(
|
|
|
|
Parse *pParse, /* The parser context */
|
|
|
|
IdList *pTabList, /* A list of all tables */
|
|
|
|
Expr *pWhere, /* The WHERE clause */
|
|
|
|
int pushKey /* If TRUE, leave the table key on the stack */
|
|
|
|
){
|
|
|
|
int i; /* Loop counter */
|
|
|
|
WhereInfo *pWInfo; /* Will become the return value of this function */
|
|
|
|
Vdbe *v = pParse->pVdbe; /* The virtual database engine */
|
|
|
|
int brk, cont; /* Addresses used during code generation */
|
|
|
|
int *aOrder; /* Order in which pTabList entries are searched */
|
|
|
|
int nExpr; /* Number of subexpressions in the WHERE clause */
|
|
|
|
int loopMask; /* One bit set for each outer loop */
|
|
|
|
int haveKey; /* True if KEY is on the stack */
|
|
|
|
Index *aIdx[32]; /* Index to use on each nested loop. */
|
|
|
|
ExprInfo aExpr[50]; /* The WHERE clause is divided into these expressions */
|
|
|
|
|
|
|
|
/* Allocate space for aOrder[]. */
|
|
|
|
aOrder = sqliteMalloc( sizeof(int) * pTabList->nId );
|
|
|
|
|
|
|
|
/* Allocate and initialize the WhereInfo structure that will become the
|
|
|
|
** return value.
|
|
|
|
*/
|
|
|
|
pWInfo = sqliteMalloc( sizeof(WhereInfo) );
|
|
|
|
if( pWInfo==0 ){
|
|
|
|
sqliteFree(aOrder);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
pWInfo->pParse = pParse;
|
|
|
|
pWInfo->pTabList = pTabList;
|
|
|
|
|
|
|
|
/* Split the WHERE clause into as many as 32 separate subexpressions
|
|
|
|
** where each subexpression is separated by an AND operator. Any additional
|
|
|
|
** subexpressions are attached in the aExpr[32] and will not enter
|
|
|
|
** into the query optimizer computations. 32 is chosen as the cutoff
|
|
|
|
** since that is the number of bits in an integer that we use for an
|
|
|
|
** expression-used mask.
|
|
|
|
*/
|
|
|
|
memset(aExpr, 0, sizeof(aExpr));
|
|
|
|
nExpr = exprSplit(ARRAYSIZE(aExpr), aExpr, pWhere);
|
|
|
|
|
|
|
|
/* Analyze all of the subexpressions.
|
|
|
|
*/
|
|
|
|
for(i=0; i<nExpr; i++){
|
|
|
|
exprAnalyze(&aExpr[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Figure out a good nesting order for the tables. aOrder[0] will
|
|
|
|
** be the index in pTabList of the outermost table. aOrder[1] will
|
|
|
|
** be the first nested loop and so on. aOrder[pTabList->nId-1] will
|
|
|
|
** be the innermost loop.
|
|
|
|
**
|
|
|
|
** Someday will put in a good algorithm here to reorder to the loops
|
|
|
|
** for an effiecient query. But for now, just use whatever order the
|
|
|
|
** tables appear in in the pTabList.
|
|
|
|
*/
|
|
|
|
for(i=0; i<pTabList->nId; i++){
|
|
|
|
aOrder[i] = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Figure out what index to use (if any) for each nested loop.
|
|
|
|
** Make aIdx[i] point to the index to use for the i-th nested loop
|
|
|
|
** where i==0 is the outer loop and i==pTabList->nId-1 is the inner
|
|
|
|
** loop.
|
|
|
|
**
|
|
|
|
** Actually, if there are more than 32 tables in the join, only the
|
|
|
|
** first 32 tables are candidates for indices.
|
|
|
|
*/
|
|
|
|
loopMask = 0;
|
|
|
|
for(i=0; i<pTabList->nId && i<ARRAYSIZE(aIdx); i++){
|
|
|
|
int idx = aOrder[i];
|
|
|
|
Table *pTab = pTabList->a[idx].pTab;
|
|
|
|
Index *pIdx;
|
|
|
|
Index *pBestIdx = 0;
|
|
|
|
|
|
|
|
/* Do a search for usable indices. Leave pBestIdx pointing to
|
|
|
|
** most specific usable index.
|
|
|
|
**
|
|
|
|
** "Most specific" means that pBestIdx is the usable index that
|
|
|
|
** has the largest value for nField. A usable index is one for
|
|
|
|
** which there are subexpressions to compute every field of the
|
|
|
|
** index.
|
|
|
|
*/
|
|
|
|
for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
|
|
|
|
int j;
|
|
|
|
int fieldMask = 0;
|
|
|
|
|
|
|
|
if( pIdx->nField>32 ) continue;
|
|
|
|
for(j=0; j<nExpr; j++){
|
|
|
|
if( aExpr[j].idxLeft==idx
|
|
|
|
&& (aExpr[j].prereqRight & loopMask)==aExpr[j].prereqRight ){
|
|
|
|
int iField = aExpr[j].p->pLeft->iField;
|
|
|
|
int k;
|
|
|
|
for(k=0; k<pIdx->nField; k++){
|
|
|
|
if( pIdx->aiField[k]==iField ){
|
|
|
|
fieldMask |= 1<<k;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( aExpr[j].idxRight==idx
|
|
|
|
&& (aExpr[j].prereqLeft & loopMask)==aExpr[j].prereqLeft ){
|
|
|
|
int iField = aExpr[j].p->pRight->iField;
|
|
|
|
int k;
|
|
|
|
for(k=0; k<pIdx->nField; k++){
|
|
|
|
if( pIdx->aiField[k]==iField ){
|
|
|
|
fieldMask |= 1<<k;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( fieldMask + 1 == (1<<pIdx->nField) ){
|
|
|
|
if( pBestIdx==0 || pBestIdx->nField<pIdx->nField ){
|
|
|
|
pBestIdx = pIdx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
aIdx[i] = pBestIdx;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open all tables in the pTabList and all indices in aIdx[].
|
|
|
|
*/
|
|
|
|
for(i=0; i<pTabList->nId; i++){
|
|
|
|
sqliteVdbeAddOp(v, OP_Open, i, 0, pTabList->a[i].pTab->zName, 0);
|
|
|
|
if( i<ARRAYSIZE(aIdx) && aIdx[i]!=0 ){
|
|
|
|
sqliteVdbeAddOp(v, OP_Open, pTabList->nId+i, 0, aIdx[i]->zName, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Generate the code to do the search
|
|
|
|
*/
|
|
|
|
pWInfo->iBreak = brk = sqliteVdbeMakeLabel(v);
|
|
|
|
loopMask = 0;
|
|
|
|
for(i=0; i<pTabList->nId; i++){
|
|
|
|
int j, k;
|
|
|
|
int idx = aOrder[i];
|
|
|
|
Index *pIdx = i<ARRAYSIZE(aIdx) ? aIdx[i] : 0;
|
|
|
|
|
|
|
|
cont = sqliteVdbeMakeLabel(v);
|
|
|
|
if( pIdx==0 ){
|
|
|
|
/* Case 1: There was no usable index. We must do a complete
|
|
|
|
** scan of the table.
|
|
|
|
*/
|
|
|
|
sqliteVdbeAddOp(v, OP_Next, idx, brk, 0, cont);
|
|
|
|
haveKey = 0;
|
|
|
|
}else{
|
|
|
|
/* Case 2: We do have a usable index in pIdx.
|
|
|
|
*/
|
|
|
|
for(j=0; j<pIdx->nField; j++){
|
|
|
|
for(k=0; k<nExpr; k++){
|
|
|
|
if( aExpr[k].p==0 ) continue;
|
|
|
|
if( aExpr[k].idxLeft==idx
|
|
|
|
&& (aExpr[k].prereqRight & loopMask)==aExpr[k].prereqRight
|
|
|
|
&& aExpr[k].p->pLeft->iField==pIdx->aiField[j]
|
|
|
|
){
|
|
|
|
sqliteExprCode(pParse, aExpr[k].p->pRight);
|
|
|
|
aExpr[k].p = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if( aExpr[k].idxRight==idx
|
|
|
|
&& (aExpr[k].prereqLeft & loopMask)==aExpr[k].prereqLeft
|
|
|
|
&& aExpr[k].p->pRight->iField==pIdx->aiField[j]
|
|
|
|
){
|
|
|
|
sqliteExprCode(pParse, aExpr[k].p->pLeft);
|
|
|
|
aExpr[k].p = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sqliteVdbeAddOp(v, OP_MakeKey, pIdx->nField, 0, 0, 0);
|
|
|
|
sqliteVdbeAddOp(v, OP_Fetch, pTabList->nId+i, 0, 0, 0);
|
|
|
|
sqliteVdbeAddOp(v, OP_NextIdx, pTabList->nId+i, brk, 0, cont);
|
|
|
|
if( i==pTabList->nId-1 && pushKey ){
|
|
|
|
haveKey = 1;
|
|
|
|
}else{
|
|
|
|
sqliteVdbeAddOp(v, OP_Fetch, idx, 0, 0, 0);
|
|
|
|
haveKey = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
loopMask |= 1<<idx;
|
|
|
|
|
|
|
|
/* Insert code to test every subexpression that can be completely
|
|
|
|
** computed using the current set of tables.
|
|
|
|
*/
|
|
|
|
for(j=0; j<nExpr; j++){
|
|
|
|
if( aExpr[j].p==0 ) continue;
|
|
|
|
if( (aExpr[j].prereqRight & loopMask)!=aExpr[j].prereqRight ) continue;
|
|
|
|
if( (aExpr[j].prereqLeft & loopMask)!=aExpr[j].prereqLeft ) continue;
|
|
|
|
if( haveKey ){
|
|
|
|
sqliteVdbeAddOp(v, OP_Fetch, idx, 0, 0, 0);
|
|
|
|
haveKey = 0;
|
|
|
|
}
|
|
|
|
sqliteExprIfFalse(pParse, aExpr[j].p, cont);
|
|
|
|
aExpr[j].p = 0;
|
|
|
|
}
|
|
|
|
brk = cont;
|
|
|
|
}
|
|
|
|
pWInfo->iContinue = cont;
|
|
|
|
if( pushKey && !haveKey ){
|
|
|
|
sqliteVdbeAddOp(v, OP_Key, 0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
sqliteFree(aOrder);
|
|
|
|
return pWInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Generate the end of the WHERE loop.
|
|
|
|
*/
|
|
|
|
void sqliteWhereEnd(WhereInfo *pWInfo){
|
|
|
|
Vdbe *v = pWInfo->pParse->pVdbe;
|
|
|
|
sqliteVdbeAddOp(v, OP_Goto, 0, pWInfo->iContinue, 0, 0);
|
|
|
|
sqliteVdbeAddOp(v, OP_Noop, 0, 0, 0, pWInfo->iBreak);
|
|
|
|
sqliteFree(pWInfo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Generate code into the current Vdbe to evaluate the given
|
|
|
|
** expression and leave the result on the stack.
|
|
|
|
*/
|
|
|
|
void sqliteExprCode(Parse *pParse, Expr *pExpr){
|
|
|
|
Vdbe *v = pParse->pVdbe;
|
|
|
|
int op;
|
|
|
|
switch( pExpr->op ){
|
|
|
|
case TK_PLUS: op = OP_Add; break;
|
|
|
|
case TK_MINUS: op = OP_Subtract; break;
|
|
|
|
case TK_STAR: op = OP_Multiply; break;
|
|
|
|
case TK_SLASH: op = OP_Divide; break;
|
|
|
|
case TK_AND: op = OP_And; break;
|
|
|
|
case TK_OR: op = OP_Or; break;
|
2000-05-30 07:28:35 +04:00
|
|
|
case TK_LT: op = OP_Ge; break;
|
|
|
|
case TK_LE: op = OP_Gt; break;
|
|
|
|
case TK_GT: op = OP_Le; break;
|
|
|
|
case TK_GE: op = OP_Lt; break;
|
|
|
|
case TK_NE: op = OP_Eq; break;
|
|
|
|
case TK_EQ: op = OP_Ne; break;
|
2000-05-29 18:26:00 +04:00
|
|
|
case TK_ISNULL: op = OP_IsNull; break;
|
|
|
|
case TK_NOTNULL: op = OP_NotNull; break;
|
|
|
|
case TK_NOT: op = OP_Not; break;
|
|
|
|
case TK_UMINUS: op = OP_Negative; break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
switch( pExpr->op ){
|
|
|
|
case TK_FIELD: {
|
|
|
|
sqliteVdbeAddOp(v, OP_Field, pExpr->iTable, pExpr->iField, 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_INTEGER: {
|
|
|
|
int i = atoi(pExpr->token.z);
|
|
|
|
sqliteVdbeAddOp(v, OP_Integer, i, 0, 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_FLOAT: {
|
|
|
|
int addr = sqliteVdbeAddOp(v, OP_String, 0, 0, 0, 0);
|
|
|
|
sqliteVdbeChangeP3(v, addr, pExpr->token.z, pExpr->token.n);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_STRING: {
|
|
|
|
int addr = sqliteVdbeAddOp(v, OP_String, 0, 0, 0, 0);
|
|
|
|
sqliteVdbeChangeP3(v, addr, pExpr->token.z, pExpr->token.n);
|
|
|
|
sqliteVdbeDequoteP3(v, addr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_NULL: {
|
|
|
|
sqliteVdbeAddOp(v, OP_String, 0, 0, "", 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_AND:
|
|
|
|
case TK_OR:
|
|
|
|
case TK_PLUS:
|
|
|
|
case TK_STAR:
|
|
|
|
case TK_MINUS:
|
|
|
|
case TK_SLASH: {
|
|
|
|
sqliteExprCode(pParse, pExpr->pLeft);
|
|
|
|
sqliteExprCode(pParse, pExpr->pRight);
|
|
|
|
sqliteVdbeAddOp(v, op, 0, 0, 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_LT:
|
|
|
|
case TK_LE:
|
|
|
|
case TK_GT:
|
|
|
|
case TK_GE:
|
|
|
|
case TK_NE:
|
|
|
|
case TK_EQ: {
|
|
|
|
int dest;
|
|
|
|
sqliteVdbeAddOp(v, OP_Integer, 0, 0, 0, 0);
|
|
|
|
sqliteExprCode(pParse, pExpr->pLeft);
|
|
|
|
sqliteExprCode(pParse, pExpr->pRight);
|
|
|
|
dest = sqliteVdbeCurrentAddr(v) + 2;
|
|
|
|
sqliteVdbeAddOp(v, op, 0, dest, 0, 0);
|
|
|
|
sqliteVdbeAddOp(v, OP_AddImm, 1, 0, 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_NOT:
|
|
|
|
case TK_UMINUS: {
|
|
|
|
sqliteExprCode(pParse, pExpr->pLeft);
|
|
|
|
sqliteVdbeAddOp(v, op, 0, 0, 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_ISNULL:
|
|
|
|
case TK_NOTNULL: {
|
|
|
|
int dest;
|
|
|
|
sqliteVdbeAddOp(v, OP_Integer, 0, 0, 0, 0);
|
|
|
|
sqliteExprCode(pParse, pExpr->pLeft);
|
|
|
|
dest = sqliteVdbeCurrentAddr(v) + 2;
|
|
|
|
sqliteVdbeAddOp(v, op, 0, dest, 0, 0);
|
|
|
|
sqliteVdbeAddOp(v, OP_AddImm, 1, 0, 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Generate code for a boolean expression such that a jump is made
|
|
|
|
** to the label "dest" if the expression is true but execution
|
|
|
|
** continues straight thru if the expression is false.
|
|
|
|
*/
|
|
|
|
void sqliteExprIfTrue(Parse *pParse, Expr *pExpr, int dest){
|
|
|
|
Vdbe *v = pParse->pVdbe;
|
|
|
|
int op = 0;
|
|
|
|
switch( pExpr->op ){
|
|
|
|
case TK_LT: op = OP_Lt; break;
|
|
|
|
case TK_LE: op = OP_Le; break;
|
|
|
|
case TK_GT: op = OP_Gt; break;
|
|
|
|
case TK_GE: op = OP_Ge; break;
|
|
|
|
case TK_NE: op = OP_Ne; break;
|
|
|
|
case TK_EQ: op = OP_Eq; break;
|
|
|
|
case TK_ISNULL: op = OP_IsNull; break;
|
|
|
|
case TK_NOTNULL: op = OP_NotNull; break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
switch( pExpr->op ){
|
|
|
|
case TK_AND: {
|
|
|
|
int d2 = sqliteVdbeMakeLabel(v);
|
|
|
|
sqliteExprIfFalse(pParse, pExpr->pLeft, d2);
|
|
|
|
sqliteExprIfTrue(pParse, pExpr->pRight, dest);
|
|
|
|
sqliteVdbeResolveLabel(v, d2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_OR: {
|
|
|
|
sqliteExprIfTrue(pParse, pExpr->pLeft, dest);
|
|
|
|
sqliteExprIfTrue(pParse, pExpr->pRight, dest);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_LT:
|
|
|
|
case TK_LE:
|
|
|
|
case TK_GT:
|
|
|
|
case TK_GE:
|
|
|
|
case TK_NE:
|
|
|
|
case TK_EQ: {
|
|
|
|
sqliteExprCode(pParse, pExpr->pLeft);
|
|
|
|
sqliteExprCode(pParse, pExpr->pRight);
|
|
|
|
sqliteVdbeAddOp(v, op, 0, dest, 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_ISNULL:
|
|
|
|
case TK_NOTNULL: {
|
|
|
|
sqliteExprCode(pParse, pExpr->pLeft);
|
|
|
|
sqliteVdbeAddOp(v, op, 0, dest, 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
sqliteExprCode(pParse, pExpr);
|
|
|
|
sqliteVdbeAddOp(v, OP_If, 0, dest, 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Generate code for boolean expression such that a jump is made
|
|
|
|
** to the label "dest" if the expression is false but execution
|
|
|
|
** continues straight thru if the expression is true.
|
|
|
|
*/
|
|
|
|
void sqliteExprIfFalse(Parse *pParse, Expr *pExpr, int dest){
|
|
|
|
Vdbe *v = pParse->pVdbe;
|
|
|
|
int op = 0;
|
|
|
|
switch( pExpr->op ){
|
|
|
|
case TK_LT: op = OP_Ge; break;
|
|
|
|
case TK_LE: op = OP_Gt; break;
|
|
|
|
case TK_GT: op = OP_Le; break;
|
|
|
|
case TK_GE: op = OP_Lt; break;
|
|
|
|
case TK_NE: op = OP_Eq; break;
|
|
|
|
case TK_EQ: op = OP_Ne; break;
|
|
|
|
case TK_ISNULL: op = OP_NotNull; break;
|
|
|
|
case TK_NOTNULL: op = OP_IsNull; break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
switch( pExpr->op ){
|
|
|
|
case TK_AND: {
|
|
|
|
sqliteExprIfFalse(pParse, pExpr->pLeft, dest);
|
|
|
|
sqliteExprIfFalse(pParse, pExpr->pRight, dest);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_OR: {
|
|
|
|
int d2 = sqliteVdbeMakeLabel(v);
|
|
|
|
sqliteExprIfTrue(pParse, pExpr->pLeft, d2);
|
|
|
|
sqliteExprIfFalse(pParse, pExpr->pRight, dest);
|
|
|
|
sqliteVdbeResolveLabel(v, d2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_LT:
|
|
|
|
case TK_LE:
|
|
|
|
case TK_GT:
|
|
|
|
case TK_GE:
|
|
|
|
case TK_NE:
|
|
|
|
case TK_EQ: {
|
|
|
|
sqliteExprCode(pParse, pExpr->pLeft);
|
|
|
|
sqliteExprCode(pParse, pExpr->pRight);
|
|
|
|
sqliteVdbeAddOp(v, op, 0, dest, 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TK_ISNULL:
|
|
|
|
case TK_NOTNULL: {
|
|
|
|
sqliteExprCode(pParse, pExpr->pLeft);
|
|
|
|
sqliteVdbeAddOp(v, op, 0, dest, 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
sqliteExprCode(pParse, pExpr);
|
|
|
|
sqliteVdbeAddOp(v, OP_Not, 0, 0, 0, 0);
|
|
|
|
sqliteVdbeAddOp(v, OP_If, 0, dest, 0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|