Commit Graph

8938 Commits (f3dfae04ba55fde18e7938b9e72bd4e64367e250)

Author SHA1 Message Date
Slava Pestov f3dfae04ba compiler: now that FFI has been deconcatenatized, we no longer need the special ##unary-float-function and ##binary-float-function fastpaths 2010-08-13 23:59:19 -07:00
Slava Pestov ed5cea57ea compiler.cfg: Reading the return value of a float-returning function on x86-32 had a side effect of popping the x87 stack, so it was not correct for DCE to just eliminate this if the return value was not used. Fix this by adding a new dead-outputs slot to alien-call-insns and having DCE move dead returns there 2010-08-13 23:19:56 -07:00
Joe Groff 41a6f62ca6 math.floats.env.x86: more direct test for stack fault detection 2010-08-13 22:20:16 -07:00
John Benediktsson 1f5a475541 help.apropos: some cleanup and performance improvement. 2010-08-13 19:32:49 -07:00
John Benediktsson 7ae0517288 tools.completion: making completions a lot faster using make. 2010-08-13 19:28:44 -07:00
John Benediktsson 46c282ad8a math.combinatorics: Fixing selections bug with nested sequences. 2010-08-13 14:34:14 -07:00
John Benediktsson 90b09ac95a Adding the "internet checksum" (RFC 1071). 2010-08-13 14:32:26 -07:00
John Benediktsson a46297fd1d db.sqlite.lib: fixing sqlite-row word. 2010-08-13 14:23:05 -07:00
Joe Groff ae4a9557bc opengl.gl: typo in the FFI bindings for some obscure gl functions 2010-08-13 10:16:47 -07:00
Joe Groff 939d602ad2 math.floats.env: detect +fp-x87-stack-fault+ during collect-fp-exceptions block 2010-08-12 23:23:00 -07:00
Slava Pestov 31ef4ad844 math.libm: fix regression: fsqrt intrinsic was not working ever since change was made to inline FUNCTION: bodies 2010-08-12 21:41:57 -07:00
Slava Pestov 8746ce1851 alien.prettyprint: fix unit test snafu 2010-08-11 21:52:37 -07:00
Slava Pestov 092e6f8c0a tools.time: fix documentation error (reported by Mitchell N Charity) 2010-08-11 19:20:37 -07:00
Joe Groff 03853ea8c3 opengl.gl: some opengl 4 functions were accidentally still presented as -EXT 2010-08-11 10:05:03 -07:00
Joe Groff e5080c0da4 alien.c-types: classify typedefs of array/string types as typedef-words so they prettyprint correctly 2010-08-11 10:03:19 -07:00
Jon Harper 75a0e3397c divisors returns empty list for 0
This is mainly for consistency with other words
(factors, group-factors, unique-factors)
2010-08-09 22:54:35 -07:00
Slava Pestov 2d3e202625 libc: make memory= inline just for fun 2010-08-06 00:16:25 -07:00
Slava Pestov 576eff2e04 pango: minor cleanups 2010-08-06 00:16:18 -07:00
Slava Pestov bd473cb970 classes.struct: make hashcode and equal? work on structs wrapping null pointers, to fix another obscure issues arising with tuple arrays 2010-08-06 00:15:22 -07:00
Slava Pestov 5d0f847a0c cpu.x86.32: fix 32-bit bootstrap 2010-08-02 20:51:29 -04:00
Slava Pestov 2f6ef5659d tools.scaffold: clean up 2010-08-02 20:50:59 -04:00
Slava Pestov ce60ea6b51 Merge branch 'tools.scaffold' of http://github.com/jonenst/factor 2010-08-02 20:47:13 -04:00
Slava Pestov 05ba77262a Fix start-context-and-delete sub-primitive (reported by Sascha Matzke) 2010-08-02 20:28:23 -04:00
Jon Harper 95aaccc6a1 Remove redundant newline 2010-08-02 17:20:31 +02:00
Jon Harper 2c41d24991 remove duplicates to conform with lint-tool 2010-08-02 17:20:19 +02:00
Philipp Brüschweiler 1d552fdc9b io.files.info.unix.linux: sometimes /etc/mtab isn't properly formatted (found on arch linux) 2010-08-01 14:00:03 +02:00
Slava Pestov 71c644ed83 ftp.server: remove MAIN: word, since it expected a parameter from the stack and main words must have effect ( -- ) (reported by Alec Barryman) 2010-07-31 18:33:26 -04:00
Slava Pestov 4abdc0b420 io.ports: calling '0 read' now returns an empty sequence without blocking (reported by Brennan Cheung) 2010-07-30 15:58:33 -04:00
Slava Pestov 82694f60af stack-checker.alien: generate a declaration for input parameter types 2010-07-30 15:50:05 -04:00
Slava Pestov 05f3dc7e76 combinators: make the behavior of 'case' consistent between the optimized and unoptimized forms 2010-07-30 14:21:30 -04:00
Slava Pestov c1ab48f44b cpu.x86: save context before calling new_context() since it can trigger GC (bug reported by Sascha Matzke) 2010-07-30 01:07:53 -04:00
Slava Pestov a86981cbde alien.prettyprint: fix test failure 2010-07-29 21:09:05 -04:00
Slava Pestov 179f32cdeb compiler.cfg.linear-scan: fix bad interaction between inactive intervals and sync points 2010-07-29 21:06:48 -04:00
Slava Pestov 801197a58d classes.algebra: make it work better to fix bug reported by Sascha Matzke 2010-07-29 19:57:23 -04:00
Slava Pestov 030009c029 ui.backend.windows: fix compile error in ui-wndproc 2010-07-29 17:22:34 -04:00
Slava Pestov fcf597e8ca alien.syntax: FUNCTION: and FUNCTION-ALIAS: now define inline words 2010-07-28 03:05:14 -04:00
Slava Pestov 7d792778f5 FFI rewrite part 7: compile callback bodies with the optimizing compiler 2010-07-28 00:49:26 -04:00
Slava Pestov 10d25cc0ad Revert "compiler.cfg: change linear ordering to place GC call blocks at the end"
This reverts commit 544a288192.
2010-07-27 23:58:41 -04:00
Slava Pestov 544a288192 compiler.cfg: change linear ordering to place GC call blocks at the end 2010-07-27 13:00:28 -04:00
Slava Pestov f69411fcfb compiler.cfg: now that kill-blocks cannot contain instructions that define vregs we can skip them all 2010-07-27 12:40:31 -04:00
Slava Pestov 1055b49315 help.html: escape % in word names (reported by Anton Gorenko) 2010-07-26 17:43:50 -04:00
Slava Pestov 9cbff0c470 Merge branch 'master' of http://github.com/mrjbq7/factor 2010-07-26 15:10:50 -04:00
Slava Pestov 3961c4f657 peg.ebnf: minor fix 2010-07-26 12:40:32 -04:00
John Benediktsson 3fd8bd6649 math.combinatorics: improve all-subsets and selections words. 2010-07-26 08:12:36 -07:00
John Benediktsson c5d8268527 db: fix typo in docs. 2010-07-26 08:11:51 -07:00
Slava Pestov 7fe6721993 math.matrices: move normal word from gpu.demos.bunny and reverse sign 2010-07-23 20:41:08 -07:00
Slava Pestov d72b8d77aa regexp: fix test 2010-07-23 20:40:44 -07:00
Slava Pestov 3e836c4e07 regexp: fix match iteration with empty matches, and fix reverse regexes since they were totally broken (bugs reported by Joe Groff and various others) 2010-07-23 19:44:39 -07:00
Slava Pestov 4415a0924c compiler.tree.finalization: record dependencies on inlined predicates 2010-07-23 16:31:15 -07:00
Slava Pestov 096b758ea0 io.files.unix: fix tests for recent calendar.unix vocab changes 2010-07-21 00:23:35 -04:00