Change EXPLAIN QUERY PLAN output to say "USE TEMP B-TREE FOR LAST TERM OF ORDER BY...
[sqlite.git] / tool / mkopcodec.tcl
blob5eac05fc0231be1cc9f2fafc4384a5fb6b3b8533
1 #!/usr/bin/tclsh
3 # This TCL script scans the opcodes.h file (which is itself generated by
4 # another TCL script) and uses the information gleaned to create the
5 # opcodes.c source file.
7 # Opcodes.c contains strings which are the symbolic names for the various
8 # opcodes used by the VDBE. These strings are used when disassembling a
9 # VDBE program during tracing or as a result of the EXPLAIN keyword.
11 puts "/* Automatically generated. Do not edit */"
12 puts "/* See the tool/mkopcodec.tcl script for details. */"
13 puts "#if !defined(SQLITE_OMIT_EXPLAIN) \\"
14 puts " || defined(VDBE_PROFILE) \\"
15 puts " || defined(SQLITE_DEBUG)"
16 puts "#if defined(SQLITE_ENABLE_EXPLAIN_COMMENTS) || defined(SQLITE_DEBUG)"
17 puts "# define OpHelp(X) \"\\0\" X"
18 puts "#else"
19 puts "# define OpHelp(X)"
20 puts "#endif"
21 puts "const char *sqlite3OpcodeName(int i)\173"
22 puts " static const char *const azName\[\] = \173"
23 set mx 0
25 set in [open [lindex $argv 0]]
26 fconfigure $in -translation binary
27 while {![eof $in]} {
28 set line [gets $in]
29 if {[regexp {^#define OP_} $line]} {
30 set name [lindex $line 1]
31 regsub {^OP_} $name {} name
32 set i [lindex $line 2]
33 set label($i) $name
34 if {$mx<$i} {set mx $i}
35 if {[regexp {synopsis: (.*) \*/} $line all x]} {
36 set synopsis($i) [string trim $x]
37 } else {
38 set synopsis($i) {}
42 close $in
44 for {set i 0} {$i<=$mx} {incr i} {
45 puts [format " /* %3d */ %-18s OpHelp(\"%s\")," \
46 $i \"$label($i)\" $synopsis($i)]
48 puts " \175;"
49 puts " return azName\[i\];"
50 puts "\175"
51 puts "#endif"