Compiler [ppc32/ppc64/sparc/ia32]: Fixed yet another couple of Grubba's incessant typos.
Runtime: Increase the maximum number of bytecode opcodes to 512. Adds F_INSTR_PREFIX_256. We were very close to the opcode limit...
Move string_builder_append_disassembly() to string_builder.cmod. Some minor API-changes to string_builder_append_disassembly() to make it architecture-independant, and suitable for more use-cases than just byte-code disassembly. The displayed address is now independant of the actual address of the memory dump. Also adds some documentation.
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. ...
Compiler [Sparc]: Improved support for large addresses. It seems gcc on Linux/sparc64 places code at 0x10000000000 (out of reach for the generated code, which only supported addresses up to and including 0x3ffffffff). The maximum supported address is now 0xfffffffffff.
Compiler [Sparc]: Fixed typo in previous commit.
Merge remote-tracking branch 'origin/8.1' into gobject-introspection
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.
Compiler [sparc]: Use string_builder_append_disassembly(). Also some minor formatting changes for the ld* and st* opcodes.
Replace dynamic_buffer API everywhere This change should be purely cosmetic. It replaces the old dynamic_buffer API by the corresponding byte_buffer API everywhere. The wrapper definitions in dynamic_buffer.h will remain for now.
sparc: Load interpreter pointer in low_ins_call as it may have been forgotten
Removed trailing spaces.
Compiler [sparc]: Added kludge to fix the code-generator for sparc. Some of the branch opcodes were broken on sparc when PIKE_DEBUG wasn't active. This is a temporary workaround.
Runtime: Unified struct svalue and struct fast_svalue. Modern gcc (4.7.3) had aliasing problems with the two structs, which caused changes performed with SET_SVAL() (which used struct fast_svalue) to not be reflected in TYPEOF() (which used struct svalue). This in turn caused eg casts of integers to floats to fail with "Cast failed, wanted float, got int". The above problem is now solved by having an actual union for the type fields in struct svalue. This has the additional benefit of forcing all code to use the svalue macros. NB: This code change will cause problems with compilers that don't support union initializers.
[sparc] Fixed bug introduced by the svalue renumbering. The svalue type fields were set from a dirty register when pushing the zero integer. Fixes the fatal "Invalid type 120 in svalue at xxxxxxxx.", and similar.
Merge branch '8.0' into gobject-introspection
Removed $Id$.
Interpreter mega patch: The global Pike_interpreter struct replaced with Pike_interpreter_pointer.
No more foreign_idents. More pain than they are worth.
No more foreign_idents.
Fixed more typos... Rev: src/code/sparc.c:1.51
Oops, fixed typo. Rev: src/code/sparc.c:1.50
Updated to new Pike_fp->context. Rev: src/code/ia32.c:1.47 Rev: src/code/ppc32.c:1.42 Rev: src/code/ppc64.c:1.2 Rev: src/code/sparc.c:1.49
Pike opcode arguments are signed (cf struct p_instr_s). Rev: src/code/amd64.c:1.2 Rev: src/code/bytecode.c:1.8 Rev: src/code/computedgoto.c:1.5 Rev: src/code/ia32.c:1.46 Rev: src/code/ia32.h:1.30 Rev: src/code/ppc32.c:1.41 Rev: src/code/sparc.c:1.48 Rev: src/pikecode.h:1.14
F_ESCAPE_CATCH has changed implementation; don't inline the old one... Rev: src/code/ppc32.c:1.39 Rev: src/code/sparc.c:1.47
Inline more of POS_INT_INDEX and NEG_INT_INDEX. Rev: src/code/sparc.c:1.46
Now uses bias when accessing the pike stack. Fixed a few signed/unsigned bugs. Rev: src/code/sparc.c:1.45
Bugfix for sparc_push_int() when sizeof(INT_TYPE) > sizeof(INT32). Rev: src/code/sparc.c:1.44
Some cleanups in return address handling. Rev: src/code/sparc.c:1.43
Linenumber fix for sparc 64. Rev: src/code/sparc.c:1.42
Oops, forgot some debug... Rev: src/code/sparc.c:1.41
Added detection and some support for sparcv9 (aka sparc64). Rev: src/code/sparc.c:1.40 Rev: src/code/sparc.h:1.24
Fixed catch problem the proper way. Rev: src/code/ppc32.c:1.33 Rev: src/code/sparc.c:1.35 Rev: src/interpret_functions.h:1.129
Fixed catch problem the proper way. Rev: src/code/ppc32.c:1.35 Rev: src/code/sparc.c:1.39 Rev: src/interpret_functions.h:1.166
Backported several code-generator fixes from Pike 7.5. Rev: src/code/bytecode.c:1.7 Rev: src/code/computedgoto.c:1.4 Rev: src/code/ia32.c:1.28 Rev: src/code/ppc32.c:1.30 Rev: src/code/sparc.c:1.34 Rev: src/docode.c:1.167 Rev: src/docode.h:1.18 Rev: src/las.c:1.322 Rev: src/peep.c:1.87 Rev: src/peep.h:1.14
Various assemble()-related cleanups: Moved the global variable store_linenumbers to an argument of assemble(). assemble() and docode() now return the entrypoint of the generated code. Support for ALIGN_PIKE_FUNCTION_BEGINNINGS has moved to assemble(). Some lowlevel opcode stuff has been moved from eval_low() to docode(). Moved call of ADD_COMPILED() from the individual files in code/ to assemble(). Added pseudo opcodes F_FILENAME and F_LINE for the benefit of PIKE_PORTABLE_BYTECODE. assemble() now has some support for PIKE_PORTABLE_BYTECODE. Rev: src/code/bytecode.c:1.7 Rev: src/code/computedgoto.c:1.4 Rev: src/code/ia32.c:1.36 Rev: src/code/ppc32.c:1.33 Rev: src/code/sparc.c:1.38 Rev: src/docode.c:1.173 Rev: src/docode.h:1.19 Rev: src/las.c:1.343 Rev: src/opcodes.c:1.161 Rev: src/opcodes.h:1.38 Rev: src/peep.c:1.93 Rev: src/peep.h:1.14
Added debug for checking that the values cached in registers is correct. Rev: src/code/sparc.c:1.37
Now looks at I_UPDATE_{SP,M_SP,FP}. Rev: src/code/sparc.c:1.36
Fixes for the rename f_Iterator -> f_get_iterator. Rev: src/builtin_functions.h:1.24 Rev: src/code/ia32.c:1.33 Rev: src/code/ppc32.c:1.31 Rev: src/code/sparc.c:1.35 Rev: src/interpret_functions.h:1.148
Fixed some T_LVALUE. Rev: src/code/ppc32.c:1.30 Rev: src/code/sparc.c:1.34
Removed the redundant opcode alias handling, since it is now performaed by the instrs table. Rev: src/code/sparc.c:1.33
Oops, missed to add macro SPARC_CALL(). Rev: src/code/sparc.c:1.32
Now uses call instead of rd %pc, since the asr registers are implementation specific on sparc V7 and V8. Rev: src/code/sparc.c:1.31
Oops, bugfix. Rev: src/code/sparc.c:1.30
Now supports Sparc V7 and V8 again. Rev: src/code/sparc.c:1.29
F_LOCAL_LVALUE, F_ESCAPE_CATCH and F_EXIT_CATCH are now also inlined. Rev: src/code/sparc.c:1.28
Bug found and fixed. Optimizations reenabled. Rev: src/code/sparc.c:1.27 Rev: src/code/sparc.h:1.20
There seems to be a bug somewhere. Disabled for now. Rev: src/code/sparc.c:1.26
Added alias expansion of some more opcodes. Rev: src/code/sparc.c:1.25
Improved code generation. Rev: src/code/sparc.c:1.24 Rev: src/code/sparc.h:1.19
Improved disassembler. Rev: src/code/sparc.c:1.23
Somewhat improved code generation. Rev: src/code/sparc.c:1.22
Some linenumber fixes. Rev: src/code/sparc.c:1.21
Support for DISASSEMBLE_CODE(). Less setting of Pike_pc overhead. Rev: src/code/sparc.c:1.20 Rev: src/code/sparc.h:1.18
Bugfix. Rev: src/code/sparc.c:1.19
Oops, disabled some debug. Rev: src/code/sparc.c:1.18
Improved code generation for sparc. Rev: src/code/sparc.c:1.17 Rev: src/code/sparc.h:1.17
Bugfix. Rev: src/code/sparc.c:1.16
Bugfix. Rev: src/code/sparc.c:1.15
Code cleanup. Rev: src/code/sparc.c:1.14 Rev: src/code/sparc.h:1.16
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
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
Do not generate completely different machine code by default just because Pike is compiled with rtl debug. Now debug level 3 or more is required. Rev: src/code/ia32.c:1.19 Rev: src/code/ppc32.c:1.14 Rev: src/code/sparc.c:1.10
Removed the generic simple operator opcode optimizations. Rev: src/code/ia32.c:1.11 Rev: src/code/sparc.c:1.9
And now it actually works too... Rev: src/code/sparc.c:1.8
Some improved code-generation ported from IA32. Rev: src/code/sparc.c:1.7
Less inline assembler. Rev: src/code/sparc.c:1.6 Rev: src/code/sparc.h:1.6
Moved definition of PIKE_OPCODE_T to pikecode.h. Rev: src/code/README.txt:1.4 Rev: src/code/bytecode.h:1.4 Rev: src/code/computedgoto.h:1.3 Rev: src/code/ia32.h:1.5 Rev: src/code/sparc.c:1.5 Rev: src/code/sparc.h:1.5 Rev: src/interpret.h:1.94 Rev: src/program.h:1.141
Improved code-generator and a bugfix. Rev: src/code/sparc.c:1.4
Added {EN,DE}CODE_PROGRAM() to the pikecode API. Rev: src/code/README.txt:1.3 Rev: src/code/sparc.c:1.3 Rev: src/code/sparc.h:1.4 Rev: src/encode.c:1.115
Moved some stuff to macros. Rev: src/code/bytecode.c:1.4 Rev: src/code/bytecode.h:1.2 Rev: src/code/sparc.c:1.2 Rev: src/code/sparc.h:1.2
Split out the low-level code-generation code to separate files. Rev: src/Makefile.in:1.270 Rev: src/code/README.txt:1.1 Rev: src/code/bytecode.c:1.1 Rev: src/code/bytecode.h:1.1 Rev: src/code/computedgoto.c:1.1 Rev: src/code/computedgoto.h:1.1 Rev: src/code/ia32.c:1.1 Rev: src/code/ia32.h:1.1 Rev: src/code/sparc.c:1.1 Rev: src/code/sparc.h:1.1 Rev: src/peep.c:1.62 Rev: src/pikecode.c:1.1 Rev: src/pikecode.h:1.1