os/persistentdata/persistentstorage/sql/SQLite364/vdbe.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
** 2001 September 15
sl@0
     3
**
sl@0
     4
** The author disclaims copyright to this source code.  In place of
sl@0
     5
** a legal notice, here is a blessing:
sl@0
     6
**
sl@0
     7
**    May you do good and not evil.
sl@0
     8
**    May you find forgiveness for yourself and forgive others.
sl@0
     9
**    May you share freely, never taking more than you give.
sl@0
    10
**
sl@0
    11
*************************************************************************
sl@0
    12
** Header file for the Virtual DataBase Engine (VDBE)
sl@0
    13
**
sl@0
    14
** This header defines the interface to the virtual database engine
sl@0
    15
** or VDBE.  The VDBE implements an abstract machine that runs a
sl@0
    16
** simple program to access and modify the underlying database.
sl@0
    17
**
sl@0
    18
** $Id: vdbe.h,v 1.138 2008/08/20 22:06:48 drh Exp $
sl@0
    19
*/
sl@0
    20
#ifndef _SQLITE_VDBE_H_
sl@0
    21
#define _SQLITE_VDBE_H_
sl@0
    22
#include <stdio.h>
sl@0
    23
sl@0
    24
/*
sl@0
    25
** A single VDBE is an opaque structure named "Vdbe".  Only routines
sl@0
    26
** in the source file sqliteVdbe.c are allowed to see the insides
sl@0
    27
** of this structure.
sl@0
    28
*/
sl@0
    29
typedef struct Vdbe Vdbe;
sl@0
    30
sl@0
    31
/*
sl@0
    32
** The names of the following types declared in vdbeInt.h are required
sl@0
    33
** for the VdbeOp definition.
sl@0
    34
*/
sl@0
    35
typedef struct VdbeFunc VdbeFunc;
sl@0
    36
typedef struct Mem Mem;
sl@0
    37
sl@0
    38
/*
sl@0
    39
** A single instruction of the virtual machine has an opcode
sl@0
    40
** and as many as three operands.  The instruction is recorded
sl@0
    41
** as an instance of the following structure:
sl@0
    42
*/
sl@0
    43
struct VdbeOp {
sl@0
    44
  u8 opcode;          /* What operation to perform */
sl@0
    45
  signed char p4type; /* One of the P4_xxx constants for p4 */
sl@0
    46
  u8 opflags;         /* Not currently used */
sl@0
    47
  u8 p5;              /* Fifth parameter is an unsigned character */
sl@0
    48
  int p1;             /* First operand */
sl@0
    49
  int p2;             /* Second parameter (often the jump destination) */
sl@0
    50
  int p3;             /* The third parameter */
sl@0
    51
  union {             /* forth parameter */
sl@0
    52
    int i;                 /* Integer value if p4type==P4_INT32 */
sl@0
    53
    void *p;               /* Generic pointer */
sl@0
    54
    char *z;               /* Pointer to data for string (char array) types */
sl@0
    55
    i64 *pI64;             /* Used when p4type is P4_INT64 */
sl@0
    56
    double *pReal;         /* Used when p4type is P4_REAL */
sl@0
    57
    FuncDef *pFunc;        /* Used when p4type is P4_FUNCDEF */
sl@0
    58
    VdbeFunc *pVdbeFunc;   /* Used when p4type is P4_VDBEFUNC */
sl@0
    59
    CollSeq *pColl;        /* Used when p4type is P4_COLLSEQ */
sl@0
    60
    Mem *pMem;             /* Used when p4type is P4_MEM */
sl@0
    61
    sqlite3_vtab *pVtab;   /* Used when p4type is P4_VTAB */
sl@0
    62
    KeyInfo *pKeyInfo;     /* Used when p4type is P4_KEYINFO */
sl@0
    63
    int *ai;               /* Used when p4type is P4_INTARRAY */
sl@0
    64
  } p4;
sl@0
    65
#ifdef SQLITE_DEBUG
sl@0
    66
  char *zComment;          /* Comment to improve readability */
sl@0
    67
#endif
sl@0
    68
#ifdef VDBE_PROFILE
sl@0
    69
  int cnt;                 /* Number of times this instruction was executed */
sl@0
    70
  u64 cycles;              /* Total time spent executing this instruction */
sl@0
    71
#endif
sl@0
    72
};
sl@0
    73
typedef struct VdbeOp VdbeOp;
sl@0
    74
sl@0
    75
/*
sl@0
    76
** A smaller version of VdbeOp used for the VdbeAddOpList() function because
sl@0
    77
** it takes up less space.
sl@0
    78
*/
sl@0
    79
