Runtime: Fix broken --with-rtldebug test for trampolines.
Runtime: Fix handing of PROGRAM_AVOID_CHECK in apply_low() et al.
Runtime: Improve diagnostics for "Calling undefined function".
Runtime: Move calls of check_threads_etc() in mega_apply(). check_threads_etc() may in some circumstances execute code that destructs the object that we are attempting to apply a function in. Make sure to call check_threads_etc() before we check that the object isn't destructed. Otherwise we may be in for a surprise...
Runtime: Fixed bug with generators and d_flag > 1.
Runtime: Ensure that generator functions always get their arguments.
Runtime: Fixed some issues with PIKE_FRAME_MALLOCED_LOCALS.
Compiler [WIP]: Experimental implementation of support for generators. NB: The code is known to be broken, and the approach is likely to be changed. WORK IN PROGRESS! DO NOT USE! Do NOT merge into any branches that are likely to be merged into main line!
Runtime: Experimental support for continuing a previous function call.
Merge remote-tracking branch 'origin/master' into new_utf8
Merge commit '722771973bd' into patches/lyslyskom22891031 * commit '722771973bd': (6177 commits) Verify that callablep responses are aligned with reality. ...
Merge commit '2470270f500c728d10b8895314d8d8b07016e37b' into grubba/typechecker-automap * commit '2470270f500c728d10b8895314d8d8b07016e37b': (18681 commits) Removed the old typechecker. ...
Interpreter: Avoid branching on partially uninitialised memory (Likely) no harm coming from this, as presumably even "partially defined" cases cannnot not be equal to -1, but this helps to keep valgrind quiet.
Merge remote-tracking branch 'origin/8.1' into gobject-introspection
Interpreter: fixed handling of SAVE_LOCALS bitmask Since the introduction of save_locals_bitmask, expendible_offset was never set. Also since the handling of expendible_offset and save_locals_bitmask were handled by the same case, the code was broken. During pop entries handling of the save_locals bitmask could lead to situations where locals above expendible_offset were 'copied' into the trampoline frame. Those locals could have already been popped from the stack by the RETURN_LOCAL opcode. Also slightly refactored the code to not allocate more space for locals than needed and removed some unnecessary casts. This became visible and could lead to crashes when building for 32bit on 64bit x86 machines.
Merge commit '75c9d1806f1a69ca21c27a2c2fe1b4a6ea38e77e' into patches/pike63 * commit '75c9d1806f1a69ca21c27a2c2fe1b4a6ea38e77e': (19587 commits) ...
Fix spelling of FALLTHRU directive The non-standard spelling "FALL_THROUGH" is not recognized by gcc 7.3. Also, the comment must not contain any other text, or be placed inside braces.
Interpreter: de-inline apply_low.h
Interpreter: de-inline some tracing code
Interpreter: deinline the tracing code
describe_svalue: do not use global buffer This commit removes the dynamic buffer from describe_svalue and related funtions.
Interpreter: set current_storage for pike functions Currently, Pike_fp->current_storage was only initialized for C functions. Initialize it for pike functions, aswell, to allow the generated machine code to use it.
Interpreter: simplify struct pike_frame - expendibles and save_sp are usually only used during setup and frame deallocation. It is enough to store them as offsets from 'locals' - reordered the struct entries to avoid some padding
Interpreter: remove mark_sp_base mark_sp_base in struct pike_frame was unused
Interpreter: seperate apply functions into several steps
Anoter DO_IF_PROFILING_DEBUG for debug message, sitting unsaved in emacs.
Remove the fatal shorthand for Pike_fatal.
Removed Intel IA64 compiler specific DO_NOT_WARN.
ammend me
Removed trailing spaces.
Remove deprecated security system.
Removed code that has been #if 0 for quite some time It mainly confuses things when you are searching for code. I also removed a few instances of 'well, this would be nice, but is not possible' and 'this code is obviously broken because X' etc. We do, after all, have a revision control system. With history. :)
Instead of returning 1, return the branch-to address This makes jumps marginally more efficient (saves one instruction and some memory reading)
[performance] Slightly smaller low_mega_apply. There is now only one instance of the inclusion of apply_low.h (does anyone else feel a need for less lowness around here?) which actually made it faster (previously there were two cases, one for scoped functions calles and one for calls without scope). Also created a new version of mega_apply (named lower_mega_apply) that can only do APPLY_LOW, and only the most common cases. It falls back to using the old low_mega_apply when needed. Added a lot of lowness to places to utilize the optimization. This actually saves surprising amounts of CPU in code calling a lot of small functions, lower_mega_apply() is about 2x faster than low_mega_apply(APPLY_LOW,...) when it does not hit one of the cases it does not support (trampolines, calling non function constants, variables or arrays). There is unfortunately now even more code duplication around, but since the code is slightly different that is rather hard to avoid.
Removed security system (on this branch)
Merge remote-tracking branch 'origin/8.0' into string_alloc Conflicts: src/stralloc.c
memmove is C89 and 4.3BSD
Merge branch '8.0' into gobject-introspection
Merge remote-tracking branch 'origin/7.9' into pdf
new block alloc
Merge remote-tracking branch 'origin/7.9' into ba Conflicts: src/interpret.c src/interpret.h src/pike_embed.c
Merge branch '7.9' into gobject-introspection
Merge remote branch 'origin/7.9' into block_alloc
In debug mode, set num_args and num_locals. Otherwise the sanity checks will trigger when running with -d.
Merge remote branch 'origin/7.9' into rblock_alloc Conflicts: src/post_modules/CritBit/floattree.cmod src/post_modules/CritBit/inttree.cmod src/post_modules/CritBit/stringtree.cmod
Compiler: Moved stack frame initialization to the byte-code.
Merge remote branch 'origin/7.9' into breaking_into_pieces
Fix profiling of recursive functions by tracking recursion level. Fixes [bug 5131 (#5131)].
Remove unused self_time_base from PROFILING code.
Removed $Id$.
Atomic megapatch: Use svalue accessor macros everywhere.
Implement --with-dtrace to enable source-level tracing of Pike programs using e.g. Apple Instruments. (It's not yet balancing entry/exit properly.)
No more foreign_idents.
Preparations for changing the identifier information for constants.
Cosmetic fixes. Rev: src/apply_low.h:1.36
Fixed problems with uneven distribution of evaluator callback calls in the interpreter loop: Changed to a single shared counter for fast_check_threads_etc(), use the same fast_check_threads_etc interval for all types of apply calls, and for all types of backward branch calls. Rev: src/apply_low.h:1.35 Rev: src/interpret.c:1.409 Rev: src/interpret.h:1.176 Rev: src/interpret_functions.h:1.210
Check for unmarked free svalues on the stack when the debug level is 2 or higher. (Otherwise this is usually only discovered by the gc in rtldebug mode.) Rev: src/apply_low.h:1.34
Changed the definition of Pike_fp->context to a pointer. This should reduce the overhead for apply() somewhat. Rev: src/apply_low.h:1.33 Rev: src/builtin.cmod:1.194 Rev: src/interpret.c:1.386 Rev: src/interpret.h:1.171 Rev: src/interpret_functions.h:1.200 Rev: src/modules/Gmp/mpz_glue.c:1.171 Rev: src/object.c:1.282 Rev: src/object.h:1.93 Rev: src/opcodes.c:1.170 Rev: src/operators.c:1.227 Rev: src/program.c:1.653
Eradicated all instances of setting type to T_INT without also setting the subtype in an svalue. From now on one should either set the subtype or use the new svalue type PIKE_T_FREE (see svalue.h). Rev: src/OCPikeInterpreter.m:1.3 Rev: src/apply_low.h:1.32 Rev: src/array.c:1.198 Rev: src/array.h:1.71 Rev: src/bignum.c:1.42 Rev: src/builtin.cmod:1.193 Rev: src/builtin_functions.c:1.650 Rev: src/configure.in:1.1038 Rev: src/cpp.c:1.164 Rev: src/encode.c:1.250 Rev: src/error.c:1.151 Rev: src/interpret.c:1.385 Rev: src/interpret_functions.h:1.197 Rev: src/iterators.cmod:1.64 Rev: src/las.c:1.403 Rev: src/main.c:1.228 Rev: src/mapping.c:1.195 Rev: src/module.c:1.47 Rev: src/modules/Gmp/mpz_glue.c:1.170 Rev: src/modules/HTTPLoop/accept_and_parse.c:1.39 Rev: src/modules/HTTPLoop/requestobject.c:1.31 Rev: src/modules/Image/colortable.c:1.130 Rev: src/modules/Java/jvm.c:1.84 Rev: src/modules/Parser/html.c:1.178 Rev: src/modules/Parser/xml.cmod:1.97 Rev: src/modules/Postgres/postgres.c:1.55 Rev: src/modules/_math/math.c:1.87 Rev: src/modules/files/sendfile.c:1.78 Rev: src/modules/spider/spider.c:1.134 Rev: src/multiset.c:1.106 Rev: src/object.c:1.281 Rev: src/operators.c:1.226 Rev: src/pike_error.h:1.42 Rev: src/post_modules/Shuffler/Shuffler.cmod:1.45 Rev: src/post_modules/_ADT/circular_list.cmod:1.18 Rev: src/post_modules/_ADT/sequence.cmod:1.19 Rev: src/program.c:1.642 Rev: src/signal_handler.c:1.331 Rev: src/sscanf.c:1.170 Rev: src/svalue.c:1.234 Rev: src/svalue.h:1.149
Now supports calling of aliases. Rev: src/apply_low.h:1.31
Moved consistency check to PIKE_DEBUG. Rev: src/apply_low.h:1.30
Improved diagnostics. Rev: src/apply_low.h:1.29
Backported profiling fix from Pike 7.7. Rev: src/apply_low.h:1.28 Rev: src/interpret.c:1.349 Rev: src/interpret.h:1.152 Rev: src/interpret_functions.h:1.168 Rev: src/pike_threadlib.h:1.54
Various --with-profiling fixes: * Now uses get_cpu_time() instead of gethrtime(). * Added PROFILING_DEBUG and corresponding DO_IF_PROFILING_DEBUG() (verbose). * Renamed Pike_interpreter.time_base to Pike_interpreter.unlocked_time. * Removed unused macro low_return_profiling(). * Profiling information is now updated by POP_PIKE_FRAME(). * Fixed various bugs causing negative self_time accounting. * Added PIKE_DEBUG checks verifying positive profiling accounting. * Removed unused field time_base from struct thread_state. Rev: src/apply_low.h:1.28 Rev: src/builtin_functions.c:1.558 Rev: src/global.h:1.99 Rev: src/interpret.c:1.349 Rev: src/interpret.h:1.152 Rev: src/interpret_functions.h:1.168 Rev: src/pike_threadlib.h:1.54 Rev: src/program.h:1.203 Rev: src/threads.h:1.128
Improved tracing of return values. All calls are now traced on level 0 and all returns on level 1 (some require rtldebug to be traced, though). Rev: src/apply_low.h:1.27 Rev: src/interpret.c:1.345 Rev: src/interpret_functions.h:1.167
Simple code rearrangement to avoid stalls on PowerPC 970 (and possibly other architectures). Rev: src/apply_low.h:1.14
Simple code rearrangement to avoid stalls on PowerPC 970 (and possibly other architectures). Rev: src/apply_low.h:1.26
Made the interface for the global dynamic buffer reentrant. Rev: src/apply_low.h:1.25 Rev: src/array.c:1.151 Rev: src/dynamic_buffer.c:1.24 Rev: src/dynamic_buffer.h:1.19 Rev: src/error.c:1.117 Rev: src/interpret.c:1.337 Rev: src/interpret_functions.h:1.161 Rev: src/las.c:1.341 Rev: src/mapping.c:1.173 Rev: src/modules/sprintf/sprintf.c:1.115 Rev: src/multiset.c:1.79 Rev: src/pike_types.c:1.224 Rev: src/program.c:1.530 Rev: src/stralloc.c:1.160 Rev: src/svalue.c:1.179
Added more stack paranoia, and fixed bug in apply_low_safe_and_stupid(). Rev: src/apply_low.h:1.24 Rev: src/interpret.c:1.334 Rev: src/interpret_functions.h:1.158
Don't lower the amount of debug when d_flag > 4. Rev: src/apply_low.h:1.23
Avoid warnings when compiling without rtldebug. Rev: src/apply_low.h:1.22 Rev: src/encode.c:1.194 Rev: src/object.c:1.244
Minor cleanups wrt identifier_flags. Rev: src/apply_low.h:1.21 Rev: src/builtin.cmod:1.139 Rev: src/svalue.c:1.169
Fixed misguided fault tolerance. Rev: src/apply_low.h:1.20
Cleaned up some pointer handling. Rev: src/apply_low.h:1.19 Rev: src/backend.cmod:1.43 Rev: src/block_alloc.h:1.68 Rev: src/builtin_functions.c:1.497 Rev: src/cyclic.c:1.11 Rev: src/encode.c:1.190 Rev: src/fdlib.c:1.63 Rev: src/fsort_template.h:1.16 Rev: src/gc.c:1.220 Rev: src/interpret.c:1.307 Rev: src/interpret.h:1.142 Rev: src/interpret_functions.h:1.151 Rev: src/las.c:1.336 Rev: src/main.c:1.177 Rev: src/mapping.c:1.168 Rev: src/mapping.h:1.50 Rev: src/modules/Oracle/oracle.c:1.78 Rev: src/modules/_Charset/misc.c:1.14 Rev: src/multiset.c:1.74 Rev: src/object.c:1.238 Rev: src/object.h:1.79 Rev: src/pike_macros.h:1.37 Rev: src/pike_memory.c:1.146 Rev: src/pike_search.c:1.16 Rev: src/pike_search_engine2.c:1.9 Rev: src/pike_threadlib.h:1.47 Rev: src/pike_types.c:1.218 Rev: src/port.c:1.72 Rev: src/port.h:1.51 Rev: src/signal_handler.c:1.274 Rev: src/svalue.c:1.168 Rev: src/threads.c:1.219
Oops... Rev: src/apply_low.h:1.18
More dmalloc fixes. Rev: src/apply_low.h:1.17 Rev: src/block_alloc.h:1.64 Rev: src/pike_types.c:1.212
Improved dmalloc. Rev: src/apply_low.h:1.16 Rev: src/array.c:1.138 Rev: src/backend.cmod:1.38 Rev: src/bignum.c:1.34 Rev: src/block_alloc.h:1.63 Rev: src/builtin_functions.c:1.479 Rev: src/code/ia32.c:1.25 Rev: src/cpp.c:1.115 Rev: src/encode.c:1.169 Rev: src/error.c:1.102 Rev: src/gc.c:1.209 Rev: src/interpret.c:1.295 Rev: src/interpret.h:1.131 Rev: src/interpret_functions.h:1.141 Rev: src/iterators.cmod:1.35 Rev: src/las.c:1.330 Rev: src/mapping.c:1.163 Rev: src/modules/Image/orient.c:1.24 Rev: src/modules/Image/phase.h:1.6 Rev: src/modules/Java/jvm.c:1.60 Rev: src/modules/SANE/sane.c:1.17 Rev: src/modules/_Roxen/roxen.c:1.33 Rev: src/multiset.c:1.69 Rev: src/object.c:1.228 Rev: src/opcodes.c:1.143 Rev: src/operators.c:1.172 Rev: src/pike_types.c:1.211 Rev: src/post_modules/Shuffler/Shuffler.cmod:1.23 Rev: src/post_modules/Shuffler/a_source_pikestring.c:1.8 Rev: src/post_modules/Shuffler/a_source_system_memory.c:1.9 Rev: src/post_modules/Shuffler/b_source_normal_file.c:1.8 Rev: src/post_modules/Shuffler/c_source_stream.c:1.7 Rev: src/post_modules/Shuffler/d_source_pikestream.c:1.6 Rev: src/post_modules/Shuffler/e_source_block_pikestream.c:1.2 Rev: src/preprocessor.h:1.58 Rev: src/program.c:1.486 Rev: src/signal_handler.c:1.249 Rev: src/stralloc.c:1.153 Rev: src/stralloc.h:1.73 Rev: src/svalue.c:1.161 Rev: src/threads.c:1.211
Initialize the frame properly for low_backtrace before generating a "Calling undefined function" error. Rev: src/apply_low.h:1.15
Initialize the frame properly for low_backtrace before generating a "Calling undefined function" error. Rev: src/apply_low.h:1.13
Parameter-less macros can cause problems with headerfiles. In this case <sys/thread.h> on Solaris 2.x. t_flag is now gone. Use Pike_interpreter.trace_level. Rev: src/apply_low.h:1.14 Rev: src/builtin.cmod:1.105 Rev: src/error.c:1.101 Rev: src/gc.c:1.192 Rev: src/interpret.c:1.287 Rev: src/interpret.h:1.122 Rev: src/interpret_functions.h:1.126 Rev: src/interpreter.h:1.81 Rev: src/main.c:1.162 Rev: src/mapping.c:1.158 Rev: src/multiset.c:1.65 Rev: src/opcodes.c:1.131 Rev: src/svalue.c:1.154 Rev: src/threads.c:1.196
More ISO 6.3.4 fixes. Rev: src/apply_low.h:1.13 Rev: src/interpret.c:1.286
Pike_fp->num_args now gets set for cloning of programs too. Will likely fix valgrind hit. Rev: src/apply_low.h:1.12
Added some notes. Rev: src/apply_low.h:1.11 Rev: src/interpret.c:1.277
Updated header (again) after some input from Per and mast. Rev: src/acconfig.h:1.107 Rev: src/alloca.c:1.7 Rev: src/apply_low.h:1.10 Rev: src/array.c:1.132 Rev: src/array.h:1.44 Rev: src/backend.cmod:1.29 Rev: src/backend.h:1.16 Rev: src/bignum.c:1.27 Rev: src/bignum.h:1.16 Rev: src/block_alloc.h:1.45 Rev: src/block_alloc_h.h:1.13 Rev: src/builtin.cmod:1.94 Rev: src/builtin_functions.c:1.445 Rev: src/builtin_functions.h:1.22 Rev: src/builtin_functions_t.c:1.3 Rev: src/callback.c:1.30 Rev: src/callback.h:1.18 Rev: src/code/bytecode.c:1.6 Rev: src/code/bytecode.h:1.9 Rev: src/code/computedgoto.c:1.3 Rev: src/code/computedgoto.h:1.7 Rev: src/code/ia32.c:1.23 Rev: src/code/ia32.h:1.18 Rev: src/code/ppc32.c:1.23 Rev: src/code/ppc32.h:1.17 Rev: src/code/sparc.c:1.13 Rev: src/code/sparc.h:1.15 Rev: src/combine_path.h:1.11 Rev: src/compilation.h:1.30 Rev: src/constants.c:1.42 Rev: src/constants.h:1.27 Rev: src/cpp.c:1.105 Rev: src/cpp.h:1.7 Rev: src/crypt.c:1.4 Rev: src/cyclic.c:1.8 Rev: src/cyclic.h:1.7 Rev: src/dlopen.c:1.36 Rev: src/dmalloc.h:1.38 Rev: src/docode.c:1.150 Rev: src/docode.h:1.17 Rev: src/dummy_ci.h:1.6 Rev: src/dynamic_buffer.c:1.21 Rev: src/dynamic_buffer.h:1.16 Rev: src/dynamic_load.c:1.66 Rev: src/dynamic_load.h:1.6 Rev: src/efun.h:1.7 Rev: src/encode.c:1.155 Rev: src/encode.h:1.7 Rev: src/error.c:1.92 Rev: src/errors.h:1.22 Rev: src/fd_control.c:1.46 Rev: src/fd_control.h:1.10 Rev: src/fdlib.c:1.55 Rev: src/fdlib.h:1.43 Rev: src/fsort.c:1.21 Rev: src/fsort.h:1.6 Rev: src/fsort_template.h:1.13 Rev: src/gc.c:1.188 Rev: src/gc.h:1.92 Rev: src/global.h:1.76 Rev: src/hashtable.c:1.14 Rev: src/hashtable.h:1.9 Rev: src/interpret.c:1.270 Rev: src/interpret.h:1.113 Rev: src/interpret_functions.h:1.110 Rev: src/interpreter.h:1.78 Rev: src/iterators.cmod:1.30 Rev: src/language.yacc:1.300 Rev: src/las.c:1.303 Rev: src/las.h:1.58 Rev: src/las_t.c:1.3 Rev: src/lex.c:1.108 Rev: src/lex.h:1.24 Rev: src/lexer.h:1.40 Rev: src/main.c:1.156 Rev: src/main.h:1.20 Rev: src/mapping.c:1.152 Rev: src/mapping.h:1.44 Rev: src/module.c:1.20 Rev: src/module.h:1.8 Rev: src/module_magic.h:1.7 Rev: src/module_support.c:1.51 Rev: src/module_support.h:1.15 Rev: src/module_t.c:1.3 Rev: src/modules/CommonLog/acconfig.h:1.3 Rev: src/modules/CommonLog/clf.c:1.10 Rev: src/modules/DVB/acconfig.h:1.3 Rev: src/modules/DVB/dvb.c:1.12 Rev: src/modules/DVB/dvb.h:1.4 Rev: src/modules/DVB/psparser.c:1.5 Rev: src/modules/Gdbm/acconfig.h:1.3 Rev: src/modules/Gdbm/gdbmmod.c:1.21 Rev: src/modules/Gettext/acconfig.h:1.4 Rev: src/modules/Gettext/gettext.c:1.12 Rev: src/modules/Gmp/mpf.cmod:1.12 Rev: src/modules/Gmp/mpq.cmod:1.13 Rev: src/modules/Gmp/mpz_glue.c:1.111 Rev: src/modules/Gmp/my_gmp.h:1.13 Rev: src/modules/Gmp/my_mpz_xor.c:1.5 Rev: src/modules/Gmp/next_prime.c:1.12 Rev: src/modules/Gz/acconfig.h:1.3 Rev: src/modules/Gz/zlibmod.c:1.55 Rev: src/modules/HTTPLoop/accept_and_parse.c:1.29 Rev: src/modules/HTTPLoop/accept_and_parse.h:1.10 Rev: src/modules/HTTPLoop/acconfig.h:1.4 Rev: src/modules/HTTPLoop/cache.c:1.19 Rev: src/modules/HTTPLoop/cache.h:1.10 Rev: src/modules/HTTPLoop/filesystem.c:1.7 Rev: src/modules/HTTPLoop/filesystem.h:1.3 Rev: src/modules/HTTPLoop/log.c:1.13 Rev: src/modules/HTTPLoop/log.h:1.3 Rev: src/modules/HTTPLoop/requestobject.c:1.23 Rev: src/modules/HTTPLoop/requestobject.h:1.3 Rev: src/modules/HTTPLoop/static_strings.h:1.3 Rev: src/modules/HTTPLoop/timeout.c:1.9 Rev: src/modules/HTTPLoop/timeout.h:1.4 Rev: src/modules/HTTPLoop/util.c:1.9 Rev: src/modules/HTTPLoop/util.h:1.5 Rev: src/modules/Image/acconfig.h:1.7 Rev: src/modules/Image/assembly.h:1.5 Rev: src/modules/Image/blit.c:1.53 Rev: src/modules/Image/blit_layer_include.h:1.8 Rev: src/modules/Image/colors.c:1.63 Rev: src/modules/Image/colors.h:1.8 Rev: src/modules/Image/colortable.c:1.112 Rev: src/modules/Image/colortable.h:1.27 Rev: src/modules/Image/colortable_lookup.h:1.20 Rev: src/modules/Image/dct.c:1.22 Rev: src/modules/Image/default_font.c:1.5 Rev: src/modules/Image/encodings/_xpm.c:1.21 Rev: src/modules/Image/encodings/any.c:1.25 Rev: src/modules/Image/encodings/avs.c:1.14 Rev: src/modules/Image/encodings/bmp.c:1.37 Rev: src/modules/Image/encodings/dsi.c:1.6 Rev: src/modules/Image/encodings/encodings.h:1.5 Rev: src/modules/Image/encodings/hrz.c:1.8 Rev: src/modules/Image/encodings/iff.c:1.12 Rev: src/modules/Image/encodings/ilbm.c:1.26 Rev: src/modules/Image/encodings/pcx.c:1.19 Rev: src/modules/Image/encodings/png.c:1.46 Rev: src/modules/Image/encodings/pnm.c:1.28 Rev: src/modules/Image/encodings/psd.c:1.34 Rev: src/modules/Image/encodings/psd_constant_strings.h:1.6 Rev: src/modules/Image/encodings/pvr.c:1.21 Rev: src/modules/Image/encodings/ras.c:1.18 Rev: src/modules/Image/encodings/tga.c:1.29 Rev: src/modules/Image/encodings/tim.c:1.14 Rev: src/modules/Image/encodings/wbf.c:1.13 Rev: src/modules/Image/encodings/x.c:1.39 Rev: src/modules/Image/encodings/xbm.c:1.17 Rev: src/modules/Image/encodings/xcf.c:1.42 Rev: src/modules/Image/encodings/xcf_constant_strings.h:1.3 Rev: src/modules/Image/encodings/xwd.c:1.23 Rev: src/modules/Image/font.c:1.74 Rev: src/modules/Image/image.c:1.199 Rev: src/modules/Image/image.h:1.50 Rev: src/modules/Image/image_module.c:1.16 Rev: src/modules/Image/initstuff.h:1.16 Rev: src/modules/Image/layer_channel.h:1.8 Rev: src/modules/Image/layer_oper.h:1.10 Rev: src/modules/Image/layers.c:1.81 Rev: src/modules/Image/match.h:1.15 Rev: src/modules/Image/matrix.c:1.42 Rev: src/modules/Image/operator.c:1.42 Rev: src/modules/Image/orient.c:1.22 Rev: src/modules/Image/pattern.c:1.27 Rev: src/modules/Image/phase.h:1.5 Rev: src/modules/Image/poly.c:1.16 Rev: src/modules/Image/polyfill.c:1.41 Rev: src/modules/Image/search.c:1.25 Rev: src/modules/Java/acconfig.h:1.4 Rev: src/modules/Java/jvm.c:1.44 Rev: src/modules/Java/ntdl.c:1.4 Rev: src/modules/MIME/acconfig.h:1.4 Rev: src/modules/MIME/mime.c:1.34 Rev: src/modules/Math/acconfig.h:1.3 Rev: src/modules/Math/math_matrix.c:1.35 Rev: src/modules/Math/math_module.c:1.11 Rev: src/modules/Math/math_module.h:1.9 Rev: src/modules/Math/matrix_code.h:1.7 Rev: src/modules/Math/transforms.cmod:1.8 Rev: src/modules/Math/transforms.h:1.3 Rev: src/modules/Mird/acconfig.h:1.5 Rev: src/modules/Mird/libmird/acconfig.h:1.5 Rev: src/modules/Mird/libmird/blocks.c:1.5 Rev: src/modules/Mird/libmird/cells.c:1.4 Rev: src/modules/Mird/libmird/database.c:1.6 Rev: src/modules/Mird/libmird/debug.c:1.4 Rev: src/modules/Mird/libmird/dmalloc.c:1.4 Rev: src/modules/Mird/libmird/dmalloc.h:1.4 Rev: src/modules/Mird/libmird/errors.c:1.4 Rev: src/modules/Mird/libmird/frags.c:1.4 Rev: src/modules/Mird/libmird/freelist.c:1.4 Rev: src/modules/Mird/libmird/hashtrie.c:1.6 Rev: src/modules/Mird/libmird/internal.h:1.6 Rev: src/modules/Mird/libmird/journal.c:1.4 Rev: src/modules/Mird/libmird/make_old_database.c:1.4 Rev: src/modules/Mird/libmird/physical.h:1.4 Rev: src/modules/Mird/libmird/skeys.c:1.4 Rev: src/modules/Mird/libmird/tables.c:1.4 Rev: src/modules/Mird/libmird/test.c:1.4 Rev: src/modules/Mird/libmird/testsuite.c:1.5 Rev: src/modules/Mird/libmird/transaction.c:1.4 Rev: src/modules/Mird/libmird/usage.c:1.4 Rev: src/modules/Mird/libmird/win32-config.h:1.5 Rev: src/modules/Mird/mird_glue.c:1.19 Rev: src/modules/Msql/msqlmod.c:1.22 Rev: src/modules/Msql/version.h:1.4 Rev: src/modules/Mysql/acconfig.h:1.9 Rev: src/modules/Mysql/dummy.c:1.7 Rev: src/modules/Mysql/mysql.c:1.59 Rev: src/modules/Mysql/precompiled_mysql.h:1.15 Rev: src/modules/Mysql/result.c:1.27 Rev: src/modules/Odbc/acconfig.h:1.7 Rev: src/modules/Odbc/odbc.c:1.32 Rev: src/modules/Odbc/odbc_result.c:1.32 Rev: src/modules/Odbc/precompiled_odbc.h:1.18 Rev: src/modules/Oracle/acconfig.h:1.3 Rev: src/modules/Oracle/oracle.c:1.73 Rev: src/modules/PDF/acconfig.h:1.4 Rev: src/modules/PDF/initstuff.h:1.3 Rev: src/modules/PDF/pdf_module.c:1.13 Rev: src/modules/PDF/pdflib_glue.c:1.10 Rev: src/modules/Parser/acconfig.h:1.4 Rev: src/modules/Parser/html.c:1.155 Rev: src/modules/Parser/initstuff.h:1.4 Rev: src/modules/Parser/parser.c:1.16 Rev: src/modules/Parser/parser.h:1.3 Rev: src/modules/Perl/acconfig.h:1.3 Rev: src/modules/Perl/perlmod.c:1.28 Rev: src/modules/Pipe/acconfig.h:1.3 Rev: src/modules/Pipe/pipe.c:1.51 Rev: src/modules/Postgres/pg_types.h:1.6 Rev: src/modules/Postgres/pgresult.c:1.19 Rev: src/modules/Postgres/pgresult.h:1.4 Rev: src/modules/Postgres/postgres.c:1.28 Rev: src/modules/Postgres/version.h:1.5 Rev: src/modules/Regexp/acconfig.h:1.3 Rev: src/modules/Regexp/glue.c:1.31 Rev: src/modules/Regexp/pike_regexp.c:1.22 Rev: src/modules/Regexp/pike_regexp.h:1.9 Rev: src/modules/SANE/acconfig.h:1.3 Rev: src/modules/SANE/sane.c:1.14 Rev: src/modules/Ssleay/acconfig.h:1.4 Rev: src/modules/Ssleay/ssleay.c:1.19 Rev: src/modules/Yp/acconfig.h:1.5 Rev: src/modules/Yp/yp.c:1.27 Rev: src/modules/_Charset/acconfig.h:1.3 Rev: src/modules/_Charset/charsetmod.c:1.38 Rev: src/modules/_Charset/iso2022.c:1.25 Rev: src/modules/_Charset/iso2022.h:1.5 Rev: src/modules/_Charset/misc.c:1.12 Rev: src/modules/_Charset/tables.c:1.13 Rev: src/modules/_Crypto/acconfig.h:1.3 Rev: src/modules/_Crypto/arcfour.c:1.19 Rev: src/modules/_Crypto/cast.c:1.13 Rev: src/modules/_Crypto/cbc.c:1.23 Rev: src/modules/_Crypto/crypto.c:1.51 Rev: src/modules/_Crypto/crypto.h:1.10 Rev: src/modules/_Crypto/des.c:1.26 Rev: src/modules/_Crypto/idea.c:1.20 Rev: src/modules/_Crypto/include/RCSID.h:1.8 Rev: src/modules/_Crypto/include/arcfour.h:1.6 Rev: src/modules/_Crypto/include/cast.h:1.4 Rev: src/modules/_Crypto/include/crypto_types.h:1.9 Rev: src/modules/_Crypto/include/des.h:1.6 Rev: src/modules/_Crypto/include/idea.h:1.6 Rev: src/modules/_Crypto/include/md2.h:1.3 Rev: src/modules/_Crypto/include/md4.h:1.3 Rev: src/modules/_Crypto/include/md5.h:1.4 Rev: src/modules/_Crypto/include/rijndael.h:1.4 Rev: src/modules/_Crypto/include/sha.h:1.6 Rev: src/modules/_Crypto/invert.c:1.15 Rev: src/modules/_Crypto/lib/arcfour.c:1.9 Rev: src/modules/_Crypto/lib/cast.c:1.4 Rev: src/modules/_Crypto/lib/cast_sboxes.h:1.4 Rev: src/modules/_Crypto/lib/crypt_md5.c:1.4 Rev: src/modules/_Crypto/lib/desCode.h:1.4 Rev: src/modules/_Crypto/lib/desKerb.c:1.5 Rev: src/modules/_Crypto/lib/desQuick.c:1.6 Rev: src/modules/_Crypto/lib/desTest.c:1.5 Rev: src/modules/_Crypto/lib/desUtil.c:1.4 Rev: src/modules/_Crypto/lib/desdata.c:1.7 Rev: src/modules/_Crypto/lib/desinfo.h:1.5 Rev: src/modules/_Crypto/lib/idea.c:1.8 Rev: src/modules/_Crypto/lib/md2.c:1.5 Rev: src/modules/_Crypto/lib/md4.c:1.3 Rev: src/modules/_Crypto/lib/md5.c:1.5 Rev: src/modules/_Crypto/lib/rijndael.c:1.3 Rev: src/modules/_Crypto/lib/sha.c:1.9 Rev: src/modules/_Crypto/md2.c:1.15 Rev: src/modules/_Crypto/md4.c:1.4 Rev: src/modules/_Crypto/md5.c:1.20 Rev: src/modules/_Crypto/nt.c:1.11 Rev: src/modules/_Crypto/pipe.c:1.24 Rev: src/modules/_Crypto/rijndael.c:1.9 Rev: src/modules/_Crypto/rsa.c:1.27 Rev: src/modules/_Crypto/sha.c:1.23 Rev: src/modules/_Ffmpeg/acconfig.h:1.5 Rev: src/modules/_Ffmpeg/ffmpeg.c:1.11 Rev: src/modules/_Image_FreeType/acconfig.h:1.3 Rev: src/modules/_Image_FreeType/freetype.c:1.9 Rev: src/modules/_Image_GIF/acconfig.h:1.3 Rev: src/modules/_Image_GIF/gif_lzw.c:1.5 Rev: src/modules/_Image_GIF/gif_lzw.h:1.3 Rev: src/modules/_Image_GIF/image_gif.c:1.13 Rev: src/modules/_Image_JPEG/acconfig.h:1.7 Rev: src/modules/_Image_JPEG/image_jpeg.c:1.57 Rev: src/modules/_Image_JPEG/jinclude.h:1.3 Rev: src/modules/_Image_JPEG/transupp.c:1.10 Rev: src/modules/_Image_JPEG/transupp.h:1.6 Rev: src/modules/_Image_TIFF/acconfig.h:1.3 Rev: src/modules/_Image_TIFF/image_tiff.c:1.30 Rev: src/modules/_Image_TTF/acconfig.h:1.5 Rev: src/modules/_Image_TTF/image_ttf.c:1.46 Rev: src/modules/_Image_XFace/acconfig.h:1.5 Rev: src/modules/_Image_XFace/image_xface.c:1.17 Rev: src/modules/_Roxen/acconfig.h:1.3 Rev: src/modules/_Roxen/roxen.c:1.29 Rev: src/modules/_math/acconfig.h:1.4 Rev: src/modules/_math/math.c:1.50 Rev: src/modules/files/acconfig.h:1.18 Rev: src/modules/files/datagram.c:1.8 Rev: src/modules/files/efuns.c:1.116 Rev: src/modules/files/file.c:1.246 Rev: src/modules/files/file.h:1.23 Rev: src/modules/files/file_functions.h:1.23 Rev: src/modules/files/sendfile.c:1.59 Rev: src/modules/files/socket.c:1.66 Rev: src/modules/files/stat.c:1.24 Rev: src/modules/files/termios.c:1.18 Rev: src/modules/files/termios_flags.h:1.4 Rev: src/modules/files/udp.c:1.39 Rev: src/modules/spider/acconfig.h:1.5 Rev: src/modules/spider/defs.h:1.6 Rev: src/modules/spider/discdate.c:1.13 Rev: src/modules/spider/spider.c:1.119 Rev: src/modules/spider/stardate.c:1.15 Rev: src/modules/spider/xml.c:1.54 Rev: src/modules/sprintf/acconfig.h:1.5 Rev: src/modules/sprintf/sprintf.c:1.97 Rev: src/modules/sybase/acconfig.h:1.5 Rev: src/modules/sybase/sybase.c:1.11 Rev: src/modules/sybase/sybase.h:1.6 Rev: src/modules/system/acconfig.h:1.13 Rev: src/modules/system/memory.c:1.17 Rev: src/modules/system/nt.c:1.53 Rev: src/modules/system/passwords.c:1.38 Rev: src/modules/system/syslog.c:1.18 Rev: src/modules/system/system.c:1.128 Rev: src/modules/system/system.h:1.8 Rev: src/multiset.h:1.27 Rev: src/object.c:1.206 Rev: src/object.h:1.74 Rev: src/opcodes.c:1.125 Rev: src/opcodes.h:1.30 Rev: src/operators.c:1.162 Rev: src/operators.h:1.14 Rev: src/patch_cc1.c:1.3 Rev: src/peep.c:1.77 Rev: src/peep.h:1.11 Rev: src/peep_t.c:1.3 Rev: src/pike_cpulib.c:1.4 Rev: src/pike_cpulib.h:1.11 Rev: src/pike_dlfcn.h:1.4 Rev: src/pike_error.h:1.21 Rev: src/pike_macros.h:1.33 Rev: src/pike_memory.c:1.124 Rev: src/pike_memory.h:1.34 Rev: src/pike_search.c:1.11 Rev: src/pike_search.h:1.6 Rev: src/pike_search_engine.c:1.10 Rev: src/pike_search_engine2.c:1.7 Rev: src/pike_threadlib.h:1.22 Rev: src/pike_types.c:1.198 Rev: src/pike_types.h:1.83 Rev: src/pikecode.c:1.7 Rev: src/pikecode.h:1.9 Rev: src/port.c:1.56 Rev: src/port.h:1.46 Rev: src/post_modules/GL/acconfig.h:1.5 Rev: src/post_modules/GL/auto.c.in:1.23 Rev: src/post_modules/GL/autodoc.c:1.7 Rev: src/post_modules/GL/top.c:1.17 Rev: src/post_modules/GLUT/acconfig.h:1.3 Rev: src/post_modules/GLUT/auto.c.in:1.6 Rev: src/post_modules/GLUT/top.c:1.7 Rev: src/post_modules/GTK/acconfig.h:1.8 Rev: src/post_modules/GTK/dummy.c:1.5 Rev: src/post_modules/GTK/gdkeventstrings.h:1.3 Rev: src/post_modules/GTK/pgtk.h:1.29 Rev: src/post_modules/GTK/source/encode_truecolor.c:1.8 Rev: src/post_modules/GTK/source/support.c:1.35 Rev: src/post_modules/SDL/SDL.cmod:1.6 Rev: src/post_modules/SDL/acconfig.h:1.3 Rev: src/post_modules/SDL/constants.h:1.4 Rev: src/post_modules/Shuffler/Shuffler.cmod:1.16 Rev: src/post_modules/Shuffler/a_source_pikestring.c:1.7 Rev: src/post_modules/Shuffler/a_source_system_memory.c:1.7 Rev: src/post_modules/Shuffler/b_source_normal_file.c:1.7 Rev: src/post_modules/Shuffler/c_source_stream.c:1.6 Rev: src/post_modules/Shuffler/d_source_pikestream.c:1.4 Rev: src/post_modules/Shuffler/shuffler.h:1.5 Rev: src/post_modules/Unicode/acconfig.h:1.3 Rev: src/post_modules/Unicode/buffer.c:1.5 Rev: src/post_modules/Unicode/buffer.h:1.4 Rev: src/post_modules/Unicode/hsize.h:1.3 Rev: src/post_modules/Unicode/normalize.c:1.11 Rev: src/post_modules/Unicode/normalize.h:1.3 Rev: src/post_modules/Unicode/split.c:1.3 Rev: src/post_modules/Unicode/split.h:1.3 Rev: src/post_modules/Unicode/unicode_module.cmod:1.5 Rev: src/post_modules/_Image_SVG/acconfig.h:1.3 Rev: src/post_modules/_Image_SVG/svg.c:1.7 Rev: src/preprocessor.h:1.53 Rev: src/program.c:1.449 Rev: src/program.h:1.168 Rev: src/program_areas.h:1.12 Rev: src/program_id.h:1.14 Rev: src/queue.c:1.10 Rev: src/queue.h:1.6 Rev: src/rbtree.c:1.12 Rev: src/rbtree.h:1.8 Rev: src/rbtree_low.h:1.5 Rev: src/rusage.c:1.23 Rev: src/rusage.h:1.9 Rev: src/security.c:1.38 Rev: src/security.h:1.16 Rev: src/signal_handler.c:1.232 Rev: src/signal_handler.h:1.15 Rev: src/smartlink.c:1.14 Rev: src/stralloc.c:1.148 Rev: src/stralloc.h:1.70 Rev: src/stuff.c:1.21 Rev: src/stuff.h:1.16 Rev: src/svalue.c:1.147 Rev: src/svalue.h:1.108 Rev: src/threads.c:1.188 Rev: src/threads.h:1.121 Rev: src/time_stuff.h:1.12 Rev: src/uncompressor.c:1.6 Rev: src/version.c:1.139 Rev: src/version.h:1.326
License identity program stage 1 (.c,.h) Rev: src/acconfig.h:1.106 Rev: src/alloca.c:1.6 Rev: src/apply_low.h:1.9 Rev: src/array.c:1.130 Rev: src/array.h:1.43 Rev: src/backend.h:1.15 Rev: src/bignum.c:1.26 Rev: src/bignum.h:1.15 Rev: src/block_alloc.h:1.44 Rev: src/block_alloc_h.h:1.12 Rev: src/builtin_functions.c:1.443 Rev: src/builtin_functions.h:1.21 Rev: src/builtin_functions_t.c:1.2 Rev: src/callback.c:1.28 Rev: src/callback.h:1.17 Rev: src/code/bytecode.c:1.5 Rev: src/code/bytecode.h:1.8 Rev: src/code/computedgoto.c:1.2 Rev: src/code/computedgoto.h:1.6 Rev: src/code/ia32.c:1.22 Rev: src/code/ia32.h:1.17 Rev: src/code/ppc32.c:1.22 Rev: src/code/ppc32.h:1.16 Rev: src/code/sparc.c:1.12 Rev: src/code/sparc.h:1.14 Rev: src/combine_path.h:1.10 Rev: src/compilation.h:1.29 Rev: src/constants.c:1.40 Rev: src/constants.h:1.26 Rev: src/cpp.c:1.104 Rev: src/cpp.h:1.6 Rev: src/crypt.c:1.3 Rev: src/cyclic.c:1.7 Rev: src/cyclic.h:1.6 Rev: src/dlopen.c:1.34 Rev: src/dmalloc.h:1.37 Rev: src/docode.c:1.148 Rev: src/docode.h:1.16 Rev: src/dummy_ci.h:1.5 Rev: src/dynamic_buffer.c:1.18 Rev: src/dynamic_buffer.h:1.15 Rev: src/dynamic_load.c:1.65 Rev: src/dynamic_load.h:1.5 Rev: src/efun.h:1.6 Rev: src/encode.c:1.153 Rev: src/encode.h:1.6 Rev: src/error.c:1.90 Rev: src/errors.h:1.21 Rev: src/fd_control.c:1.44 Rev: src/fd_control.h:1.9 Rev: src/fdlib.c:1.54 Rev: src/fdlib.h:1.42 Rev: src/fsort.c:1.20 Rev: src/fsort.h:1.5 Rev: src/fsort_template.h:1.12 Rev: src/gc.c:1.186 Rev: src/gc.h:1.91 Rev: src/global.h:1.75 Rev: src/hashtable.c:1.12 Rev: src/hashtable.h:1.8 Rev: src/interpret.c:1.268 Rev: src/interpret.h:1.112 Rev: src/interpret_functions.h:1.109 Rev: src/interpreter.h:1.77 Rev: src/language.yacc:1.298 Rev: src/las.c:1.301 Rev: src/las.h:1.57 Rev: src/las_t.c:1.2 Rev: src/lex.c:1.106 Rev: src/lex.h:1.23 Rev: src/lexer.h:1.39 Rev: src/main.c:1.154 Rev: src/main.h:1.19 Rev: src/mapping.c:1.150 Rev: src/mapping.h:1.43 Rev: src/module.c:1.18 Rev: src/module.h:1.7 Rev: src/module_magic.h:1.6 Rev: src/module_support.c:1.50 Rev: src/module_support.h:1.14 Rev: src/module_t.c:1.2 Rev: src/modules/CommonLog/acconfig.h:1.2 Rev: src/modules/CommonLog/clf.c:1.9 Rev: src/modules/DVB/acconfig.h:1.2 Rev: src/modules/DVB/dvb.c:1.10 Rev: src/modules/DVB/dvb.h:1.3 Rev: src/modules/DVB/psparser.c:1.4 Rev: src/modules/Gdbm/acconfig.h:1.2 Rev: src/modules/Gdbm/gdbmmod.c:1.20 Rev: src/modules/Gettext/acconfig.h:1.3 Rev: src/modules/Gettext/gettext.c:1.11 Rev: src/modules/Gmp/gmp_machine.h.in:1.7 Rev: src/modules/Gmp/mpz_glue.c:1.109 Rev: src/modules/Gmp/my_gmp.h:1.12 Rev: src/modules/Gmp/my_mpz_xor.c:1.4 Rev: src/modules/Gmp/next_prime.c:1.11 Rev: src/modules/Gz/acconfig.h:1.2 Rev: src/modules/Gz/zlibmod.c:1.53 Rev: src/modules/HTTPLoop/accept_and_parse.c:1.28 Rev: src/modules/HTTPLoop/accept_and_parse.h:1.9 Rev: src/modules/HTTPLoop/acconfig.h:1.3 Rev: src/modules/HTTPLoop/cache.c:1.18 Rev: src/modules/HTTPLoop/cache.h:1.9 Rev: src/modules/HTTPLoop/filesystem.c:1.6 Rev: src/modules/HTTPLoop/filesystem.h:1.2 Rev: src/modules/HTTPLoop/log.c:1.12 Rev: src/modules/HTTPLoop/log.h:1.2 Rev: src/modules/HTTPLoop/requestobject.c:1.22 Rev: src/modules/HTTPLoop/requestobject.h:1.2 Rev: src/modules/HTTPLoop/static_strings.h:1.2 Rev: src/modules/HTTPLoop/timeout.c:1.8 Rev: src/modules/HTTPLoop/timeout.h:1.3 Rev: src/modules/HTTPLoop/util.c:1.8 Rev: src/modules/HTTPLoop/util.h:1.4 Rev: src/modules/Image/acconfig.h:1.6 Rev: src/modules/Image/assembly.h:1.4 Rev: src/modules/Image/blit.c:1.52 Rev: src/modules/Image/blit_layer_include.h:1.7 Rev: src/modules/Image/colors.c:1.62 Rev: src/modules/Image/colors.h:1.7 Rev: src/modules/Image/colortable.c:1.111 Rev: src/modules/Image/colortable.h:1.26 Rev: src/modules/Image/colortable_lookup.h:1.19 Rev: src/modules/Image/dct.c:1.21 Rev: src/modules/Image/default_font.c:1.4 Rev: src/modules/Image/encodings/_xpm.c:1.20 Rev: src/modules/Image/encodings/any.c:1.24 Rev: src/modules/Image/encodings/avs.c:1.13 Rev: src/modules/Image/encodings/bmp.c:1.36 Rev: src/modules/Image/encodings/dsi.c:1.5 Rev: src/modules/Image/encodings/encodings.h:1.4 Rev: src/modules/Image/encodings/hrz.c:1.7 Rev: src/modules/Image/encodings/iff.c:1.11 Rev: src/modules/Image/encodings/ilbm.c:1.25 Rev: src/modules/Image/encodings/pcx.c:1.18 Rev: src/modules/Image/encodings/png.c:1.45 Rev: src/modules/Image/encodings/pnm.c:1.27 Rev: src/modules/Image/encodings/psd.c:1.33 Rev: src/modules/Image/encodings/psd_constant_strings.h:1.5 Rev: src/modules/Image/encodings/pvr.c:1.20 Rev: src/modules/Image/encodings/ras.c:1.17 Rev: src/modules/Image/encodings/tga.c:1.28 Rev: src/modules/Image/encodings/tim.c:1.13 Rev: src/modules/Image/encodings/wbf.c:1.12 Rev: src/modules/Image/encodings/x.c:1.38 Rev: src/modules/Image/encodings/xbm.c:1.16 Rev: src/modules/Image/encodings/xcf.c:1.41 Rev: src/modules/Image/encodings/xcf_constant_strings.h:1.2 Rev: src/modules/Image/encodings/xwd.c:1.22 Rev: src/modules/Image/font.c:1.73 Rev: src/modules/Image/image.c:1.198 Rev: src/modules/Image/image.h:1.49 Rev: src/modules/Image/image_module.c:1.15 Rev: src/modules/Image/initstuff.h:1.15 Rev: src/modules/Image/layer_channel.h:1.7 Rev: src/modules/Image/layer_oper.h:1.9 Rev: src/modules/Image/layers.c:1.80 Rev: src/modules/Image/match.h:1.14 Rev: src/modules/Image/matrix.c:1.41 Rev: src/modules/Image/operator.c:1.41 Rev: src/modules/Image/orient.c:1.21 Rev: src/modules/Image/pattern.c:1.26 Rev: src/modules/Image/phase.h:1.4 Rev: src/modules/Image/poly.c:1.15 Rev: src/modules/Image/polyfill.c:1.40 Rev: src/modules/Image/search.c:1.24 Rev: src/modules/Java/acconfig.h:1.3 Rev: src/modules/Java/jvm.c:1.43 Rev: src/modules/Java/ntdl.c:1.3 Rev: src/modules/MIME/acconfig.h:1.3 Rev: src/modules/MIME/mime.c:1.33 Rev: src/modules/Math/acconfig.h:1.2 Rev: src/modules/Math/math_matrix.c:1.34 Rev: src/modules/Math/math_module.c:1.10 Rev: src/modules/Math/math_module.h:1.8 Rev: src/modules/Math/matrix_code.h:1.6 Rev: src/modules/Math/transforms.h:1.2 Rev: src/modules/Mird/acconfig.h:1.4 Rev: src/modules/Mird/libmird/acconfig.h:1.3 Rev: src/modules/Mird/libmird/blocks.c:1.3 Rev: src/modules/Mird/libmird/cells.c:1.2 Rev: src/modules/Mird/libmird/database.c:1.4 Rev: src/modules/Mird/libmird/debug.c:1.2 Rev: src/modules/Mird/libmird/dmalloc.c:1.2 Rev: src/modules/Mird/libmird/dmalloc.h:1.2 Rev: src/modules/Mird/libmird/errors.c:1.2 Rev: src/modules/Mird/libmird/frags.c:1.2 Rev: src/modules/Mird/libmird/freelist.c:1.2 Rev: src/modules/Mird/libmird/hashtrie.c:1.4 Rev: src/modules/Mird/libmird/internal.h:1.4 Rev: src/modules/Mird/libmird/journal.c:1.2 Rev: src/modules/Mird/libmird/make_old_database.c:1.2 Rev: src/modules/Mird/libmird/mird.h.in:1.2 Rev: src/modules/Mird/libmird/physical.h:1.2 Rev: src/modules/Mird/libmird/skeys.c:1.2 Rev: src/modules/Mird/libmird/tables.c:1.2 Rev: src/modules/Mird/libmird/test.c:1.2 Rev: src/modules/Mird/libmird/testsuite.c:1.3 Rev: src/modules/Mird/libmird/transaction.c:1.2 Rev: src/modules/Mird/libmird/usage.c:1.2 Rev: src/modules/Mird/libmird/win32-config.h:1.3 Rev: src/modules/Mird/mird_glue.c:1.18 Rev: src/modules/Msql/msql_config.h.in:1.3 Rev: src/modules/Msql/msqlmod.c:1.21 Rev: src/modules/Msql/version.h:1.3 Rev: src/modules/Mysql/acconfig.h:1.8 Rev: src/modules/Mysql/dummy.c:1.6 Rev: src/modules/Mysql/mysql.c:1.58 Rev: src/modules/Mysql/precompiled_mysql.h:1.14 Rev: src/modules/Mysql/result.c:1.26 Rev: src/modules/Odbc/acconfig.h:1.6 Rev: src/modules/Odbc/odbc.c:1.31 Rev: src/modules/Odbc/odbc_result.c:1.31 Rev: src/modules/Odbc/precompiled_odbc.h:1.17 Rev: src/modules/Oracle/acconfig.h:1.2 Rev: src/modules/Oracle/oracle.c:1.72 Rev: src/modules/PDF/acconfig.h:1.3 Rev: src/modules/PDF/initstuff.h:1.2 Rev: src/modules/PDF/pdf_module.c:1.12 Rev: src/modules/PDF/pdflib_glue.c:1.9 Rev: src/modules/Parser/acconfig.h:1.3 Rev: src/modules/Parser/html.c:1.154 Rev: src/modules/Parser/initstuff.h:1.3 Rev: src/modules/Parser/parser.c:1.15 Rev: src/modules/Parser/parser.h:1.2 Rev: src/modules/Perl/acconfig.h:1.2 Rev: src/modules/Perl/perlmod.c:1.27 Rev: src/modules/Pipe/acconfig.h:1.2 Rev: src/modules/Pipe/pipe.c:1.50 Rev: src/modules/Postgres/pg_types.h:1.5 Rev: src/modules/Postgres/pgres_config.h.in:1.6 Rev: src/modules/Postgres/pgresult.c:1.18 Rev: src/modules/Postgres/pgresult.h:1.3 Rev: src/modules/Postgres/postgres.c:1.27 Rev: src/modules/Postgres/version.h:1.4 Rev: src/modules/Regexp/acconfig.h:1.2 Rev: src/modules/Regexp/glue.c:1.29 Rev: src/modules/Regexp/pike_regexp.c:1.21 Rev: src/modules/Regexp/pike_regexp.h:1.7 Rev: src/modules/SANE/acconfig.h:1.2 Rev: src/modules/SANE/sane.c:1.13 Rev: src/modules/Ssleay/acconfig.h:1.3 Rev: src/modules/Ssleay/ssleay.c:1.18 Rev: src/modules/Yp/acconfig.h:1.4 Rev: src/modules/Yp/yp.c:1.26 Rev: src/modules/_Charset/acconfig.h:1.2 Rev: src/modules/_Charset/charsetmod.c:1.37 Rev: src/modules/_Charset/iso2022.c:1.24 Rev: src/modules/_Charset/iso2022.h:1.4 Rev: src/modules/_Charset/misc.c:1.11 Rev: src/modules/_Charset/tables.c:1.12 Rev: src/modules/_Crypto/acconfig.h:1.2 Rev: src/modules/_Crypto/arcfour.c:1.18 Rev: src/modules/_Crypto/cast.c:1.12 Rev: src/modules/_Crypto/cbc.c:1.22 Rev: src/modules/_Crypto/crypto.c:1.50 Rev: src/modules/_Crypto/crypto.h:1.9 Rev: src/modules/_Crypto/des.c:1.25 Rev: src/modules/_Crypto/idea.c:1.19 Rev: src/modules/_Crypto/include/RCSID.h:1.7 Rev: src/modules/_Crypto/include/arcfour.h:1.5 Rev: src/modules/_Crypto/include/cast.h:1.3 Rev: src/modules/_Crypto/include/crypto_types.h:1.8 Rev: src/modules/_Crypto/include/des.h:1.5 Rev: src/modules/_Crypto/include/idea.h:1.5 Rev: src/modules/_Crypto/include/md2.h:1.2 Rev: src/modules/_Crypto/include/md4.h:1.2 Rev: src/modules/_Crypto/include/md5.h:1.3 Rev: src/modules/_Crypto/include/rijndael.h:1.3 Rev: src/modules/_Crypto/include/sha.h:1.5 Rev: src/modules/_Crypto/invert.c:1.14 Rev: src/modules/_Crypto/lib/arcfour.c:1.8 Rev: src/modules/_Crypto/lib/cast.c:1.3 Rev: src/modules/_Crypto/lib/cast_sboxes.h:1.3 Rev: src/modules/_Crypto/lib/crypt_md5.c:1.3 Rev: src/modules/_Crypto/lib/desCode.h:1.3 Rev: src/modules/_Crypto/lib/desKerb.c:1.4 Rev: src/modules/_Crypto/lib/desQuick.c:1.5 Rev: src/modules/_Crypto/lib/desTest.c:1.4 Rev: src/modules/_Crypto/lib/desUtil.c:1.3 Rev: src/modules/_Crypto/lib/desdata.c:1.6 Rev: src/modules/_Crypto/lib/desinfo.h:1.4 Rev: src/modules/_Crypto/lib/idea.c:1.7 Rev: src/modules/_Crypto/lib/md2.c:1.4 Rev: src/modules/_Crypto/lib/md4.c:1.2 Rev: src/modules/_Crypto/lib/md5.c:1.4 Rev: src/modules/_Crypto/lib/rijndael.c:1.2 Rev: src/modules/_Crypto/lib/sha.c:1.8 Rev: src/modules/_Crypto/md2.c:1.14 Rev: src/modules/_Crypto/md4.c:1.3 Rev: src/modules/_Crypto/md5.c:1.19 Rev: src/modules/_Crypto/nt.c:1.10 Rev: src/modules/_Crypto/pipe.c:1.23 Rev: src/modules/_Crypto/rijndael.c:1.8 Rev: src/modules/_Crypto/rsa.c:1.26 Rev: src/modules/_Crypto/sha.c:1.22 Rev: src/modules/_Ffmpeg/acconfig.h:1.4 Rev: src/modules/_Ffmpeg/ffmpeg.c:1.10 Rev: src/modules/_Image_FreeType/acconfig.h:1.2 Rev: src/modules/_Image_FreeType/freetype.c:1.8 Rev: src/modules/_Image_GIF/acconfig.h:1.2 Rev: src/modules/_Image_GIF/gif_lzw.c:1.4 Rev: src/modules/_Image_GIF/gif_lzw.h:1.2 Rev: src/modules/_Image_GIF/image_gif.c:1.12 Rev: src/modules/_Image_JPEG/acconfig.h:1.6 Rev: src/modules/_Image_JPEG/image_jpeg.c:1.56 Rev: src/modules/_Image_JPEG/jinclude.h:1.2 Rev: src/modules/_Image_JPEG/transupp.c:1.8 Rev: src/modules/_Image_JPEG/transupp.h:1.4 Rev: src/modules/_Image_TIFF/acconfig.h:1.2 Rev: src/modules/_Image_TIFF/image_tiff.c:1.29 Rev: src/modules/_Image_TTF/acconfig.h:1.4 Rev: src/modules/_Image_TTF/image_ttf.c:1.45 Rev: src/modules/_Image_XFace/acconfig.h:1.4 Rev: src/modules/_Image_XFace/image_xface.c:1.16 Rev: src/modules/_Roxen/acconfig.h:1.2 Rev: src/modules/_Roxen/roxen.c:1.28 Rev: src/modules/_math/acconfig.h:1.3 Rev: src/modules/_math/math.c:1.48 Rev: src/modules/files/acconfig.h:1.17 Rev: src/modules/files/datagram.c:1.6 Rev: src/modules/files/efuns.c:1.114 Rev: src/modules/files/file.c:1.244 Rev: src/modules/files/file.h:1.22 Rev: src/modules/files/file_functions.h:1.22 Rev: src/modules/files/sendfile.c:1.58 Rev: src/modules/files/socket.c:1.64 Rev: src/modules/files/stat.c:1.23 Rev: src/modules/files/termios.c:1.17 Rev: src/modules/files/termios_flags.h:1.3 Rev: src/modules/files/udp.c:1.38 Rev: src/modules/spider/acconfig.h:1.4 Rev: src/modules/spider/defs.h:1.5 Rev: src/modules/spider/discdate.c:1.12 Rev: src/modules/spider/spider.c:1.118 Rev: src/modules/spider/stardate.c:1.14 Rev: src/modules/spider/xml.c:1.53 Rev: src/modules/sprintf/acconfig.h:1.4 Rev: src/modules/sprintf/sprintf.c:1.96 Rev: src/modules/sybase/acconfig.h:1.4 Rev: src/modules/sybase/sybase.c:1.10 Rev: src/modules/sybase/sybase.h:1.5 Rev: src/modules/system/acconfig.h:1.12 Rev: src/modules/system/memory.c:1.16 Rev: src/modules/system/nt.c:1.52 Rev: src/modules/system/passwords.c:1.37 Rev: src/modules/system/syslog.c:1.17 Rev: src/modules/system/system.c:1.127 Rev: src/modules/system/system.h:1.7 Rev: src/multiset.c:1.52 Rev: src/multiset.h:1.26 Rev: src/object.c:1.204 Rev: src/object.h:1.73 Rev: src/opcodes.c:1.123 Rev: src/opcodes.h:1.29 Rev: src/operators.c:1.160 Rev: src/operators.h:1.13 Rev: src/patch_cc1.c:1.2 Rev: src/peep.c:1.76 Rev: src/peep.h:1.10 Rev: src/peep_t.c:1.2 Rev: src/pike_cpulib.c:1.3 Rev: src/pike_cpulib.h:1.10 Rev: src/pike_dlfcn.h:1.3 Rev: src/pike_error.h:1.20 Rev: src/pike_macros.h:1.32 Rev: src/pike_memory.c:1.122 Rev: src/pike_memory.h:1.33 Rev: src/pike_search.c:1.10 Rev: src/pike_search.h:1.5 Rev: src/pike_search_engine.c:1.9 Rev: src/pike_search_engine2.c:1.6 Rev: src/pike_threadlib.h:1.21 Rev: src/pike_types.c:1.196 Rev: src/pike_types.h:1.82 Rev: src/pikecode.c:1.6 Rev: src/pikecode.h:1.8 Rev: src/port.c:1.54 Rev: src/port.h:1.45 Rev: src/post_modules/GL/acconfig.h:1.4 Rev: src/post_modules/GL/auto.c.in:1.21 Rev: src/post_modules/GL/autodoc.c:1.6 Rev: src/post_modules/GL/top.c:1.16 Rev: src/post_modules/GLUT/acconfig.h:1.2 Rev: src/post_modules/GLUT/auto.c.in:1.4 Rev: src/post_modules/GLUT/top.c:1.6 Rev: src/post_modules/GTK/acconfig.h:1.7 Rev: src/post_modules/GTK/dummy.c:1.4 Rev: src/post_modules/GTK/gdkeventstrings.h:1.2 Rev: src/post_modules/GTK/pgtk.h:1.28 Rev: src/post_modules/GTK/source/encode_truecolor.c:1.7 Rev: src/post_modules/GTK/source/support.c:1.34 Rev: src/post_modules/SDL/acconfig.h:1.2 Rev: src/post_modules/SDL/constants.h:1.3 Rev: src/post_modules/Shuffler/a_source_pikestring.c:1.6 Rev: src/post_modules/Shuffler/a_source_system_memory.c:1.6 Rev: src/post_modules/Shuffler/b_source_normal_file.c:1.6 Rev: src/post_modules/Shuffler/c_source_stream.c:1.5 Rev: src/post_modules/Shuffler/d_source_pikestream.c:1.3 Rev: src/post_modules/Shuffler/shuffler.h:1.4 Rev: src/post_modules/Unicode/acconfig.h:1.2 Rev: src/post_modules/Unicode/buffer.c:1.4 Rev: src/post_modules/Unicode/buffer.h:1.3 Rev: src/post_modules/Unicode/hsize.h:1.2 Rev: src/post_modules/Unicode/normalize.c:1.10 Rev: src/post_modules/Unicode/normalize.h:1.2 Rev: src/post_modules/Unicode/split.c:1.2 Rev: src/post_modules/Unicode/split.h:1.2 Rev: src/post_modules/_Image_SVG/acconfig.h:1.2 Rev: src/post_modules/_Image_SVG/svg.c:1.6 Rev: src/preprocessor.h:1.52 Rev: src/program.c:1.447 Rev: src/program.h:1.167 Rev: src/program_areas.h:1.11 Rev: src/program_id.h:1.13 Rev: src/queue.c:1.9 Rev: src/queue.h:1.5 Rev: src/rbtree.c:1.11 Rev: src/rbtree.h:1.7 Rev: src/rbtree_low.h:1.4 Rev: src/rusage.c:1.21 Rev: src/rusage.h:1.8 Rev: src/security.c:1.37 Rev: src/security.h:1.15 Rev: src/signal_handler.c:1.230 Rev: src/signal_handler.h:1.14 Rev: src/smartlink.c:1.13 Rev: src/stralloc.c:1.146 Rev: src/stralloc.h:1.69 Rev: src/stuff.c:1.20 Rev: src/stuff.h:1.15 Rev: src/svalue.c:1.145 Rev: src/svalue.h:1.107 Rev: src/threads.c:1.187 Rev: src/threads.h:1.120 Rev: src/time_stuff.h:1.11 Rev: src/uncompressor.c:1.5 Rev: src/version.c:1.137 Rev: src/version.h:1.325
Added a check_threads_etc() before a normal svalue C function call; it's apparently just an oversight that there's none here when there is one before the call_lfun/APPLY_LOW variety. (Perhaps both of them could use a fast_check_threads_etc(3) or so, but it's not entirely certain that these paths are visited that often.) Replaced check_threads_etc() with fast_check_threads_etc(6) for normal pike function calls since they typically generate plenty of evaluator callback calls anyway. Rev: src/apply_low.h:1.8 Rev: src/interpret.c:1.266
Rename fatal -> Pike_fatal. Rev: src/apply_low.h:1.7 Rev: src/array.c:1.129 Rev: src/array.h:1.41 Rev: src/backend.cmod:1.27 Rev: src/bignum.c:1.25 Rev: src/block_alloc.h:1.41 Rev: src/builtin.cmod:1.90 Rev: src/builtin_functions.c:1.435 Rev: src/callback.c:1.26 Rev: src/code/ia32.c:1.21 Rev: src/code/ppc32.c:1.16 Rev: src/code/ppc32.h:1.14 Rev: src/code/sparc.c:1.11 Rev: src/code/sparc.h:1.13 Rev: src/compilation.h:1.28 Rev: src/constants.c:1.38 Rev: src/cpp.c:1.102 Rev: src/cyclic.c:1.6 Rev: src/dlopen.c:1.32 Rev: src/docode.c:1.144 Rev: src/dynamic_buffer.c:1.16 Rev: src/dynamic_load.c:1.64 Rev: src/encode.c:1.151 Rev: src/error.c:1.86 Rev: src/fd_control.c:1.41 Rev: src/fdlib.c:1.52 Rev: src/fdlib.h:1.41 Rev: src/fsort_template.h:1.11 Rev: src/gc.c:1.185 Rev: src/gc.h:1.90 Rev: src/hashtable.c:1.11 Rev: src/interpret.c:1.263 Rev: src/interpret.h:1.110 Rev: src/interpret_functions.h:1.105 Rev: src/interpreter.h:1.76 Rev: src/iterators.cmod:1.26 Rev: src/language.yacc:1.289 Rev: src/las.c:1.297 Rev: src/lex.c:1.105 Rev: src/lexer.h:1.38 Rev: src/main.c:1.150 Rev: src/mapping.c:1.149 Rev: src/module_support.c:1.46 Rev: src/modules/Gmp/mpf.cmod:1.9 Rev: src/modules/Gmp/mpq.cmod:1.10 Rev: src/modules/Gmp/mpz_glue.c:1.107 Rev: src/modules/HTTPLoop/cache.c:1.17 Rev: src/modules/HTTPLoop/requestobject.c:1.21 Rev: src/modules/Image/colors.c:1.61 Rev: src/modules/Image/colortable.c:1.109 Rev: src/modules/Image/colortable_lookup.h:1.18 Rev: src/modules/Image/encodings/bmp.c:1.35 Rev: src/modules/Image/font.c:1.72 Rev: src/modules/Image/image_module.c:1.14 Rev: src/modules/Image/layers.c:1.79 Rev: src/modules/Odbc/odbc.c:1.30 Rev: src/modules/Oracle/oracle.c:1.70 Rev: src/modules/PDF/pdf_module.c:1.11 Rev: src/modules/Parser/html.c:1.152 Rev: src/modules/Parser/parser.c:1.14 Rev: src/modules/Perl/perlmod.c:1.25 Rev: src/modules/Pipe/pipe.c:1.49 Rev: src/modules/_Charset/charsetmod.c:1.35 Rev: src/modules/_Charset/iso2022.c:1.23 Rev: src/modules/files/file.c:1.239 Rev: src/modules/files/sendfile.c:1.57 Rev: src/modules/files/socket.c:1.63 Rev: src/modules/files/stat.c:1.22 Rev: src/modules/files/udp.c:1.37 Rev: src/modules/spider/xml.c:1.52 Rev: src/modules/sprintf/sprintf.c:1.93 Rev: src/modules/sybase/sybase.c:1.9 Rev: src/multiset.c:1.50 Rev: src/multiset.h:1.25 Rev: src/object.c:1.203 Rev: src/object.h:1.71 Rev: src/opcodes.c:1.122 Rev: src/operators.c:1.159 Rev: src/peep.c:1.72 Rev: src/pike_error.h:1.19 Rev: src/pike_macros.h:1.31 Rev: src/pike_memory.c:1.120 Rev: src/pike_search.c:1.9 Rev: src/pike_search_engine.c:1.8 Rev: src/pike_search_engine2.c:1.5 Rev: src/pike_threadlib.h:1.16 Rev: src/pike_types.c:1.194 Rev: src/pike_types.h:1.79 Rev: src/port.c:1.52 Rev: src/post_modules/GTK/source/support.c:1.33 Rev: src/post_modules/Unicode/normalize.c:1.9 Rev: src/preprocessor.h:1.51 Rev: src/program.c:1.441 Rev: src/queue.c:1.8 Rev: src/rbtree.c:1.10 Rev: src/rbtree_low.h:1.2 Rev: src/signal_handler.c:1.225 Rev: src/stralloc.c:1.143 Rev: src/stralloc.h:1.66 Rev: src/svalue.c:1.144 Rev: src/svalue.h:1.106 Rev: src/threads.c:1.180
apply_low() on undefined functions now returns UNDEFINED instead of zero. Partial fix for [bug 2694 (#2694)]. Rev: src/apply_low.h:1.6
Changes from Hubbe fixed problems with custom handlers and implemented 2-pass decode_value for programs Rev: src/apply_low.h:1.5 Rev: src/interpret.h:1.104 Rev: src/object.h:1.65 Rev: src/program.h:1.147
reworked trampolines to cause less circular references, solves [bug 1937 (#1937)] Rev: src/apply_low.h:1.4 Rev: src/docode.c:1.134 Rev: src/interpret_functions.h:1.95 Rev: src/language.yacc:1.262 Rev: src/las.c:1.269 Rev: src/las.h:1.53 Rev: src/pike_types.h:1.73 Rev: src/program.c:1.378
don't try to call functions in unfinished programs.. Rev: src/apply_low.h:1.3
-d3 now calls do_debug() for every 8th function call instead of every function call, use -d4 to have do_debug() called every function call Rev: src/apply_low.h:1.2
optimized function calls a few more percent Rev: src/apply_low.h:1.1 Rev: src/interpret.c:1.245 Rev: src/interpret_functions.h:1.89