Commit Graph

18318 Commits (57d99680063e023a14a9ebb974424133d20d08e8)

Author SHA1 Message Date
Slava Pestov 57d9968006 Merge branch 'client-bind' of git://github.com/x6j8x/factor 2009-10-23 03:32:38 -05:00
Slava Pestov 9d4df482c8 help: don't consider children of $markup-examples for cross-referencing 2009-10-23 03:27:45 -05:00
Slava Pestov e8fd85437b compiler: fix stack effect inference bug discovered by x6j8x; it was possible to define a word which did not compile but could be called anyway 2009-10-23 03:27:25 -05:00
Slava Pestov a5d4f9cf16 grouping: clump on empty sequence was trying to make a sequence of length -1 2009-10-23 02:58:15 -05:00
Sascha Matzke a36e7ff40a added with-local-address to bind the local address of a socket to a specific IP or IP/port combination (sometimes required to get through firewalls) 2009-10-23 08:10:03 +02:00
Joe Groff 15f4196d43 gpu.demos.bunny: tokenize model file as it's read to avoid an extra splitting-and-filtering pass 2009-10-23 00:08:14 -05:00
Joe Groff d5d89f03a7 swap around io combinators to avoid a bunch of redundant "input-stream get"s in each-line, each-block, contents, etc. 2009-10-23 00:07:19 -05:00
Joe Groff 28f5347e71 tighten some screws in math.parser 2009-10-22 20:48:46 -05:00
Joe Groff 34027e46b6 remove a redundant head from parse-bunny-model 2009-10-22 20:26:43 -05:00
Joe Groff 943bde59f9 speed up dec>float a little 2009-10-22 18:55:32 -05:00
Joe Groff cdd0e5774e make new-resizable on growable sequences return a growable of the same type 2009-10-22 18:55:00 -05:00
Joe Groff e31ed3eda4 add filter-as to sequences 2009-10-22 17:37:20 -05:00
Joe Groff 1a7b4d7c63 inline the trivial words in math.parser 2009-10-22 17:26:22 -05:00
Joe Groff 27100ae094 improve gpu.demos.bunny mesh generation performance 2009-10-22 16:54:54 -05:00
Joe Groff 84f203afcc math.matrices: vectorizable definition of cross 2009-10-22 16:26:25 -05:00
Joe Groff e4f108714a add nproduce and nproduce-as combinators to sequences.generalizations 2009-10-22 15:32:34 -05:00
Joe Groff ba5429e772 fix sequences bootstrap 2009-10-22 14:53:16 -05:00
Joe Groff fdea9b09f2 change produce-as so it uses an intermediate vector of a type appropriate to the destination type 2009-10-22 14:35:27 -05:00
Joe Groff 6e22945d41 Merge branch 'master' of git://factorcode.org/git/factor 2009-10-22 14:18:09 -05:00
Joe Groff 3f1b664b74 break off a "sequences.generalizations" vocab for neach, nmap, and mnmap 2009-10-22 13:31:03 -05:00
Doug Coleman 649323ebe0 Merge branch 'master' of git://factorcode.org/git/factor 2009-10-22 13:20:17 -05:00
Slava Pestov 0c40eb51ae tools.profiler: fix tests 2009-10-22 05:40:31 -05:00
Slava Pestov 3d5c3935ad vm: fix compilation 2009-10-22 06:38:02 -04:00
Slava Pestov f24942e063 vm: clean up signal handling and add EXC_BAD_INSTRUCTION Mach exception handler for OS X, since signal handlers cannot change the stack pointer 2009-10-22 05:22:59 -05:00
Joe Groff 6c1a70c218 Merge branch 'master' of git://factorcode.org/git/factor 2009-10-22 00:18:16 -05:00
Joe Groff 9a91abe8a8 also print undocumented windows SSE exception codes 2009-10-22 00:18:01 -05:00
Joe Groff c4fe86fa7d tweak windows exception error printing 2009-10-21 23:59:37 -05:00
Joe Groff 432d4f79e9 give better error message for windows exceptions, and don't lop off the top end of the exception code when the vm throws the error 2009-10-21 23:37:51 -05:00
Joe Groff 66dc1c6311 oops, longlong comparison is sse4.2, not 4.1 2009-10-21 23:00:02 -05:00
Joe Groff b89047b3d3 fix tools.deploy test 2009-10-21 22:12:28 -05:00
Joe Groff c3b8847936 update a bunch of alien-callbacks and alien-indirects to use c-type words 2009-10-21 21:10:11 -05:00
Joe Groff 7fac3682a6 update some naked alien-invokes to use c-type words 2009-10-21 18:44:00 -05:00
Joe Groff f9320e229f update cocoa tests 2009-10-21 18:19:35 -05:00
Joe Groff cc5f9ff98a update cocoa bridge to use c-type words 2009-10-21 18:17:29 -05:00
Doug Coleman 1b4e3cb7a6 fix more docs typos 2009-10-21 18:11:24 -05:00
Doug Coleman 0d4b9132d7 fix a bunch of typos in docs 2009-10-21 17:40:43 -05:00
Doug Coleman 83a442c30f don't natural-sort the stack effects or $values in help-lint -- catches a lot more documentation errors 2009-10-21 17:39:53 -05:00
Doug Coleman c5dd8d0b20 Merge branch 'master' of git://factorcode.org/git/factor 2009-10-21 12:11:16 -05:00
Joe Groff bedfc8f13c vif combinator 2009-10-20 22:49:20 -05:00
Doug Coleman 9781e5180c fix doc formatting for io.mmap 2009-10-20 22:43:11 -05:00
Doug Coleman c681039c77 fix a normalization bug in decimals 2009-10-20 22:37:44 -05:00
Joe Groff 8a6b0a1453 generate unsigned vector comparison fallbacks using min/max or xor/signed compare 2009-10-20 22:30:57 -05:00
Joe Groff cb36111a3c generate better fallback code for vmin/vmax intrinsics 2009-10-20 19:22:38 -05:00
Joe Groff 6f72c3ca24 Merge branch 'master' of git://factorcode.org/git/factor 2009-10-20 17:42:29 -05:00
Joe Groff 764e085004 value numbering rewrite rules for vector ops to convert "not and" to "andn" and "not andn" to "and" 2009-10-20 17:29:01 -05:00
Joe Groff 34344be636 clean up vector lerp functions to be better vectorizable 2009-10-20 17:11:22 -05:00
Slava Pestov 32adb5df27 classes.builtin: fix help lint 2009-10-20 14:28:34 -05:00
Slava Pestov 5c429fdfd9 Merge branch 'master' of git://factorcode.org/git/factor 2009-10-20 07:07:16 -05:00
Slava Pestov 5346fb9f23 help.handbook: remove 'type index' 2009-10-20 07:07:03 -05:00
Slava Pestov 248f178e64 math.vectors: fix behavioral difference between generic vector vmin vmax and float specialized versions thereof 2009-10-20 07:06:44 -05:00