struct VdbeOpList {
sl@0
    80
  u8 opcode;          /* What operation to perform */
sl@0
    81
  signed char p1;     /* First operand */
sl@0
    82
  signed char p2;     /* Second parameter (often the jump destination) */
sl@0
    83
  signed char p3;     /* Third parameter */
sl@0
    84
};
sl@0
    85
typedef struct VdbeOpList VdbeOpList;
sl@0
    86
sl@0
    87
/*
sl@0
    88
** Allowed values of VdbeOp.p3type
sl@0
    89
*/
sl@0
    90
#define P4_NOTUSED    0   /* The P4 parameter is not used */
sl@0
    91
#define P4_DYNAMIC  (-1)  /* Pointer to a string obtained from sqliteMalloc() */
sl@0
    92
#define P4_STATIC   (-2)  /* Pointer to a static string */
sl@0
    93
#define P4_COLLSEQ  (-4)  /* P4 is a pointer to a CollSeq structure */
sl@0
    94
#define P4_FUNCDEF  (-5)  /* P4 is a pointer to a FuncDef structure */
sl@0
    95
#define P4_KEYINFO  (-6)  /* P4 is a pointer to a KeyInfo structure */
sl@0
    96
#define P4_VDBEFUNC (-7)  /* P4 is a pointer to a VdbeFunc structure */
sl@0
    97
#define P4_MEM      (-8)  /* P4 is a pointer to a Mem*    structure */
sl@0
    98
#define P4_TRANSIENT (-9) /* P4 is a pointer to a transient string */
sl@0
    99
#define P4_VTAB     (-10) /* P4 is a pointer to an sqlite3_vtab structure */
sl@0
   100
#define P4_MPRINTF  (-11) /* P4 is a string obtained from sqlite3_mprintf() */
sl@0
   101
#define P4_REAL     (-12) /* P4 is a 64-bit floating point value */
sl@0
   102
#define P4_INT64    (-13) /* P4 is a 64-bit signed integer */
sl@0
   103
#define P4_INT32    (-14) /* P4 is a 32-bit signed integer */
sl@0
   104
#define P4_INTARRAY (-15) /* P4 is a vector of 32-bit integers */
sl@0
   105
sl@0
   106
/* When adding a P4 argument using P4_KEYINFO, a copy of the KeyInfo structure
sl@0
   107
** is made.  That copy is freed when the Vdbe is finalized.  But if the
sl@0
   108
** argument is P4_KEYINFO_HANDOFF, the passed in pointer is used.  It still
sl@0
   109
** gets freed when the Vdbe is finalized so it still should be obtained
sl@0
   110
** from a single sqliteMalloc().  But no copy is made and the calling
sl@0
   111
** function should *not* try to free the KeyInfo.
sl@0
   112
*/
sl@0
   113
#define P4_KEYINFO_HANDOFF (-16)
sl@0
   114
#define P4_KEYINFO_STATIC  (-17)
sl@0
   115
sl@0
   116
/*
sl@0
   117
** The Vdbe.aColName array contains 5n Mem structures, where n is the 
sl@0
   118
** number of columns of data returned by the statement.
sl@0
   119
*/
sl@0
   120
#define COLNAME_NAME     0
sl@0
   121
#define COLNAME_DECLTYPE 1
sl@0
   122
#define COLNAME_DATABASE 2
sl@0
   123
#define COLNAME_TABLE    3
sl@0
   124
#define COLNAME_COLUMN   4
sl@0
   125
#ifdef SQLITE_ENABLE_COLUMN_METADATA
sl@0
   126
# define COLNAME_N        5      /* Number of COLNAME_xxx symbols */
sl@0
   127
#else
sl@0
   128
# ifdef SQLITE_OMIT_DECLTYPE
sl@0
   129
#   define COLNAME_N      1      /* Store only the name */
sl@0
   130
# else
sl@0
   131
#   define COLNAME_N      2      /* Store the name and decltype */
sl@0
   132
# endif
sl@0
   133
#endif
sl@0
   134
sl@0
   135
/*
sl@0
   136
** The following macro converts a relative address in the p2 field
sl@0
   137
** of a VdbeOp structure into a negative number so that 
sl@0
   138
** sqlite3VdbeAddOpList() knows that the address is relative.  Calling
sl@0
   139
** the macro again restores the address.
sl@0
   140
*/
sl@0
   141
#define ADDR(X)  (-1-(X))
sl@0
   142
sl@0
   143
