/* Automatically generated. Do not edit */ /* See the mkopcodec.awk script for details. */ #if !defined(SQLITE_OMIT_EXPLAIN) || defined(VDBE_PROFILE) || defined(SQLITE_DEBUG) #if defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) || defined(SQLITE_DEBUG) # define OpHelp(X) "\0" X #else # define OpHelp(X) #endif const char *sqlite3OpcodeName(int i){ static const char *const azName[] = { "?", /* 1 */ "Function" OpHelp("r[P3]=func(r[P2@P5])"), /* 2 */ "Savepoint" OpHelp(""), /* 3 */ "AutoCommit" OpHelp(""), /* 4 */ "Transaction" OpHelp(""), /* 5 */ "SorterNext" OpHelp(""), /* 6 */ "PrevIfOpen" OpHelp(""), /* 7 */ "NextIfOpen" OpHelp(""), /* 8 */ "Prev" OpHelp(""), /* 9 */ "Next" OpHelp(""), /* 10 */ "AggStep" OpHelp("accum=r[P3] step(r[P2@P5])"), /* 11 */ "Checkpoint" OpHelp(""), /* 12 */ "JournalMode" OpHelp(""), /* 13 */ "Vacuum" OpHelp(""), /* 14 */ "VFilter" OpHelp("iPlan=r[P3] zPlan='P4'"), /* 15 */ "VUpdate" OpHelp("data=r[P3@P2]"), /* 16 */ "Goto" OpHelp(""), /* 17 */ "Gosub" OpHelp(""), /* 18 */ "Return" OpHelp(""), /* 19 */ "Not" OpHelp("r[P2]= !r[P1]"), /* 20 */ "Yield" OpHelp(""), /* 21 */ "HaltIfNull" OpHelp("if r[P3] null then halt"), /* 22 */ "Halt" OpHelp(""), /* 23 */ "Integer" OpHelp("r[P2]=P1"), /* 24 */ "Int64" OpHelp("r[P2]=P4"), /* 25 */ "String" OpHelp("r[P2]='P4' (len=P1)"), /* 26 */ "Null" OpHelp("r[P2..P3]=NULL"), /* 27 */ "Blob" OpHelp("r[P2]=P4 (len=P1)"), /* 28 */ "Variable" OpHelp("r[P2]=parameter(P1,P4)"), /* 29 */ "Move" OpHelp("r[P2@P3]=r[P1@P3]"), /* 30 */ "Copy" OpHelp("r[P2@P3+1]=r[P1@P3+1]"), /* 31 */ "SCopy" OpHelp("r[P2]=r[P1]"), /* 32 */ "ResultRow" OpHelp("output=r[P1@P2]"), /* 33 */ "CollSeq" OpHelp(""), /* 34 */ "AddImm" OpHelp("r[P1]=r[P1]+P2"), /* 35 */ "MustBeInt" OpHelp(""), /* 36 */ "RealAffinity" OpHelp(""), /* 37 */ "Permutation" OpHelp(""), /* 38 */ "Compare" OpHelp(""), /* 39 */ "Jump" OpHelp(""), /* 40 */ "Once" OpHelp(""), /* 41 */ "If" OpHelp(""), /* 42 */ "IfNot" OpHelp(""), /* 43 */ "Column" OpHelp("r[P3]=PX"), /* 44 */ "Affinity" OpHelp("affinity(r[P1@P2])"), /* 45 */ "MakeRecord" OpHelp("r[P3]=mkrec(r[P1@P2])"), /* 46 */ "Count" OpHelp("r[P2]=count()"), /* 47 */ "ReadCookie" OpHelp(""), /* 48 */ "SetCookie" OpHelp(""), /* 49 */ "VerifyCookie" OpHelp(""), /* 50 */ "OpenRead" OpHelp("root=P2 iDb=P3"), /* 51 */ "OpenWrite" OpHelp("root=P2 iDb=P3"), /* 52 */ "OpenAutoindex" OpHelp("nColumn=P2"), /* 53 */ "OpenEphemeral" OpHelp("nColumn=P2"), /* 54 */ "SorterOpen" OpHelp(""), /* 55 */ "OpenPseudo" OpHelp("content in r[P2@P3]"), /* 56 */ "Close" OpHelp(""), /* 57 */ "SeekLt" OpHelp("key=r[P3@P4]"), /* 58 */ "SeekLe" OpHelp("key=r[P3@P4]"), /* 59 */ "SeekGe" OpHelp("key=r[P3@P4]"), /* 60 */ "SeekGt" OpHelp("key=r[P3@P4]"), /* 61 */ "Seek" OpHelp("intkey=r[P2]"), /* 62 */ "NoConflict" OpHelp("key=r[P3@P4]"), /* 63 */ "NotFound" OpHelp("key=r[P3@P4]"), /* 64 */ "Found" OpHelp("key=r[P3@P4]"), /* 65 */ "NotExists" OpHelp("intkey=r[P3]"), /* 66 */ "Sequence" OpHelp("r[P2]=rowid"), /* 67 */ "NewRowid" OpHelp("r[P2]=rowid"), /* 68 */ "Insert" OpHelp("intkey=r[P3] data=r[P2]"), /* 69 */ "InsertInt" OpHelp("intkey=P3 data=r[P2]"), /* 70 */ "Delete" OpHelp(""), /* 71 */ "Or" OpHelp("r[P3]=(r[P1] || r[P2])"), /* 72 */ "And" OpHelp("r[P3]=(r[P1] && r[P2])"), /* 73 */ "ResetCount" OpHelp(""), /* 74 */ "SorterCompare" OpHelp("if key(P1)!=rtrim(r[P3],P4) goto P2"), /* 75 */ "SorterData" OpHelp("r[P2]=data"), /* 76 */ "IsNull" OpHelp("if r[P1]==NULL goto P2"), /* 77 */ "NotNull" OpHelp("if r[P1]!=NULL goto P2"), /* 78 */ "Ne" OpHelp("if r[P1]!=r[P3] goto P2"), /* 79 */ "Eq" OpHelp("if r[P1]==r[P3] goto P2"), /* 80 */ "Gt" OpHelp("if r[P1]>r[P3] goto P2"), /* 81 */ "Le" OpHelp("if r[P1]<=r[P3] goto P2"), /* 82 */ "Lt" OpHelp("if r[P1]=r[P3] goto P2"), /* 84 */ "RowKey" OpHelp("r[P2]=key"), /* 85 */ "BitAnd" OpHelp("r[P3]=r[P1]&r[P2]"), /* 86 */ "BitOr" OpHelp("r[P3]=r[P1]|r[P2]"), /* 87 */ "ShiftLeft" OpHelp("r[P3]=r[P2]<>r[P1]"), /* 89 */ "Add" OpHelp("r[P3]=r[P1]+r[P2]"), /* 90 */ "Subtract" OpHelp("r[P3]=r[P2]-r[P1]"), /* 91 */ "Multiply" OpHelp("r[P3]=r[P1]*r[P2]"), /* 92 */ "Divide" OpHelp("r[P3]=r[P2]/r[P1]"), /* 93 */ "Remainder" OpHelp("r[P3]=r[P2]%r[P1]"), /* 94 */ "Concat" OpHelp("r[P3]=r[P2]+r[P1]"), /* 95 */ "RowData" OpHelp("r[P2]=data"), /* 96 */ "BitNot" OpHelp("r[P1]= ~r[P1]"), /* 97 */ "String8" OpHelp("r[P2]='P4'"), /* 98 */ "Rowid" OpHelp("r[P2]=rowid"), /* 99 */ "NullRow" OpHelp(""), /* 100 */ "Last" OpHelp(""), /* 101 */ "SorterSort" OpHelp(""), /* 102 */ "Sort" OpHelp(""), /* 103 */ "Rewind" OpHelp(""), /* 104 */ "SorterInsert" OpHelp(""), /* 105 */ "IdxInsert" OpHelp("key=r[P2]"), /* 106 */ "IdxDelete" OpHelp("key=r[P2@P3]"), /* 107 */ "IdxRowid" OpHelp("r[P2]=rowid"), /* 108 */ "IdxLT" OpHelp("key=r[P3@P4]"), /* 109 */ "IdxGE" OpHelp("key=r[P3@P4]"), /* 110 */ "Destroy" OpHelp(""), /* 111 */ "Clear" OpHelp(""), /* 112 */ "CreateIndex" OpHelp("r[P2]=root iDb=P1"), /* 113 */ "CreateTable" OpHelp("r[P2]=root iDb=P1"), /* 114 */ "ParseSchema" OpHelp(""), /* 115 */ "LoadAnalysis" OpHelp(""), /* 116 */ "DropTable" OpHelp(""), /* 117 */ "DropIndex" OpHelp(""), /* 118 */ "DropTrigger" OpHelp(""), /* 119 */ "IntegrityCk" OpHelp(""), /* 120 */ "RowSetAdd" OpHelp("rowset(P1)=r[P2]"), /* 121 */ "RowSetRead" OpHelp("r[P3]=rowset(P1)"), /* 122 */ "RowSetTest" OpHelp("if r[P3] in rowset(P1) goto P2"), /* 123 */ "Program" OpHelp(""), /* 124 */ "Param" OpHelp(""), /* 125 */ "FkCounter" OpHelp("fkctr[P1]+=P2"), /* 126 */ "FkIfZero" OpHelp("if fkctr[P1]==0 goto P2"), /* 127 */ "MemMax" OpHelp("r[P1]=max(r[P1],r[P2])"), /* 128 */ "IfPos" OpHelp("if r[P1]>0 goto P2"), /* 129 */ "IfNeg" OpHelp("if r[P1]<0 goto P2"), /* 130 */ "IfZero" OpHelp("r[P1]+=P3, if r[P1]==0 goto P2"), /* 131 */ "AggFinal" OpHelp("accum=r[P1] N=P2"), /* 132 */ "IncrVacuum" OpHelp(""), /* 133 */ "Real" OpHelp("r[P2]=P4"), /* 134 */ "Expire" OpHelp(""), /* 135 */ "TableLock" OpHelp("iDb=P1 root=P2 write=P3"), /* 136 */ "VBegin" OpHelp(""), /* 137 */ "VCreate" OpHelp(""), /* 138 */ "VDestroy" OpHelp(""), /* 139 */ "VOpen" OpHelp(""), /* 140 */ "VColumn" OpHelp("r[P3]=vcolumn(P2)"), /* 141 */ "VNext" OpHelp(""), /* 142 */ "VRename" OpHelp(""), /* 143 */ "ToText" OpHelp(""), /* 144 */ "ToBlob" OpHelp(""), /* 145 */ "ToNumeric" OpHelp(""), /* 146 */ "ToInt" OpHelp(""), /* 147 */ "ToReal" OpHelp(""), /* 148 */ "Pagecount" OpHelp(""), /* 149 */ "MaxPgcnt" OpHelp(""), /* 150 */ "Trace" OpHelp(""), /* 151 */ "Noop" OpHelp(""), /* 152 */ "Explain" OpHelp(""), }; return azName[i]; } #endif