/*
sl@0
   144
** The makefile scans the vdbe.c source file and creates the "opcodes.h"
sl@0
   145
** header file that defines a number for each opcode used by the VDBE.
sl@0
   146
*/
sl@0
   147
#include "opcodes.h"
sl@0
   148
sl@0
   149
/*
sl@0
   150
** Prototypes for the VDBE interface.  See comments on the implementation
sl@0
   151
** for a description of what each of these routines does.
sl@0
   152
*/
sl@0
   153
Vdbe *sqlite3VdbeCreate(sqlite3*);
sl@0
   154
int sqlite3VdbeAddOp0(Vdbe*,int);
sl@0
   155
int sqlite3VdbeAddOp1(Vdbe*,int,int);
sl@0
   156
int sqlite3VdbeAddOp2(Vdbe*,int,int,int);
sl@0
   157
int sqlite3VdbeAddOp3(Vdbe*,int,int,int,int);
sl@0
   158
int sqlite3VdbeAddOp4(Vdbe*,int,int,int,int,const char *zP4,int);
sl@0
   159
int sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp);
sl@0
   160
void sqlite3VdbeChangeP1(Vdbe*, int addr, int P1);
sl@0
   161
void sqlite3VdbeChangeP2(Vdbe*, int addr, int P2);
sl@0
   162
void sqlite3VdbeChangeP3(Vdbe*, int addr, int P3);
sl@0
   163
void sqlite3VdbeChangeP5(Vdbe*, u8 P5);
sl@0
   164
void sqlite3VdbeJumpHere(Vdbe*, int addr);
sl@0
   165
void sqlite3VdbeChangeToNoop(Vdbe*, int addr, int N);
sl@0
   166
void sqlite3VdbeChangeP4(Vdbe*, int addr, const char *zP4, int N);
sl@0
   167
void sqlite3VdbeUsesBtree(Vdbe*, int);
sl@0
   168
VdbeOp *sqlite3VdbeGetOp(Vdbe*, int);
sl@0
   169
int sqlite3VdbeMakeLabel(Vdbe*);
sl@0
   170
void sqlite3VdbeDelete(Vdbe*);
sl@0
   171
void sqlite3VdbeMakeReady(Vdbe*,int,int,int,int);
sl@0
   172
int sqlite3VdbeFinalize(Vdbe*);
sl@0
   173
void sqlite3VdbeResolveLabel(Vdbe*, int);
sl@0
   174
int sqlite3VdbeCurrentAddr(Vdbe*);
sl@0
   175
#ifdef SQLITE_DEBUG
sl@0
   176
  void sqlite3VdbeTrace(Vdbe*,FILE*);
sl@0
   177
#endif
sl@0
   178
void sqlite3VdbeResetStepResult(Vdbe*);
sl@0
   179
int sqlite3VdbeReset(Vdbe*);
sl@0
   180
void sqlite3VdbeSetNumCols(Vdbe*,int);
sl@0
   181
int sqlite3VdbeSetColName(Vdbe*, int, int, const char *, int);
sl@0
   182
void sqlite3VdbeCountChanges(Vdbe*);
sl@0
   183
sqlite3 *sqlite3VdbeDb(Vdbe*);
sl@0
   184
void sqlite3VdbeSetSql(Vdbe*, const char *z, int n);
sl@0
   185
void sqlite3VdbeSwap(Vdbe*,Vdbe*);
sl@0
   186
sl@0
   187
#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT
sl@0
   188
int sqlite3VdbeReleaseMemory(int);
sl@0
   189
#endif
sl@0
   190
UnpackedRecord *sqlite3VdbeRecordUnpack(KeyInfo*,int,const void*,
sl@0
   191
                                        UnpackedRecord*,int);
sl@0
   192
void sqlite3VdbeDeleteUnpackedRecord(UnpackedRecord*);
sl@0
   193
int sqlite3VdbeRecordCompare(int,const void*,UnpackedRecord*);
sl@0
   194
sl@0
   195
sl@0
   196
#ifndef NDEBUG
sl@0
   197
  void sqlite3VdbeComment(Vdbe*, const char*, ...);
sl@0
   198
# define VdbeComment(X)  sqlite3VdbeComment X
sl@0
   199
  void sqlite3VdbeNoopComment(Vdbe*, const char*, ...);
sl@0
   200
# define VdbeNoopComment(X)  sqlite3VdbeNoopComment X
sl@0
   201
#else
sl@0
   202
# define VdbeComment(X)
sl@0
   203
# define VdbeNoopComment(X)
sl@0
   204
#endif
sl@0
   205
sl@0
   206
#endif