2016-02-01T00:15:47Z psilord joined #sbcl 2016-02-01T00:20:39Z sjl joined #sbcl 2016-02-01T00:33:31Z stassats quit (Ping timeout: 265 seconds) 2016-02-01T00:41:58Z psilord quit (Quit: Leaving.) 2016-02-01T00:53:35Z scymtym_ quit (Ping timeout: 276 seconds) 2016-02-01T01:20:27Z Quadresce` joined #sbcl 2016-02-01T01:22:36Z Quadrescence quit (Ping timeout: 250 seconds) 2016-02-01T01:35:36Z sjl quit (Ping timeout: 250 seconds) 2016-02-01T01:42:46Z jasom quit (Ping timeout: 240 seconds) 2016-02-01T01:44:26Z zacts joined #sbcl 2016-02-01T02:05:40Z andreh joined #sbcl 2016-02-01T02:16:54Z loke_: If I want to create an optimisation that changes (= (length x) y) where x is a list and and y is an integer into a call to PROPER-LIST-OF-LENGTH, how do I do it? In a source transform I don't have type information. 2016-02-01T02:21:22Z pkhuong: grep for splice-fun-args 2016-02-01T02:21:24Z pkhuong: you 2016-02-01T02:21:43Z pkhuong: need to write a transform for = (or whatever = gets transformed to) 2016-02-01T02:22:59Z nyef: Probably transforms to EQ if one of the arguments is a fixnum. 2016-02-01T02:23:03Z pkhuong: that looks at its arguments to do pattern matching, splice it the argument to length to get something like (= x y), and return a form to replace =. 2016-02-01T02:23:51Z pkhuong: the modular arithmetic stuff might be useful to figure out pattern matching. 2016-02-01T02:24:24Z pkhuong: the big problem with SBCL and pattern matching is that nodes are transformed bottom up. by the time you see (= ...), (length x) might also have been transformed away. 2016-02-01T02:27:31Z psilord joined #sbcl 2016-02-01T02:36:13Z psy_ joined #sbcl 2016-02-01T03:27:58Z Quadresce` is now known as Quadrescence 2016-02-01T03:28:02Z Quadrescence quit (Changing host) 2016-02-01T03:28:02Z Quadrescence joined #sbcl 2016-02-01T03:32:19Z sjl joined #sbcl 2016-02-01T04:13:01Z loke_: pkhuong: Thanks a lot! 2016-02-01T04:13:08Z loke_: Sorry for not noticing your reply sooner. 2016-02-01T04:17:40Z psy_ quit (Read error: No route to host) 2016-02-01T05:42:46Z myrkraverk_ joined #sbcl 2016-02-01T05:43:35Z frankS2_ joined #sbcl 2016-02-01T05:44:15Z wheelsucker quit (Ping timeout: 240 seconds) 2016-02-01T05:45:13Z |3b|` joined #sbcl 2016-02-01T05:45:29Z jsnell_ joined #sbcl 2016-02-01T05:49:32Z Xof quit (*.net *.split) 2016-02-01T05:49:32Z frankS2 quit (*.net *.split) 2016-02-01T05:49:32Z myrkraverk quit (*.net *.split) 2016-02-01T05:49:32Z scymtym quit (*.net *.split) 2016-02-01T05:49:32Z |3b| quit (*.net *.split) 2016-02-01T05:49:32Z clop quit (*.net *.split) 2016-02-01T05:49:35Z brucem quit (*.net *.split) 2016-02-01T05:49:37Z jsnell quit (*.net *.split) 2016-02-01T05:52:39Z frankS2_ is now known as frankS2 2016-02-01T05:54:22Z brucem joined #sbcl 2016-02-01T05:57:12Z clop joined #sbcl 2016-02-01T06:02:15Z brucem quit (Changing host) 2016-02-01T06:02:15Z brucem joined #sbcl 2016-02-01T06:05:42Z andreh quit (Remote host closed the connection) 2016-02-01T06:41:44Z igajsin left #sbcl 2016-02-01T06:48:33Z psilord quit (Quit: Leaving.) 2016-02-01T07:05:15Z sjl quit (Ping timeout: 240 seconds) 2016-02-01T07:34:36Z Xof joined #sbcl 2016-02-01T08:10:32Z myrkraverk_ quit (Remote host closed the connection) 2016-02-01T08:12:43Z prxq joined #sbcl 2016-02-01T08:25:56Z Cymew joined #sbcl 2016-02-01T08:27:11Z loke_ quit (Ping timeout: 265 seconds) 2016-02-01T08:29:06Z myrkraverk joined #sbcl 2016-02-01T08:40:52Z loke_ joined #sbcl 2016-02-01T08:43:30Z loke_ is now known as loke 2016-02-01T09:00:47Z prxq quit (Remote host closed the connection) 2016-02-01T09:42:50Z hitecnologys quit (Ping timeout: 256 seconds) 2016-02-01T09:53:03Z stassats joined #sbcl 2016-02-01T09:54:15Z ASau quit (Ping timeout: 245 seconds) 2016-02-01T09:54:56Z stassats: not sure how to inform fndb about function arguments 2016-02-01T09:55:14Z stassats: can't use (FUNCTION (t t)), since things also accept symbols 2016-02-01T09:55:51Z stassats: introducing a new ctype is hard 2016-02-01T09:56:37Z stassats: parsing the type passed to defknown, stripping and stashing the argument info, maybe 2016-02-01T10:02:44Z stassats: REDUCE bothers me, its function must accept 0 and 2 arguments, i've been guilty myself of not always heeding that 2016-02-01T10:02:54Z stassats: and that's if there's no :initial-value 2016-02-01T10:08:41Z sjl joined #sbcl 2016-02-01T10:12:17Z hitecnologys joined #sbcl 2016-02-01T10:16:26Z hitecnologys quit (Ping timeout: 240 seconds) 2016-02-01T10:19:59Z whiteline quit (Ping timeout: 264 seconds) 2016-02-01T10:29:12Z hitecnologys joined #sbcl 2016-02-01T10:33:48Z stassats: i guess i'll use SB-INT:PARSE-LAMBDA-LIST to parse the type specifier, fetching something like (CALLABLE 2) 2016-02-01T10:42:29Z loke quit (Ping timeout: 276 seconds) 2016-02-01T10:42:32Z attila_lendvai joined #sbcl 2016-02-01T10:45:09Z edgar-rft quit (Quit: edgar-rft) 2016-02-01T10:54:11Z loke joined #sbcl 2016-02-01T11:05:52Z stassats: auto-dx for callbacks to FIND/REDUCE/friends? 2016-02-01T11:50:11Z stassats quit (Ping timeout: 265 seconds) 2016-02-01T11:50:33Z stassats joined #sbcl 2016-02-01T11:54:46Z stassats quit (Ping timeout: 240 seconds) 2016-02-01T11:55:31Z stassats joined #sbcl 2016-02-01T12:00:11Z stassats quit (Ping timeout: 264 seconds) 2016-02-01T12:03:13Z stassats joined #sbcl 2016-02-01T12:07:35Z stassats quit (Ping timeout: 245 seconds) 2016-02-01T12:10:31Z stassats joined #sbcl 2016-02-01T12:14:56Z stassats quit (Ping timeout: 240 seconds) 2016-02-01T12:15:31Z stassats joined #sbcl 2016-02-01T12:19:46Z stassats quit (Ping timeout: 240 seconds) 2016-02-01T12:21:03Z stassats joined #sbcl 2016-02-01T12:25:15Z stassats quit (Ping timeout: 240 seconds) 2016-02-01T12:26:34Z stassats joined #sbcl 2016-02-01T12:31:00Z stassats quit (Ping timeout: 248 seconds) 2016-02-01T12:34:02Z stassats joined #sbcl 2016-02-01T12:38:19Z stassats quit (Ping timeout: 250 seconds) 2016-02-01T12:40:04Z stassats joined #sbcl 2016-02-01T12:53:57Z scymtym joined #sbcl 2016-02-01T13:16:52Z stassats: loke: transforming LENGTH to PROPER-LIST-OF-LENGTH-P might not be a good idea 2016-02-01T13:17:09Z stassats: loke: PROPER-LIST-OF-LENGTH-P will not signal an error if it's actually a non-proper list down the line 2016-02-01T13:35:28Z andreh joined #sbcl 2016-02-01T14:05:03Z wheelsucker joined #sbcl 2016-02-01T14:08:55Z wheelsucker quit (Remote host closed the connection) 2016-02-01T14:30:53Z andreh quit (Remote host closed the connection) 2016-02-01T14:33:49Z andreh joined #sbcl 2016-02-01T14:37:07Z andreh quit (Read error: No route to host) 2016-02-01T14:37:50Z andreh joined #sbcl 2016-02-01T14:59:08Z stassats: huh, for some reason a call to REDUCE is marked as :FULL and not :KNOWN in VALID-FUN-USE, but when it gets to ir1-optimize-combination it's :known 2016-02-01T14:59:17Z stassats: so, it gets promoted to :known somewhere 2016-02-01T15:00:28Z stassats: recognize-known-call 2016-02-01T15:01:07Z stassats: which is called right after valid-fun-use, oh well, i'll have to do a trip to INFO 2016-02-01T15:03:29Z hitecnologys quit (Ping timeout: 250 seconds) 2016-02-01T15:06:29Z hitecnologys joined #sbcl 2016-02-01T15:09:11Z scymtym quit (Remote host closed the connection) 2016-02-01T15:29:36Z stassats: I now have (reduce #'max x :key #'eql) 2016-02-01T15:29:37Z stassats: ; caught WARNING: 2016-02-01T15:29:37Z stassats: ; The function EQL is called by REDUCE with one argument, but wants exactly two. 2016-02-01T15:30:18Z stassats: need to handle some more cases and it's ready to go 2016-02-01T15:30:57Z stassats: plus changing fndb entries 2016-02-01T15:31:42Z pkhuong: stassats: should that be a warning? what if I know that I'll never pass a singleton list? 2016-02-01T15:32:19Z stassats: it's the same distinction style-warning/warning as for (function x) 2016-02-01T15:32:31Z stassats: style-warning for redefinable functions 2016-02-01T15:32:50Z pkhuong: but this is about the sequence argument, not the function. 2016-02-01T15:33:12Z stassats: well, KEY is always called 2016-02-01T15:33:17Z pkhuong: oh yeah, ok. 2016-02-01T15:33:20Z stassats: except when the list is empty 2016-02-01T15:33:29Z pkhuong: yeah, that's fair. 2016-02-01T15:33:54Z stassats: but, for the zero-or-two dichotomy, i think i'll just declare it as accepting only 2 arguments, since that's usually what REDUCE is doing 2016-02-01T15:34:02Z stassats: i won't be checking that it accepts 0 arguments 2016-02-01T15:34:20Z stassats: i know my own code is guilty of that 2016-02-01T15:34:32Z stassats: besides, :initial-value changes the behavior 2016-02-01T15:35:48Z stassats: i can also make (find-if #'digit-char-p (make-array 10 :element-type 'fixnum)) to warn 2016-02-01T15:35:59Z stassats: would be a bit more complicated 2016-02-01T15:36:28Z stassats: and people will be fooled into thinking that SBCL is so smart 2016-02-01T15:44:02Z stassats: i reckon there'll be a few quicklisp projects which will fail to build do to this 2016-02-01T15:44:17Z stassats: i'm not worried, i usually count that as a success 2016-02-01T15:53:06Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-01T15:56:33Z attila_lendvai joined #sbcl 2016-02-01T15:56:33Z attila_lendvai quit (Changing host) 2016-02-01T15:56:33Z attila_lendvai joined #sbcl 2016-02-01T16:07:29Z Cymew quit (Ping timeout: 276 seconds) 2016-02-01T16:11:48Z sjl quit (Ping timeout: 248 seconds) 2016-02-01T16:20:31Z nzambe joined #sbcl 2016-02-01T16:36:46Z scymtym joined #sbcl 2016-02-01T16:47:12Z amyers joined #sbcl 2016-02-01T17:07:10Z whiteline joined #sbcl 2016-02-01T17:25:57Z psy_ joined #sbcl 2016-02-01T17:25:58Z prxq joined #sbcl 2016-02-01T17:45:21Z psy_ quit (Quit: Leaving) 2016-02-01T17:54:28Z gingerale joined #sbcl 2016-02-01T18:03:21Z DeadTrickster quit (Read error: No route to host) 2016-02-01T18:04:25Z DeadTrickster joined #sbcl 2016-02-01T18:24:44Z krzysz00_ quit (Ping timeout: 256 seconds) 2016-02-01T18:41:52Z DGASAU quit (Read error: Connection reset by peer) 2016-02-01T18:42:17Z DGASAU joined #sbcl 2016-02-01T18:45:27Z andreh quit (Remote host closed the connection) 2016-02-01T18:46:01Z andreh joined #sbcl 2016-02-01T18:50:06Z andreh quit (Ping timeout: 240 seconds) 2016-02-01T18:50:35Z psy_ joined #sbcl 2016-02-01T19:05:42Z krzysz00 joined #sbcl 2016-02-01T19:15:26Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-01T19:17:41Z krzysz00 joined #sbcl 2016-02-01T19:26:34Z scymtym quit (Ping timeout: 240 seconds) 2016-02-01T19:40:45Z andreh joined #sbcl 2016-02-01T19:45:06Z andreh quit (Ping timeout: 240 seconds) 2016-02-01T19:47:11Z scymtym joined #sbcl 2016-02-01T19:58:26Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-01T20:09:24Z andreh joined #sbcl 2016-02-01T20:24:51Z gingerale quit (Remote host closed the connection) 2016-02-01T20:32:33Z sjl joined #sbcl 2016-02-01T20:44:19Z Bicyclidine joined #sbcl 2016-02-01T21:07:10Z Bicyclidine quit (Quit: Reconnecting) 2016-02-01T21:07:35Z Bicyclidine joined #sbcl 2016-02-01T21:11:23Z andreh quit (Remote host closed the connection) 2016-02-01T21:13:03Z krzysz00 joined #sbcl 2016-02-01T21:14:56Z amyers quit (Ping timeout: 276 seconds) 2016-02-01T21:24:27Z prxq quit (Remote host closed the connection) 2016-02-01T21:25:41Z ASau joined #sbcl 2016-02-01T21:48:32Z edgar-rft joined #sbcl 2016-02-01T21:58:53Z angavrilov quit (Remote host closed the connection) 2016-02-01T22:11:55Z andreh joined #sbcl 2016-02-01T22:16:59Z andreh quit (Ping timeout: 264 seconds) 2016-02-01T22:26:06Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-01T22:38:53Z prxq joined #sbcl 2016-02-01T22:40:01Z prxq quit (Remote host closed the connection) 2016-02-01T23:08:50Z andreh joined #sbcl 2016-02-01T23:12:30Z psilord joined #sbcl 2016-02-01T23:13:28Z andreh quit (Remote host closed the connection) 2016-02-01T23:15:58Z andreh joined #sbcl 2016-02-01T23:28:00Z andreh quit (Remote host closed the connection) 2016-02-01T23:29:21Z andreh joined #sbcl 2016-02-01T23:36:35Z flavioc joined #sbcl 2016-02-01T23:41:39Z stassats quit (Ping timeout: 265 seconds) 2016-02-02T00:01:40Z andreh quit (Remote host closed the connection) 2016-02-02T00:14:29Z andreh joined #sbcl 2016-02-02T00:29:24Z scymtym quit (Ping timeout: 248 seconds) 2016-02-02T00:52:27Z sjl quit (Read error: Connection reset by peer) 2016-02-02T00:53:36Z sjl joined #sbcl 2016-02-02T00:56:14Z amyers joined #sbcl 2016-02-02T01:04:46Z flavioc quit (Ping timeout: 250 seconds) 2016-02-02T01:23:26Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-02T01:34:06Z krzysz00 joined #sbcl 2016-02-02T01:42:28Z amyers quit (Ping timeout: 248 seconds) 2016-02-02T01:54:00Z loke quit (Ping timeout: 260 seconds) 2016-02-02T02:05:34Z loke joined #sbcl 2016-02-02T02:10:26Z |3b|` is now known as |3b| 2016-02-02T02:24:44Z krzysz00 quit (Ping timeout: 272 seconds) 2016-02-02T02:49:18Z Bicyclidine quit (Quit: leaving) 2016-02-02T03:17:04Z amyers joined #sbcl 2016-02-02T03:29:39Z krzysz00 joined #sbcl 2016-02-02T03:29:44Z amyers quit (Remote host closed the connection) 2016-02-02T03:30:07Z amyers joined #sbcl 2016-02-02T03:37:50Z amyers quit (Ping timeout: 260 seconds) 2016-02-02T05:15:44Z yvm quit (Quit: Leaving) 2016-02-02T06:59:20Z edgar-rft quit (Quit: edgar-rft) 2016-02-02T07:05:22Z gingerale joined #sbcl 2016-02-02T07:07:44Z psy_ quit (Ping timeout: 276 seconds) 2016-02-02T07:17:27Z andreh quit (Remote host closed the connection) 2016-02-02T07:42:44Z angavrilov joined #sbcl 2016-02-02T07:56:57Z Cymew joined #sbcl 2016-02-02T08:06:40Z andreh joined #sbcl 2016-02-02T08:11:10Z andreh quit (Ping timeout: 272 seconds) 2016-02-02T08:33:49Z scymtym joined #sbcl 2016-02-02T08:51:54Z loke quit (Ping timeout: 250 seconds) 2016-02-02T09:03:46Z Cymew quit (Ping timeout: 265 seconds) 2016-02-02T09:04:44Z loke joined #sbcl 2016-02-02T09:13:23Z ASau quit (Ping timeout: 264 seconds) 2016-02-02T09:40:20Z edgar-rft joined #sbcl 2016-02-02T09:41:41Z stassats joined #sbcl 2016-02-02T10:21:02Z attila_lendvai joined #sbcl 2016-02-02T10:27:03Z Cymew joined #sbcl 2016-02-02T10:30:52Z Cymew quit (Read error: Connection reset by peer) 2016-02-02T10:36:36Z sjl quit (Ping timeout: 245 seconds) 2016-02-02T10:39:48Z sjl joined #sbcl 2016-02-02T10:47:37Z knobo joined #sbcl 2016-02-02T11:09:28Z stassats quit (Ping timeout: 252 seconds) 2016-02-02T11:12:03Z Cymew joined #sbcl 2016-02-02T11:16:24Z stassats joined #sbcl 2016-02-02T11:27:02Z yuankode joined #sbcl 2016-02-02T11:30:53Z DGASAU` joined #sbcl 2016-02-02T11:31:11Z DGASAU quit (Ping timeout: 265 seconds) 2016-02-02T11:33:11Z DGASAU` quit (Read error: Connection reset by peer) 2016-02-02T11:34:44Z DGASAU joined #sbcl 2016-02-02T11:35:06Z Bike quit (Ping timeout: 272 seconds) 2016-02-02T11:36:43Z Bike joined #sbcl 2016-02-02T11:45:40Z sjl quit (Ping timeout: 248 seconds) 2016-02-02T11:50:14Z stassats quit (Ping timeout: 256 seconds) 2016-02-02T11:52:04Z knobo: I'd like to understand what is going on here, and what could be done to make a better version: https://groups.google.com/forum/#!topic/comp.lang.lisp/ok3JabVvB_c 2016-02-02T11:57:47Z jackdaniel: knobo: http://paste.lisp.org/display/306363 (this works on all implementations and I believe it's what you want to have) 2016-02-02T11:58:13Z jackdaniel: disregard the defdelim, just do (set-dispatch-macro-character #\# \#f #'sharp-f) 2016-02-02T12:23:15Z stassats joined #sbcl 2016-02-02T12:27:27Z stassats quit (Ping timeout: 250 seconds) 2016-02-02T12:28:44Z stassats joined #sbcl 2016-02-02T12:29:01Z knobo: jackdaniel: thank you 2016-02-02T12:36:21Z stassats quit (Ping timeout: 240 seconds) 2016-02-02T12:37:23Z sjl joined #sbcl 2016-02-02T12:38:17Z stassats joined #sbcl 2016-02-02T12:40:03Z jackdaniel: yw :) 2016-02-02T12:42:52Z stassats quit (Ping timeout: 250 seconds) 2016-02-02T12:45:15Z stassats joined #sbcl 2016-02-02T12:49:40Z stassats quit (Ping timeout: 245 seconds) 2016-02-02T12:50:31Z amyers joined #sbcl 2016-02-02T12:50:44Z edgar-rft quit (Quit: edgar-rft) 2016-02-02T12:51:14Z stassats joined #sbcl 2016-02-02T12:55:30Z stassats quit (Ping timeout: 245 seconds) 2016-02-02T12:58:32Z stassats joined #sbcl 2016-02-02T13:02:34Z stassats quit (Ping timeout: 240 seconds) 2016-02-02T13:04:45Z stassats joined #sbcl 2016-02-02T13:11:18Z Quadrescence quit (Quit: Leaving) 2016-02-02T13:44:59Z amyers quit (Remote host closed the connection) 2016-02-02T13:58:57Z stassats: why can't the errors during XC be reported normally? 2016-02-02T14:02:15Z stassats: maybe i'm using too old of a build host 2016-02-02T14:03:16Z Cymew quit (Ping timeout: 245 seconds) 2016-02-02T14:03:29Z stassats: indeed, a different host reports alright 2016-02-02T14:06:04Z ralt: re: running sbcl as the init process. It's very unstable :D 2016-02-02T14:06:15Z Cymew joined #sbcl 2016-02-02T14:06:42Z ralt: (with-open-file (f #p"/some/path") (loop for line = (read-line f nil 'eof) collect line)) crashes the process 2016-02-02T14:07:00Z stassats: well, don't do it then 2016-02-02T14:07:02Z ralt: (because there's no `until (eq line 'eof)`) 2016-02-02T14:07:19Z ralt: stassats: well, don't you consider a segfault a bug in sbcl? 2016-02-02T14:11:54Z stassats: no 2016-02-02T14:23:10Z scymtym_ joined #sbcl 2016-02-02T14:32:02Z tdc joined #sbcl 2016-02-02T14:33:12Z tdc left #sbcl 2016-02-02T14:44:14Z ralt: stassats: really? 2016-02-02T14:45:20Z stassats: really 2016-02-02T14:48:17Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-02T15:32:20Z knobo quit (Ping timeout: 248 seconds) 2016-02-02T15:36:38Z andreh joined #sbcl 2016-02-02T15:49:14Z sjl quit (Ping timeout: 252 seconds) 2016-02-02T15:49:28Z andreh quit (Remote host closed the connection) 2016-02-02T15:50:04Z andreh joined #sbcl 2016-02-02T15:54:47Z andreh quit (Ping timeout: 264 seconds) 2016-02-02T15:55:59Z Cymew quit (Ping timeout: 264 seconds) 2016-02-02T16:05:13Z sjl joined #sbcl 2016-02-02T16:07:42Z Cymew joined #sbcl 2016-02-02T16:12:09Z andreh joined #sbcl 2016-02-02T16:30:51Z Cymew quit (Read error: Connection reset by peer) 2016-02-02T16:46:45Z DGASAU quit (Ping timeout: 245 seconds) 2016-02-02T16:49:27Z andreh quit (Remote host closed the connection) 2016-02-02T16:50:10Z stassats: ok, almost got callable-arg-mismatch finished, performing some testing 2016-02-02T16:50:34Z DGASAU joined #sbcl 2016-02-02T16:50:47Z stassats: i would also like (find-if 'undefined x) to warn, though (funcall 'undefined) doesn't 2016-02-02T16:51:15Z stassats: also left to do would be the variable callers, map, some, but that's for the next commit 2016-02-02T16:51:53Z andreh joined #sbcl 2016-02-02T17:05:01Z attila_lendvai quit (Quit: Leaving.) 2016-02-02T17:05:07Z attila_lendvai1 joined #sbcl 2016-02-02T17:05:07Z attila_lendvai1 is now known as attila_lendvai 2016-02-02T17:05:07Z attila_lendvai quit (Changing host) 2016-02-02T17:05:07Z attila_lendvai joined #sbcl 2016-02-02T17:05:29Z andreh quit (Remote host closed the connection) 2016-02-02T17:09:26Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-02T17:14:22Z krzysz00 joined #sbcl 2016-02-02T17:26:17Z attila_lendvai joined #sbcl 2016-02-02T17:26:17Z attila_lendvai quit (Changing host) 2016-02-02T17:26:17Z attila_lendvai joined #sbcl 2016-02-02T17:34:58Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-02T17:37:06Z psy_ joined #sbcl 2016-02-02T17:43:48Z andreh joined #sbcl 2016-02-02T17:44:29Z eudoxia joined #sbcl 2016-02-02T17:50:10Z krzysz00 joined #sbcl 2016-02-02T17:52:39Z DGASAU quit (Read error: Connection reset by peer) 2016-02-02T17:55:02Z DGASAU joined #sbcl 2016-02-02T17:55:06Z stassats quit (Ping timeout: 240 seconds) 2016-02-02T17:55:58Z eudoxia quit (Quit: Leaving) 2016-02-02T17:56:45Z stassats joined #sbcl 2016-02-02T17:57:18Z knobo joined #sbcl 2016-02-02T17:59:17Z Bicyclidine joined #sbcl 2016-02-02T18:06:15Z yvm joined #sbcl 2016-02-02T18:25:24Z Bicyclidine quit (Ping timeout: 265 seconds) 2016-02-02T18:27:01Z DGASAU quit (Ping timeout: 245 seconds) 2016-02-02T18:31:31Z DGASAU joined #sbcl 2016-02-02T18:31:54Z Bicyclidine joined #sbcl 2016-02-02T19:04:13Z DGASAU` joined #sbcl 2016-02-02T19:05:56Z sjl quit (Ping timeout: 250 seconds) 2016-02-02T19:08:02Z yauz_2 joined #sbcl 2016-02-02T19:10:55Z dim` joined #sbcl 2016-02-02T19:11:05Z les` joined #sbcl 2016-02-02T19:11:07Z sigjuice_ joined #sbcl 2016-02-02T19:12:01Z DGASAU quit (*.net *.split) 2016-02-02T19:12:03Z yauz quit (*.net *.split) 2016-02-02T19:12:03Z akkad quit (*.net *.split) 2016-02-02T19:12:03Z dim quit (*.net *.split) 2016-02-02T19:12:03Z sigjuice quit (*.net *.split) 2016-02-02T19:12:03Z carvite quit (*.net *.split) 2016-02-02T19:12:27Z les quit (*.net *.split) 2016-02-02T19:12:27Z dim` is now known as dim 2016-02-02T19:13:59Z krzysz00 quit (Ping timeout: 264 seconds) 2016-02-02T19:14:12Z akkad joined #sbcl 2016-02-02T19:17:50Z flavioc joined #sbcl 2016-02-02T19:31:18Z krzysz00 joined #sbcl 2016-02-02T19:35:34Z scymtym_ quit (Read error: Connection reset by peer) 2016-02-02T19:39:38Z scymtym_ joined #sbcl 2016-02-02T19:51:14Z krzysz00 quit (Ping timeout: 264 seconds) 2016-02-02T19:52:47Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-02-02T19:55:30Z Bicyclidine joined #sbcl 2016-02-02T20:02:35Z krzysz00 joined #sbcl 2016-02-02T20:06:38Z scymtym quit (Ping timeout: 252 seconds) 2016-02-02T20:21:53Z gingerale quit (Remote host closed the connection) 2016-02-02T20:43:48Z prxq joined #sbcl 2016-02-02T20:53:56Z dougk_: where the NEWS says "functions that call functions" it brings to mind the Royal Society for Putting Things on Top of Other Things. (https://www.youtube.com/watch?v=1f-kfRREA8M) 2016-02-02T20:54:25Z dougk_: maybe we should say "higher-order functions" 2016-02-02T20:54:47Z stassats: i don't see how that would be any better 2016-02-02T20:55:51Z stassats: besides, the meaning of the argument mismatch will be lost 2016-02-02T20:56:44Z dougk_: those words make no sense to me. 2016-02-02T20:57:07Z dougk_: HOFs is the conventional terminology, and it is not clear whose arguments are being checked for mismatch either way 2016-02-02T20:57:36Z dougk_: at least we can sound like we know the conventional term rather than inventing a phrase that means the same thing 2016-02-02T20:58:14Z stassats: how is "function that call other functions" confusing? 2016-02-02T20:58:18Z stassats: there is even an example 2016-02-02T21:02:22Z stassats: i can change to "function that take other functions as arguments" 2016-02-02T21:03:27Z ASau joined #sbcl 2016-02-02T21:06:28Z stassats: and change FIND to MAP, when i will make MAP work 2016-02-02T21:09:01Z dougk_: personally i'd say "higher-order functions (e.g. REDUCE, FIND) can warn about argument mismatch in the functional arguments at compile-time" etc. or "... in the called functions ..." 2016-02-02T21:09:46Z stassats: "higher-order functions" is a no go from me, this is not a scientific paper, this a news entry for a broad audience 2016-02-02T21:10:27Z dougk_: "functions that call other functions" sounds amateurish. Go ahead and present it as such if you'd like 2016-02-02T21:12:28Z stassats: i'm already changing it to "function taking functions as arguments", because "functions calling other functions" doesn't mean they're coming from arguments 2016-02-02T21:13:53Z stassats: besides, higher order functions may not take any function arguments, just return a function 2016-02-02T21:15:35Z stassats: which gives me an idea, are there any in the CL package which can help with more warnings? 2016-02-02T21:18:13Z stassats: i would really love a dedicated ctype CALLABLE, which can encode arg-counts 2016-02-02T21:19:15Z stassats: only get-macro-character and pprint-dispatch return functions 2016-02-02T21:19:15Z krzysz00 quit (Ping timeout: 245 seconds) 2016-02-02T21:19:33Z stassats: not a high payoff 2016-02-02T21:21:17Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-02-02T21:21:49Z nzambe joined #sbcl 2016-02-02T21:30:17Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-02-02T21:30:51Z krzysz00 joined #sbcl 2016-02-02T21:37:10Z krzysz00 quit (Ping timeout: 245 seconds) 2016-02-02T21:40:30Z pkhuong: identity :\ 2016-02-02T21:41:18Z stassats: that should be just transparent 2016-02-02T21:41:31Z Bicyclidine joined #sbcl 2016-02-02T21:42:37Z stassats: some next thing to try: (find-if #'evenp x :key #'code-char) type mismatch between code-char and evenp 2016-02-02T21:43:12Z stassats: or (find 1 x :key #'code-char), a note that it will never succeed 2016-02-02T21:48:00Z andreh quit (Ping timeout: 245 seconds) 2016-02-02T21:48:36Z andreh joined #sbcl 2016-02-02T21:48:53Z stassats: the hardest part is encoding all that meta information 2016-02-02T21:51:19Z angavrilov quit (Remote host closed the connection) 2016-02-02T21:52:31Z prxq quit (Remote host closed the connection) 2016-02-02T22:05:30Z andreh_ joined #sbcl 2016-02-02T22:05:55Z andreh quit (Ping timeout: 245 seconds) 2016-02-02T22:07:49Z scymtym joined #sbcl 2016-02-02T22:08:13Z andreh_ quit (Remote host closed the connection) 2016-02-02T22:19:26Z Bicyclidine quit (Ping timeout: 240 seconds) 2016-02-02T22:23:31Z ASau quit (Remote host closed the connection) 2016-02-02T22:23:45Z ASau` joined #sbcl 2016-02-02T22:24:42Z krzysz00 joined #sbcl 2016-02-02T22:27:39Z Bicyclidine joined #sbcl 2016-02-02T22:29:04Z ASau` is now known as ASau 2016-02-02T22:29:31Z ASau quit (Remote host closed the connection) 2016-02-02T22:29:58Z ASau` joined #sbcl 2016-02-02T22:45:47Z Bicyclidine quit (Ping timeout: 264 seconds) 2016-02-02T22:49:34Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-02T22:55:57Z krzysz00 joined #sbcl 2016-02-02T23:01:55Z ASau` is now known as ASau 2016-02-02T23:02:22Z attila_lendvai: so, (sb-alien:alien-size cl:boolean) => 64, but sizeof(_Bool) => 1 on linux x64. this is rather confusing... I'd expect sb-alien to either don't define a boolean, or map it to C _Bool 2016-02-02T23:02:28Z attila_lendvai: any thoughts on this? 2016-02-02T23:13:51Z pkhuong: there should be a distinct "bool" type. 2016-02-02T23:13:57Z pkhuong: (alien type). 2016-02-02T23:16:11Z attila_lendvai: pkhuong: shall I record an lp bug for this? 2016-02-02T23:17:28Z nyef quit (Ping timeout: 272 seconds) 2016-02-02T23:20:08Z scymtym quit (Ping timeout: 276 seconds) 2016-02-02T23:21:03Z pkhuong: I don't much care either way 2016-02-03T00:05:50Z stassats quit (Ping timeout: 250 seconds) 2016-02-03T00:22:42Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-03T00:28:03Z krzysz00 joined #sbcl 2016-02-03T00:45:56Z flavioc quit (Ping timeout: 248 seconds) 2016-02-03T00:53:31Z edgar-rft joined #sbcl 2016-02-03T01:07:55Z yuankode quit (Ping timeout: 240 seconds) 2016-02-03T01:09:46Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-03T01:49:35Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-03T01:50:40Z loke quit (Ping timeout: 250 seconds) 2016-02-03T02:03:35Z loke joined #sbcl 2016-02-03T02:51:25Z krzysz00 joined #sbcl 2016-02-03T03:12:10Z p_l quit (Ping timeout: 250 seconds) 2016-02-03T03:12:57Z p_l joined #sbcl 2016-02-03T04:04:19Z kanru joined #sbcl 2016-02-03T04:35:40Z gingerale joined #sbcl 2016-02-03T05:33:30Z andreh joined #sbcl 2016-02-03T05:38:00Z jdz quit (Ping timeout: 245 seconds) 2016-02-03T05:43:08Z jdz joined #sbcl 2016-02-03T05:48:09Z gingerale quit (Remote host closed the connection) 2016-02-03T06:36:00Z psy_ quit (Ping timeout: 260 seconds) 2016-02-03T07:11:24Z psy_ joined #sbcl 2016-02-03T08:10:15Z ASau quit (Ping timeout: 240 seconds) 2016-02-03T08:22:21Z andreh quit (Remote host closed the connection) 2016-02-03T08:29:45Z angavrilov joined #sbcl 2016-02-03T08:35:37Z Cymew joined #sbcl 2016-02-03T09:39:17Z DGASAU` is now known as DGASAU 2016-02-03T11:04:17Z attila_lendvai joined #sbcl 2016-02-03T11:04:17Z attila_lendvai quit (Changing host) 2016-02-03T11:04:17Z attila_lendvai joined #sbcl 2016-02-03T11:06:38Z carvite joined #sbcl 2016-02-03T11:50:50Z myrkraverk quit (Remote host closed the connection) 2016-02-03T11:51:58Z myrkraverk joined #sbcl 2016-02-03T12:00:46Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-03T12:01:24Z sjl joined #sbcl 2016-02-03T12:03:18Z yuankode joined #sbcl 2016-02-03T12:34:05Z jdz quit (Ping timeout: 240 seconds) 2016-02-03T12:34:05Z loke quit (Ping timeout: 240 seconds) 2016-02-03T12:34:05Z jdz joined #sbcl 2016-02-03T12:34:23Z loke joined #sbcl 2016-02-03T12:34:42Z jdz is now known as Guest66238 2016-02-03T13:17:20Z sjl quit (Ping timeout: 252 seconds) 2016-02-03T13:20:55Z stassats joined #sbcl 2016-02-03T13:25:24Z stassats quit (Ping timeout: 248 seconds) 2016-02-03T13:25:52Z stassats joined #sbcl 2016-02-03T13:29:55Z stassats quit (Ping timeout: 240 seconds) 2016-02-03T13:32:04Z stassats joined #sbcl 2016-02-03T13:36:11Z stassats quit (Ping timeout: 245 seconds) 2016-02-03T13:37:25Z stassats joined #sbcl 2016-02-03T13:41:50Z stassats quit (Ping timeout: 260 seconds) 2016-02-03T13:42:21Z stassats joined #sbcl 2016-02-03T13:47:02Z stassats quit (Ping timeout: 272 seconds) 2016-02-03T13:48:53Z stassats joined #sbcl 2016-02-03T14:01:05Z sjl joined #sbcl 2016-02-03T14:46:30Z andreh joined #sbcl 2016-02-03T14:54:56Z DGASAU quit (Read error: Connection reset by peer) 2016-02-03T14:58:40Z DGASAU joined #sbcl 2016-02-03T15:00:41Z edgar-rft quit (Quit: edgar-rft) 2016-02-03T15:00:59Z DGASAU quit (Read error: Connection reset by peer) 2016-02-03T15:01:25Z DGASAU joined #sbcl 2016-02-03T15:26:56Z DGASAU quit (Ping timeout: 240 seconds) 2016-02-03T15:29:17Z DGASAU joined #sbcl 2016-02-03T15:48:38Z karswell` joined #sbcl 2016-02-03T15:53:56Z karswell` is now known as karswell 2016-02-03T16:00:14Z attila_lendvai joined #sbcl 2016-02-03T16:02:43Z gingerale joined #sbcl 2016-02-03T16:07:15Z Cymew quit (Ping timeout: 240 seconds) 2016-02-03T16:20:35Z sjl quit (Ping timeout: 264 seconds) 2016-02-03T16:24:08Z karswell quit (Remote host closed the connection) 2016-02-03T16:24:23Z karswell joined #sbcl 2016-02-03T16:55:49Z karswell quit (Remote host closed the connection) 2016-02-03T16:55:52Z DGASAU quit (Ping timeout: 252 seconds) 2016-02-03T16:56:00Z karswell joined #sbcl 2016-02-03T17:02:13Z DGASAU joined #sbcl 2016-02-03T17:09:56Z andreh quit (Remote host closed the connection) 2016-02-03T17:32:00Z milanj joined #sbcl 2016-02-03T17:43:41Z andreh joined #sbcl 2016-02-03T17:55:53Z andreh quit (Ping timeout: 250 seconds) 2016-02-03T18:06:22Z andreh joined #sbcl 2016-02-03T18:11:50Z andreh quit (Remote host closed the connection) 2016-02-03T18:13:14Z andreh joined #sbcl 2016-02-03T18:25:55Z krzysz00 quit (Ping timeout: 245 seconds) 2016-02-03T18:59:46Z krzysz00 joined #sbcl 2016-02-03T19:01:33Z andreh quit (Remote host closed the connection) 2016-02-03T19:01:52Z andreh joined #sbcl 2016-02-03T19:06:28Z karswell` joined #sbcl 2016-02-03T19:07:19Z karswell quit (Read error: Connection reset by peer) 2016-02-03T19:20:01Z andreh quit (Remote host closed the connection) 2016-02-03T19:23:22Z andreh joined #sbcl 2016-02-03T19:24:34Z andreh quit (Remote host closed the connection) 2016-02-03T19:25:31Z andreh joined #sbcl 2016-02-03T19:27:44Z andreh quit (Remote host closed the connection) 2016-02-03T19:28:46Z andreh joined #sbcl 2016-02-03T19:30:10Z andreh quit (Remote host closed the connection) 2016-02-03T19:44:28Z andreh joined #sbcl 2016-02-03T19:44:38Z karswell` quit (Remote host closed the connection) 2016-02-03T19:49:52Z andreh quit (Remote host closed the connection) 2016-02-03T19:50:26Z andreh joined #sbcl 2016-02-03T19:51:38Z andreh quit (Remote host closed the connection) 2016-02-03T19:52:23Z krzysz00 quit (Ping timeout: 264 seconds) 2016-02-03T19:58:13Z Bike quit (Quit: leaving) 2016-02-03T20:02:24Z gingerale quit (Remote host closed the connection) 2016-02-03T20:13:19Z stassats quit (Quit: ZNC 1.6.2+deb1 - http://znc.in) 2016-02-03T20:14:42Z ASau joined #sbcl 2016-02-03T20:21:12Z scymtym joined #sbcl 2016-02-03T20:38:26Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-03T20:40:30Z flavioc joined #sbcl 2016-02-03T20:52:25Z sjl_ joined #sbcl 2016-02-03T20:57:03Z attila_lendvai joined #sbcl 2016-02-03T20:57:03Z attila_lendvai quit (Changing host) 2016-02-03T20:57:03Z attila_lendvai joined #sbcl 2016-02-03T21:41:00Z Bicyclidine joined #sbcl 2016-02-03T22:02:04Z krzysz00 joined #sbcl 2016-02-03T22:03:45Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-02-03T22:10:33Z Bicyclidine joined #sbcl 2016-02-03T23:04:06Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-03T23:23:10Z angavrilov quit (Remote host closed the connection) 2016-02-03T23:40:55Z scymtym quit (Ping timeout: 260 seconds) 2016-02-03T23:58:53Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-02-04T00:03:24Z krzysz00 quit (Ping timeout: 256 seconds) 2016-02-04T00:17:30Z krzysz00 joined #sbcl 2016-02-04T00:20:40Z edgar-rft joined #sbcl 2016-02-04T00:27:55Z yuankode quit (Ping timeout: 240 seconds) 2016-02-04T00:28:56Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-04T00:47:31Z Bike joined #sbcl 2016-02-04T01:47:29Z milanj quit (Quit: This computer has gone to sleep) 2016-02-04T01:54:00Z krzysz00 joined #sbcl 2016-02-04T01:54:44Z flavioc quit (Ping timeout: 272 seconds) 2016-02-04T02:25:05Z sjl_ quit (Read error: Connection reset by peer) 2016-02-04T02:25:40Z sjl_ joined #sbcl 2016-02-04T03:08:50Z psy_ quit (Ping timeout: 245 seconds) 2016-02-04T04:11:37Z joshe quit (Ping timeout: 260 seconds) 2016-02-04T04:11:57Z nicdev` joined #sbcl 2016-02-04T04:12:11Z frankS2 quit (Ping timeout: 260 seconds) 2016-02-04T04:12:52Z drmeister quit (Ping timeout: 260 seconds) 2016-02-04T04:13:24Z pootler_ quit (Ping timeout: 260 seconds) 2016-02-04T04:13:24Z gko quit (Ping timeout: 260 seconds) 2016-02-04T04:13:57Z nicdev quit (Ping timeout: 260 seconds) 2016-02-04T04:13:57Z pchrist quit (Ping timeout: 260 seconds) 2016-02-04T04:15:18Z gko joined #sbcl 2016-02-04T04:15:22Z pootler_ joined #sbcl 2016-02-04T04:17:54Z frankS2 joined #sbcl 2016-02-04T04:18:04Z minion quit (Disconnected by services) 2016-02-04T04:18:53Z minion joined #sbcl 2016-02-04T04:19:36Z christoph_debian quit (Ping timeout: 263 seconds) 2016-02-04T04:20:01Z christoph_debian joined #sbcl 2016-02-04T04:20:33Z drmeister joined #sbcl 2016-02-04T04:24:33Z drmeister quit (Client Quit) 2016-02-04T05:16:43Z andreh joined #sbcl 2016-02-04T05:23:19Z drmeister joined #sbcl 2016-02-04T05:43:06Z psy_ joined #sbcl 2016-02-04T06:06:10Z gingerale joined #sbcl 2016-02-04T06:48:27Z gingerale quit (Remote host closed the connection) 2016-02-04T06:59:47Z akkad quit (Ping timeout: 250 seconds) 2016-02-04T07:04:29Z akkad joined #sbcl 2016-02-04T07:24:46Z scymtym joined #sbcl 2016-02-04T07:48:22Z yuankode joined #sbcl 2016-02-04T08:24:25Z Cymew joined #sbcl 2016-02-04T08:51:16Z angavrilov joined #sbcl 2016-02-04T09:05:08Z Cymew quit (Ping timeout: 248 seconds) 2016-02-04T09:12:18Z ASau quit (Ping timeout: 252 seconds) 2016-02-04T09:18:26Z sjl_ quit (Ping timeout: 240 seconds) 2016-02-04T09:18:39Z milanj joined #sbcl 2016-02-04T09:20:26Z yuankode quit (Ping timeout: 240 seconds) 2016-02-04T09:24:00Z stassats joined #sbcl 2016-02-04T09:43:23Z andreh quit (Remote host closed the connection) 2016-02-04T10:35:50Z sjl_ joined #sbcl 2016-02-04T10:38:41Z akkad quit (Ping timeout: 245 seconds) 2016-02-04T10:38:42Z sigjuice_ quit (Ping timeout: 245 seconds) 2016-02-04T10:40:13Z p_l quit (Ping timeout: 250 seconds) 2016-02-04T10:40:47Z p_l joined #sbcl 2016-02-04T10:41:29Z sigjuice joined #sbcl 2016-02-04T10:45:32Z akkad joined #sbcl 2016-02-04T10:46:21Z Shinmera joined #sbcl 2016-02-04T10:59:50Z yuankode joined #sbcl 2016-02-04T11:17:24Z knobo quit (Ping timeout: 248 seconds) 2016-02-04T11:24:17Z knobo joined #sbcl 2016-02-04T11:26:47Z attila_lendvai joined #sbcl 2016-02-04T12:01:55Z yuankode quit (Remote host closed the connection) 2016-02-04T12:03:18Z yuankode joined #sbcl 2016-02-04T12:39:33Z stassats quit (Read error: Connection reset by peer) 2016-02-04T12:51:27Z drmeister_ joined #sbcl 2016-02-04T12:51:33Z jdz joined #sbcl 2016-02-04T12:53:59Z drmeister quit (Ping timeout: 240 seconds) 2016-02-04T12:53:59Z Guest66238 quit (Ping timeout: 240 seconds) 2016-02-04T12:54:00Z pootler_ quit (Ping timeout: 240 seconds) 2016-02-04T12:54:45Z pootler_ joined #sbcl 2016-02-04T12:55:49Z drmeister_ is now known as drmeister 2016-02-04T13:15:41Z flip214: hmmm, sbcl on a ppc32be machine crashes with lparallel for me... are there known issues with threads on ppc32be? 2016-02-04T13:30:05Z psy_ quit (Ping timeout: 276 seconds) 2016-02-04T13:30:21Z Cymew joined #sbcl 2016-02-04T13:48:44Z psilord quit (Quit: Leaving.) 2016-02-04T14:13:02Z edgar-rft quit (Quit: edgar-rft) 2016-02-04T14:30:15Z andreh joined #sbcl 2016-02-04T14:35:27Z flip214: I still get things like The value "000000 011188" is not of type VECTOR. 2016-02-04T14:35:46Z flip214: had one with #(141 122 135) etc., too ... 2016-02-04T14:45:45Z flip214: hmmm, #+nil before the (setf (subseq)) seems to make it run .... but that might just be papering over the issue 2016-02-04T14:47:08Z flip214: and yes, I'm modifying thread-local data. (LET ( .. (COPY-SEQ ...)) ...) should be enough, right? 2016-02-04T14:50:41Z flip214: http://paste.lisp.org/display/306533, perhaps someone can tell me what I'm doing wrong - if it *is* me... 2016-02-04T14:51:26Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-04T14:52:05Z andreh quit (Remote host closed the connection) 2016-02-04T14:52:12Z krzysz00 quit (Ping timeout: 252 seconds) 2016-02-04T14:53:00Z attila_lendvai joined #sbcl 2016-02-04T14:53:00Z attila_lendvai quit (Changing host) 2016-02-04T14:53:00Z attila_lendvai joined #sbcl 2016-02-04T14:54:16Z attila_lendvai quit (Read error: No route to host) 2016-02-04T15:11:39Z andreh joined #sbcl 2016-02-04T15:12:12Z andreh quit (Remote host closed the connection) 2016-02-04T15:12:18Z andreh_ joined #sbcl 2016-02-04T15:12:28Z stassats joined #sbcl 2016-02-04T15:12:43Z attila_lendvai joined #sbcl 2016-02-04T15:12:43Z attila_lendvai quit (Changing host) 2016-02-04T15:12:43Z attila_lendvai joined #sbcl 2016-02-04T15:39:06Z stassats quit (Ping timeout: 245 seconds) 2016-02-04T15:40:34Z stassats joined #sbcl 2016-02-04T15:45:10Z stassats quit (Ping timeout: 260 seconds) 2016-02-04T15:45:32Z stassats joined #sbcl 2016-02-04T15:50:02Z stassats quit (Ping timeout: 250 seconds) 2016-02-04T15:52:04Z stassats joined #sbcl 2016-02-04T16:03:46Z stassats quit (Ping timeout: 240 seconds) 2016-02-04T16:05:03Z stassats joined #sbcl 2016-02-04T16:06:46Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-04T16:09:06Z stassats quit (Ping timeout: 240 seconds) 2016-02-04T16:10:01Z stassats joined #sbcl 2016-02-04T16:18:44Z stassats quit (Ping timeout: 252 seconds) 2016-02-04T16:19:34Z stassats joined #sbcl 2016-02-04T16:28:50Z Cymew quit (Ping timeout: 245 seconds) 2016-02-04T16:42:37Z stassats quit (Ping timeout: 250 seconds) 2016-02-04T16:43:35Z stassats joined #sbcl 2016-02-04T16:47:46Z stassats quit (Ping timeout: 240 seconds) 2016-02-04T16:49:06Z stassats joined #sbcl 2016-02-04T16:53:22Z stassats quit (Ping timeout: 240 seconds) 2016-02-04T16:55:33Z stassats joined #sbcl 2016-02-04T17:17:46Z gingerale joined #sbcl 2016-02-04T17:43:24Z krzysz00 joined #sbcl 2016-02-04T18:29:23Z lnostdal joined #sbcl 2016-02-04T18:31:11Z andreh_ quit (Remote host closed the connection) 2016-02-04T18:33:11Z Bicyclidine joined #sbcl 2016-02-04T19:09:21Z psilord joined #sbcl 2016-02-04T19:26:52Z gingerale quit (Remote host closed the connection) 2016-02-04T19:30:02Z flavioc joined #sbcl 2016-02-04T19:44:40Z irsol quit (Ping timeout: 245 seconds) 2016-02-04T19:47:09Z ASau joined #sbcl 2016-02-04T19:53:46Z Bicyclidine quit (Ping timeout: 240 seconds) 2016-02-04T19:55:29Z Bicyclidine joined #sbcl 2016-02-04T19:59:56Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-04T20:02:10Z krzysz00 joined #sbcl 2016-02-04T20:03:00Z sjl_ quit (Ping timeout: 260 seconds) 2016-02-04T20:06:08Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-02-04T20:08:59Z irsol joined #sbcl 2016-02-04T20:27:52Z Bicyclidine joined #sbcl 2016-02-04T20:30:26Z prxq joined #sbcl 2016-02-04T20:47:43Z drmeister_ joined #sbcl 2016-02-04T20:47:53Z drmeister quit (*.net *.split) 2016-02-04T20:47:53Z scymtym quit (*.net *.split) 2016-02-04T20:47:53Z carvite quit (*.net *.split) 2016-02-04T20:47:59Z _iwc quit (*.net *.split) 2016-02-04T20:48:40Z drmeister_ is now known as drmeister 2016-02-04T21:00:41Z _iwc joined #sbcl 2016-02-04T21:09:08Z angavrilov quit (Remote host closed the connection) 2016-02-04T21:13:50Z DeadTrickster quit (Ping timeout: 245 seconds) 2016-02-04T21:21:35Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-04T21:28:56Z Bicyclidine quit (Ping timeout: 240 seconds) 2016-02-04T21:31:48Z prxq quit (Remote host closed the connection) 2016-02-04T21:36:01Z Bicyclidine joined #sbcl 2016-02-04T21:45:36Z DeadTrickster joined #sbcl 2016-02-04T21:56:26Z Bicyclidine quit (Ping timeout: 240 seconds) 2016-02-04T21:59:47Z krzysz00 joined #sbcl 2016-02-04T22:03:29Z Bicyclidine joined #sbcl 2016-02-04T22:16:26Z Bicyclidine quit (Ping timeout: 272 seconds) 2016-02-04T22:27:21Z psilord quit (Quit: Leaving.) 2016-02-04T22:37:58Z attila_lendvai joined #sbcl 2016-02-04T22:48:08Z sjl_ joined #sbcl 2016-02-04T22:49:35Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-04T22:58:44Z krzysz00 joined #sbcl 2016-02-04T23:17:54Z Bicyclidine joined #sbcl 2016-02-04T23:20:33Z Bicyclidine quit (Client Quit) 2016-02-04T23:30:26Z flavioc quit (Ping timeout: 240 seconds) 2016-02-04T23:41:56Z psilord joined #sbcl 2016-02-04T23:49:02Z milanj quit (Quit: Leaving) 2016-02-04T23:52:47Z sjl_ quit (Ping timeout: 276 seconds) 2016-02-04T23:55:16Z DeadTrickster quit (Ping timeout: 248 seconds) 2016-02-05T00:21:25Z krzysz00 quit (Ping timeout: 260 seconds) 2016-02-05T00:29:26Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-05T00:34:50Z stassats quit (Ping timeout: 260 seconds) 2016-02-05T00:40:35Z psilord quit (Ping timeout: 240 seconds) 2016-02-05T00:40:58Z psilord joined #sbcl 2016-02-05T00:47:49Z krzysz00 joined #sbcl 2016-02-05T01:05:40Z krzysz00 quit (Ping timeout: 248 seconds) 2016-02-05T02:07:03Z krzysz00 joined #sbcl 2016-02-05T02:25:12Z andreh joined #sbcl 2016-02-05T02:32:22Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-05T03:05:58Z edgar-rft joined #sbcl 2016-02-05T03:08:10Z yuankode quit (Ping timeout: 250 seconds) 2016-02-05T04:33:16Z lnostdal quit (Ping timeout: 272 seconds) 2016-02-05T04:47:55Z lnostdal joined #sbcl 2016-02-05T05:14:41Z gingerale joined #sbcl 2016-02-05T05:20:20Z karswell joined #sbcl 2016-02-05T05:49:02Z karswell quit (Read error: Connection reset by peer) 2016-02-05T05:49:18Z karswell joined #sbcl 2016-02-05T06:21:48Z rubengarcia joined #sbcl 2016-02-05T06:33:51Z andreh quit (Remote host closed the connection) 2016-02-05T06:34:46Z rubengarcia quit (Quit: leaving) 2016-02-05T06:37:03Z igajsin joined #sbcl 2016-02-05T06:39:15Z igajsin left #sbcl 2016-02-05T06:43:53Z gingerale quit (Remote host closed the connection) 2016-02-05T07:11:20Z ASau quit (Ping timeout: 245 seconds) 2016-02-05T07:36:58Z flip214: my paste works fine on amd64 with 8 threads... but crashes on PPC32 with 4. Is that a known problem? 2016-02-05T07:38:49Z karswell quit (Remote host closed the connection) 2016-02-05T07:39:04Z karswell joined #sbcl 2016-02-05T08:02:04Z salv0 joined #sbcl 2016-02-05T08:02:43Z DeadTrickster joined #sbcl 2016-02-05T08:05:59Z sjl_ joined #sbcl 2016-02-05T08:06:29Z DeadTrickster_ joined #sbcl 2016-02-05T08:11:16Z sjl_ is now known as sjl 2016-02-05T08:12:25Z DeadTrickster quit (Quit: Leaving) 2016-02-05T08:12:35Z DeadTrickster_ quit (Quit: Leaving) 2016-02-05T08:12:46Z DeadTrickster joined #sbcl 2016-02-05T08:13:13Z DeadTrickster_ joined #sbcl 2016-02-05T08:29:21Z Cymew joined #sbcl 2016-02-05T08:30:03Z karswell` joined #sbcl 2016-02-05T08:30:03Z karswell quit (Remote host closed the connection) 2016-02-05T08:59:31Z karswell` quit (Read error: Connection reset by peer) 2016-02-05T08:59:46Z karswell` joined #sbcl 2016-02-05T09:00:40Z stassats joined #sbcl 2016-02-05T09:05:02Z stassats quit (Ping timeout: 256 seconds) 2016-02-05T09:05:39Z stassats joined #sbcl 2016-02-05T09:10:05Z stassats quit (Ping timeout: 245 seconds) 2016-02-05T09:10:34Z stassats joined #sbcl 2016-02-05T09:13:06Z karswell` quit (Ping timeout: 240 seconds) 2016-02-05T09:14:35Z stassats quit (Ping timeout: 240 seconds) 2016-02-05T09:15:38Z stassats joined #sbcl 2016-02-05T09:19:46Z stassats quit (Ping timeout: 240 seconds) 2016-02-05T09:20:36Z stassats joined #sbcl 2016-02-05T09:25:14Z stassats quit (Ping timeout: 272 seconds) 2016-02-05T09:27:06Z stassats joined #sbcl 2016-02-05T09:31:26Z stassats quit (Ping timeout: 240 seconds) 2016-02-05T09:33:09Z stassats joined #sbcl 2016-02-05T09:44:07Z Shinmera joined #sbcl 2016-02-05T10:23:55Z yuankode joined #sbcl 2016-02-05T11:10:24Z nzambe quit (Ping timeout: 264 seconds) 2016-02-05T11:11:11Z angavrilov joined #sbcl 2016-02-05T11:11:38Z zacts quit (Ping timeout: 264 seconds) 2016-02-05T11:12:18Z loke quit (Ping timeout: 264 seconds) 2016-02-05T11:12:49Z DeadTrickster_ quit (Ping timeout: 264 seconds) 2016-02-05T11:12:51Z gabriel_laddel joined #sbcl 2016-02-05T11:13:10Z zacts joined #sbcl 2016-02-05T11:13:33Z zacts is now known as Guest52031 2016-02-05T11:14:21Z salv0 quit (Remote host closed the connection) 2016-02-05T11:15:17Z carvite joined #sbcl 2016-02-05T11:24:57Z loke joined #sbcl 2016-02-05T11:26:38Z DeadTrickster_ joined #sbcl 2016-02-05T12:21:58Z lnostdal quit (Ping timeout: 250 seconds) 2016-02-05T12:36:56Z lnostdal joined #sbcl 2016-02-05T13:39:30Z karswell` joined #sbcl 2016-02-05T14:15:00Z DeadTrickster_ quit (Ping timeout: 260 seconds) 2016-02-05T14:20:40Z krzysz00 quit (Ping timeout: 256 seconds) 2016-02-05T14:50:35Z karswell` quit (Ping timeout: 240 seconds) 2016-02-05T14:59:59Z krzysz00 joined #sbcl 2016-02-05T15:14:15Z sjl quit (Ping timeout: 245 seconds) 2016-02-05T15:21:30Z dougk_ quit (Ping timeout: 260 seconds) 2016-02-05T15:25:42Z andreh joined #sbcl 2016-02-05T15:34:35Z dougk_ joined #sbcl 2016-02-05T15:35:41Z sjl joined #sbcl 2016-02-05T15:35:50Z dougk_ quit (Remote host closed the connection) 2016-02-05T15:41:55Z foom quit (Ping timeout: 240 seconds) 2016-02-05T15:51:35Z Cymew quit (Ping timeout: 240 seconds) 2016-02-05T15:53:51Z sjl_ joined #sbcl 2016-02-05T15:54:48Z sjl quit (Ping timeout: 252 seconds) 2016-02-05T15:55:12Z foom joined #sbcl 2016-02-05T15:55:31Z sjl joined #sbcl 2016-02-05T15:57:35Z andreh quit (Remote host closed the connection) 2016-02-05T15:58:42Z sjl_ quit (Ping timeout: 256 seconds) 2016-02-05T16:07:21Z hitecnologys_ joined #sbcl 2016-02-05T16:14:38Z hitecnologys quit (*.net *.split) 2016-02-05T16:14:38Z hitecnologys_ is now known as hitecnologys 2016-02-05T16:24:06Z andreh joined #sbcl 2016-02-05T16:49:20Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-05T16:50:28Z lnostdal_ joined #sbcl 2016-02-05T16:52:13Z andreh quit (Remote host closed the connection) 2016-02-05T16:54:06Z lnostdal quit (Ping timeout: 250 seconds) 2016-02-05T16:56:00Z DGASAU quit (Read error: Connection reset by peer) 2016-02-05T16:58:38Z DGASAU joined #sbcl 2016-02-05T17:02:47Z krzysz00 joined #sbcl 2016-02-05T17:16:49Z andreh joined #sbcl 2016-02-05T17:20:35Z knobo quit (Quit: WeeChat 1.3) 2016-02-05T17:26:16Z joshe joined #sbcl 2016-02-05T17:33:16Z sjl quit (Ping timeout: 245 seconds) 2016-02-05T17:34:48Z myrkraverk quit (Remote host closed the connection) 2016-02-05T17:36:45Z myrkraverk joined #sbcl 2016-02-05T17:47:56Z andreh quit (Remote host closed the connection) 2016-02-05T17:49:10Z andreh joined #sbcl 2016-02-05T18:00:13Z attila_lendvai joined #sbcl 2016-02-05T18:00:16Z gingerale joined #sbcl 2016-02-05T18:04:38Z DeadTrickster_ joined #sbcl 2016-02-05T18:08:55Z yuankode quit (Ping timeout: 260 seconds) 2016-02-05T18:13:01Z yuankode joined #sbcl 2016-02-05T18:17:26Z andreh quit (Ping timeout: 240 seconds) 2016-02-05T18:21:50Z andreh joined #sbcl 2016-02-05T18:23:06Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-05T18:28:35Z yuankode quit (Ping timeout: 240 seconds) 2016-02-05T18:29:20Z lnostdal_ quit (Ping timeout: 260 seconds) 2016-02-05T18:31:01Z gabriel_laddel quit (Remote host closed the connection) 2016-02-05T18:31:37Z lnostdal_ joined #sbcl 2016-02-05T18:36:55Z DeadTrickster_ quit (Ping timeout: 260 seconds) 2016-02-05T18:37:30Z irsol quit (Ping timeout: 260 seconds) 2016-02-05T18:39:20Z irsol joined #sbcl 2016-02-05T18:43:56Z andreh quit (Ping timeout: 240 seconds) 2016-02-05T18:58:55Z DeadTrickster_ joined #sbcl 2016-02-05T19:14:18Z andreh joined #sbcl 2016-02-05T19:18:24Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-05T19:26:43Z attila_lendvai joined #sbcl 2016-02-05T19:26:43Z attila_lendvai quit (Changing host) 2016-02-05T19:26:43Z attila_lendvai joined #sbcl 2016-02-05T19:46:41Z scymtym joined #sbcl 2016-02-05T19:47:46Z DeadTrickster_ quit (Ping timeout: 240 seconds) 2016-02-05T19:59:52Z DeadTrickster_ joined #sbcl 2016-02-05T20:01:30Z jackc- joined #sbcl 2016-02-05T20:01:33Z jackc-_ quit (Read error: Connection reset by peer) 2016-02-05T20:44:17Z andreh quit (Remote host closed the connection) 2016-02-05T21:05:29Z ASau joined #sbcl 2016-02-05T21:09:29Z krzysz00 joined #sbcl 2016-02-05T21:37:16Z DeadTrickster_ quit (Ping timeout: 252 seconds) 2016-02-05T21:42:35Z pullmeunder joined #sbcl 2016-02-05T21:43:06Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-05T21:48:37Z gingerale quit (Remote host closed the connection) 2016-02-05T21:49:24Z pullmeunder left #sbcl 2016-02-05T22:01:19Z andreh joined #sbcl 2016-02-05T22:37:28Z andreh quit (Remote host closed the connection) 2016-02-05T22:38:54Z andreh joined #sbcl 2016-02-05T22:48:50Z krzysz00 quit (Ping timeout: 276 seconds) 2016-02-05T22:58:30Z krzysz00 joined #sbcl 2016-02-05T22:59:37Z angavrilov quit (Remote host closed the connection) 2016-02-05T23:14:06Z scymtym quit (Ping timeout: 245 seconds) 2016-02-05T23:57:45Z krzysz00 quit (Ping timeout: 260 seconds) 2016-02-06T00:01:37Z krzysz00 joined #sbcl 2016-02-06T00:06:10Z andreh quit (Ping timeout: 240 seconds) 2016-02-06T00:07:35Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-06T00:10:46Z lnostdal_ quit (Ping timeout: 245 seconds) 2016-02-06T00:25:41Z lnostdal_ joined #sbcl 2016-02-06T00:42:44Z andreh joined #sbcl 2016-02-06T01:21:14Z andreh quit (Remote host closed the connection) 2016-02-06T01:25:22Z stassats quit (Ping timeout: 272 seconds) 2016-02-06T01:50:34Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-06T02:21:46Z andreh joined #sbcl 2016-02-06T02:26:20Z andreh quit (Ping timeout: 245 seconds) 2016-02-06T03:41:14Z krzysz00 joined #sbcl 2016-02-06T03:44:31Z lnostdal_ quit (Ping timeout: 245 seconds) 2016-02-06T03:50:02Z lnostdal_ joined #sbcl 2016-02-06T03:58:23Z andreh joined #sbcl 2016-02-06T05:40:22Z gingerale joined #sbcl 2016-02-06T06:01:47Z andreh quit (Remote host closed the connection) 2016-02-06T08:15:31Z Shinmera joined #sbcl 2016-02-06T08:42:55Z stassats joined #sbcl 2016-02-06T08:53:19Z stassats: flip214: it is obviously memory reordering 2016-02-06T09:25:55Z lnostdal_ quit (Ping timeout: 260 seconds) 2016-02-06T09:37:41Z flip214: stassats: could you elaborate a bit, please? 2016-02-06T09:37:55Z flip214: I'd have expected each thread to work on each own copy, so where's the problem? 2016-02-06T09:40:39Z lnostdal_ joined #sbcl 2016-02-06T09:59:02Z angavrilov joined #sbcl 2016-02-06T10:36:01Z stassats: flip214: one scenario: gc is run from a different thread 2016-02-06T10:36:36Z stassats: the original thread doesn't see the changed location 2016-02-06T10:36:49Z stassats: though i would assume that all the gc locks would have barriers around them 2016-02-06T10:51:50Z stassats: looks like it's a bit different 2016-02-06T10:52:13Z stassats: the problem seems to be with the widetag-aref table 2016-02-06T10:53:07Z stassats: which is strange, since it's not modified 2016-02-06T10:53:17Z stassats: that leaves the gc again 2016-02-06T10:56:18Z stassats: ok, no, the table seems alright, so it's the widetag itself then 2016-02-06T11:16:25Z stassats: and it's not limited just to ppc, but to anything with relaxed memory reordering 2016-02-06T11:25:32Z DeadTrickster_ joined #sbcl 2016-02-06T11:41:01Z stassats: it's clearly from gc, since i get a forwarding pointer widetag 2016-02-06T12:01:10Z stassats: even sprinkling memory barriers doesn't completely help 2016-02-06T12:01:12Z stassats: oh well 2016-02-06T12:17:48Z sjl joined #sbcl 2016-02-06T12:33:44Z guicho joined #sbcl 2016-02-06T12:35:48Z lnostdal_ quit (Ping timeout: 248 seconds) 2016-02-06T12:37:42Z lnostdal_ joined #sbcl 2016-02-06T13:42:51Z karswell` joined #sbcl 2016-02-06T13:58:20Z lnostdal_ quit (Ping timeout: 260 seconds) 2016-02-06T14:08:19Z benkard joined #sbcl 2016-02-06T14:12:37Z lnostdal_ joined #sbcl 2016-02-06T14:19:20Z stassats: i don't quite get it, do i have to insert a barrier in every thread at the place it wakes up from gc? 2016-02-06T14:19:37Z stassats: pkhuong: any advice on barriers? 2016-02-06T14:22:41Z stassats: when i insert a barrier before my test case the failures are more rare, so, i guess inserting at the thread wake up point would do the job 2016-02-06T14:33:44Z stassats: that didn't actually help 2016-02-06T14:40:54Z stassats: oh, maybe it reoders before stop the world, so that's why it reads a forwarding-pointer 2016-02-06T14:44:20Z stassats: still weird, why aren't all the locks help? 2016-02-06T14:48:02Z stassats: and oldspace should become protected anyway 2016-02-06T14:48:09Z stassats: and zeroed 2016-02-06T14:54:44Z stassats: sometimes the widetag is 0, not 1 2016-02-06T14:54:56Z stassats: but rarel 2016-02-06T14:59:01Z stassats: probably something's fishy with signals and memory reordering 2016-02-06T15:21:22Z karswell` quit (Read error: Connection reset by peer) 2016-02-06T15:26:51Z flavioc joined #sbcl 2016-02-06T15:32:46Z stassats: or maybe %other-pointer-widetag is conservative? 2016-02-06T15:32:49Z guicho quit (Quit: さようなら) 2016-02-06T15:33:05Z stassats: (int-sap (get-lisp-obj-address x)) 2016-02-06T15:33:07Z stassats: well, duh 2016-02-06T15:35:40Z stassats: flip214: found the culprit, will fix today 2016-02-06T15:51:00Z flavioc quit (Remote host closed the connection) 2016-02-06T15:52:07Z stassats: looks like i'll have to write a new vop 2016-02-06T15:52:24Z stassats: which is easy, but now multiple it by the number of backends 2016-02-06T15:58:58Z andreh joined #sbcl 2016-02-06T16:04:15Z ASau quit (Remote host closed the connection) 2016-02-06T16:04:35Z ASau joined #sbcl 2016-02-06T16:16:48Z andreh quit (Remote host closed the connection) 2016-02-06T16:19:39Z andreh joined #sbcl 2016-02-06T16:28:24Z scymtym joined #sbcl 2016-02-06T16:32:33Z flip214: stassats: thank you very much! I really appreciate the effort.... 2016-02-06T16:32:59Z flip214: The PPC machine is the beefiest, by a big margin. Now, if there only was a PPC64LE version of SBCL, too ;) 2016-02-06T16:33:02Z flip214: Thank you! 2016-02-06T16:37:35Z stassats: no more failures on ppc or arm64 2016-02-06T16:38:46Z flip214: hurray! 2016-02-06T16:39:04Z stassats: and again, i missed an early clue and chased some wild birds for a time 2016-02-06T16:39:23Z flip214: hindsight is often 20/20.... 2016-02-06T16:39:29Z stassats: widetag-of didn't fail, but aref used other-pointer-lowtag, and i didn't investigate it directly 2016-02-06T16:39:38Z stassats: although it did surprise me at the time 2016-02-06T16:41:46Z stassats: flip214: pushed 2016-02-06T16:43:12Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-06T16:43:19Z stassats: it was broken for only about 7 years 2016-02-06T16:47:04Z stassats: now that i gathered enough steam, i'll do the function arg mismatch for MAP and friends 2016-02-06T16:49:25Z psilord quit (Quit: Leaving.) 2016-02-06T17:13:19Z flip214: stassats: thank you very much. are you pushing that as a test script? 2016-02-06T17:16:05Z stassats: flip214: no test for this 2016-02-06T17:16:24Z flip214: can't see it (yet) on https://github.com/sbcl/sbcl 2016-02-06T17:16:44Z flip214: but never mind, I'll find time to test this on Monday. Thanks, once more! 2016-02-06T17:16:54Z stassats: i don't really trust tests with multiple threads interacting, no way to ensure that they actually fail 2016-02-06T17:17:10Z stassats: flip214: that's because that's not the sbcl repository 2016-02-06T17:21:31Z guicho joined #sbcl 2016-02-06T17:24:54Z flip214: stassats: re tests: right, they might not fail. but if they fail, they show an error. 2016-02-06T17:25:13Z flip214: for me this one breaks within a few seconds... so leaving it running for a minute seems safe enough. 2016-02-06T17:25:19Z flip214: perhaps not by default, though... 2016-02-06T17:25:36Z stassats: an additional minute for tests? no way 2016-02-06T17:29:58Z flip214: broken since 7 years.... if it breaks again, why wait 7 more years until someone notices? perhaps the bug would cause silent data corruption in other szenarios.. 2016-02-06T17:30:28Z stassats: easy, just don't break it 2016-02-06T17:31:06Z flip214: *I* won't break it, promised! ;) 2016-02-06T17:33:50Z guicho quit (Quit: さようなら) 2016-02-06T17:53:16Z andreh quit (Remote host closed the connection) 2016-02-06T17:55:25Z edgar-rft quit (Quit: edgar-rft) 2016-02-06T17:57:27Z andreh joined #sbcl 2016-02-06T18:01:05Z lnostdal_ is now known as lnostdal 2016-02-06T18:08:44Z stassats: turns out, MAPCAR and others are already transformed 2016-02-06T18:08:52Z stassats: i can only warn about MAP and MAP-INTO. still useful 2016-02-06T18:09:07Z stassats: well, mapcar warns too, but the error is not as clear 2016-02-06T18:16:01Z flavioc joined #sbcl 2016-02-06T18:20:53Z psy_ joined #sbcl 2016-02-06T18:37:34Z attila_lendvai joined #sbcl 2016-02-06T19:08:53Z flavioc quit (Ping timeout: 276 seconds) 2016-02-06T19:12:05Z flavioc joined #sbcl 2016-02-06T19:25:00Z scymtym: i had this in my queue: http://paste.lisp.org/display/306690. should solve the issue without a kludge. am i missing something? 2016-02-06T19:26:14Z benkard joined #sbcl 2016-02-06T19:28:54Z karswell` joined #sbcl 2016-02-06T20:04:27Z stassats: that's probably it 2016-02-06T20:07:23Z karswell` quit (Read error: Connection reset by peer) 2016-02-06T20:07:40Z karswell` joined #sbcl 2016-02-06T20:09:21Z attila_lendvai quit (Read error: No route to host) 2016-02-06T20:11:46Z attila_lendvai joined #sbcl 2016-02-06T20:11:46Z attila_lendvai quit (Changing host) 2016-02-06T20:11:46Z attila_lendvai joined #sbcl 2016-02-06T20:36:53Z andreh quit (Remote host closed the connection) 2016-02-06T20:37:11Z andreh joined #sbcl 2016-02-06T20:37:37Z andreh quit (Remote host closed the connection) 2016-02-06T21:10:25Z karswell` quit (Remote host closed the connection) 2016-02-06T21:30:05Z andreh joined #sbcl 2016-02-06T21:34:51Z karswell` joined #sbcl 2016-02-06T21:38:10Z andreh quit (Remote host closed the connection) 2016-02-06T21:40:09Z karswell` is now known as karswell 2016-02-06T21:40:55Z DeadTrickster_ quit (Ping timeout: 260 seconds) 2016-02-06T21:42:13Z andreh joined #sbcl 2016-02-06T21:56:04Z attila_lendvai quit (Quit: Leaving.) 2016-02-06T22:14:16Z angavrilov quit (Remote host closed the connection) 2016-02-06T22:26:38Z scymtym: stassats: the %OTHER-POINTER-WIDETAG change seems to have broken 32bit builds. see https://ci.cor-lab.org/job/sbcl-master/1461/featureset=1,label=ubuntu_trusty_32bit/console, search for "size mismatch" 2016-02-06T22:33:09Z gingerale quit (Remote host closed the connection) 2016-02-06T23:06:34Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-06T23:14:58Z andreh quit (Remote host closed the connection) 2016-02-06T23:18:11Z karswell quit (Read error: Connection reset by peer) 2016-02-06T23:18:24Z karswell joined #sbcl 2016-02-06T23:18:42Z andreh joined #sbcl 2016-02-06T23:28:35Z hargettp joined #sbcl 2016-02-06T23:30:09Z hargettp quit (Client Quit) 2016-02-06T23:32:57Z hargettp joined #sbcl 2016-02-06T23:33:21Z hargettp left #sbcl 2016-02-06T23:41:36Z stassats quit (Ping timeout: 245 seconds) 2016-02-06T23:53:26Z DeadTrickster_ joined #sbcl 2016-02-06T23:54:55Z lnostdal_ joined #sbcl 2016-02-06T23:58:00Z lnostdal quit (Ping timeout: 245 seconds) 2016-02-06T23:58:26Z DeadTrickster_ quit (Ping timeout: 240 seconds) 2016-02-07T00:10:03Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-07T00:15:59Z andreh quit (Remote host closed the connection) 2016-02-07T00:21:41Z flavioc_ joined #sbcl 2016-02-07T00:22:01Z flavioc quit (Ping timeout: 240 seconds) 2016-02-07T00:22:02Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-07T00:22:12Z krzysz00 joined #sbcl 2016-02-07T00:27:14Z hitecnologys_ joined #sbcl 2016-02-07T00:28:51Z hitecnologys quit (Ping timeout: 240 seconds) 2016-02-07T00:28:51Z hitecnologys_ is now known as hitecnologys 2016-02-07T00:38:44Z lnostdal_ quit (Remote host closed the connection) 2016-02-07T00:47:32Z sjl quit (Ping timeout: 276 seconds) 2016-02-07T01:05:44Z lnostdal joined #sbcl 2016-02-07T01:24:47Z karswell` joined #sbcl 2016-02-07T01:25:27Z karswell quit (Remote host closed the connection) 2016-02-07T01:43:18Z sjl joined #sbcl 2016-02-07T01:50:02Z karswell` quit (Read error: Connection reset by peer) 2016-02-07T01:54:54Z csziacobus joined #sbcl 2016-02-07T02:24:48Z csziacobus quit (Remote host closed the connection) 2016-02-07T02:25:07Z csziacobus joined #sbcl 2016-02-07T02:39:26Z scymtym quit (Ping timeout: 240 seconds) 2016-02-07T03:03:01Z csziacobus quit (Remote host closed the connection) 2016-02-07T03:03:21Z csziacobus joined #sbcl 2016-02-07T03:06:16Z flavioc_ quit (Ping timeout: 272 seconds) 2016-02-07T04:00:24Z andreh joined #sbcl 2016-02-07T04:47:47Z edgar-rft joined #sbcl 2016-02-07T04:56:14Z lnostdal quit (Read error: Connection reset by peer) 2016-02-07T05:18:06Z nzambe joined #sbcl 2016-02-07T06:16:14Z csziacobus quit (Quit: csziacobus) 2016-02-07T06:45:43Z ababac joined #sbcl 2016-02-07T06:47:48Z ababac left #sbcl 2016-02-07T07:07:08Z gingerale joined #sbcl 2016-02-07T08:25:58Z Shinmera joined #sbcl 2016-02-07T08:55:26Z benkard joined #sbcl 2016-02-07T09:10:16Z DeadTrickster_ joined #sbcl 2016-02-07T09:12:42Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-07T09:17:07Z andreh quit (Remote host closed the connection) 2016-02-07T09:25:46Z angavrilov joined #sbcl 2016-02-07T09:41:57Z benkard joined #sbcl 2016-02-07T10:03:38Z stassats joined #sbcl 2016-02-07T10:08:10Z stassats quit (Ping timeout: 260 seconds) 2016-02-07T10:09:02Z stassats joined #sbcl 2016-02-07T10:13:36Z stassats quit (Ping timeout: 252 seconds) 2016-02-07T10:14:33Z stassats joined #sbcl 2016-02-07T10:18:33Z stassats quit (Ping timeout: 240 seconds) 2016-02-07T10:20:33Z stassats joined #sbcl 2016-02-07T10:24:40Z stassats quit (Ping timeout: 245 seconds) 2016-02-07T10:29:04Z stassats joined #sbcl 2016-02-07T10:33:26Z stassats quit (Ping timeout: 240 seconds) 2016-02-07T10:37:33Z stassats joined #sbcl 2016-02-07T10:41:27Z flavioc joined #sbcl 2016-02-07T10:41:45Z stassats quit (Ping timeout: 245 seconds) 2016-02-07T10:42:35Z stassats joined #sbcl 2016-02-07T10:47:00Z stassats quit (Ping timeout: 248 seconds) 2016-02-07T10:48:03Z stassats joined #sbcl 2016-02-07T10:52:14Z stassats quit (Ping timeout: 250 seconds) 2016-02-07T10:53:04Z stassats joined #sbcl 2016-02-07T10:57:26Z stassats quit (Ping timeout: 240 seconds) 2016-02-07T10:58:33Z stassats joined #sbcl 2016-02-07T11:02:33Z stassats quit (Ping timeout: 240 seconds) 2016-02-07T11:03:34Z stassats joined #sbcl 2016-02-07T11:07:59Z stassats quit (Ping timeout: 264 seconds) 2016-02-07T11:08:32Z stassats joined #sbcl 2016-02-07T11:12:54Z stassats quit (Ping timeout: 256 seconds) 2016-02-07T11:13:35Z stassats joined #sbcl 2016-02-07T11:18:08Z stassats quit (Ping timeout: 252 seconds) 2016-02-07T11:18:34Z stassats joined #sbcl 2016-02-07T11:22:44Z stassats quit (Ping timeout: 248 seconds) 2016-02-07T11:23:33Z stassats joined #sbcl 2016-02-07T11:28:00Z stassats quit (Ping timeout: 245 seconds) 2016-02-07T11:28:37Z stassats joined #sbcl 2016-02-07T11:33:00Z stassats quit (Ping timeout: 245 seconds) 2016-02-07T11:34:04Z stassats joined #sbcl 2016-02-07T11:38:16Z stassats quit (Ping timeout: 245 seconds) 2016-02-07T11:39:36Z stassats joined #sbcl 2016-02-07T11:43:55Z stassats quit (Ping timeout: 240 seconds) 2016-02-07T11:45:04Z stassats joined #sbcl 2016-02-07T12:08:36Z irsol quit (Ping timeout: 248 seconds) 2016-02-07T12:12:16Z irsol joined #sbcl 2016-02-07T13:11:51Z scymtym_: stassats: does this look ok? http://paste.lisp.org/display/306728 (if you haven't seen, the %OTHER-POINTER-WIDETAG change broke the x86 build) 2016-02-07T13:12:16Z stassats: i did test, how could it? 2016-02-07T13:12:58Z scymtym_: https://ci.cor-lab.org/job/sbcl-master/1463/featureset=1,label=ubuntu_trusty_32bit/consoleFull 2016-02-07T13:13:04Z scymtym_: search for "size mismatch" 2016-02-07T13:14:06Z stassats: my 32-bit build turned out to be a 64-bit one 2016-02-07T13:14:09Z scymtym_: i could reproduce the error on x86_64 with "SBCL_ARCH=x86 sh make.sh --fancy" 2016-02-07T13:14:36Z stassats: will fix it, thanks 2016-02-07T13:14:40Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-07T13:14:47Z scymtym_: np. thanks for fixing 2016-02-07T13:32:50Z stassats: as always, do a simple fix or solve the underlying problem 2016-02-07T13:33:25Z stassats: will go for the latter 2016-02-07T13:34:11Z stassats: scymtym_: by the way, your patch looks ok as to working, but it's not the right one 2016-02-07T13:34:22Z stassats: it would be just (inst movzx result (make-ea :byte :base object :disp (- other-pointer-lowtag))) 2016-02-07T13:34:29Z stassats: but i'll fix load-type instead 2016-02-07T13:35:44Z myrkraverk quit (Remote host closed the connection) 2016-02-07T13:36:06Z scymtym_: stassats: i suspected this after seeing the different definitions of LOAD-TYPE. is there a reason the x86 backend currently uses mov instead of movzx? 2016-02-07T13:36:26Z stassats: no, i'm changing it now 2016-02-07T13:37:31Z scymtym_: that should allow improving the FUN-SUBTYPE VOP in the same manner 2016-02-07T13:47:20Z myrkraverk joined #sbcl 2016-02-07T14:07:44Z pkhuong: stassats: mm... yes. I think we do need barriers before restarting the world. 2016-02-07T14:08:46Z stassats: pkhuong: that was actually a conservative issue 2016-02-07T14:08:54Z stassats: (int-sap (get-lisp-obj-address ...)) 2016-02-07T14:09:15Z stassats: pkhuong: i think all the locks around the thread state would employ barriers 2016-02-07T14:10:07Z pkhuong: does every thread acquire a lock between the last GC write to the heap and their resuming normal processing? 2016-02-07T14:11:12Z benkard joined #sbcl 2016-02-07T14:11:15Z stassats: it calls thread_state, which does os_sem_wait 2016-02-07T14:12:23Z pkhuong: so mutators acquire a semaphore token; that should be good enough. 2016-02-07T14:12:45Z stassats: that's why it was so confusing 2016-02-07T14:12:51Z pkhuong: cool. 2016-02-07T14:13:16Z pkhuong: syscalls are implicit barriers on x86; I don't think that's true on arm and ppc. 2016-02-07T14:13:44Z stassats: i would assume sem_wait/sem_post ensure that stuff 2016-02-07T14:14:27Z stassats: what's more interesting, from-space does not get protected after gc? 2016-02-07T14:14:28Z pkhuong: yes 2016-02-07T14:14:42Z pkhuong: cheneygc? 2016-02-07T14:14:47Z stassats: gengc 2016-02-07T14:15:13Z stassats: i was picking off forwarding-pointer widetags 2016-02-07T14:15:17Z pkhuong: pinned stuff might still be in there, and the nursery shouldn't be protected. 2016-02-07T14:15:35Z pkhuong: does not get wiped is more surprising. 2016-02-07T14:21:00Z karswell` joined #sbcl 2016-02-07T14:24:07Z stassats: scymtym_: the current load-type is a bit more compact 2016-02-07T14:24:20Z lnostdal joined #sbcl 2016-02-07T14:24:27Z stassats: i'll just use movzx directly for other-pointer-widetag and fun-subtype 2016-02-07T14:29:14Z stassats: but i don't really care about x86 at the end of the day 2016-02-07T14:38:20Z stassats: shaving 1 byte off widetag-of on x86-64 2016-02-07T14:38:21Z stassats: "yay" 2016-02-07T14:40:04Z stassats: or not 2016-02-07T14:40:22Z stassats: it broke everything, missed an important thing 2016-02-07T14:40:39Z stassats: broke every contrib, but not the build 2016-02-07T14:45:01Z yuankode joined #sbcl 2016-02-07T15:32:34Z drmeister: Hello, how do I get sbcl to work with M-. All of my source locations look like: /Users/jwise/proj/sbcl/clean/1.2.11/sbcl-1.2.11-x86-64-darwin/src/code/list.lisp 2016-02-07T15:32:53Z stassats: sb-ext:set-sbcl-source-location 2016-02-07T15:37:38Z karswell` is now known as karswell 2016-02-07T15:42:27Z drmeister: Ok, I downloaded the sbcl source. I call (sb-ext:set-sbcl-source-location #P"/Users/meister/Downloads/sbcl/src/") 2016-02-07T15:42:50Z drmeister: I go (list M-. I get a list of source locations. I move the cursor over them. 2016-02-07T15:43:08Z drmeister: A frame gets set up that says list.lisp at the bottom. The frame is empty 2016-02-07T15:44:23Z drmeister: http://i.imgur.com/JqOQlAu.png 2016-02-07T15:44:31Z stassats: well, because it should've been (sb-ext:set-sbcl-source-location #P"/Users/meister/Downloads/sbcl/") 2016-02-07T15:44:32Z drmeister: The bottom right frame. 2016-02-07T15:45:06Z drmeister: Thank you. 2016-02-07T15:45:10Z drmeister: That works 2016-02-07T15:50:53Z drmeister: I don't understand this at all. 2016-02-07T15:51:02Z drmeister: Can I simplify this if I don't call no-next-method? 2016-02-07T15:51:15Z drmeister: ECL doesn't call no-next-method. 2016-02-07T15:51:25Z stassats: we're not in #clasp anymore 2016-02-07T15:52:33Z drmeister: Oh sorry 2016-02-07T15:55:35Z angavrilov quit (Remote host closed the connection) 2016-02-07T16:10:03Z stassats: great, slime arglists for INST stopped working 2016-02-07T16:10:12Z stassats: because now emitters are downcases for some reason 2016-02-07T16:11:59Z stassats: or not only because of that 2016-02-07T16:14:39Z stassats: looks like they always were downcase, but there's no sb-assem:*assem-instructions* anymore, or rather, it's empty 2016-02-07T16:21:55Z benkard quit (Ping timeout: 240 seconds) 2016-02-07T16:23:44Z benkard joined #sbcl 2016-02-07T17:44:27Z andreh joined #sbcl 2016-02-07T18:12:20Z karswell quit (Read error: Connection reset by peer) 2016-02-07T18:12:34Z karswell joined #sbcl 2016-02-07T18:27:08Z karswell quit (Remote host closed the connection) 2016-02-07T18:27:20Z karswell joined #sbcl 2016-02-07T18:30:46Z andreh quit (Read error: Connection reset by peer) 2016-02-07T18:34:24Z andreh_ joined #sbcl 2016-02-07T19:13:50Z attila_lendvai joined #sbcl 2016-02-07T19:23:13Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-07T19:29:12Z karswell quit (Ping timeout: 272 seconds) 2016-02-07T19:29:39Z scymtym_: Xof: i'm trying to unify the commonalities of the gray streams protocol and the extensible sequences protocol. in case you have a little bit of time to spare, could you have a brief look at the four most recent commits in https://github.com/scymtym/sbcl/commits/wip-gray-stream-protocol ? thanks in advance. 2016-02-07T19:36:29Z stassats: will that break anything? 2016-02-07T19:39:04Z ASau quit (Read error: Connection reset by peer) 2016-02-07T19:39:23Z ASau` joined #sbcl 2016-02-07T20:14:51Z Xof: +(stream-element-type (make-instance 'my-stream)) ; doesn't look right 2016-02-07T20:15:46Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-07T20:18:54Z Xof: define-protocol-generic seems to assume that only a single class is relevant to the protocol 2016-02-07T20:19:09Z Xof: that works for the two protocols it's used for, but I don't think that's "right" in general 2016-02-07T20:20:13Z Xof: and I'd be a bit surprised to have (define-protocol-generic foo ((x integer) (y function)) ...) define a protocol unimplemented method for (integer integer) args 2016-02-07T20:22:12Z Xof: in fact various things that I would expect to be able to write with define-protocol-generic don't work as I expect 2016-02-07T20:22:27Z Xof: e.g. (define-protocol-generic stream-read-sequence ((s stream) (seq sequence)) ...) 2016-02-07T20:24:54Z scymtym joined #sbcl 2016-02-07T20:27:47Z scymtym: Xof: that was quick. thanks for the feedback 2016-02-07T20:28:08Z benkard joined #sbcl 2016-02-07T20:30:34Z scymtym: i wasn't trying to make a general protocol facility (although i'll admit that the macro name suggests that) 2016-02-07T20:33:18Z benkard quit (Ping timeout: 250 seconds) 2016-02-07T20:36:09Z benkard joined #sbcl 2016-02-07T20:50:28Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-07T20:53:01Z sdemarre joined #sbcl 2016-02-07T21:02:06Z yuankode quit (Ping timeout: 240 seconds) 2016-02-07T21:07:03Z ASau` is now known as ASau 2016-02-07T21:10:57Z nzambe quit (Remote host closed the connection) 2016-02-07T21:49:36Z sdemarre quit (Ping timeout: 252 seconds) 2016-02-07T22:19:29Z benkard joined #sbcl 2016-02-07T22:19:29Z benkard quit (Client Quit) 2016-02-07T22:37:04Z andreh_ quit (Remote host closed the connection) 2016-02-07T22:38:51Z andreh joined #sbcl 2016-02-07T22:56:54Z gingerale quit (Remote host closed the connection) 2016-02-07T23:00:09Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-08T00:05:41Z stassats quit (Ping timeout: 276 seconds) 2016-02-08T00:18:56Z lnostdal quit (Remote host closed the connection) 2016-02-08T00:28:30Z lnostdal joined #sbcl 2016-02-08T00:33:09Z ASau quit (Ping timeout: 240 seconds) 2016-02-08T00:40:23Z scymtym quit (Ping timeout: 264 seconds) 2016-02-08T00:42:46Z ASau joined #sbcl 2016-02-08T00:57:14Z flavioc quit (Ping timeout: 250 seconds) 2016-02-08T01:20:26Z sjl quit (Ping timeout: 276 seconds) 2016-02-08T02:09:40Z andreh quit (Remote host closed the connection) 2016-02-08T02:09:59Z andreh joined #sbcl 2016-02-08T04:58:41Z yvm quit (Read error: Connection reset by peer) 2016-02-08T05:02:44Z yvm joined #sbcl 2016-02-08T05:29:56Z psy_ quit (Ping timeout: 245 seconds) 2016-02-08T06:04:49Z ieure quit (Quit: .….) 2016-02-08T06:15:52Z psilord joined #sbcl 2016-02-08T06:51:20Z psilord quit (Quit: Leaving.) 2016-02-08T07:12:58Z gingerale joined #sbcl 2016-02-08T07:21:45Z Shinmera joined #sbcl 2016-02-08T07:41:03Z yvm quit (Quit: Leaving) 2016-02-08T07:43:42Z scymtym joined #sbcl 2016-02-08T08:08:49Z edgar-rft quit (Quit: edgar-rft) 2016-02-08T08:13:18Z andreh quit (Remote host closed the connection) 2016-02-08T08:21:27Z attila_lendvai joined #sbcl 2016-02-08T08:21:27Z attila_lendvai quit (Changing host) 2016-02-08T08:21:27Z attila_lendvai joined #sbcl 2016-02-08T08:27:06Z Cymew joined #sbcl 2016-02-08T08:48:46Z gingerale quit (Ping timeout: 240 seconds) 2016-02-08T08:50:19Z gingerale joined #sbcl 2016-02-08T09:01:42Z ASau quit (Ping timeout: 250 seconds) 2016-02-08T09:11:34Z benkard joined #sbcl 2016-02-08T09:15:35Z benkard quit (Ping timeout: 240 seconds) 2016-02-08T09:18:55Z angavrilov joined #sbcl 2016-02-08T09:51:53Z psy_ joined #sbcl 2016-02-08T09:59:59Z edgar-rft joined #sbcl 2016-02-08T10:03:38Z stassats joined #sbcl 2016-02-08T10:07:58Z stassats quit (Ping timeout: 250 seconds) 2016-02-08T10:08:34Z stassats joined #sbcl 2016-02-08T10:13:05Z stassats quit (Ping timeout: 260 seconds) 2016-02-08T10:17:13Z stassats joined #sbcl 2016-02-08T10:18:58Z psy_ quit (Ping timeout: 256 seconds) 2016-02-08T10:41:54Z salv0 joined #sbcl 2016-02-08T10:43:11Z yuankode joined #sbcl 2016-02-08T11:55:13Z lnostdal_ joined #sbcl 2016-02-08T11:58:59Z lnostdal quit (Ping timeout: 264 seconds) 2016-02-08T11:59:19Z sjl joined #sbcl 2016-02-08T12:46:36Z ieure joined #sbcl 2016-02-08T13:52:35Z stassats quit (Ping timeout: 240 seconds) 2016-02-08T13:53:48Z stassats joined #sbcl 2016-02-08T13:58:09Z stassats quit (Ping timeout: 240 seconds) 2016-02-08T14:00:19Z stassats joined #sbcl 2016-02-08T14:05:29Z stassats quit (Ping timeout: 276 seconds) 2016-02-08T14:06:18Z stassats joined #sbcl 2016-02-08T14:10:26Z stassats quit (Ping timeout: 240 seconds) 2016-02-08T14:11:20Z stassats joined #sbcl 2016-02-08T14:17:10Z sjl quit (Ping timeout: 245 seconds) 2016-02-08T14:28:57Z sjl joined #sbcl 2016-02-08T14:32:18Z scymtym quit (Remote host closed the connection) 2016-02-08T14:38:08Z attila_lendvai quit (Quit: Leaving.) 2016-02-08T14:45:03Z flip214: hmmm, simply using "make.sh" doesn't create a multithreading-enabled sbcl on ppc32be?! 2016-02-08T14:45:10Z flip214: Trying --fancy now. 2016-02-08T14:45:56Z sjl quit (Ping timeout: 248 seconds) 2016-02-08T14:54:12Z flip214: hmmm, "Failed contribs: sb-concurrency" 2016-02-08T14:54:51Z flip214: 1 out of 25 total tests failed: SB-CONCURRENCY-TEST::FRLOCK.1. 2016-02-08T14:55:19Z flip214: Expected values: NIL 2016-02-08T14:55:19Z flip214: NIL 2016-02-08T14:55:19Z flip214: Actual values: NIL 2016-02-08T14:55:19Z flip214: ((7640 7764 8968) (1389 5609 9916) (5709 7386 11204) 2016-02-08T14:55:38Z flip214: does that mean that the machine is faster than this test allows? 2016-02-08T14:55:40Z attila_lendvai joined #sbcl 2016-02-08T14:59:26Z lnostdal_ quit (Ping timeout: 240 seconds) 2016-02-08T15:01:47Z lnostdal_ joined #sbcl 2016-02-08T15:03:18Z sjl joined #sbcl 2016-02-08T15:15:15Z whiteline quit (Ping timeout: 260 seconds) 2016-02-08T15:16:17Z hydan joined #sbcl 2016-02-08T15:17:54Z flip214: hmmm, 32 threads, but "only" 1100% cpu usage.... 2016-02-08T15:37:35Z scymtym joined #sbcl 2016-02-08T15:48:51Z pkhuong: flip214: no, it means frlock is wrong. probably still missing barriers on non-TSO architectures. 2016-02-08T15:49:25Z flip214: pkhuong: thank you! 2016-02-08T15:50:19Z flip214: might that have some common cause with warning messages like 2016-02-08T15:50:24Z flip214: "warning: attempted to scavenge non-descriptor value 22e at 0xf2d3dc50." 2016-02-08T15:50:25Z flip214: ? 2016-02-08T15:51:40Z andreh joined #sbcl 2016-02-08T16:03:46Z Cymew quit (Ping timeout: 240 seconds) 2016-02-08T16:09:08Z stassats: flip214: no 2016-02-08T16:18:14Z sjl quit (Ping timeout: 256 seconds) 2016-02-08T16:33:37Z stassats: flip214: can you reproduce? 2016-02-08T16:55:16Z scymtym: x86 build is still failing: https://ci.cor-lab.org/job/sbcl-master/1467/featureset=1,label=ubuntu_trusty_32bit/consoleFull (search for "The variable SB!VM::OBJECT is unbound") 2016-02-08T16:57:37Z stassats: oh bother 2016-02-08T17:02:27Z stassats: scymtym: fix one thing, break another. should work now 2016-02-08T17:12:25Z DGASAU quit (Remote host closed the connection) 2016-02-08T17:13:02Z DGASAU joined #sbcl 2016-02-08T17:32:46Z benkard joined #sbcl 2016-02-08T17:39:31Z scymtym: stassats: thanks 2016-02-08T18:09:49Z andreh quit (Remote host closed the connection) 2016-02-08T18:12:28Z andreh joined #sbcl 2016-02-08T18:19:17Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-08T18:33:15Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-08T18:44:51Z gingerale quit (Remote host closed the connection) 2016-02-08T18:51:52Z flip214: stassats: rebuilding with git HEAD, will then try to reproduce. 2016-02-08T18:54:22Z andreh_ joined #sbcl 2016-02-08T18:54:23Z andreh quit (Read error: Connection reset by peer) 2016-02-08T18:55:04Z gingerale joined #sbcl 2016-02-08T18:59:01Z gingerale quit (Read error: Connection reset by peer) 2016-02-08T19:04:55Z flip214: sb-concurrency fails again 2016-02-08T19:05:04Z benkard joined #sbcl 2016-02-08T19:06:07Z flip214: still I wonder... why only 900% CPU, and not 3200%? hmmmm.... 2016-02-08T19:08:40Z stassats: why should it be 3200%? 2016-02-08T19:08:42Z gingerale joined #sbcl 2016-02-08T19:09:07Z flip214: because I told it to use 32 threads... 2016-02-08T19:09:17Z stassats: and? 2016-02-08T19:09:21Z flip214: (and before you ask - 20 physical CPUs, times 8 for hyperthreading....) 2016-02-08T19:10:37Z flip214: hmmm, I assigned 80 CPUs... guess I'll need to pass a maxcpus parameter as well 2016-02-08T19:14:31Z flip214: that's IBM's 1G$ for you, promoting PPC ;) 2016-02-08T19:36:00Z krzysz00 joined #sbcl 2016-02-08T19:40:06Z gingerale quit (Read error: Connection reset by peer) 2016-02-08T19:41:15Z gingerale joined #sbcl 2016-02-08T19:55:26Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-08T19:59:41Z prxq joined #sbcl 2016-02-08T20:12:56Z flavioc joined #sbcl 2016-02-08T20:34:51Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-08T20:38:37Z benkard joined #sbcl 2016-02-08T20:48:41Z Bicyclidine joined #sbcl 2016-02-08T20:58:34Z angavrilov quit (Remote host closed the connection) 2016-02-08T21:01:18Z salv0 quit (Remote host closed the connection) 2016-02-08T21:06:37Z krzysz00 joined #sbcl 2016-02-08T21:08:10Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-08T21:22:33Z andreh_ quit (Remote host closed the connection) 2016-02-08T21:28:20Z yuankode quit (Ping timeout: 250 seconds) 2016-02-08T21:50:45Z prxq quit (Remote host closed the connection) 2016-02-08T21:55:10Z stassats: stopped with-package-iterator consing a package list, but it seems to be to complicated, using a dx-list 2016-02-08T21:55:34Z stassats: i doubt it'll be a bottle-neck 2016-02-08T21:58:06Z yvm joined #sbcl 2016-02-08T22:02:01Z Bicyclidine quit (Ping timeout: 245 seconds) 2016-02-08T22:12:06Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-08T22:12:53Z ASau joined #sbcl 2016-02-08T22:28:40Z DeadTrickster_ quit (Ping timeout: 260 seconds) 2016-02-08T22:37:25Z sjl joined #sbcl 2016-02-08T22:40:45Z krzysz00 joined #sbcl 2016-02-08T22:46:47Z krzysz00 quit (Ping timeout: 276 seconds) 2016-02-08T22:59:01Z lnostdal_ quit (Read error: Connection reset by peer) 2016-02-08T23:00:22Z gingerale quit (Remote host closed the connection) 2016-02-08T23:01:06Z lnostdal joined #sbcl 2016-02-08T23:09:53Z andreh joined #sbcl 2016-02-08T23:23:38Z psilord joined #sbcl 2016-02-08T23:35:44Z whiteline joined #sbcl 2016-02-08T23:53:53Z andreh quit (Remote host closed the connection) 2016-02-08T23:54:21Z andreh joined #sbcl 2016-02-09T00:02:46Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-09T00:04:08Z stassats quit (Ping timeout: 276 seconds) 2016-02-09T00:12:45Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-09T00:12:51Z scymtym quit (Ping timeout: 245 seconds) 2016-02-09T00:26:58Z Cooler_ joined #sbcl 2016-02-09T00:28:24Z krzysz00 joined #sbcl 2016-02-09T00:28:26Z sjl quit (Ping timeout: 240 seconds) 2016-02-09T01:34:22Z edgar-rft quit (Quit: edgar-rft) 2016-02-09T01:53:04Z flavioc quit (Ping timeout: 250 seconds) 2016-02-09T02:26:37Z sjl joined #sbcl 2016-02-09T02:30:34Z Quadrescence joined #sbcl 2016-02-09T02:39:08Z benkard joined #sbcl 2016-02-09T02:43:15Z benkard quit (Ping timeout: 240 seconds) 2016-02-09T03:41:54Z psy_ joined #sbcl 2016-02-09T03:56:40Z hydan quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-02-09T04:18:04Z les` quit (Quit: "") 2016-02-09T04:18:16Z les joined #sbcl 2016-02-09T04:40:50Z foom quit (Ping timeout: 252 seconds) 2016-02-09T04:54:33Z foom joined #sbcl 2016-02-09T05:52:20Z psy_ quit (Ping timeout: 252 seconds) 2016-02-09T05:55:07Z psy_ joined #sbcl 2016-02-09T05:57:46Z psy_ quit (Max SendQ exceeded) 2016-02-09T05:58:05Z psy_ joined #sbcl 2016-02-09T06:07:47Z andreh quit (Remote host closed the connection) 2016-02-09T06:10:05Z andreh joined #sbcl 2016-02-09T06:10:28Z andreh quit (Remote host closed the connection) 2016-02-09T06:18:38Z andreh joined #sbcl 2016-02-09T06:29:50Z myrkraverk quit (Remote host closed the connection) 2016-02-09T06:36:05Z myrkraverk joined #sbcl 2016-02-09T06:36:44Z angavrilov joined #sbcl 2016-02-09T06:52:43Z myrkraverk_ joined #sbcl 2016-02-09T06:55:08Z myrkraverk quit (Ping timeout: 250 seconds) 2016-02-09T06:55:20Z myrkraverk_ is now known as myrkraverk 2016-02-09T07:01:57Z psilord quit (Quit: Leaving.) 2016-02-09T07:07:50Z gingerale joined #sbcl 2016-02-09T07:13:06Z flip214: minion: memo for stassats: yes, I can reproduce, about .5 to 1 hour, with 72be4c57d56db. "warning: attempted to scavenge non-descriptor value 2 at 0xf353dc50.". 2016-02-09T07:13:07Z minion: Remembered. I'll tell stassats when he/she/it next speaks. 2016-02-09T07:45:59Z flip214: minion: memo for stassats: git HEAD seems broken again... Unhandled TYPE-ERROR in thread #.lisp abbacaffee 2016-02-09T09:09:16Z flip214: for example 2016-02-09T09:11:23Z flip214: thank you for your efforts and patience! 2016-02-09T09:11:37Z stassats: well, i'm not doing it for you 2016-02-09T09:11:57Z flip214: not exclusively, right ;) 2016-02-09T09:12:30Z stassats: exclusively for sbcl and myself 2016-02-09T09:12:56Z flip214: fair enough - and good enough. 2016-02-09T09:16:34Z sjl quit (Ping timeout: 252 seconds) 2016-02-09T09:17:19Z stassats: running away 2016-02-09T09:18:07Z stassats: that didn't come out right 2016-02-09T09:18:10Z stassats: testing away 2016-02-09T09:25:25Z stassats: flip214: so is it always 22e? 2016-02-09T09:27:37Z flip214: stassats: IIRC, yes. 2016-02-09T09:28:46Z stassats: if you want better results from your test runs replaces the fprintf with lose 2016-02-09T09:28:57Z stassats: (and lose doesn't need stderr) 2016-02-09T09:33:19Z attila_lendvai joined #sbcl 2016-02-09T09:33:19Z attila_lendvai quit (Changing host) 2016-02-09T09:33:19Z attila_lendvai joined #sbcl 2016-02-09T09:55:13Z edgar-rft joined #sbcl 2016-02-09T10:03:48Z sjl joined #sbcl 2016-02-09T10:09:50Z DeadTrickster_ quit (Ping timeout: 260 seconds) 2016-02-09T10:16:12Z DeadTrickster_ joined #sbcl 2016-02-09T10:34:58Z stassats: no luck so far 2016-02-09T10:40:27Z hlavaty joined #sbcl 2016-02-09T10:49:56Z stassats quit (Ping timeout: 240 seconds) 2016-02-09T10:52:02Z stassats joined #sbcl 2016-02-09T10:56:36Z stassats quit (Ping timeout: 272 seconds) 2016-02-09T10:57:02Z stassats joined #sbcl 2016-02-09T11:01:22Z stassats quit (Ping timeout: 256 seconds) 2016-02-09T11:02:30Z stassats joined #sbcl 2016-02-09T11:06:52Z stassats quit (Ping timeout: 250 seconds) 2016-02-09T11:07:29Z stassats joined #sbcl 2016-02-09T11:12:04Z stassats quit (Ping timeout: 248 seconds) 2016-02-09T11:14:02Z stassats joined #sbcl 2016-02-09T11:14:30Z flip214: I had it ~30 mins after start, another time after 1 hour, and 1 successfull run 2016-02-09T11:14:54Z flip214: yeah .... multithreading means harder to reproduce 2016-02-09T11:19:18Z stassats: flip214: well, if you do the lose() replacement and can reproduce it again, i would love a backtrace from gdb 2016-02-09T11:19:31Z stassats: i can make a diff 2016-02-09T11:21:05Z stassats: flip214: http://paste.lisp.org/display/306853#1 2016-02-09T11:24:28Z DeadTrickster_ quit (Ping timeout: 272 seconds) 2016-02-09T11:28:21Z flip214: stassats: just attach gdb to the process before it crashes, and lose() will stop there automatically? 2016-02-09T11:29:04Z flip214: If I re-run make.sh, everything is built again... what's the differential build command? 2016-02-09T11:30:02Z stassats: attaching gdb before a crash is not going to do any good 2016-02-09T11:30:15Z stassats: flip214: just rebuild the whole thing 2016-02-09T11:30:51Z flip214: I meant to attach gdb while the calculation is still well-behaved 2016-02-09T11:31:23Z flip214: hmmm, where's the gdbinit again? (signals!) 2016-02-09T11:32:41Z stassats: no, don't attach it 2016-02-09T11:33:53Z flip214: will lose write a stacktrace? 2016-02-09T11:34:31Z Bike quit (Ping timeout: 245 seconds) 2016-02-09T11:36:04Z stassats: it can 2016-02-09T11:41:05Z flip214: fatal error encountered in SBCL pid 2889(tid 3976983664): 2016-02-09T11:41:05Z flip214: warning: attempted to scavenge non-descriptor value 2 at 0xed0bdc50. 2016-02-09T11:41:16Z flip214: -- no more information 2016-02-09T11:41:35Z flip214: how would I get a stacktrace? gdb and a breakpoint? 2016-02-09T11:42:46Z flip214: Breakpoint 1 at 0x1000b8c4: src/runtime/gc-common.c:176. (3 locations) 2016-02-09T11:44:56Z flip214: hmmm, attaching GDB breaks that somehow... 2016-02-09T11:48:18Z flip214: should I use systemtap instead? 2016-02-09T11:48:28Z flip214: "lose" won't give a backtrace. 2016-02-09T11:49:15Z stassats: well, you have to type "backtrace" 2016-02-09T11:49:32Z stassats: there may be a lot of threads, so it's better to attach gdb now 2016-02-09T11:53:14Z flip214: stassats: as soon as I attach gdb, there's no progress anymore... 2016-02-09T11:53:24Z flip214: or if there is, it's at least 50x slower than without gdb. 2016-02-09T11:53:46Z stassats: what progress? 2016-02-09T11:53:49Z flip214: with --script I can't type "backtrace" into SBCL, if that's what you mean -- I'd need to run interactively 2016-02-09T11:53:54Z flip214: progress in my lisp script 2016-02-09T11:54:00Z stassats: crash => attach gdb => get a backtrace => go home 2016-02-09T11:54:27Z flip214: well, with a crash SBCL stops itself - I can't attach afterwards. 2016-02-09T11:54:29Z stassats: don't use --script 2016-02-09T11:54:34Z flip214: with that "lose", that is. 2016-02-09T11:54:35Z stassats: naturally 2016-02-09T11:54:59Z benkard joined #sbcl 2016-02-09T11:56:47Z flip214: grrx, no linux-image-dbg package, so I can't use systemtap either 2016-02-09T11:59:15Z benkard quit (Ping timeout: 240 seconds) 2016-02-09T11:59:45Z flip214: hmm, gdb interferes with multithreading on ppc. bad. 2016-02-09T12:04:33Z stassats: gdb just can't work with a running sbcl, don't do that 2016-02-09T12:04:42Z flip214: now doing a fprintf(stderr, ...) and sleep(3600), to be able to attach gdb at that point 2016-02-09T12:04:47Z stassats: attach only after it reaches lose() 2016-02-09T12:04:50Z stassats: gah 2016-02-09T12:04:54Z stassats: will you listen to me? 2016-02-09T12:05:18Z flip214: stassats: how should I attach after lose()? sbcl quits at that time, and I'm not fast enough to press enter at the right microsecond. 2016-02-09T12:05:34Z flip214: I'm trying to listen, but we seem to talk past each other somehow. 2016-02-09T12:05:56Z stassats: don't use --script, damn it! 2016-02-09T12:06:29Z flip214: so lose() doesn't cause an exit anyway? 2016-02-09T12:07:02Z flip214: please stand by, trying to reproduce again. 2016-02-09T12:09:29Z stassats: --script is for scripts, not for debugging 2016-02-09T12:10:04Z stassats: it disables all debuggers, the lisp debugger, the low level debugger (this is the one we want) 2016-02-09T12:10:25Z stassats: and i got it now too 2016-02-09T12:10:29Z stassats: warning: attempted to scavenge non-descriptor value 2 at 0xeaa3e260. 2016-02-09T12:10:38Z flip214: but not 2ee or what I got 2016-02-09T12:10:56Z flip214: ah, I had 2 last time I pasted, too 2016-02-09T12:12:01Z stassats: scavenge_interrupt_context 2016-02-09T12:12:10Z stassats: ok, that's what i needed 2016-02-09T12:12:19Z stassats: flip214: you can stop running it now 2016-02-09T12:13:04Z stassats: it is scavenging a register, as suspected 2016-02-09T12:13:40Z stassats: now to figure out which and in which function 2016-02-09T12:16:06Z stassats: well, the first one is a good bet 2016-02-09T12:16:17Z stassats: there's 0x00000002 in $FDEFN 2016-02-09T12:21:12Z stassats: ok, it's in FIND-BEAUTIFUL 2016-02-09T12:22:39Z flip214: the bug? 2016-02-09T12:30:54Z stassats: how on earth did 2 get into $FDEFN? 2016-02-09T12:39:33Z IceD^ joined #sbcl 2016-02-09T12:39:53Z IceD^: hey 2016-02-09T12:40:13Z stassats: it's happening after alloc, could that have messed it up? 2016-02-09T12:40:28Z stassats: because if it were messed up before, then it would just crash 2016-02-09T12:40:35Z IceD^: I'm going to fix https://github.com/Homebrew/homebrew/issues/48968 and 'd like opinion of more experienced users/devs how to do this properly 2016-02-09T12:41:14Z stassats: IceD^: see sb-ext:set-sbcl-source-location 2016-02-09T12:41:30Z stassats: you can do that and then dump the core 2016-02-09T12:42:01Z IceD^: brew doesn't install sources to start with 2016-02-09T12:42:09Z stassats: well, ok then 2016-02-09T12:42:19Z stassats: just get the sources, drop set-sbcl-source-location into your .sbclrc? 2016-02-09T12:42:38Z IceD^: just point me to "proper" installation of sbcl and I'll make brew do the same 2016-02-09T12:43:36Z stassats: there is no such thing 2016-02-09T12:47:46Z flip214: IceD^: (setf (logical-pathname-translations "STUFF") 2016-02-09T12:48:02Z stassats: flip214: no, it's sb-ext:set-sbcl-source-location 2016-02-09T12:48:08Z flip214: IceD^: see (logical-pathname-translations "SYS") for another way 2016-02-09T12:48:15Z flip214: yeah, that works *too 2016-02-09T12:54:24Z stassats: doh, i may be looking at the wrong place, i forgot to see what is the PC of the context, it's probably coming from another thread 2016-02-09T12:54:39Z stassats: and i already see a possible candidate for FDEFN breakage 2016-02-09T12:58:51Z stassats: frantically looking for the ppc abi 2016-02-09T13:00:59Z IceD^: can i paste 5 lines here or should I go to pastebin? 2016-02-09T13:01:11Z stassats: use http://paste.lisp.org 2016-02-09T13:01:51Z stassats: i think i see the issue, FDEFN, which is R10, was previously NL7, but R10 is a volatile register, so it comes out of call_into_c garbled 2016-02-09T13:02:55Z IceD^: https://gist.github.com/iced/9d97e94c299ad92da340 2016-02-09T13:03:13Z stassats: IceD^: that was already clear 2016-02-09T13:03:29Z stassats: IceD^: sb-ext:set-sbcl-source-location will change that 2016-02-09T13:06:10Z IceD^: I fixed this for myself (just as you told), I want to fix this globally for rest of brew/sbcl users 2016-02-09T13:06:34Z stassats: well, use sb-ext:set-sbcl-source-location save a core 2016-02-09T13:07:43Z stassats: flip214: the fix should be trivial, moving 0 to a register in call_into_c, just checking that it's the right thing 2016-02-09T13:08:25Z stassats: well, having bad stuff in FDEFN didn't cause any problems before, so, yeah, 0 should do 2016-02-09T13:08:33Z stassats: and removing that warning 2016-02-09T13:10:20Z stassats: right, and the logic checks out 2016-02-09T13:10:28Z stassats: well, that was how old now? 15 years 2016-02-09T13:10:31Z stassats: or so 2016-02-09T13:11:58Z stassats: i like /* was NL7 until recently -dan */ 2016-02-09T13:12:10Z stassats: well, 15 years is recent on some scales 2016-02-09T13:14:24Z stassats: the work around that was done 9 years ago that stopped it from crashing didn't help 2016-02-09T13:22:42Z stassats: flip214: it seems to be crashing more readily for you, so it'd be a good idea to run it for some time after i push a fix 2016-02-09T13:26:45Z stassats: flip214: just shows that nobody uses sbcl on ppc 2016-02-09T13:26:57Z stassats: with threads, at that 2016-02-09T13:27:16Z Cooler_ quit (Read error: Connection reset by peer) 2016-02-09T13:27:23Z IceD^: ppc is still alive? 2016-02-09T13:27:35Z stassats: sure 2016-02-09T13:28:11Z flip214: stassats: just tell me when you've pushed, then I'll pull and restart my tests 2016-02-09T13:28:20Z stassats: just now 2016-02-09T13:28:30Z flip214: I'm sure IBM would be happy to provide a VM to run the PPC tests via cron 2016-02-09T13:29:00Z stassats: that wouldn't help any 2016-02-09T13:30:01Z stassats: flip214: forgot to mention in the commit message that you reported this thing 2016-02-09T13:30:03Z flip214: it would at least show that something was broken since $LAST_RUN 2016-02-09T13:30:05Z stassats: well, less glory for you 2016-02-09T13:30:12Z flip214: stassats: never mind... better luck next time. 2016-02-09T13:30:36Z stassats: i don't need ibm to run test on ppc 2016-02-09T13:30:50Z stassats: it's the fourth most maintained platform 2016-02-09T13:31:40Z stassats: i need people running a variety of code and reporting problems 2016-02-09T13:36:12Z stassats: a better test case can be devised, lots of FFI calls, lots of consing 2016-02-09T13:36:47Z stassats: but i'm confident this thing is fixed now 2016-02-09T13:36:55Z stassats: so, i won't do any more testing 2016-02-09T13:36:56Z DeadTrickster_ joined #sbcl 2016-02-09T13:37:22Z stassats: less greenhouse emissions 2016-02-09T13:40:47Z stassats: (and FFI calls that write bad stuff into all the volatile registers) 2016-02-09T13:48:48Z hydan joined #sbcl 2016-02-09T13:56:31Z gingerale- joined #sbcl 2016-02-09T13:58:25Z gingerale quit (Ping timeout: 245 seconds) 2016-02-09T13:59:48Z flip214: thank you very much! 2016-02-09T14:00:07Z flip214: I'm running my script again now... will let you know of any (other) problems ;) 2016-02-09T14:00:46Z stassats: i now have 1024 commits 2016-02-09T14:03:30Z flip214: well, start the next K 2016-02-09T14:24:29Z IceD^ quit (Remote host closed the connection) 2016-02-09T14:30:43Z Cooler_ joined #sbcl 2016-02-09T14:47:29Z psy_ quit (Ping timeout: 276 seconds) 2016-02-09T14:49:00Z nzambe joined #sbcl 2016-02-09T14:50:56Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-09T15:02:04Z hydan_ joined #sbcl 2016-02-09T15:05:08Z hydan quit (Ping timeout: 248 seconds) 2016-02-09T15:48:39Z Bike joined #sbcl 2016-02-09T16:06:15Z Cymew quit (Ping timeout: 240 seconds) 2016-02-09T16:17:21Z Cymew joined #sbcl 2016-02-09T16:52:51Z dougk_ joined #sbcl 2016-02-09T16:53:34Z Cymew quit (Ping timeout: 250 seconds) 2016-02-09T16:55:29Z yvm joined #sbcl 2016-02-09T17:03:33Z krzysz00 joined #sbcl 2016-02-09T17:12:10Z DeadTrickster_ quit (Ping timeout: 260 seconds) 2016-02-09T17:22:42Z eudoxia joined #sbcl 2016-02-09T18:07:40Z sjl quit (Ping timeout: 250 seconds) 2016-02-09T18:09:00Z DGASAU quit (Read error: Connection reset by peer) 2016-02-09T18:09:24Z DGASAU joined #sbcl 2016-02-09T18:32:12Z Bicyclidine joined #sbcl 2016-02-09T18:53:17Z sjl joined #sbcl 2016-02-09T19:07:35Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-09T19:20:40Z angavrilov quit (Remote host closed the connection) 2016-02-09T19:28:16Z sjl quit (Ping timeout: 250 seconds) 2016-02-09T19:29:07Z benkard joined #sbcl 2016-02-09T19:29:53Z krzysz00 joined #sbcl 2016-02-09T19:41:36Z Bicyclidine quit (Ping timeout: 245 seconds) 2016-02-09T19:42:57Z prxq joined #sbcl 2016-02-09T19:45:05Z Bicyclidine joined #sbcl 2016-02-09T19:52:33Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-09T19:53:55Z DeadTrickster_ joined #sbcl 2016-02-09T20:04:30Z krzysz00 joined #sbcl 2016-02-09T20:10:31Z flavioc joined #sbcl 2016-02-09T20:11:40Z eudoxia quit (Quit: Leaving) 2016-02-09T20:18:46Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-09T20:27:11Z chris2 quit (Ping timeout: 264 seconds) 2016-02-09T20:41:33Z chris2 joined #sbcl 2016-02-09T20:48:50Z chris2 quit (Ping timeout: 250 seconds) 2016-02-09T20:50:15Z gingerale- is now known as gingerale 2016-02-09T21:04:19Z chris2 joined #sbcl 2016-02-09T21:12:03Z PuercoPop quit (Quit: ZNC - http://znc.in) 2016-02-09T21:14:44Z lnostdal quit (Ping timeout: 272 seconds) 2016-02-09T21:14:57Z lnostdal joined #sbcl 2016-02-09T21:20:30Z chris2 quit (Ping timeout: 245 seconds) 2016-02-09T21:23:25Z jdz quit (Ping timeout: 245 seconds) 2016-02-09T21:23:36Z Bicyclidine quit (Ping timeout: 272 seconds) 2016-02-09T21:24:06Z krzysz00 quit (Ping timeout: 245 seconds) 2016-02-09T21:28:26Z prxq quit (Remote host closed the connection) 2016-02-09T21:28:39Z chris2 joined #sbcl 2016-02-09T21:28:51Z Bicyclidine joined #sbcl 2016-02-09T21:37:12Z jdz joined #sbcl 2016-02-09T21:39:20Z DeadTrickster_ quit (Ping timeout: 260 seconds) 2016-02-09T21:40:52Z krzysz00 joined #sbcl 2016-02-09T21:50:26Z Bicyclidine quit (Ping timeout: 240 seconds) 2016-02-09T21:51:45Z jdz quit (Ping timeout: 245 seconds) 2016-02-09T21:52:14Z jdz joined #sbcl 2016-02-09T21:52:47Z DeadTrickster_ joined #sbcl 2016-02-09T21:56:20Z jdz quit (Ping timeout: 245 seconds) 2016-02-09T21:56:45Z jdz joined #sbcl 2016-02-09T21:57:22Z Bicyclidine joined #sbcl 2016-02-09T22:05:56Z gingerale quit (Remote host closed the connection) 2016-02-09T22:10:21Z ASau joined #sbcl 2016-02-09T22:11:10Z Bicyclidine quit (Ping timeout: 256 seconds) 2016-02-09T22:12:05Z Bicyclidine joined #sbcl 2016-02-09T22:19:16Z DeadTrickster_ quit (Ping timeout: 248 seconds) 2016-02-09T22:20:48Z Bicyclidine quit (Ping timeout: 256 seconds) 2016-02-09T22:22:24Z Bicyclidine joined #sbcl 2016-02-09T22:22:43Z PuercoPop joined #sbcl 2016-02-09T22:37:40Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-09T22:38:24Z sjl joined #sbcl 2016-02-09T22:41:04Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-09T22:45:15Z Bicyclidine quit (Ping timeout: 260 seconds) 2016-02-09T22:50:31Z Bicyclidine joined #sbcl 2016-02-09T23:12:45Z krzysz00 joined #sbcl 2016-02-09T23:18:04Z dougk_ quit (Ping timeout: 252 seconds) 2016-02-09T23:19:12Z hydan_ quit (Ping timeout: 250 seconds) 2016-02-09T23:20:53Z stassats: the new disassembly machinery done broke *compiler-trace-output* 2016-02-09T23:25:30Z stassats: so, how do i precompile all the printers then? 2016-02-09T23:31:09Z dougk_ joined #sbcl 2016-02-09T23:32:37Z hydan joined #sbcl 2016-02-09T23:50:16Z sjl_ joined #sbcl 2016-02-09T23:52:36Z sjl quit (Ping timeout: 250 seconds) 2016-02-09T23:55:21Z lnostdal_ joined #sbcl 2016-02-09T23:55:40Z psilord joined #sbcl 2016-02-09T23:59:24Z lnostdal quit (Ping timeout: 272 seconds) 2016-02-10T00:06:23Z Bicyclidine quit (Quit: leaving) 2016-02-10T00:07:47Z stassats: huh, arm64 sbcl.core increased 15MB in size 2016-02-10T00:08:32Z stassats: maybe that's just my cross-building 2016-02-10T00:12:39Z csziacobus joined #sbcl 2016-02-10T00:13:30Z eudoxia joined #sbcl 2016-02-10T00:19:29Z stassats quit (Ping timeout: 276 seconds) 2016-02-10T00:25:04Z csziacobus quit (Remote host closed the connection) 2016-02-10T00:25:19Z csziacobus joined #sbcl 2016-02-10T00:29:13Z csziacobus quit (Remote host closed the connection) 2016-02-10T00:29:31Z csziacobus joined #sbcl 2016-02-10T00:37:26Z csziacobus quit (Remote host closed the connection) 2016-02-10T00:37:44Z csziacobus joined #sbcl 2016-02-10T00:45:09Z csziacobus quit (Remote host closed the connection) 2016-02-10T00:45:26Z csziacobus joined #sbcl 2016-02-10T00:46:06Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-10T00:50:52Z andreh joined #sbcl 2016-02-10T00:53:21Z csziacobus quit (Remote host closed the connection) 2016-02-10T00:53:39Z csziacobus joined #sbcl 2016-02-10T00:57:03Z csziacobus quit (Remote host closed the connection) 2016-02-10T00:57:22Z csziacobus joined #sbcl 2016-02-10T01:00:23Z andreh quit 2016-02-10T01:09:16Z csziacobus quit (Remote host closed the connection) 2016-02-10T01:09:31Z csziacobus joined #sbcl 2016-02-10T01:18:35Z ferada quit (Remote host closed the connection) 2016-02-10T01:21:47Z krzysz00 quit (Ping timeout: 264 seconds) 2016-02-10T01:49:26Z csziacobus quit (Remote host closed the connection) 2016-02-10T01:49:41Z csziacobus joined #sbcl 2016-02-10T01:49:50Z flavioc quit (Ping timeout: 276 seconds) 2016-02-10T01:53:06Z csziacobus quit (Remote host closed the connection) 2016-02-10T01:53:21Z csziacobus joined #sbcl 2016-02-10T02:06:33Z eudoxia quit (Quit: Leaving) 2016-02-10T02:23:14Z krzysz00 joined #sbcl 2016-02-10T03:12:20Z zRecursive joined #sbcl 2016-02-10T03:20:52Z hlavaty` joined #sbcl 2016-02-10T03:21:18Z hlavaty quit (Read error: Connection reset by peer) 2016-02-10T03:25:51Z zRecursive left #sbcl 2016-02-10T04:00:23Z hydan quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-02-10T04:35:24Z csziacobus quit (Quit: csziacobus) 2016-02-10T06:13:46Z lnostdal_ quit (Ping timeout: 240 seconds) 2016-02-10T06:28:38Z lnostdal_ joined #sbcl 2016-02-10T06:53:14Z ASau quit (Remote host closed the connection) 2016-02-10T06:55:02Z ASau joined #sbcl 2016-02-10T07:05:44Z gingerale joined #sbcl 2016-02-10T07:09:40Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-02-10T07:11:11Z nzambe joined #sbcl 2016-02-10T07:23:49Z Shinmera joined #sbcl 2016-02-10T07:39:18Z ASau quit (Remote host closed the connection) 2016-02-10T07:43:35Z ASau joined #sbcl 2016-02-10T07:59:40Z gingerale quit (Ping timeout: 245 seconds) 2016-02-10T08:06:50Z ASau quit (Ping timeout: 276 seconds) 2016-02-10T08:17:03Z gingerale joined #sbcl 2016-02-10T08:28:21Z Cymew joined #sbcl 2016-02-10T08:28:43Z angavrilov joined #sbcl 2016-02-10T08:33:45Z stassats joined #sbcl 2016-02-10T08:36:04Z loke quit (Ping timeout: 250 seconds) 2016-02-10T08:41:56Z stassats: well, arm64 sbcl.core did grow 15MB after all 2016-02-10T08:42:01Z stassats: need to bisect 2016-02-10T08:46:01Z scymtym joined #sbcl 2016-02-10T08:47:42Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-02-10T08:48:40Z loke joined #sbcl 2016-02-10T09:03:47Z loke quit (Ping timeout: 264 seconds) 2016-02-10T09:11:09Z momo-reina joined #sbcl 2016-02-10T09:16:41Z loke joined #sbcl 2016-02-10T09:41:20Z scymtym quit (Ping timeout: 245 seconds) 2016-02-10T09:43:28Z ferada joined #sbcl 2016-02-10T09:58:22Z sjl_ quit (Ping timeout: 256 seconds) 2016-02-10T10:08:15Z momo-reina quit (Remote host closed the connection) 2016-02-10T10:39:20Z attila_lendvai joined #sbcl 2016-02-10T10:40:04Z sjl_ joined #sbcl 2016-02-10T11:32:35Z hydan joined #sbcl 2016-02-10T12:45:41Z edgar-rft quit (Quit: edgar-rft) 2016-02-10T13:03:16Z Cymew quit (Ping timeout: 245 seconds) 2016-02-10T13:38:45Z eudoxia joined #sbcl 2016-02-10T14:02:46Z eudoxia quit (Ping timeout: 240 seconds) 2016-02-10T14:06:42Z DeadTrickster quit (Read error: No route to host) 2016-02-10T14:21:22Z stassats: https://github.com/sbcl/sbcl/commit/d85570759f4ec35d67752f64659afa562d76afba caused the size increase on arm64 2016-02-10T14:21:25Z stassats: no clue why 2016-02-10T14:24:34Z stassats: i guess i need to take out parts and see what actually caused it 2016-02-10T14:25:35Z stassats: so tedious 2016-02-10T14:39:56Z nzambe joined #sbcl 2016-02-10T14:42:58Z Cymew joined #sbcl 2016-02-10T14:45:47Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-02-10T15:29:06Z stassats: if full calls to MASK-SIGNED-FIELD are transformed to mask-signed-field-63, then it's not a problem anymore 2016-02-10T15:29:35Z stassats: the challenge, how to transform it to mask-signed-field-63 only when all the vops and transforms had a chance to work on it? 2016-02-10T15:30:21Z stassats: in ir2-convert? not quite sure how to change the function and arguments of a combination at that point 2016-02-10T15:35:52Z stassats: duplicate all the stuff for mask-signed-field-63? 2016-02-10T15:38:46Z nzambe joined #sbcl 2016-02-10T15:49:38Z edgar-rft joined #sbcl 2016-02-10T15:49:55Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-02-10T15:51:22Z DeadTrickster joined #sbcl 2016-02-10T15:56:42Z nzambe joined #sbcl 2016-02-10T15:59:11Z Guest52031 quit (Quit: leaving) 2016-02-10T16:06:36Z sjl_ quit (Ping timeout: 245 seconds) 2016-02-10T16:09:26Z jackdaniel: hey. I've been playing with defsetf and I suspect, that there might be a bug in SBCL – using example of the long form of defsetf at the bottom of http://www.lispworks.com/documentation/HyperSpec/Body/m_defset.htm , sbcl complains on get-setf-expansion form about unknown key (after unlocking package when calling defsetf on subseq) 2016-02-10T16:09:46Z jackdaniel: here is loadable snippet http://paste.lisp.org/display/306956 2016-02-10T16:23:41Z Cymew quit (Ping timeout: 245 seconds) 2016-02-10T16:27:16Z attila_lendvai quit (Quit: Leaving.) 2016-02-10T16:27:22Z attila_lendvai1 joined #sbcl 2016-02-10T16:27:23Z attila_lendvai1 is now known as attila_lendvai 2016-02-10T16:27:23Z attila_lendvai quit (Changing host) 2016-02-10T16:27:23Z attila_lendvai joined #sbcl 2016-02-10T16:31:26Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-10T16:34:04Z Xof: this is the kind of thing that makes my brain hurt 2016-02-10T16:34:47Z stassats: can you find anything outside of the example that that's how it should work? 2016-02-10T16:36:19Z jackdaniel: hm, CCL returns these values (I know, it's not the argument :). No, I'm not that familiar with the spec to confirm if it's a really bug, hence the "suspect" disclaimer 2016-02-10T16:36:47Z stassats: jackdaniel: ccl croaks on (defsetf xy (x &environment env) (store)) 2016-02-10T16:37:53Z jackdaniel: maybe, I prefer sbcl over ccl, but when in doubt what is correct I run a few implementations 2016-02-10T16:38:39Z dougk_: jackdaniel: I am convinced that one of the examples in the hyperspec can not possibly work 2016-02-10T16:38:44Z jackdaniel: I've hit the mentioned problem during the regression-hunt before the next ECL release 2016-02-10T16:39:18Z Xof: I am not completely sure, but I can't convince myself that ... what dougk_ says 2016-02-10T16:39:36Z jackdaniel: dougk_: yes, that's why I'm not insisting there is really a problem. Just tought that you may know what is the right thing 2016-02-10T16:39:44Z Xof: the expander function runs at macroexpansion time, whereas the keyword arguments only exist at run-time 2016-02-10T16:40:15Z dougk_: i opened https://bugs.launchpad.net/bugs/1452947 mid last year 2016-02-10T16:40:57Z dougk_: it shows you what other lisp do 2016-02-10T16:41:21Z jackdaniel: o, so it's not new at all 2016-02-10T16:41:25Z jackdaniel: sorry for bothering then 2016-02-10T16:41:59Z jackdaniel should have checked the launchpad first 2016-02-10T16:42:04Z dougk_: jackdaniel: no bother, that's what we're here for 2016-02-10T16:42:05Z Xof: well, you gave me a headscratcher, so it's not all lost :-) 2016-02-10T16:42:29Z stassats: examples are not part of the standard, so all is well 2016-02-10T16:46:12Z Cymew joined #sbcl 2016-02-10T16:47:14Z stassats: but it seems to be the difference between DEFINE-SETF-EXPANDER 2016-02-10T16:47:35Z stassats: DEFINE-SETF-EXPANDER gets X, defsetf gets #:X123 2016-02-10T16:58:02Z igajsin joined #sbcl 2016-02-10T16:59:49Z stassats: &rest would need some creative interpretation, otherwise i think it's clear 2016-02-10T17:10:33Z stassats: i guess &rest is clear as well, it should just be a single variable, not a list 2016-02-10T17:17:04Z stassats: though that may break existing code 2016-02-10T17:23:14Z Cymew quit (Ping timeout: 276 seconds) 2016-02-10T17:33:02Z myrkraverk: Wait, SBCL does not support unjoinable aka detached threads? 2016-02-10T17:33:33Z stassats: what does that even mean? 2016-02-10T17:36:50Z myrkraverk: http://man7.org/linux/man-pages/man3/pthread_detach.3.html 2016-02-10T17:37:48Z myrkraverk: More discussion here http://www.domaigne.com/blog/computing/joinable-and-detached-threads/ 2016-02-10T17:39:17Z stassats: this is low level implementation details, why are you asking that? 2016-02-10T17:51:38Z myrkraverk: Because i want to create threads, preferably detached. 2016-02-10T17:51:49Z myrkraverk: And it seems SBCL does not give me that option - at all. 2016-02-10T17:52:16Z stassats: because it doesn't make sense for the threads sbcl provides 2016-02-10T17:52:32Z myrkraverk: How does it not make sense? 2016-02-10T17:53:01Z stassats: there is also malloc and free in some linux manual, do you want that too? 2016-02-10T17:53:23Z myrkraverk: No, do you want to compare apples and oranges as well? 2016-02-10T17:54:19Z myrkraverk: The SBCL manual explicitly states that the underlying implementation is based on pthreads, so why aren't detached threads supported? 2016-02-10T17:54:21Z stassats: if you want material about using pthreads to be applicable, you have to write in C and use pthreads 2016-02-10T17:54:53Z stassats: there is no such thing as detached or attached threads in sbcl 2016-02-10T17:55:26Z stassats: a pthreads manual won't help you with using sb-threads 2016-02-10T17:56:16Z myrkraverk: stassats: that's what I'm asking: Why is there no detached thread in SBCL? 2016-02-10T17:56:42Z stassats: because it doesn't make sense to have it 2016-02-10T17:57:04Z myrkraverk: I don't accept that as a valid answer. 2016-02-10T17:57:55Z scymtym_: myrkraverk: maybe start from the other end: present a valid use-case for detached threads in SBCL 2016-02-10T17:57:56Z stassats: i can live with that 2016-02-10T17:58:38Z scymtym_: i.e. what would you do with the feature, if SBCL had it 2016-02-10T17:59:27Z myrkraverk: scymtym_: Ok, one good example, sort of. Implementing sleep sort. Specifically, translate this into lisp: http://paste.lisp.org/+6KGE 2016-02-10T17:59:54Z myrkraverk: That is not what I'm doing with Lisp right now, though. 2016-02-10T18:02:39Z scymtym_: seems contrived and racy. what is this used for? 2016-02-10T18:03:42Z myrkraverk: It sorts in O(n) run time. 2016-02-10T18:04:10Z myrkraverk: It's an example, though. There is an implementation in SBCL, with a join loop. 2016-02-10T18:05:22Z myrkraverk: On a second thought, I'm reconsidering the detached state for my problem, but still, for sleep sort, it's nice to have detached threads. 2016-02-10T18:05:37Z hydan quit (Quit: Textual IRC Client: www.textualapp.com) 2016-02-10T18:05:49Z stassats: you cannot be serious 2016-02-10T18:06:45Z myrkraverk: Of course, if sleep sort is the only example of detached threads in Lisp, it doesn't make sense to implement it. However, I'm surprised it isn't. 2016-02-10T18:07:50Z stassats: it doesn't make sense even for this contrived thing 2016-02-10T18:08:14Z myrkraverk: Yes it does. 2016-02-10T18:08:42Z myrkraverk: Otherwise, the join loop is entirely superfluous. 2016-02-10T18:09:00Z myrkraverk: Or, can you show me sleep sort in Lisp without a join loop? 2016-02-10T18:09:24Z stassats: no, this is a waste of everybody's time 2016-02-10T18:10:26Z stassats: you don't have to join threads in sbcl, sure, if you want to exit after all threads finished, you do need to join them 2016-02-10T18:11:00Z stassats: but this is not C where joining threads will take a whole page of code 2016-02-10T18:11:53Z myrkraverk: Doesn't the process exit once the main thread terminates, like C? 2016-02-10T18:15:27Z igajsin left #sbcl 2016-02-10T18:16:01Z scymtym_: that depends on how the main thread terminates (see e.g. sb-ext:exit, sb-ext:*exit-hooks*) 2016-02-10T18:31:17Z DGASAU quit (Read error: Connection reset by peer) 2016-02-10T18:31:44Z DGASAU joined #sbcl 2016-02-10T18:35:16Z foom quit (Ping timeout: 252 seconds) 2016-02-10T18:37:28Z krzysz00 quit (Ping timeout: 252 seconds) 2016-02-10T18:48:16Z foom joined #sbcl 2016-02-10T19:15:34Z krzysz00 joined #sbcl 2016-02-10T19:19:14Z benkard joined #sbcl 2016-02-10T19:51:55Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-10T19:58:25Z krzysz00 quit (Ping timeout: 245 seconds) 2016-02-10T19:59:36Z Quadrescence quit (Quit: Leaving) 2016-02-10T20:01:12Z Quadrescence joined #sbcl 2016-02-10T20:23:25Z gingerale quit (Ping timeout: 245 seconds) 2016-02-10T20:23:30Z sjl_ joined #sbcl 2016-02-10T20:25:25Z gingerale joined #sbcl 2016-02-10T20:35:58Z gingerale quit (Remote host closed the connection) 2016-02-10T21:00:47Z Bicyclidine joined #sbcl 2016-02-10T21:05:53Z krzysz00 joined #sbcl 2016-02-10T21:26:55Z ASau joined #sbcl 2016-02-10T21:27:26Z krzysz00 quit (Ping timeout: 245 seconds) 2016-02-10T21:29:35Z pkhuong quit (Ping timeout: 276 seconds) 2016-02-10T21:37:31Z stassats: can't come up with a better way of introducing mask-signed-field-fixnum other than duplicating everything about mask-signed-field 2016-02-10T21:37:57Z stassats: but the fact that it has one argument and not two make things a bit more complicated, so maybe just make it (mask-signed-field-fixnum 63 x) 2016-02-10T21:39:03Z stassats: mask-signed-field can get optimized as late as ir2-convert 2016-02-10T21:40:39Z stassats: and that's a general transformation problem, transform too late and you'll miss optimizations 2016-02-10T21:40:44Z abbe_ joined #sbcl 2016-02-10T21:41:02Z stassats: s/too late/too early/ 2016-02-10T21:42:10Z stassats: another option: mask-signed-field-fixnum VOP, i can invoke it in ir2-convert and it'll be even faster 2016-02-10T21:48:43Z dim quit (*.net *.split) 2016-02-10T21:48:43Z abbe quit (*.net *.split) 2016-02-10T21:49:45Z dim joined #sbcl 2016-02-10T21:52:01Z carvite quit (Ping timeout: 245 seconds) 2016-02-10T21:54:07Z carvite joined #sbcl 2016-02-10T21:58:59Z stassats: that seems likes the best option, and i don't have to write them for all backends at once 2016-02-10T21:59:20Z stassats: evenp is now three times faster 2016-02-10T22:00:18Z stassats: and it takes less code to inline mask-signed-field-fixnum than to full-call (mask-signed-field 63 x) 2016-02-10T22:07:43Z stassats: this is pretty exciting actually, finally mask-signed-field can be a good thing for unknown types 2016-02-10T22:08:49Z krzysz00 joined #sbcl 2016-02-10T22:09:53Z Bicyclidine quit (Ping timeout: 276 seconds) 2016-02-10T22:11:02Z Bicyclidine joined #sbcl 2016-02-10T22:25:52Z angavrilov quit (Remote host closed the connection) 2016-02-10T23:00:47Z stassats quit (Ping timeout: 264 seconds) 2016-02-10T23:01:11Z stassats joined #sbcl 2016-02-10T23:05:46Z stassats quit (Ping timeout: 250 seconds) 2016-02-10T23:06:11Z stassats joined #sbcl 2016-02-10T23:10:34Z stassats quit (Ping timeout: 240 seconds) 2016-02-10T23:11:38Z krzysz00 quit (Ping timeout: 276 seconds) 2016-02-10T23:12:52Z stassats joined #sbcl 2016-02-10T23:15:25Z karswell joined #sbcl 2016-02-10T23:17:14Z stassats quit (Ping timeout: 252 seconds) 2016-02-10T23:17:43Z stassats joined #sbcl 2016-02-10T23:19:26Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-10T23:21:12Z krzysz00 joined #sbcl 2016-02-10T23:22:14Z stassats quit (Ping timeout: 250 seconds) 2016-02-10T23:23:11Z dougk_ quit (Remote host closed the connection) 2016-02-10T23:23:30Z dougk_ joined #sbcl 2016-02-10T23:24:43Z stassats joined #sbcl 2016-02-10T23:28:55Z stassats quit (Ping timeout: 240 seconds) 2016-02-10T23:32:15Z stassats joined #sbcl 2016-02-10T23:33:56Z Posterdati quit (Ping timeout: 250 seconds) 2016-02-10T23:40:20Z stassats quit (Ping timeout: 252 seconds) 2016-02-10T23:41:14Z stassats joined #sbcl 2016-02-10T23:42:59Z karswell quit (Read error: Connection reset by peer) 2016-02-10T23:43:39Z karswell joined #sbcl 2016-02-10T23:45:22Z stassats quit (Ping timeout: 240 seconds) 2016-02-10T23:46:13Z stassats joined #sbcl 2016-02-10T23:47:44Z csziacobus joined #sbcl 2016-02-10T23:53:45Z Posterdati joined #sbcl 2016-02-10T23:59:39Z Bicyclidine quit (Quit: fear) 2016-02-11T00:06:34Z stassats quit (Ping timeout: 272 seconds) 2016-02-11T00:13:28Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-02-11T00:19:53Z sjl_ quit (Ping timeout: 276 seconds) 2016-02-11T00:25:24Z nzambe joined #sbcl 2016-02-11T00:46:20Z krzysz00 quit (Ping timeout: 256 seconds) 2016-02-11T01:16:13Z sjl_ joined #sbcl 2016-02-11T01:39:47Z krzysz00 joined #sbcl 2016-02-11T02:05:59Z mordocai: Anyone know if sbcl + CFFI should be reading the LIBRARY_PATH environment variable when trying to load foreign libraries? I don't want to go down a rabbit hole if it doesn't even try that but currently I'm having to manually fill cffi:*foreign-library-directories* on my debian + guix box since the lib path is non-standard. 2016-02-11T02:06:36Z mordocai: If it should be using LIBRARY_PATH then I could probably use some pointers on where to look for the problem. 2016-02-11T02:08:13Z ASau` joined #sbcl 2016-02-11T02:11:51Z mordocai: After finding a mention in the docs i'm going to try setting LD_LIBARY_PATH 2016-02-11T02:14:57Z mordocai: Yeah that seems to work, nvm 2016-02-11T02:15:42Z ASau quit (*.net *.split) 2016-02-11T02:15:42Z whiteline quit (*.net *.split) 2016-02-11T02:22:01Z whiteline joined #sbcl 2016-02-11T02:47:36Z sjl_ quit (Ping timeout: 256 seconds) 2016-02-11T03:01:15Z hlavaty` quit (Remote host closed the connection) 2016-02-11T03:03:19Z hlavaty` joined #sbcl 2016-02-11T03:06:18Z Xof quit (Ping timeout: 256 seconds) 2016-02-11T03:20:32Z p_l quit (Ping timeout: 250 seconds) 2016-02-11T03:21:38Z p_l joined #sbcl 2016-02-11T04:08:56Z csziacobus quit (Ping timeout: 240 seconds) 2016-02-11T05:59:55Z gingerale joined #sbcl 2016-02-11T06:38:32Z thijso joined #sbcl 2016-02-11T06:48:42Z gingerale quit (Remote host closed the connection) 2016-02-11T06:58:05Z thijso: After I recently updated sbcl (latest git version) and quicklisp, I am unable to compile swank anymore. I get the error "Symbol "*ASSEM-INSTRUCTIONS*" not found in the SB-ASSEM package". Does this ring a bell for anyone? 2016-02-11T07:00:29Z |3b| doesn't know specifically, but usually stuff like that means you need to update slime/swank as well 2016-02-11T07:00:57Z |3b| at least sees changes involving that symbol in recent slime commits 2016-02-11T07:03:44Z thijso: Hmmm... that quicklisp update did have a slime update as well iirc 2016-02-11T07:08:45Z thijso: Getting the latest slime from git solved the problem indeed. 2016-02-11T07:08:48Z thijso: Thanks 2016-02-11T07:10:39Z thijso quit (Quit: Page closed) 2016-02-11T07:35:10Z Cymew joined #sbcl 2016-02-11T07:44:39Z Shinmera joined #sbcl 2016-02-11T07:51:53Z Xof joined #sbcl 2016-02-11T08:08:00Z Cymew quit (Read error: Connection reset by peer) 2016-02-11T08:26:24Z ASau` is now known as ASau 2016-02-11T08:30:10Z Cymew joined #sbcl 2016-02-11T08:39:24Z angavrilov joined #sbcl 2016-02-11T08:52:33Z hlavaty` quit (*.net *.split) 2016-02-11T08:52:34Z jdz quit (*.net *.split) 2016-02-11T08:58:01Z jdz joined #sbcl 2016-02-11T09:01:27Z igajsin joined #sbcl 2016-02-11T09:01:50Z ASau quit (Ping timeout: 276 seconds) 2016-02-11T09:02:06Z igajsin left #sbcl 2016-02-11T09:13:46Z Cymew quit (Ping timeout: 240 seconds) 2016-02-11T09:16:34Z Cymew joined #sbcl 2016-02-11T09:23:57Z igajsin joined #sbcl 2016-02-11T09:24:40Z igajsin left #sbcl 2016-02-11T09:27:28Z karswell quit (Read error: Connection reset by peer) 2016-02-11T09:28:43Z karswell joined #sbcl 2016-02-11T10:07:56Z Cymew quit (Ping timeout: 240 seconds) 2016-02-11T10:17:16Z attila_lendvai joined #sbcl 2016-02-11T10:17:24Z Cymew joined #sbcl 2016-02-11T10:24:49Z loke quit (Ping timeout: 250 seconds) 2016-02-11T10:37:45Z loke joined #sbcl 2016-02-11T10:38:37Z sjl_ joined #sbcl 2016-02-11T10:45:26Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-11T11:00:24Z attila_lendvai joined #sbcl 2016-02-11T11:55:37Z lnostdal__ joined #sbcl 2016-02-11T11:59:16Z lnostdal_ quit (Ping timeout: 250 seconds) 2016-02-11T12:00:59Z DGASAU quit (Read error: Connection reset by peer) 2016-02-11T12:01:25Z DGASAU joined #sbcl 2016-02-11T12:06:17Z karswell quit (Remote host closed the connection) 2016-02-11T12:06:27Z karswell joined #sbcl 2016-02-11T12:10:52Z attila_lendvai quit (Quit: Leaving.) 2016-02-11T12:17:52Z stassats joined #sbcl 2016-02-11T12:22:06Z stassats quit (Ping timeout: 240 seconds) 2016-02-11T12:23:17Z stassats joined #sbcl 2016-02-11T12:23:54Z DGASAU quit (Read error: Connection reset by peer) 2016-02-11T12:27:52Z stassats quit (Ping timeout: 256 seconds) 2016-02-11T12:28:46Z stassats joined #sbcl 2016-02-11T12:32:56Z karswell` joined #sbcl 2016-02-11T12:33:53Z karswell quit (Read error: Connection reset by peer) 2016-02-11T12:42:10Z attila_lendvai joined #sbcl 2016-02-11T12:57:30Z eudoxia joined #sbcl 2016-02-11T12:59:49Z DGASAU joined #sbcl 2016-02-11T13:04:26Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-11T13:49:34Z eudoxia quit (Quit: Leaving) 2016-02-11T13:56:09Z stassats: turns out, optimize mask-signed-field only makes sense on x86oids and ARM64 2016-02-11T13:56:24Z stassats: others don't have enough modular vops 2016-02-11T13:58:03Z stassats: another issue, logtest is transformed to (zerop logand) conditionally, and logand then cuts down the arguments using mask-signed-field and then it's able to use VOPS 2016-02-11T13:58:37Z stassats: but logtest could use VOPs too, if it cut the arguments in the same fashion 2016-02-11T13:58:53Z stassats: oh well, it's just an extra instruction 2016-02-11T14:25:16Z antoszka quit (Quit: +++ killed by SIGSEGV +++) 2016-02-11T14:25:41Z antoszka joined #sbcl 2016-02-11T14:48:48Z krzysz00 quit (Ping timeout: 272 seconds) 2016-02-11T15:51:55Z jackdaniel quit (Ping timeout: 240 seconds) 2016-02-11T15:53:00Z dustinm` quit (Ping timeout: 256 seconds) 2016-02-11T15:54:10Z ralt quit (Ping timeout: 256 seconds) 2016-02-11T15:54:46Z dsp- quit (Ping timeout: 240 seconds) 2016-02-11T15:59:32Z karswell` is now known as karswell 2016-02-11T16:06:26Z jackdaniel joined #sbcl 2016-02-11T16:06:38Z dustinm` joined #sbcl 2016-02-11T16:11:35Z dsp- joined #sbcl 2016-02-11T16:13:17Z Cymew quit (Quit: Konversation terminated!) 2016-02-11T16:32:06Z gingerale joined #sbcl 2016-02-11T16:37:55Z frankS2 quit (Ping timeout: 250 seconds) 2016-02-11T16:38:34Z dougk_ quit (Ping timeout: 252 seconds) 2016-02-11T16:39:12Z foom quit (Ping timeout: 250 seconds) 2016-02-11T16:45:11Z dougk_ joined #sbcl 2016-02-11T16:52:39Z foom joined #sbcl 2016-02-11T16:52:57Z frankS2 joined #sbcl 2016-02-11T16:53:58Z pkhuong joined #sbcl 2016-02-11T17:01:47Z Bicyclidine joined #sbcl 2016-02-11T17:15:43Z krzysz00 joined #sbcl 2016-02-11T17:33:57Z stassats: (ldb (byte 40 32) x) is now slower than (ldb (byte y 32) x) 2016-02-11T17:34:12Z stassats: or rather, (ldb (byte y 32) x) is now faster 2016-02-11T17:39:34Z stassats: not sure how to solve that one 2016-02-11T17:42:20Z sjl_ quit (Ping timeout: 272 seconds) 2016-02-11T17:42:39Z stassats: modularish arithmetic for ash? (logand m-p-f (ash x -y)) only needs the low bits 2016-02-11T17:47:56Z Xof: there should already be some modular support for ash 2016-02-11T17:48:10Z stassats: for (logand m-p-f (ash x +y)) 2016-02-11T17:50:10Z stassats: and (ash x -y) is not exactly alike other modular functions 2016-02-11T17:50:40Z Xof: no, because you need the low field-size + y bits, not just the low field-size bits 2016-02-11T17:52:04Z stassats: i can envision that i need an right-shift-integer-into-word function/vop, but no idea yet how to substitute ASH with that 2016-02-11T17:55:50Z stassats: and in a way that doesn't prevent all other ash optimizations 2016-02-11T17:56:13Z stassats: maybe look where the result goes at ir2 conversion stage? i'll need a vop then 2016-02-11T18:03:40Z stassats: ok, i think i can determine that during ir2 conversion 2016-02-11T18:03:49Z stassats: but the vop would be quite complicated 2016-02-11T18:09:04Z stassats: but that's the easiest way i currently see 2016-02-11T18:12:56Z attila_lendvai joined #sbcl 2016-02-11T18:20:56Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-11T18:24:06Z Bicyclidine quit (Ping timeout: 245 seconds) 2016-02-11T18:26:18Z Bicyclidine joined #sbcl 2016-02-11T18:32:48Z dsp- quit (Read error: Connection reset by peer) 2016-02-11T18:32:54Z dsp- joined #sbcl 2016-02-11T18:42:02Z krzysz00 joined #sbcl 2016-02-11T18:50:17Z stassats: i got that far, now stuck on shifting a bignum from a vop 2016-02-11T18:53:56Z rpg joined #sbcl 2016-02-11T19:04:00Z stassats: i need to find a way to emit a function call from ir2-conversion 2016-02-11T19:08:56Z kanru quit (Ping timeout: 276 seconds) 2016-02-11T19:14:48Z pkhuong: stassats: static function :| 2016-02-11T19:17:17Z stassats: crossed my mind, but i think i can mutilate the node with another function 2016-02-11T19:17:25Z stassats: i don't to change the arguments or anything 2016-02-11T19:21:41Z francogrex joined #sbcl 2016-02-11T19:21:45Z francogrex: hi 2016-02-11T19:22:05Z francogrex: in this: (SB-IMPL::READ-FROM-C-STRING/UTF-8 #.(SB-SYS:INT-SAP #X0FD14265) CHARACTER) 2016-02-11T19:22:35Z francogrex: i get errors: :UTF-8 c-string decoding error: the octet sequence #(228 116 115) cannot be decoded 2016-02-11T19:23:15Z francogrex: yes there are those weird german characters in #X0FD14265 2016-02-11T19:23:34Z francogrex: but how can I still get it to either ignore or read them? 2016-02-11T19:23:43Z stassats: then it's not in utf-8 2016-02-11T19:23:49Z stassats: use the right encoding 2016-02-11T19:24:05Z francogrex: how to know which one? 2016-02-11T19:24:17Z francogrex: is the right one? 2016-02-11T19:24:27Z stassats: whichever encoding it was saved in 2016-02-11T19:26:06Z francogrex: no way to guess from the sequence #(228 116 115) ? 2016-02-11T19:29:41Z mordocai: You'd need the whole file to guess probably. 2016-02-11T19:30:32Z mordocai: You can write it out to a file and run the file command on it. Usually does a decent job guessing encoding. 2016-02-11T19:31:18Z francogrex: ok thanks 2016-02-11T19:34:44Z francogrex: the thing is this being a funcall from clsql, the data retrieve can be from anything, a mix actually; bits in german bits in whatever japanese even 2016-02-11T19:35:35Z krzysz00 quit (Ping timeout: 276 seconds) 2016-02-11T19:36:14Z DGASAU quit (Read error: Connection reset by peer) 2016-02-11T19:36:35Z DGASAU joined #sbcl 2016-02-11T19:36:37Z stassats: that's not for #sbcl 2016-02-11T19:37:00Z mordocai: francogrex: yeah, actually sounds like a database issue at that point. Databases and encodings can sometimes be... tricky. 2016-02-11T19:37:09Z mordocai: Easy to corrupt data 2016-02-11T19:37:40Z francogrex: right 2016-02-11T19:38:57Z krzysz00 joined #sbcl 2016-02-11T19:41:26Z francogrex left #sbcl 2016-02-11T19:49:17Z myrkraverk: mordocai: I thought that was only mysql. 2016-02-11T19:49:38Z Bicyclidine quit (Ping timeout: 272 seconds) 2016-02-11T19:50:41Z mordocai: myrkraverk: Off topic, but you can get into tricky situations with encodings and pretty much any database. 2016-02-11T19:50:52Z Bicyclidine joined #sbcl 2016-02-11T19:50:54Z krzysz00 quit (Ping timeout: 272 seconds) 2016-02-11T19:51:17Z myrkraverk: Maybe, but I thought it was only mysql that corrupted data (easily). 2016-02-11T20:05:09Z krzysz00 joined #sbcl 2016-02-11T20:37:44Z yvm quit (Quit: Leaving) 2016-02-11T20:45:51Z stassats: came up with this abomination http://paste.lisp.org/display/307060 2016-02-11T20:55:09Z attila_lendvai quit (Quit: Leaving.) 2016-02-11T20:56:21Z gingerale quit (Remote host closed the connection) 2016-02-11T20:58:19Z pchrist joined #sbcl 2016-02-11T21:04:29Z rpg quit (Quit: rpg) 2016-02-11T21:15:32Z stassats: i think ARM64 can do the bignum shift in one instruction 2016-02-11T21:15:44Z stassats: it has an instruction that shifts two words 2016-02-11T21:16:32Z stassats: the challenge is determining which words to shift, and sign extension 2016-02-11T21:18:40Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-11T21:18:41Z Bicyclidine quit (Ping timeout: 245 seconds) 2016-02-11T21:23:35Z flip214 quit (Ping timeout: 240 seconds) 2016-02-11T21:24:18Z flip214 joined #sbcl 2016-02-11T21:24:18Z flip214 quit (Changing host) 2016-02-11T21:24:18Z flip214 joined #sbcl 2016-02-11T21:25:42Z Bicyclidine joined #sbcl 2016-02-11T21:28:46Z Xof: that is quite horrible 2016-02-11T21:28:51Z Xof: nice hack, though 2016-02-11T21:30:32Z stassats: i'm thinking about adding some additional transform stage 2016-02-11T21:30:44Z stassats: that happens very late 2016-02-11T21:31:16Z myrkraverk quit (Ping timeout: 248 seconds) 2016-02-11T21:32:07Z stassats: for fallbacks 2016-02-11T21:32:28Z stassats: maybe finally some solution to patterns like (mask-signed-field x (ash y)) 2016-02-11T21:41:28Z stassats: pattern matching can be useful in normal transforms too 2016-02-11T21:42:16Z pkhuong: oh yeah. ir2 pattern matching would make sense 2016-02-11T21:42:53Z krzysz00 joined #sbcl 2016-02-11T21:43:17Z stassats: i was thinking about ir1 pattern matching 2016-02-11T21:46:03Z Xof: one of each! 2016-02-11T21:46:25Z pkhuong: ir1 pattern matching needs to be in reverse order, but otherwise yes, that'd make a lot of things simpler 2016-02-11T21:46:29Z pkhuong: modular arith for example 2016-02-11T21:47:56Z stassats: stuff like casts make things harder 2016-02-11T21:48:05Z stassats: just tried, my ash hack doesn't work with a cast 2016-02-11T21:48:09Z pkhuong: yeah, you need to look through casts 2016-02-11T21:48:28Z pkhuong: i lisppasted a pattern matching hacks many years ago 2016-02-11T21:49:25Z stassats: and the usual problem of transforming something and losing further optimizations, that's why i wanted an additional stage after all optimizations are guaranteed to be finished and it can't introduce any new ones 2016-02-11T21:49:43Z stassats: basically just before ir2 conversion 2016-02-11T21:50:10Z pkhuong: ... ir2 needs good types 2016-02-11T21:50:29Z pkhuong: so we'd need another pass of type derivation/constraint/type derivation 2016-02-11T21:50:46Z stassats: well, transformation that preserves types 2016-02-11T21:51:01Z stassats: like my example, converting full calls to mask-signed-field+ash to something else 2016-02-11T21:51:29Z stassats: (and mask-signed-field is not a full call anymore) 2016-02-11T21:52:51Z pkhuong: but mask-signed-field won't convert correctly without type propagation 2016-02-11T21:53:08Z pkhuong: and the way we do IR1 transforms by splicing in a lambda loses all type info 2016-02-11T21:53:22Z stassats: well, that ought to be change, naturally 2016-02-11T21:55:40Z stassats: maybe i just want an easier way to match patterns and convert into full calls from ir2-convert 2016-02-11T21:56:17Z stassats: though it goes ash first, then mask-signed-field, so converting both is not easy 2016-02-11T22:02:00Z Cooler_ quit (Ping timeout: 260 seconds) 2016-02-11T22:10:25Z ASau joined #sbcl 2016-02-11T22:11:07Z scymtym joined #sbcl 2016-02-11T22:13:16Z angavrilov quit (Ping timeout: 245 seconds) 2016-02-11T22:19:30Z Cooler_ joined #sbcl 2016-02-11T22:21:22Z yvm joined #sbcl 2016-02-11T22:21:38Z Bicyclidine quit (Ping timeout: 272 seconds) 2016-02-11T22:22:50Z Bicyclidine joined #sbcl 2016-02-11T22:23:43Z attila_lendvai joined #sbcl 2016-02-11T22:28:15Z Bicyclidine quit (Ping timeout: 260 seconds) 2016-02-11T22:33:18Z Bicyclidine joined #sbcl 2016-02-11T22:42:26Z stassats: maybe if i transform ldb into (logand mask (right-shift-into-fixnum x count)) 2016-02-11T22:42:47Z stassats: and then transform right-shift-into-fixnum into ASH if X is fixnum/word/signed-word 2016-02-11T22:49:05Z stassats: and maybe a VOP for (MOD POSITION N-WORD-BITS) = 0, for efficient bignum processing 2016-02-11T22:49:44Z stassats: and SIZE == N-WORD-BITS 2016-02-11T22:51:11Z krzysz00 quit (Ping timeout: 245 seconds) 2016-02-11T22:53:06Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-11T23:16:43Z krzysz00 joined #sbcl 2016-02-11T23:33:24Z flavioc_ joined #sbcl 2016-02-11T23:57:45Z myrkraverk joined #sbcl 2016-02-12T00:00:06Z Bicyclidine quit (Quit: leaving) 2016-02-12T00:04:34Z flavioc_ quit (Ping timeout: 240 seconds) 2016-02-12T00:12:06Z myrkraverk quit (Ping timeout: 240 seconds) 2016-02-12T00:13:34Z pkhuong_ joined #sbcl 2016-02-12T00:15:09Z jdz quit (Ping timeout: 240 seconds) 2016-02-12T00:15:16Z pkhuong quit (Ping timeout: 240 seconds) 2016-02-12T00:15:28Z jdz joined #sbcl 2016-02-12T00:21:21Z flavioc_ joined #sbcl 2016-02-12T00:22:55Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-12T00:24:29Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-12T00:26:58Z stassats quit (Ping timeout: 256 seconds) 2016-02-12T00:27:51Z scymtym quit (Ping timeout: 245 seconds) 2016-02-12T00:29:19Z myrkraverk joined #sbcl 2016-02-12T00:33:50Z krzysz00 joined #sbcl 2016-02-12T01:04:26Z myrkraverk quit (Ping timeout: 240 seconds) 2016-02-12T01:06:47Z krzysz00 quit (Ping timeout: 264 seconds) 2016-02-12T01:07:45Z krzysz00 joined #sbcl 2016-02-12T01:12:51Z krzysz00 quit (Ping timeout: 245 seconds) 2016-02-12T01:16:57Z krzysz00 joined #sbcl 2016-02-12T01:25:35Z krzysz00 quit (Ping timeout: 260 seconds) 2016-02-12T01:25:46Z flavioc_ quit (Ping timeout: 240 seconds) 2016-02-12T02:21:02Z krzysz00 joined #sbcl 2016-02-12T02:32:39Z myrkraverk joined #sbcl 2016-02-12T03:29:24Z loke quit (Ping timeout: 252 seconds) 2016-02-12T03:42:24Z loke joined #sbcl 2016-02-12T05:11:20Z gko quit (Ping timeout: 252 seconds) 2016-02-12T05:18:42Z gko joined #sbcl 2016-02-12T05:36:04Z nicdev` is now known as nicdev 2016-02-12T08:03:03Z sjl_ joined #sbcl 2016-02-12T08:13:38Z sigjuice quit (Quit: ZNC - http://znc.in) 2016-02-12T08:15:41Z sigjuice joined #sbcl 2016-02-12T08:23:33Z Shinmera joined #sbcl 2016-02-12T08:31:18Z angavrilov joined #sbcl 2016-02-12T09:05:22Z ASau quit (Ping timeout: 240 seconds) 2016-02-12T09:12:16Z Cymew joined #sbcl 2016-02-12T09:38:58Z attila_lendvai joined #sbcl 2016-02-12T09:49:09Z attila_lendvai quit (Quit: Leaving.) 2016-02-12T10:20:17Z yuankode joined #sbcl 2016-02-12T10:24:02Z stassats joined #sbcl 2016-02-12T11:46:59Z stassats quit (Ping timeout: 264 seconds) 2016-02-12T11:48:25Z stassats joined #sbcl 2016-02-12T11:52:44Z stassats quit (Ping timeout: 250 seconds) 2016-02-12T11:53:27Z stassats joined #sbcl 2016-02-12T11:57:56Z stassats quit (Ping timeout: 248 seconds) 2016-02-12T11:58:25Z stassats joined #sbcl 2016-02-12T12:03:24Z sjl_ quit (Ping timeout: 256 seconds) 2016-02-12T12:08:06Z sjl_ joined #sbcl 2016-02-12T13:46:06Z lnostdal__ quit (Ping timeout: 240 seconds) 2016-02-12T13:47:05Z lnostdal__ joined #sbcl 2016-02-12T14:01:30Z sjl_ quit (Ping timeout: 272 seconds) 2016-02-12T14:02:30Z sjl_ joined #sbcl 2016-02-12T14:09:26Z sjl_ quit (Ping timeout: 240 seconds) 2016-02-12T14:23:54Z krzysz00 quit (Ping timeout: 252 seconds) 2016-02-12T14:47:52Z sjl_ joined #sbcl 2016-02-12T14:50:27Z krzysz00 joined #sbcl 2016-02-12T14:57:11Z stassats quit (Ping timeout: 264 seconds) 2016-02-12T14:57:40Z sjl_ quit (Ping timeout: 248 seconds) 2016-02-12T14:58:31Z stassats joined #sbcl 2016-02-12T15:27:54Z sjl_ joined #sbcl 2016-02-12T16:03:48Z Cymew quit (Ping timeout: 248 seconds) 2016-02-12T16:23:28Z scymtym joined #sbcl 2016-02-12T16:36:40Z sjl_ quit (Ping timeout: 272 seconds) 2016-02-12T16:47:18Z gingerale joined #sbcl 2016-02-12T16:47:22Z krzysz00 quit (Ping timeout: 250 seconds) 2016-02-12T17:36:45Z krzysz00 joined #sbcl 2016-02-12T18:01:51Z benkard joined #sbcl 2016-02-12T18:05:02Z benkard quit (Read error: Connection reset by peer) 2016-02-12T18:05:31Z benkard joined #sbcl 2016-02-12T18:11:52Z benkard quit (Ping timeout: 250 seconds) 2016-02-12T18:15:16Z benkard joined #sbcl 2016-02-12T19:03:26Z krzysz00 quit (Ping timeout: 240 seconds) 2016-02-12T19:05:30Z Cooler_ quit (Ping timeout: 272 seconds) 2016-02-12T19:17:34Z Cooler_ joined #sbcl 2016-02-12T19:35:16Z sjl_ joined #sbcl 2016-02-12T19:44:59Z jjkola joined #sbcl 2016-02-12T19:47:18Z Cooler_ quit (Ping timeout: 252 seconds) 2016-02-12T19:58:05Z karswell quit (Remote host closed the connection) 2016-02-12T19:58:10Z sjl_ quit (Ping timeout: 240 seconds) 2016-02-12T19:58:11Z karswell` joined #sbcl 2016-02-12T20:23:40Z ASau joined #sbcl 2016-02-12T20:28:55Z Cooler_ joined #sbcl 2016-02-12T20:48:12Z jjkola quit (Quit: Leaving) 2016-02-12T20:52:15Z yuankode quit (Ping timeout: 240 seconds) 2016-02-12T21:20:39Z myrkraverk quit (Remote host closed the connection) 2016-02-12T21:25:35Z myrkraverk joined #sbcl 2016-02-12T21:43:14Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-12T21:52:12Z flavioc_ joined #sbcl 2016-02-12T21:59:41Z angavrilov quit (Remote host closed the connection) 2016-02-12T22:10:21Z stassats: found an easy way of improving LDB on unknown types, wrap the integer in mask-signed-field if the value comes from the fixnum range 2016-02-12T22:10:37Z stassats: still, a generic ASH improvement would be nicer, but too much effort 2016-02-12T22:10:44Z karswell` quit (Ping timeout: 248 seconds) 2016-02-12T22:11:05Z ralt joined #sbcl 2016-02-12T22:15:23Z karswell` joined #sbcl 2016-02-12T22:16:18Z stassats: ok, (ldb (byte 62 1) x) is now much better, but (ldb (byte 62 30) x) is still bad 2016-02-12T22:20:50Z csziacobus joined #sbcl 2016-02-12T22:31:14Z csziacobus quit (Remote host closed the connection) 2016-02-12T22:31:32Z csziacobus joined #sbcl 2016-02-12T22:37:06Z gingerale quit (Remote host closed the connection) 2016-02-12T22:52:56Z csziacobus quit (Remote host closed the connection) 2016-02-12T22:53:12Z csziacobus joined #sbcl 2016-02-12T23:13:06Z csziacobus quit (Remote host closed the connection) 2016-02-12T23:13:26Z csziacobus joined #sbcl 2016-02-12T23:17:20Z csziacobus quit (Remote host closed the connection) 2016-02-12T23:17:39Z csziacobus joined #sbcl 2016-02-12T23:21:03Z csziacobus quit (Remote host closed the connection) 2016-02-12T23:21:18Z csziacobus joined #sbcl 2016-02-12T23:27:13Z csziacobus quit (Remote host closed the connection) 2016-02-12T23:27:30Z csziacobus joined #sbcl 2016-02-12T23:28:59Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-12T23:31:25Z csziacobus quit (Remote host closed the connection) 2016-02-12T23:31:42Z csziacobus joined #sbcl 2016-02-12T23:39:06Z csziacobus quit (Remote host closed the connection) 2016-02-12T23:39:21Z csziacobus joined #sbcl 2016-02-12T23:47:15Z csziacobus quit (Remote host closed the connection) 2016-02-12T23:47:30Z csziacobus joined #sbcl 2016-02-12T23:54:18Z stassats quit (Ping timeout: 272 seconds) 2016-02-12T23:55:44Z lnostdal_ joined #sbcl 2016-02-12T23:59:06Z lnostdal__ quit (Ping timeout: 240 seconds) 2016-02-13T00:15:24Z csziacobus quit (Remote host closed the connection) 2016-02-13T00:15:53Z csziacobus joined #sbcl 2016-02-13T00:19:18Z csziacobus quit (Remote host closed the connection) 2016-02-13T00:19:37Z csziacobus joined #sbcl 2016-02-13T00:25:02Z csziacobus quit (Remote host closed the connection) 2016-02-13T00:25:21Z csziacobus joined #sbcl 2016-02-13T00:31:16Z csziacobus quit (Remote host closed the connection) 2016-02-13T00:31:33Z csziacobus joined #sbcl 2016-02-13T00:52:58Z csziacobus quit (Remote host closed the connection) 2016-02-13T00:53:13Z csziacobus joined #sbcl 2016-02-13T00:57:08Z csziacobus quit (Remote host closed the connection) 2016-02-13T00:57:23Z csziacobus joined #sbcl 2016-02-13T01:03:17Z csziacobus quit (Remote host closed the connection) 2016-02-13T01:03:36Z csziacobus joined #sbcl 2016-02-13T01:12:59Z csziacobus quit (Remote host closed the connection) 2016-02-13T01:13:18Z csziacobus joined #sbcl 2016-02-13T01:17:12Z csziacobus quit (Remote host closed the connection) 2016-02-13T01:17:27Z csziacobus joined #sbcl 2016-02-13T01:25:22Z csziacobus quit (Remote host closed the connection) 2016-02-13T01:25:39Z csziacobus joined #sbcl 2016-02-13T01:29:32Z scymtym quit (Ping timeout: 250 seconds) 2016-02-13T01:33:04Z csziacobus quit (Remote host closed the connection) 2016-02-13T01:33:22Z csziacobus joined #sbcl 2016-02-13T01:45:16Z csziacobus quit (Remote host closed the connection) 2016-02-13T01:45:32Z csziacobus joined #sbcl 2016-02-13T01:50:56Z csziacobus quit (Remote host closed the connection) 2016-02-13T01:51:14Z csziacobus joined #sbcl 2016-02-13T01:55:08Z csziacobus quit (Remote host closed the connection) 2016-02-13T01:55:25Z csziacobus joined #sbcl 2016-02-13T01:59:20Z csziacobus quit (Remote host closed the connection) 2016-02-13T01:59:37Z csziacobus joined #sbcl 2016-02-13T02:03:01Z csziacobus quit (Remote host closed the connection) 2016-02-13T02:03:21Z csziacobus joined #sbcl 2016-02-13T02:15:15Z csziacobus quit (Remote host closed the connection) 2016-02-13T02:15:34Z csziacobus joined #sbcl 2016-02-13T02:18:58Z csziacobus quit (Remote host closed the connection) 2016-02-13T02:19:15Z csziacobus joined #sbcl 2016-02-13T02:29:09Z csziacobus quit (Remote host closed the connection) 2016-02-13T02:29:29Z csziacobus joined #sbcl 2016-02-13T02:30:26Z flavioc_ quit (Ping timeout: 240 seconds) 2016-02-13T02:57:23Z csziacobus quit (Remote host closed the connection) 2016-02-13T02:57:43Z csziacobus joined #sbcl 2016-02-13T03:11:07Z csziacobus quit (Remote host closed the connection) 2016-02-13T03:11:23Z csziacobus joined #sbcl 2016-02-13T03:19:18Z csziacobus quit (Remote host closed the connection) 2016-02-13T03:19:33Z csziacobus joined #sbcl 2016-02-13T03:22:40Z ASau quit (Remote host closed the connection) 2016-02-13T03:22:58Z csziacobus quit (Remote host closed the connection) 2016-02-13T03:23:11Z ASau joined #sbcl 2016-02-13T03:23:16Z csziacobus joined #sbcl 2016-02-13T03:31:10Z csziacobus quit (Remote host closed the connection) 2016-02-13T03:31:29Z csziacobus joined #sbcl 2016-02-13T03:41:23Z csziacobus quit (Remote host closed the connection) 2016-02-13T03:41:41Z csziacobus joined #sbcl 2016-02-13T03:45:05Z csziacobus quit (Remote host closed the connection) 2016-02-13T03:45:25Z csziacobus joined #sbcl 2016-02-13T03:53:19Z csziacobus quit (Remote host closed the connection) 2016-02-13T03:53:36Z csziacobus joined #sbcl 2016-02-13T04:02:15Z csziacobus quit (Ping timeout: 240 seconds) 2016-02-13T06:33:26Z lnostdal_ quit (Ping timeout: 240 seconds) 2016-02-13T07:20:33Z gingerale joined #sbcl 2016-02-13T07:42:51Z lnostdal joined #sbcl 2016-02-13T07:51:49Z angavrilov joined #sbcl 2016-02-13T07:54:25Z yuankode joined #sbcl 2016-02-13T07:54:41Z Shinmera joined #sbcl 2016-02-13T08:15:45Z jdz quit (Ping timeout: 240 seconds) 2016-02-13T08:15:45Z jdz joined #sbcl 2016-02-13T08:49:24Z Bike quit (Quit: Lost terminal) 2016-02-13T08:50:19Z pullmeunder joined #sbcl 2016-02-13T08:52:11Z pullmeunder left #sbcl 2016-02-13T10:10:51Z stassats joined #sbcl 2016-02-13T10:11:12Z stassats: great, runtime clean up broke all non-x86oids 2016-02-13T10:44:32Z stassats quit (Ping timeout: 252 seconds) 2016-02-13T10:45:19Z stassats joined #sbcl 2016-02-13T10:48:37Z flavioc_ joined #sbcl 2016-02-13T10:49:22Z stassats quit (Ping timeout: 240 seconds) 2016-02-13T10:50:47Z stassats joined #sbcl 2016-02-13T10:54:55Z stassats quit (Ping timeout: 240 seconds) 2016-02-13T10:56:49Z stassats joined #sbcl 2016-02-13T11:00:56Z stassats quit (Ping timeout: 240 seconds) 2016-02-13T11:02:19Z stassats joined #sbcl 2016-02-13T11:06:38Z stassats quit (Ping timeout: 256 seconds) 2016-02-13T11:07:46Z stassats joined #sbcl 2016-02-13T11:12:18Z stassats quit (Ping timeout: 256 seconds) 2016-02-13T11:12:50Z stassats joined #sbcl 2016-02-13T11:13:36Z scymtym joined #sbcl 2016-02-13T11:19:40Z stassats quit (Ping timeout: 256 seconds) 2016-02-13T11:20:18Z stassats joined #sbcl 2016-02-13T11:24:47Z stassats quit (Ping timeout: 264 seconds) 2016-02-13T11:25:19Z stassats joined #sbcl 2016-02-13T11:29:26Z stassats quit (Ping timeout: 240 seconds) 2016-02-13T11:30:20Z stassats joined #sbcl 2016-02-13T11:35:00Z stassats quit (Ping timeout: 248 seconds) 2016-02-13T11:37:20Z stassats joined #sbcl 2016-02-13T11:41:35Z stassats quit (Ping timeout: 240 seconds) 2016-02-13T11:42:19Z stassats joined #sbcl 2016-02-13T11:46:26Z stassats quit (Ping timeout: 240 seconds) 2016-02-13T11:47:18Z stassats joined #sbcl 2016-02-13T11:51:26Z stassats quit (Ping timeout: 240 seconds) 2016-02-13T11:52:17Z stassats joined #sbcl 2016-02-13T11:56:26Z stassats quit (Ping timeout: 240 seconds) 2016-02-13T11:57:20Z stassats joined #sbcl 2016-02-13T12:01:46Z stassats quit (Ping timeout: 250 seconds) 2016-02-13T12:02:51Z stassats joined #sbcl 2016-02-13T12:05:12Z karswell` quit (Read error: Connection reset by peer) 2016-02-13T12:05:24Z karswell` joined #sbcl 2016-02-13T12:07:02Z scymtym quit (Ping timeout: 252 seconds) 2016-02-13T12:07:16Z stassats quit (Ping timeout: 256 seconds) 2016-02-13T12:07:46Z stassats joined #sbcl 2016-02-13T12:12:11Z stassats quit (Ping timeout: 264 seconds) 2016-02-13T12:14:48Z stassats joined #sbcl 2016-02-13T12:17:26Z les quit (Ping timeout: 240 seconds) 2016-02-13T12:18:56Z stassats quit (Ping timeout: 240 seconds) 2016-02-13T12:20:19Z stassats joined #sbcl 2016-02-13T12:24:38Z stassats quit (Ping timeout: 252 seconds) 2016-02-13T12:25:17Z stassats joined #sbcl 2016-02-13T12:29:26Z stassats quit (Ping timeout: 240 seconds) 2016-02-13T12:30:13Z sjl_ joined #sbcl 2016-02-13T12:31:21Z stassats joined #sbcl 2016-02-13T14:33:32Z karswell` is now known as karswell 2016-02-13T14:41:06Z DGASAU quit (Ping timeout: 241 seconds) 2016-02-13T14:51:48Z H4ns joined #sbcl 2016-02-13T14:52:00Z H4ns: hi. what's the status of thread support on solaris? 2016-02-13T14:52:32Z DGASAU joined #sbcl 2016-02-13T14:53:24Z stassats: which solaris? 2016-02-13T14:53:37Z H4ns: amd64 2016-02-13T14:53:40Z H4ns: solaris 11 2016-02-13T14:55:05Z H4ns: i've seen juho's post from a few years ago where he wrote that getting threads on solaris was not such a big deal and should be available "in cvs" soon, but it seems that they're not available nowadays (trying make.sh --fancy) 2016-02-13T14:56:03Z stassats: --fancy is not that fancy, try --with-sb-thread 2016-02-13T14:56:18Z H4ns: thanks, will do. 2016-02-13T14:56:20Z stassats: and i don't remember whether amd64 has it 2016-02-13T14:56:28Z stassats: either x86 or x86-64 have, or both 2016-02-13T14:56:38Z DGASAU quit (Read error: Connection reset by peer) 2016-02-13T14:57:17Z DGASAU joined #sbcl 2016-02-13T14:57:35Z H4ns: build's running, i'll let you know in a few 2016-02-13T14:57:37Z stassats: wait, we have a manual! 2016-02-13T14:57:49Z H4ns: woot 2016-02-13T14:57:59Z stassats: http://sbcl.org/manual/#Threading 2016-02-13T14:58:10Z H4ns: :( 2016-02-13T14:58:17Z stassats: it may be lying 2016-02-13T14:58:25Z H4ns: x86-64-sunos-os.c:22:2: #error "Threading is not supported for Solaris running on x86-64." 2016-02-13T14:58:33Z stassats: ok, there you go 2016-02-13T14:58:37Z H4ns: thanks! 2016-02-13T14:58:51Z stassats: i remembered at least something correctly 2016-02-13T14:59:20Z stassats: H4ns: care to add support for them? 2016-02-13T15:00:06Z H4ns: i'm not really prepared for that right now, but i might be if i find a sysadmin who prefers solaris to linux. 2016-02-13T15:00:30Z stassats: solaris is not as fun anymore, after being oracled 2016-02-13T15:01:23Z H4ns: right. it's more the zfs that i'm after, but i need good jvm support so freebsd does not cut it. 2016-02-13T15:04:25Z benkard joined #sbcl 2016-02-13T15:09:24Z benkard quit (Ping timeout: 250 seconds) 2016-02-13T16:06:43Z benkard joined #sbcl 2016-02-13T16:15:42Z benkard quit (Ping timeout: 250 seconds) 2016-02-13T16:18:21Z benkard joined #sbcl 2016-02-13T16:27:56Z stassats quit (Ping timeout: 256 seconds) 2016-02-13T16:28:29Z stassats joined #sbcl 2016-02-13T16:32:56Z stassats quit (Ping timeout: 240 seconds) 2016-02-13T16:33:59Z stassats joined #sbcl 2016-02-13T16:56:04Z scymtym_: what is the (compile nil in line 14 of lambda-list.pure.lisp supposed to do? i think it has no effect since the lambda is not quoted. 2016-02-13T17:10:04Z scymtym_: maybe it makes a difference when interpreting 2016-02-13T17:11:53Z stassats: mistake 2016-02-13T17:14:26Z stassats: i don't think performance would matter either way 2016-02-13T17:15:02Z scymtym_: interesting 2016-02-13T17:15:30Z scymtym_: *MACROEXPAND-HOOK* can apparent not be bound to an interpreted function 2016-02-13T17:15:36Z scymtym_: that's probably the reason 2016-02-13T17:16:27Z scymtym_: or rather, in sb-fast-eval builds, interpreted functions are not of type FUNCTION? 2016-02-13T17:16:43Z stassats: that would be mighty surprising 2016-02-13T17:17:08Z stassats: valid-macroexpand-hook just doesn't accept it 2016-02-13T17:18:35Z stassats: i don't think that's actually standard 2016-02-13T17:19:27Z scymtym_: the comment says "Having an interpreted function as the expander hook can easily lead to an infinite loop." 2016-02-13T17:19:32Z scymtym_: that's probably the reason 2016-02-13T17:20:19Z stassats: bind *MACROEXPAND-HOOK* to funcall around the calls to *MACROEXPAND-HOOK*? is that standard? 2016-02-13T17:22:44Z scymtym_: shouldn't interpreted macro functions have the same problem? 2016-02-13T17:24:16Z stassats: there would be no circle, thoguh 2016-02-13T17:27:19Z Bike joined #sbcl 2016-02-13T17:27:31Z scymtym_: oh, right 2016-02-13T17:29:16Z scymtym_: this works with both evaluator modes: http://paste.lisp.org/display/307184. are the comments helpful? 2016-02-13T17:31:35Z stassats: the test fails with with-test? or the interpreter can't handle it at all? 2016-02-13T17:33:19Z scymtym_: i couldn't find a way to do it 2016-02-13T17:33:28Z stassats: what does it say? 2016-02-13T17:33:36Z stassats: which interpreter? 2016-02-13T17:33:59Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-13T17:34:14Z scymtym_: :sb-eval 2016-02-13T17:34:39Z stassats: SB-KERNEL:VALID-MACROEXPAND-HOOK would be a better name, btw 2016-02-13T17:35:04Z scymtym_: good point asking which interpreter 2016-02-13T17:35:12Z scymtym_: i seem to have built with the wrong one 2016-02-13T17:36:00Z stassats: "Lexical environment of # is too complex to compile." 2016-02-13T17:36:03Z stassats: that's sb-eval 2016-02-13T17:37:03Z scymtym_ is redoing the testing with :sb-fasteval 2016-02-13T17:37:58Z scymtym_: maybe we can switch default interpreters at some point, but without defaulting *EVALUATOR-MODE* to :INTERPRET just yet 2016-02-13T17:38:26Z stassats: sb-eval can't handle closures 2016-02-13T17:38:54Z stassats: or like, even where there are no closures 2016-02-13T17:39:11Z scymtym_: tests aren't expected to work with :sb-eval and *EVALUATOR-MODE* :INTERPRET, right? 2016-02-13T17:39:23Z stassats: no idea 2016-02-13T17:39:31Z stassats: this is the first time i used --evaluator-mode 2016-02-13T17:41:46Z scymtym_: that's what i remember from when i added the option. however, even sb-fasteval fails some of the newer non-consing assertions 2016-02-13T17:56:21Z DGASAU quit (Read error: Connection reset by peer) 2016-02-13T17:56:36Z whiteline quit (Ping timeout: 245 seconds) 2016-02-13T18:05:24Z sjl_ quit (Ping timeout: 248 seconds) 2016-02-13T19:06:18Z benkard joined #sbcl 2016-02-13T19:10:32Z benkard quit (Ping timeout: 252 seconds) 2016-02-13T19:38:17Z H4ns left #sbcl 2016-02-13T19:46:44Z sjl_ joined #sbcl 2016-02-13T20:03:35Z fiddlerwoaroof joined #sbcl 2016-02-13T20:22:12Z ralt quit (Remote host closed the connection) 2016-02-13T20:22:26Z ralt joined #sbcl 2016-02-13T20:36:48Z benkard joined #sbcl 2016-02-13T20:48:26Z sjl_ quit (Ping timeout: 240 seconds) 2016-02-13T20:57:34Z benkard quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…) 2016-02-13T21:08:44Z scymtym joined #sbcl 2016-02-13T22:19:43Z gingerale quit (Remote host closed the connection) 2016-02-13T22:31:24Z yuankode quit (Ping timeout: 250 seconds) 2016-02-13T22:32:10Z csziacobus joined #sbcl 2016-02-13T22:36:35Z csziacobus quit (Remote host closed the connection) 2016-02-13T22:36:54Z csziacobus joined #sbcl 2016-02-13T22:57:32Z whiteline joined #sbcl 2016-02-13T23:19:23Z stassats quit (Ping timeout: 264 seconds) 2016-02-13T23:24:29Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-13T23:24:47Z csziacobus quit (Remote host closed the connection) 2016-02-13T23:25:04Z csziacobus joined #sbcl 2016-02-13T23:28:28Z csziacobus quit (Remote host closed the connection) 2016-02-13T23:28:44Z csziacobus joined #sbcl 2016-02-14T00:02:31Z irsol quit (Remote host closed the connection) 2016-02-14T00:10:38Z csziacobus quit (Remote host closed the connection) 2016-02-14T00:10:53Z csziacobus joined #sbcl 2016-02-14T00:51:25Z irsol joined #sbcl 2016-02-14T01:04:47Z csziacobus quit (Remote host closed the connection) 2016-02-14T01:05:06Z csziacobus joined #sbcl 2016-02-14T01:20:31Z csziacobus quit (Remote host closed the connection) 2016-02-14T01:20:47Z csziacobus joined #sbcl 2016-02-14T01:25:56Z scymtym quit (Ping timeout: 248 seconds) 2016-02-14T01:26:41Z csziacobus quit (Remote host closed the connection) 2016-02-14T01:26:58Z csziacobus joined #sbcl 2016-02-14T01:47:59Z ASau quit (Remote host closed the connection) 2016-02-14T01:48:26Z ASau joined #sbcl 2016-02-14T01:58:22Z csziacobus quit (Remote host closed the connection) 2016-02-14T01:58:42Z csziacobus joined #sbcl 2016-02-14T02:01:58Z leo_song joined #sbcl 2016-02-14T02:26:36Z csziacobus quit (Remote host closed the connection) 2016-02-14T02:26:52Z csziacobus joined #sbcl 2016-02-14T02:52:46Z csziacobus quit (Remote host closed the connection) 2016-02-14T02:53:03Z csziacobus joined #sbcl 2016-02-14T03:28:27Z csziacobus quit (Remote host closed the connection) 2016-02-14T03:28:35Z flavioc_ quit (Ping timeout: 240 seconds) 2016-02-14T03:28:47Z csziacobus joined #sbcl 2016-02-14T03:32:41Z csziacobus quit (Remote host closed the connection) 2016-02-14T03:32:59Z csziacobus joined #sbcl 2016-02-14T03:36:23Z csziacobus quit (Remote host closed the connection) 2016-02-14T03:36:39Z csziacobus joined #sbcl 2016-02-14T03:44:33Z csziacobus quit (Remote host closed the connection) 2016-02-14T03:44:52Z csziacobus joined #sbcl 2016-02-14T03:52:45Z csziacobus quit (Remote host closed the connection) 2016-02-14T03:53:04Z csziacobus joined #sbcl 2016-02-14T04:08:27Z csziacobus quit (Remote host closed the connection) 2016-02-14T04:08:42Z csziacobus joined #sbcl 2016-02-14T04:16:36Z csziacobus quit (Remote host closed the connection) 2016-02-14T04:16:52Z csziacobus joined #sbcl 2016-02-14T04:24:46Z csziacobus quit (Remote host closed the connection) 2016-02-14T04:25:05Z csziacobus joined #sbcl 2016-02-14T04:34:28Z csziacobus quit (Remote host closed the connection) 2016-02-14T04:34:49Z csziacobus joined #sbcl 2016-02-14T04:38:41Z csziacobus quit (Remote host closed the connection) 2016-02-14T04:38:56Z csziacobus joined #sbcl 2016-02-14T04:42:21Z csziacobus quit (Remote host closed the connection) 2016-02-14T04:42:40Z csziacobus joined #sbcl 2016-02-14T04:48:35Z csziacobus quit (Remote host closed the connection) 2016-02-14T04:48:54Z csziacobus joined #sbcl 2016-02-14T04:52:19Z csziacobus quit (Remote host closed the connection) 2016-02-14T04:52:34Z csziacobus joined #sbcl 2016-02-14T04:56:29Z csziacobus quit (Remote host closed the connection) 2016-02-14T04:56:49Z csziacobus joined #sbcl 2016-02-14T05:06:14Z csziacobus quit (Remote host closed the connection) 2016-02-14T05:06:55Z csziacobus joined #sbcl 2016-02-14T05:19:26Z csziacobus quit (Quit: csziacobus) 2016-02-14T06:29:48Z gingerale joined #sbcl 2016-02-14T08:20:25Z yuankode joined #sbcl 2016-02-14T08:27:48Z Shinmera joined #sbcl 2016-02-14T10:30:37Z stassats joined #sbcl 2016-02-14T10:45:34Z stassats quit (Ping timeout: 256 seconds) 2016-02-14T10:45:58Z stassats joined #sbcl 2016-02-14T11:12:37Z flavioc_ joined #sbcl 2016-02-14T11:55:57Z lnostdal_ joined #sbcl 2016-02-14T11:59:22Z lnostdal quit (Ping timeout: 240 seconds) 2016-02-14T12:14:59Z sjl_ joined #sbcl 2016-02-14T12:34:22Z stassats quit (Ping timeout: 256 seconds) 2016-02-14T12:35:00Z stassats joined #sbcl 2016-02-14T14:28:24Z whiteline quit (Read error: Connection reset by peer) 2016-02-14T14:30:12Z whiteline joined #sbcl 2016-02-14T14:46:25Z stassats quit (Ping timeout: 260 seconds) 2016-02-14T15:03:21Z stassats joined #sbcl 2016-02-14T15:07:26Z stassats quit (Ping timeout: 240 seconds) 2016-02-14T15:08:33Z stassats joined #sbcl 2016-02-14T15:11:15Z Cooler_ quit (Ping timeout: 240 seconds) 2016-02-14T15:12:34Z stassats quit (Ping timeout: 240 seconds) 2016-02-14T15:15:02Z stassats joined #sbcl 2016-02-14T15:19:32Z stassats quit (Ping timeout: 248 seconds) 2016-02-14T15:20:03Z stassats joined #sbcl 2016-02-14T15:24:15Z stassats quit (Ping timeout: 240 seconds) 2016-02-14T15:25:05Z stassats joined #sbcl 2016-02-14T15:29:20Z stassats quit (Ping timeout: 252 seconds) 2016-02-14T15:30:02Z stassats joined #sbcl 2016-02-14T15:34:15Z stassats quit (Ping timeout: 240 seconds) 2016-02-14T15:35:03Z stassats joined #sbcl 2016-02-14T15:35:07Z Cooler_ joined #sbcl 2016-02-14T17:08:58Z fiddlerwoaroof quit (Quit: WeeChat 1.5-dev) 2016-02-14T17:16:00Z whiteline quit (Ping timeout: 256 seconds) 2016-02-14T17:20:33Z fiddlerwoaroof joined #sbcl 2016-02-14T17:42:39Z DeadTrickster quit (Read error: No route to host) 2016-02-14T17:56:28Z DeadTrickster joined #sbcl 2016-02-14T18:03:58Z igajsin joined #sbcl 2016-02-14T18:04:13Z igajsin left #sbcl 2016-02-14T18:58:11Z ASau` joined #sbcl 2016-02-14T19:01:38Z ASau quit (Ping timeout: 250 seconds) 2016-02-14T20:06:41Z sjl_ quit (Ping timeout: 276 seconds) 2016-02-14T20:22:22Z ASau` is now known as ASu 2016-02-14T20:22:23Z ASu is now known as ASau 2016-02-14T20:35:27Z gingerale quit (Remote host closed the connection) 2016-02-14T20:43:34Z sjl_ joined #sbcl 2016-02-14T20:57:08Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-14T21:22:43Z sjl joined #sbcl 2016-02-14T21:24:03Z attila_lendvai joined #sbcl 2016-02-14T21:26:20Z jdz quit (Ping timeout: 240 seconds) 2016-02-14T21:26:20Z sjl_ quit (Ping timeout: 240 seconds) 2016-02-14T21:28:20Z jdz joined #sbcl 2016-02-14T21:59:35Z sjl quit (Ping timeout: 240 seconds) 2016-02-14T22:07:16Z flavioc_ quit (Ping timeout: 256 seconds) 2016-02-14T22:30:13Z flavioc_ joined #sbcl 2016-02-14T22:34:54Z angavrilov quit (Ping timeout: 272 seconds) 2016-02-14T22:43:48Z sjl joined #sbcl 2016-02-15T00:03:43Z karswell quit (Read error: Connection reset by peer) 2016-02-15T00:03:59Z karswell joined #sbcl 2016-02-15T00:10:10Z yuankode quit (Ping timeout: 250 seconds) 2016-02-15T00:22:47Z stassats quit (Ping timeout: 276 seconds) 2016-02-15T00:27:11Z sjl quit (Ping timeout: 264 seconds) 2016-02-15T00:54:26Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-15T00:56:35Z flavioc_ quit (Ping timeout: 260 seconds) 2016-02-15T01:13:08Z karswell quit (Ping timeout: 256 seconds) 2016-02-15T02:23:13Z sjl joined #sbcl 2016-02-15T03:12:28Z kanru joined #sbcl 2016-02-15T03:36:38Z myrkraverk quit (Remote host closed the connection) 2016-02-15T03:37:08Z myrkraverk joined #sbcl 2016-02-15T05:01:14Z ieure quit (Ping timeout: 272 seconds) 2016-02-15T05:01:18Z whiteline joined #sbcl 2016-02-15T06:41:45Z igajsin joined #sbcl 2016-02-15T06:46:22Z angavrilov joined #sbcl 2016-02-15T07:04:00Z antoszka quit (*.net *.split) 2016-02-15T07:04:00Z p_l quit (*.net *.split) 2016-02-15T07:04:00Z Quadrescence quit (*.net *.split) 2016-02-15T07:04:00Z hitecnologys quit (*.net *.split) 2016-02-15T07:04:00Z jackc- quit (*.net *.split) 2016-02-15T07:04:00Z minion quit (*.net *.split) 2016-02-15T07:04:00Z clop quit (*.net *.split) 2016-02-15T07:04:00Z mordocai quit (*.net *.split) 2016-02-15T07:04:13Z jackc- joined #sbcl 2016-02-15T07:04:19Z minion joined #sbcl 2016-02-15T07:04:19Z p_l joined #sbcl 2016-02-15T07:04:19Z mordocai joined #sbcl 2016-02-15T07:04:19Z hitecnologys joined #sbcl 2016-02-15T07:04:19Z clop joined #sbcl 2016-02-15T07:04:37Z Quadrescence joined #sbcl 2016-02-15T07:05:08Z ASau quit (Ping timeout: 248 seconds) 2016-02-15T07:16:32Z ASau joined #sbcl 2016-02-15T07:50:36Z chu is now known as chu__ 2016-02-15T07:50:50Z chu__ is now known as mwsb 2016-02-15T07:51:01Z Shinmera joined #sbcl 2016-02-15T07:58:52Z DeadTrickster quit (Ping timeout: 256 seconds) 2016-02-15T07:59:00Z clop quit (Ping timeout: 248 seconds) 2016-02-15T08:06:29Z kanru quit (Remote host closed the connection) 2016-02-15T08:07:08Z kanru joined #sbcl 2016-02-15T08:08:48Z clop joined #sbcl 2016-02-15T08:16:47Z wbooze joined #sbcl 2016-02-15T08:17:14Z ASau quit (Ping timeout: 250 seconds) 2016-02-15T08:19:28Z antoszka joined #sbcl 2016-02-15T08:30:11Z DeadTrickster joined #sbcl 2016-02-15T08:30:39Z mwsb is now known as chu 2016-02-15T08:36:04Z ASau joined #sbcl 2016-02-15T08:55:44Z Cymew joined #sbcl 2016-02-15T09:02:32Z stassats joined #sbcl 2016-02-15T09:06:34Z stassats quit (Ping timeout: 240 seconds) 2016-02-15T09:07:27Z stassats joined #sbcl 2016-02-15T09:11:50Z stassats quit (Ping timeout: 260 seconds) 2016-02-15T09:12:34Z ASau quit (Ping timeout: 240 seconds) 2016-02-15T09:15:26Z stassats joined #sbcl 2016-02-15T09:19:16Z sjl quit (Ping timeout: 252 seconds) 2016-02-15T09:28:50Z les joined #sbcl 2016-02-15T09:28:56Z joshe quit (Ping timeout: 260 seconds) 2016-02-15T09:40:56Z Cymew quit (Ping timeout: 240 seconds) 2016-02-15T10:06:13Z sjl joined #sbcl 2016-02-15T10:14:28Z whiteline quit (Ping timeout: 248 seconds) 2016-02-15T10:25:50Z whiteline joined #sbcl 2016-02-15T10:42:59Z Cymew joined #sbcl 2016-02-15T10:51:00Z Cymew quit (Ping timeout: 260 seconds) 2016-02-15T10:55:34Z DGASAU joined #sbcl 2016-02-15T10:59:46Z DeadTrickster quit (Ping timeout: 240 seconds) 2016-02-15T11:03:43Z DeadTrickster joined #sbcl 2016-02-15T11:20:13Z Cymew joined #sbcl 2016-02-15T11:51:04Z stassats: what if bignums were always sign-extended by one additional digit? 2016-02-15T11:51:41Z stassats: that would make things much easier 2016-02-15T11:56:20Z stassats quit (Ping timeout: 260 seconds) 2016-02-15T11:58:30Z stassats joined #sbcl 2016-02-15T12:17:11Z attila_lendvai joined #sbcl 2016-02-15T12:38:26Z sjl quit (Ping timeout: 240 seconds) 2016-02-15T12:39:44Z wbooze quit (Quit: Client Quit) 2016-02-15T12:51:34Z DeadTrickster quit (Ping timeout: 252 seconds) 2016-02-15T12:51:51Z DeadTrickster joined #sbcl 2016-02-15T13:09:34Z eudoxia joined #sbcl 2016-02-15T13:11:18Z sjl joined #sbcl 2016-02-15T13:54:44Z sjl quit (Ping timeout: 256 seconds) 2016-02-15T13:58:04Z sjl joined #sbcl 2016-02-15T14:14:10Z sjl quit (Ping timeout: 250 seconds) 2016-02-15T14:21:22Z myrkraverk_ joined #sbcl 2016-02-15T14:23:16Z les` joined #sbcl 2016-02-15T14:23:43Z mordocai_ joined #sbcl 2016-02-15T14:24:47Z les quit (*.net *.split) 2016-02-15T14:24:48Z mordocai quit (*.net *.split) 2016-02-15T14:24:48Z myrkraverk quit (*.net *.split) 2016-02-15T14:24:48Z jdz quit (*.net *.split) 2016-02-15T14:24:48Z myrkraverk_ is now known as myrkraverk 2016-02-15T14:26:43Z jdz joined #sbcl 2016-02-15T14:42:30Z sjl joined #sbcl 2016-02-15T14:45:39Z eudoxia_ joined #sbcl 2016-02-15T14:46:04Z eudoxia quit (Read error: Connection reset by peer) 2016-02-15T14:46:34Z iloveunix8955 joined #sbcl 2016-02-15T14:46:51Z eudoxia_ quit (Client Quit) 2016-02-15T15:31:04Z Cymew quit (Ping timeout: 252 seconds) 2016-02-15T15:37:55Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-02-15T15:47:05Z Cymew joined #sbcl 2016-02-15T15:51:24Z mordocai_ is now known as mordocai 2016-02-15T15:56:13Z gingerale joined #sbcl 2016-02-15T16:04:12Z iloveunix8955 quit (Read error: Connection reset by peer) 2016-02-15T16:18:54Z ieure joined #sbcl 2016-02-15T16:40:35Z karswell joined #sbcl 2016-02-15T17:40:46Z wmarvel joined #sbcl 2016-02-15T17:55:05Z DGASAU quit (Ping timeout: 260 seconds) 2016-02-15T17:55:46Z DGASAU joined #sbcl 2016-02-15T17:59:58Z iloveunix8955 joined #sbcl 2016-02-15T18:02:07Z lnostdal__ joined #sbcl 2016-02-15T18:05:12Z lnostdal_ quit (Ping timeout: 256 seconds) 2016-02-15T18:06:08Z sjl quit (Ping timeout: 265 seconds) 2016-02-15T18:07:52Z stassats quit (Ping timeout: 250 seconds) 2016-02-15T18:09:19Z stassats joined #sbcl 2016-02-15T18:13:56Z stassats quit (Ping timeout: 248 seconds) 2016-02-15T18:16:16Z stassats joined #sbcl 2016-02-15T18:30:24Z iloveunix8955 quit (Remote host closed the connection) 2016-02-15T18:30:40Z iloveunix8955 joined #sbcl 2016-02-15T18:30:43Z iloveunix8955 quit (Remote host closed the connection) 2016-02-15T18:41:12Z sjl joined #sbcl 2016-02-15T19:11:29Z pkhuong_: stassats: it would... also I wonder how much of a win we'd see with an specialised storage class for 2 word bignuns 2016-02-15T19:13:08Z Cymew quit (Ping timeout: 248 seconds) 2016-02-15T19:15:03Z stassats: there was a problem with bignums poisoning operations on fixnums with unknown types 2016-02-15T19:15:20Z stassats: it's much better now 2016-02-15T19:15:42Z stassats: but bignums themselves are pretty bad still, don't know how often two-word bignums are used 2016-02-15T19:16:21Z stassats: it would improve some stuff, but then again, more dispatching 2016-02-15T19:17:21Z stassats: always extended bignums would allow for a VOP for accessing digits without using bignum-ref, through LDB 2016-02-15T19:19:03Z stassats: can be done with current bignums, but with an additional extension digit it only needs to check that the length is less than the non-extended part 2016-02-15T19:19:58Z stassats: and the extended part can be used to feed the result for if it's beyond the bignum length 2016-02-15T19:21:14Z stassats: so, it'd need just one branch 2016-02-15T19:33:12Z stassats: an interesting way to represent two-word bignums: have the widetag #xFF and header-data all set bits as well, the opposite for zero extended ones 2016-02-15T19:33:19Z stassats: wouldn't really work with our widetag scheme 2016-02-15T19:33:42Z stassats: but would make compact two-word bignums, otherwise two-word bignums would need four words of storage 2016-02-15T19:59:34Z ASau joined #sbcl 2016-02-15T20:50:34Z rpg joined #sbcl 2016-02-15T21:00:09Z flavioc_ joined #sbcl 2016-02-15T21:10:39Z gingerale quit (Remote host closed the connection) 2016-02-15T21:13:56Z DeadTrickster_ joined #sbcl 2016-02-15T21:26:15Z DeadTrickster_ quit (Ping timeout: 260 seconds) 2016-02-15T21:40:54Z angavrilov quit (Remote host closed the connection) 2016-02-15T21:52:01Z hargettp joined #sbcl 2016-02-15T21:55:18Z hargettp quit (Client Quit) 2016-02-15T22:02:44Z ASau quit (Remote host closed the connection) 2016-02-15T22:04:00Z ASau` joined #sbcl 2016-02-15T22:10:48Z rpg_ joined #sbcl 2016-02-15T22:14:52Z rpg quit (Ping timeout: 250 seconds) 2016-02-15T22:15:14Z ababac joined #sbcl 2016-02-15T22:15:50Z rpg_ quit (Ping timeout: 260 seconds) 2016-02-15T22:21:32Z ababac quit (Quit: Page closed) 2016-02-15T22:30:32Z fiddlerwoaroof quit (Ping timeout: 252 seconds) 2016-02-15T22:35:25Z ASau` is now known as ASau 2016-02-15T22:36:53Z fiddlerwoaroof joined #sbcl 2016-02-15T22:39:42Z gko quit (Ping timeout: 252 seconds) 2016-02-15T22:41:18Z gko joined #sbcl 2016-02-15T22:46:25Z rpg joined #sbcl 2016-02-15T22:59:03Z pkhuong_: folklore says most bignum ops are on two words 2016-02-15T22:59:17Z pkhuong_: we could represent them differently within a function and have specialised routines 2016-02-15T23:00:10Z pkhuong_: even if it's only on stack, that's probably a pretty good win versus consing up 65 bit temps 2016-02-15T23:01:03Z stassats: multiple-word inline arithmetic would be interesting, yes 2016-02-15T23:23:53Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-16T00:05:46Z rpg quit (Quit: rpg) 2016-02-16T01:00:08Z stassats quit (Ping timeout: 272 seconds) 2016-02-16T01:14:10Z flavioc_ quit (Ping timeout: 256 seconds) 2016-02-16T01:20:12Z sjl quit (Ping timeout: 250 seconds) 2016-02-16T02:19:56Z adhoc joined #sbcl 2016-02-16T02:26:43Z attila_lendvai quit (Ping timeout: 240 seconds) 2016-02-16T02:47:10Z adhoc left #sbcl 2016-02-16T05:08:42Z pkhuong_: even if it's only on stack, that's probably a pretty good win versus consing up 65 bit temps 2016-02-16T05:08:49Z pkhuong_: sorry bad bits 2016-02-16T06:53:09Z zRecursive joined #sbcl 2016-02-16T06:56:02Z gingerale joined #sbcl 2016-02-16T07:00:30Z zRecursive quit (Ping timeout: 272 seconds) 2016-02-16T07:08:15Z DeadTrickster_ joined #sbcl 2016-02-16T07:19:16Z akkad quit (Quit: Emacs must have died) 2016-02-16T07:23:38Z les` quit (Quit: "") 2016-02-16T07:23:49Z les joined #sbcl 2016-02-16T07:38:48Z myrkraverk quit (Remote host closed the connection) 2016-02-16T07:39:29Z myrkraverk joined #sbcl 2016-02-16T07:44:32Z hitecnologys quit (Ping timeout: 276 seconds) 2016-02-16T07:48:42Z hitecnologys joined #sbcl 2016-02-16T07:56:18Z Cymew joined #sbcl 2016-02-16T08:00:09Z Shinmera joined #sbcl 2016-02-16T08:14:35Z karswell` joined #sbcl 2016-02-16T08:15:17Z karswell quit (Read error: Connection reset by peer) 2016-02-16T09:06:00Z angavrilov joined #sbcl 2016-02-16T09:09:35Z ASau quit (Ping timeout: 240 seconds) 2016-02-16T09:33:26Z wmarvel quit (Quit: Lost terminal) 2016-02-16T09:40:09Z yuankode joined #sbcl 2016-02-16T10:23:09Z antoszka quit (Quit: +++ killed by SIGSEGV +++) 2016-02-16T11:03:42Z sjl joined #sbcl 2016-02-16T11:34:43Z Bike quit (Ping timeout: 240 seconds) 2016-02-16T12:04:12Z attila_lendvai joined #sbcl 2016-02-16T13:53:44Z antoszka joined #sbcl 2016-02-16T13:58:31Z antoszka quit (Client Quit) 2016-02-16T13:58:52Z antoszka joined #sbcl 2016-02-16T14:01:59Z Cymew quit (Ping timeout: 264 seconds) 2016-02-16T14:41:04Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-16T15:00:51Z rpg joined #sbcl 2016-02-16T15:35:51Z reb``` quit (Remote host closed the connection) 2016-02-16T15:47:37Z Bike joined #sbcl 2016-02-16T15:49:44Z nzambe joined #sbcl 2016-02-16T16:13:50Z jlarocco_ joined #sbcl 2016-02-16T16:15:09Z stassats joined #sbcl 2016-02-16T16:19:40Z stassats quit (Ping timeout: 260 seconds) 2016-02-16T16:20:12Z stassats joined #sbcl 2016-02-16T16:24:48Z stassats quit (Ping timeout: 256 seconds) 2016-02-16T16:25:43Z stassats joined #sbcl 2016-02-16T16:29:46Z stassats quit (Ping timeout: 240 seconds) 2016-02-16T16:33:11Z stassats joined #sbcl 2016-02-16T16:37:22Z stassats quit (Ping timeout: 240 seconds) 2016-02-16T16:39:10Z stassats joined #sbcl 2016-02-16T16:46:22Z stassats quit (Ping timeout: 250 seconds) 2016-02-16T16:46:44Z stassats joined #sbcl 2016-02-16T16:58:28Z Fare joined #sbcl 2016-02-16T16:58:45Z Fare: is there any guru here who understands the sbcl linking process? 2016-02-16T17:01:45Z pkhuong_: I don't think we do anything weird? foom had plans, but I don't remember any of it making into trunk. 2016-02-16T17:02:45Z Fare: I don't understand why re-linking works in some cases and not in other cases. 2016-02-16T17:04:28Z stassats quit (Ping timeout: 252 seconds) 2016-02-16T17:04:38Z pkhuong_: oh, slam.sh and all that? 2016-02-16T17:05:09Z pkhuong_ is now known as pkhuong 2016-02-16T17:05:45Z stassats joined #sbcl 2016-02-16T17:06:10Z DeadTrickster_ quit (Ping timeout: 250 seconds) 2016-02-16T17:08:02Z Fare: maybe 2016-02-16T17:08:29Z Fare: I was hoping to reuse an image with a modified sbcl executable that has additional .o things linked in 2016-02-16T17:08:47Z Fare: somehow it (looked like) it worked for me when I did this cffi hack 2016-02-16T17:08:57Z Fare: and it (looks like) it's working at google somehow 2016-02-16T17:09:10Z pkhuong: oh yeah. that's only going to work if every SBCL symbol stays in place. 2016-02-16T17:09:22Z Fare: but when I try to reproduce what worked at google using the opensource bazel, it fails miserably 2016-02-16T17:09:35Z pkhuong: why do you need to reuse the image? 2016-02-16T17:09:41Z Fare: are the symbols all in the .text segment, or also in .data? in .bss ? 2016-02-16T17:09:54Z pkhuong: I'd build sbcl + stuff, then create an image. 2016-02-16T17:10:48Z stassats: there is sb-dynamic-core now 2016-02-16T17:11:00Z Fare: because building the image with an existing sbcl saves 10 minutes in build time everytime, and doesn't require to munge too much with sbcl build scripts 2016-02-16T17:11:12Z Fare: but well, if that's what's required... 2016-02-16T17:11:50Z Fare: stassats: how does that work? maybe I've been missing a step somewhere. 2016-02-16T17:12:22Z stassats: dlsym has to work 2016-02-16T17:12:35Z Fare: yes, it should work 2016-02-16T17:13:08Z stassats: it doesn't by default 2016-02-16T17:13:13Z stassats: needs --export-dynamic 2016-02-16T17:14:21Z Fare: I think I use that. 2016-02-16T17:17:21Z Fare quit (Remote host closed the connection) 2016-02-16T17:18:37Z Fare joined #sbcl 2016-02-16T17:18:53Z Fare: (yay for the X Window interface freezing) 2016-02-16T17:19:46Z stassats quit (Ping timeout: 256 seconds) 2016-02-16T17:20:11Z stassats joined #sbcl 2016-02-16T17:20:28Z mordocai quit (Ping timeout: 250 seconds) 2016-02-16T17:24:15Z stassats quit (Ping timeout: 240 seconds) 2016-02-16T17:24:35Z Fare: I am using -Wl,--export-dynamic indeed. How am I suppose to use --dynamic-core ? 2016-02-16T17:26:44Z stassats joined #sbcl 2016-02-16T17:27:03Z Fare: stassats: I am using -Wl,--export-dynamic indeed. How am I suppose to use --dynamic-core ? 2016-02-16T17:27:11Z Fare: it seems to be missing from the sbcl man page. 2016-02-16T17:28:55Z mordocai joined #sbcl 2016-02-16T17:31:06Z stassats quit (Ping timeout: 256 seconds) 2016-02-16T17:32:14Z stassats joined #sbcl 2016-02-16T17:36:02Z sjl quit (Ping timeout: 276 seconds) 2016-02-16T17:36:46Z stassats quit (Ping timeout: 256 seconds) 2016-02-16T17:39:12Z stassats joined #sbcl 2016-02-16T17:43:32Z stassats quit (Ping timeout: 248 seconds) 2016-02-16T17:44:11Z stassats joined #sbcl 2016-02-16T17:48:46Z stassats quit (Ping timeout: 250 seconds) 2016-02-16T17:50:13Z stassats joined #sbcl 2016-02-16T17:54:45Z stassats quit (Ping timeout: 260 seconds) 2016-02-16T17:55:15Z stassats joined #sbcl 2016-02-16T17:55:33Z rpg quit (Quit: rpg) 2016-02-16T18:01:27Z Shinmera joined #sbcl 2016-02-16T18:06:41Z Fare: both the google and cffi-toolchain work without keeping sbcl addresses at the exact same place when the runtime is re-linked, so I'll assume they properly use --export-dynamic and --dynamic-core 2016-02-16T18:08:08Z Fare: though I don't see either using --dynamic-core (maybe it's somehow the default?) 2016-02-16T18:08:42Z Fare: oh, maybe the issue is that :sb-dynamic-core isn't the default in the tarball, and I need to override the features somehow? 2016-02-16T18:08:54Z Fare: that would make sense... 2016-02-16T18:09:55Z Fare: yup 2016-02-16T18:09:59Z Fare: thanks! 2016-02-16T18:13:10Z sjl joined #sbcl 2016-02-16T18:25:28Z reb joined #sbcl 2016-02-16T18:35:35Z Fare quit (Ping timeout: 240 seconds) 2016-02-16T18:47:59Z DeadTrickster_ joined #sbcl 2016-02-16T18:54:16Z Fare joined #sbcl 2016-02-16T19:00:00Z Fare: IT WORKED! IT WORKED! 2016-02-16T19:00:23Z Fare: I wasted so many brain cycles on it, and the solution was just to use :sb-dynamic-core 2016-02-16T19:00:31Z Fare: stassats: thanks, again 2016-02-16T19:02:36Z flavioc_ joined #sbcl 2016-02-16T19:27:50Z sjl quit (Ping timeout: 276 seconds) 2016-02-16T19:42:32Z p_l: .... relocatable SBCL? 2016-02-16T19:56:10Z DeadTrickster_ quit (Ping timeout: 256 seconds) 2016-02-16T19:57:25Z rpg joined #sbcl 2016-02-16T20:05:46Z akkad joined #sbcl 2016-02-16T20:07:38Z ASau joined #sbcl 2016-02-16T20:18:45Z Fare: :sb-dynamic-core 2016-02-16T20:18:53Z Fare: see http://github.com/qitab/bazelisp 2016-02-16T21:03:07Z angavrilov quit (Remote host closed the connection) 2016-02-16T21:20:18Z scymtym joined #sbcl 2016-02-16T21:21:40Z gingerale quit (Remote host closed the connection) 2016-02-16T21:29:25Z Fare quit (Ping timeout: 260 seconds) 2016-02-16T21:43:14Z rpg quit (Quit: rpg) 2016-02-17T10:11:05Z ccl-logbot joined #sbcl 2016-02-17T10:11:05Z 2016-02-17T10:11:05Z names: ccl-logbot jlarocco_ Cooler_ drmeister dustinm` pootler_ jdz ASau fe[nl]ix Blkt yuankode jsnell luis Guest11420 specbot jackdaniel Shinmera Cymew angavrilov DeadTrickster_ lnostdal_ whiteline chris2 carvite loke mordocai_ pchrist_ frankS2 joshe akkad reb Bike antoszka karswell` hitecnologys myrkraverk les gko fiddlerwoaroof DGASAU ieure DeadTrickster mood chu White_Flame salva Intensity Ober |3b| brucem yauz_2 scymtym_ nicdev christoph_debian _iwc 2016-02-17T10:11:05Z names: PuercoPop psilord ferada abbe_ dim Posterdati Xof dougk_ foom dsp- flip214 yvm sigjuice ralt irsol leo_song minion p_l jackc- Quadrescence kanru clop 2016-02-17T10:12:58Z pchrist_ is now known as pchrist 2016-02-17T10:16:16Z ASau quit (Ping timeout: 252 seconds) 2016-02-17T10:34:19Z carvite quit (Quit: leaving) 2016-02-17T10:34:55Z carvite joined #sbcl 2016-02-17T10:49:25Z yuankode quit (*.net *.split) 2016-02-17T10:49:26Z Shinmera quit (*.net *.split) 2016-02-17T10:49:26Z angavrilov quit (*.net *.split) 2016-02-17T10:49:27Z fiddlerwoaroof quit (*.net *.split) 2016-02-17T10:49:28Z Quadrescence quit (*.net *.split) 2016-02-17T10:49:28Z irsol quit (*.net *.split) 2016-02-17T10:49:28Z dsp- quit (*.net *.split) 2016-02-17T10:49:29Z dim quit (*.net *.split) 2016-02-17T10:49:29Z abbe_ quit (*.net *.split) 2016-02-17T10:49:29Z PuercoPop quit (*.net *.split) 2016-02-17T10:49:30Z brucem quit (*.net *.split) 2016-02-17T10:49:30Z |3b| quit (*.net *.split) 2016-02-17T10:49:30Z chu quit (*.net *.split) 2016-02-17T10:49:43Z yuankode joined #sbcl 2016-02-17T10:49:45Z abbe joined #sbcl 2016-02-17T10:49:48Z brucem joined #sbcl 2016-02-17T10:49:52Z dsp- joined #sbcl 2016-02-17T10:50:00Z fiddlerwoaroof joined #sbcl 2016-02-17T10:50:01Z Shinmera joined #sbcl 2016-02-17T10:50:02Z Quadrescence joined #sbcl 2016-02-17T10:50:10Z angavrilov joined #sbcl 2016-02-17T10:50:11Z dim joined #sbcl 2016-02-17T10:50:27Z irsol joined #sbcl 2016-02-17T10:51:33Z PuercoPop joined #sbcl 2016-02-17T10:52:59Z |3b| joined #sbcl 2016-02-17T10:55:16Z brucem quit (Changing host) 2016-02-17T10:55:16Z brucem joined #sbcl 2016-02-17T10:56:04Z chu joined #sbcl 2016-02-17T11:04:15Z |3b| quit (*.net *.split) 2016-02-17T11:04:15Z irsol quit (*.net *.split) 2016-02-17T11:04:15Z brucem quit (*.net *.split) 2016-02-17T11:04:15Z dim quit (*.net *.split) 2016-02-17T11:04:16Z abbe quit (*.net *.split) 2016-02-17T11:04:16Z Cooler_ quit (*.net *.split) 2016-02-17T11:04:16Z pootler_ quit (*.net *.split) 2016-02-17T11:04:16Z fe[nl]ix quit (*.net *.split) 2016-02-17T11:04:16Z Blkt quit (*.net *.split) 2016-02-17T11:04:17Z luis quit (*.net *.split) 2016-02-17T11:04:18Z frankS2 quit (*.net *.split) 2016-02-17T11:04:19Z gko quit (*.net *.split) 2016-02-17T11:04:20Z kanru quit (*.net *.split) 2016-02-17T11:04:20Z minion quit (*.net *.split) 2016-02-17T11:04:22Z scymtym_ quit (*.net *.split) 2016-02-17T11:04:24Z minion joined #sbcl 2016-02-17T11:04:27Z fe[nl]ix joined #sbcl 2016-02-17T11:04:27Z Blkt joined #sbcl 2016-02-17T11:04:28Z abbe joined #sbcl 2016-02-17T11:04:38Z Cooler_ joined #sbcl 2016-02-17T11:04:42Z luis joined #sbcl 2016-02-17T11:04:43Z dim joined #sbcl 2016-02-17T11:04:47Z brucem joined #sbcl 2016-02-17T11:04:59Z irsol joined #sbcl 2016-02-17T11:05:31Z scymtym_ joined #sbcl 2016-02-17T11:07:14Z |3b| joined #sbcl 2016-02-17T11:07:20Z gko joined #sbcl 2016-02-17T11:13:28Z frankS2 joined #sbcl 2016-02-17T11:15:00Z pootler_ joined #sbcl 2016-02-17T11:18:28Z DeadTrickster_ quit (Ping timeout: 248 seconds) 2016-02-17T11:34:07Z sjl joined #sbcl 2016-02-17T11:39:56Z jsnell quit (*.net *.split) 2016-02-17T11:39:56Z whiteline quit (*.net *.split) 2016-02-17T11:39:57Z Bike quit (*.net *.split) 2016-02-17T11:39:57Z jackc- quit (*.net *.split) 2016-02-17T11:39:58Z flip214 quit (*.net *.split) 2016-02-17T11:39:58Z psilord quit (*.net *.split) 2016-02-17T11:40:03Z jsnell joined #sbcl 2016-02-17T11:40:05Z flip214 joined #sbcl 2016-02-17T11:40:05Z flip214 quit (Changing host) 2016-02-17T11:40:05Z flip214 joined #sbcl 2016-02-17T11:40:12Z jackc- joined #sbcl 2016-02-17T11:40:31Z Bike joined #sbcl 2016-02-17T11:42:23Z whiteline joined #sbcl 2016-02-17T11:42:52Z psilord joined #sbcl 2016-02-17T11:50:22Z jlarocco_ quit (*.net *.split) 2016-02-17T11:50:23Z Cymew quit (*.net *.split) 2016-02-17T11:50:24Z ieure quit (*.net *.split) 2016-02-17T11:50:25Z yvm quit (*.net *.split) 2016-02-17T11:50:27Z salva quit (*.net *.split) 2016-02-17T11:50:27Z Intensity quit (*.net *.split) 2016-02-17T11:50:27Z Ober quit (*.net *.split) 2016-02-17T11:50:28Z Ober joined #sbcl 2016-02-17T11:50:47Z salva joined #sbcl 2016-02-17T11:50:50Z yvm joined #sbcl 2016-02-17T11:51:21Z Cymew joined #sbcl 2016-02-17T11:53:13Z jlarocco_ joined #sbcl 2016-02-17T11:59:14Z flip214 quit (*.net *.split) 2016-02-17T11:59:15Z Cooler_ quit (*.net *.split) 2016-02-17T11:59:16Z carvite quit (*.net *.split) 2016-02-17T11:59:17Z specbot quit (*.net *.split) 2016-02-17T11:59:17Z jackdaniel quit (*.net *.split) 2016-02-17T11:59:18Z lnostdal_ quit (*.net *.split) 2016-02-17T11:59:22Z yauz_2 quit (*.net *.split) 2016-02-17T11:59:24Z White_Flame quit (*.net *.split) 2016-02-17T11:59:24Z leo_song quit (*.net *.split) 2016-02-17T11:59:35Z White_Flame joined #sbcl 2016-02-17T11:59:36Z jackdaniel joined #sbcl 2016-02-17T11:59:40Z lnostdal_ joined #sbcl 2016-02-17T12:00:07Z carvite joined #sbcl 2016-02-17T12:00:08Z specbot joined #sbcl 2016-02-17T12:00:22Z leo_song joined #sbcl 2016-02-17T12:02:58Z Cooler_ joined #sbcl 2016-02-17T12:04:02Z Intensity joined #sbcl 2016-02-17T12:04:07Z Intensity quit (Max SendQ exceeded) 2016-02-17T12:04:21Z Intensity joined #sbcl 2016-02-17T12:04:26Z yauz joined #sbcl 2016-02-17T12:04:28Z flip214 joined #sbcl 2016-02-17T12:04:28Z flip214 quit (Changing host) 2016-02-17T12:04:28Z flip214 joined #sbcl 2016-02-17T12:04:30Z ieure joined #sbcl 2016-02-17T12:05:06Z chris2 quit (Ping timeout: 250 seconds) 2016-02-17T12:15:13Z chris2 joined #sbcl 2016-02-17T12:24:52Z Cooler_ quit (*.net *.split) 2016-02-17T12:24:53Z Bike quit (*.net *.split) 2016-02-17T12:24:53Z frankS2 quit (*.net *.split) 2016-02-17T12:24:53Z gko quit (*.net *.split) 2016-02-17T12:24:54Z |3b| quit (*.net *.split) 2016-02-17T12:24:57Z drmeister quit (*.net *.split) 2016-02-17T12:25:01Z joshe quit (*.net *.split) 2016-02-17T12:25:01Z akkad quit (*.net *.split) 2016-02-17T12:25:02Z les quit (*.net *.split) 2016-02-17T12:25:04Z foom quit (*.net *.split) 2016-02-17T12:25:05Z dougk_ quit (*.net *.split) 2016-02-17T12:25:13Z joshe joined #sbcl 2016-02-17T12:25:16Z foom joined #sbcl 2016-02-17T12:25:19Z Cooler_ joined #sbcl 2016-02-17T12:25:20Z 21WAAAGDI joined #sbcl 2016-02-17T12:25:29Z les joined #sbcl 2016-02-17T12:25:29Z Bike joined #sbcl 2016-02-17T12:26:17Z |3b| joined #sbcl 2016-02-17T12:26:20Z gko joined #sbcl 2016-02-17T12:32:09Z jackc- quit (*.net *.split) 2016-02-17T12:32:09Z jsnell quit (*.net *.split) 2016-02-17T12:32:09Z sjl quit (*.net *.split) 2016-02-17T12:32:11Z brucem quit (*.net *.split) 2016-02-17T12:32:13Z PuercoPop quit (*.net *.split) 2016-02-17T12:32:16Z dustinm` quit (*.net *.split) 2016-02-17T12:32:17Z Guest11420 quit (*.net *.split) 2016-02-17T12:32:19Z pchrist quit (*.net *.split) 2016-02-17T12:32:21Z myrkraverk quit (*.net *.split) 2016-02-17T12:32:21Z DGASAU quit (*.net *.split) 2016-02-17T12:32:22Z p_l quit (*.net *.split) 2016-02-17T12:32:23Z sigjuice quit (*.net *.split) 2016-02-17T12:32:24Z ferada quit (*.net *.split) 2016-02-17T12:32:25Z _iwc quit (*.net *.split) 2016-02-17T12:32:25Z christoph_debian quit (*.net *.split) 2016-02-17T12:32:25Z nicdev quit (*.net *.split) 2016-02-17T12:32:27Z nicdev` joined #sbcl 2016-02-17T12:32:28Z jackc- joined #sbcl 2016-02-17T12:32:31Z p_l joined #sbcl 2016-02-17T12:32:33Z DGASAU` joined #sbcl 2016-02-17T12:32:38Z pchrist_ joined #sbcl 2016-02-17T12:32:41Z PuercoPop joined #sbcl 2016-02-17T12:32:49Z ferada joined #sbcl 2016-02-17T12:32:57Z brucem_ joined #sbcl 2016-02-17T12:33:00Z jsnell joined #sbcl 2016-02-17T12:33:04Z dustinm` joined #sbcl 2016-02-17T12:33:10Z christoph_debian joined #sbcl 2016-02-17T12:33:13Z myrkraverk joined #sbcl 2016-02-17T12:33:15Z pkhuong joined #sbcl 2016-02-17T12:33:15Z akkad joined #sbcl 2016-02-17T12:33:26Z sjl joined #sbcl 2016-02-17T12:33:38Z sigjuice joined #sbcl 2016-02-17T12:33:43Z pkhuong is now known as Guest31445 2016-02-17T12:40:44Z DGASAU` is now known as DGASAU 2016-02-17T12:41:02Z frankS2 joined #sbcl 2016-02-17T12:42:54Z _iwc joined #sbcl 2016-02-17T12:46:59Z leo_song quit (Ping timeout: 248 seconds) 2016-02-17T12:47:30Z attila_lendvai joined #sbcl 2016-02-17T12:47:30Z attila_lendvai quit (Changing host) 2016-02-17T12:47:30Z attila_lendvai joined #sbcl 2016-02-17T13:06:42Z drmeister joined #sbcl 2016-02-17T13:08:50Z drmeister quit (K-Lined) 2016-02-17T13:10:11Z DeadTrickster_ joined #sbcl 2016-02-17T13:23:49Z edgar-rft joined #sbcl 2016-02-17T13:33:08Z myrkraverk: Does SBCL have a package or some interface I can use to implement remote debugging (without slime)? 2016-02-17T13:33:34Z myrkraverk: Or will I just have to use either slime, or its remote protocol? 2016-02-17T13:44:08Z myrkraverk: Well, at worst, I can always look at the source for the interactive debugger. 2016-02-17T13:51:32Z DeadTrickster_ quit (Ping timeout: 248 seconds) 2016-02-17T13:58:24Z brucem_ is now known as brucem 2016-02-17T13:58:26Z brucem quit (Changing host) 2016-02-17T13:58:26Z brucem joined #sbcl 2016-02-17T14:04:21Z leo_song joined #sbcl 2016-02-17T14:08:06Z ferada quit (Quit: leaving) 2016-02-17T14:09:48Z ferada joined #sbcl 2016-02-17T14:23:32Z Cymew quit (Ping timeout: 248 seconds) 2016-02-17T14:37:23Z frankS2 quit (Ping timeout: 268 seconds) 2016-02-17T14:39:55Z scymtym_ quit (Remote host closed the connection) 2016-02-17T14:40:14Z frankS2 joined #sbcl 2016-02-17T14:52:44Z scymtym_ joined #sbcl 2016-02-17T14:52:49Z drmeister joined #sbcl 2016-02-17T15:21:07Z |3b| quit (Remote host closed the connection) 2016-02-17T15:21:07Z nicdev` quit (Remote host closed the connection) 2016-02-17T15:21:36Z nicdev` joined #sbcl 2016-02-17T15:24:48Z |3b| joined #sbcl 2016-02-17T15:43:45Z reb: myrkraverk: I don't believe SBCL has a remote debugging API. Slime communicates with Lisps using a protocol called Swank. There's a Lisp client implementation if that helps you: https://github.com/brown/swank-client 2016-02-17T15:54:35Z mordocai_ is now known as mordocai 2016-02-17T15:55:57Z stassats joined #sbcl 2016-02-17T16:00:20Z myrkraverk: Ok, thanks you. 2016-02-17T16:08:13Z stassats quit (Ping timeout: 255 seconds) 2016-02-17T16:09:29Z stassats joined #sbcl 2016-02-17T16:13:55Z stassats quit (Ping timeout: 248 seconds) 2016-02-17T16:16:18Z sjl quit (Ping timeout: 250 seconds) 2016-02-17T16:17:30Z stassats joined #sbcl 2016-02-17T16:21:56Z stassats quit (Ping timeout: 250 seconds) 2016-02-17T16:22:30Z stassats joined #sbcl 2016-02-17T16:48:49Z fiddlerwoaroof quit (Quit: WeeChat 1.5-dev) 2016-02-17T17:15:49Z gingerale joined #sbcl 2016-02-17T17:17:55Z yuankode quit (Ping timeout: 248 seconds) 2016-02-17T17:23:02Z stassats quit (Ping timeout: 250 seconds) 2016-02-17T17:25:33Z stassats joined #sbcl 2016-02-17T17:30:02Z stassats quit (Ping timeout: 244 seconds) 2016-02-17T17:30:18Z nicdev` quit (Remote host closed the connection) 2016-02-17T17:30:18Z scymtym_ quit (Write error: Broken pipe) 2016-02-17T17:30:33Z scymtym_ joined #sbcl 2016-02-17T17:30:42Z nicdev`` joined #sbcl 2016-02-17T17:32:44Z abbe quit (Read error: Connection reset by peer) 2016-02-17T17:32:52Z abbe joined #sbcl 2016-02-17T17:33:05Z stassats joined #sbcl 2016-02-17T17:33:14Z sigjuice quit (Ping timeout: 240 seconds) 2016-02-17T17:34:05Z pootler_ quit (Read error: Connection reset by peer) 2016-02-17T17:34:30Z |3b|` joined #sbcl 2016-02-17T17:34:49Z dustinm` quit (Ping timeout: 240 seconds) 2016-02-17T17:35:38Z brucem quit (Ping timeout: 240 seconds) 2016-02-17T17:36:01Z 21WAAAGDI quit (Ping timeout: 240 seconds) 2016-02-17T17:37:37Z |3b| quit (Ping timeout: 240 seconds) 2016-02-17T17:39:13Z sigjuice joined #sbcl 2016-02-17T17:39:22Z pootler_ joined #sbcl 2016-02-17T17:39:35Z dougk_ joined #sbcl 2016-02-17T17:39:54Z brucem joined #sbcl 2016-02-17T17:40:01Z dustinm` joined #sbcl 2016-02-17T17:54:03Z nzambe joined #sbcl 2016-02-17T18:31:42Z DeadTrickster_ joined #sbcl 2016-02-17T19:19:27Z |3b|` is now known as |3b| 2016-02-17T20:37:14Z sjl joined #sbcl 2016-02-17T20:50:17Z lnostdal_ quit (Read error: Connection reset by peer) 2016-02-17T20:57:36Z gingerale quit (Remote host closed the connection) 2016-02-17T21:01:01Z Bicyclidine joined #sbcl 2016-02-17T21:02:12Z ASau joined #sbcl 2016-02-17T21:06:59Z DeadTrickster_ quit (Ping timeout: 240 seconds) 2016-02-17T21:09:46Z prxq joined #sbcl 2016-02-17T22:06:27Z Bicyclidine quit (Ping timeout: 244 seconds) 2016-02-17T22:08:21Z Bicyclidine joined #sbcl 2016-02-17T22:14:59Z Bicyclidine quit (Ping timeout: 248 seconds) 2016-02-17T22:16:37Z Bicyclidine joined #sbcl 2016-02-17T22:31:46Z attila_lendvai: myrkraverk: there's also http://www.cliki.net/conium (basically swank as a supported standalone project) 2016-02-17T22:38:07Z lnostdal joined #sbcl 2016-02-17T22:51:27Z jdz quit (Ping timeout: 264 seconds) 2016-02-17T22:51:35Z jdz joined #sbcl 2016-02-17T23:13:27Z sjl quit (Quit: WeeChat 1.3) 2016-02-17T23:20:02Z ASau quit (Remote host closed the connection) 2016-02-17T23:20:31Z ASau joined #sbcl 2016-02-17T23:20:59Z prxq quit (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2016-02-17T23:33:32Z stassats quit (Ping timeout: 265 seconds) 2016-02-17T23:49:48Z angavrilov quit (Remote host closed the connection) 2016-02-17T23:57:56Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-18T00:03:31Z brucem quit (Changing host) 2016-02-18T00:03:31Z brucem joined #sbcl 2016-02-18T00:40:16Z Bicyclidine quit (Ping timeout: 250 seconds) 2016-02-18T01:06:44Z whiteline quit (Ping timeout: 248 seconds) 2016-02-18T01:37:08Z Bicyclidine joined #sbcl 2016-02-18T01:46:33Z edgar-rft quit (Quit: edgar-rft) 2016-02-18T03:07:54Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-02-18T03:57:40Z leo_song quit (Quit: ZNC quit) 2016-02-18T03:58:56Z Bicyclidine quit (Quit: leaving) 2016-02-18T04:12:22Z leo_song joined #sbcl 2016-02-18T05:22:36Z karswell` quit (Remote host closed the connection) 2016-02-18T05:26:03Z whiteline joined #sbcl 2016-02-18T06:04:14Z brucem quit (Ping timeout: 268 seconds) 2016-02-18T06:04:56Z |3b|` joined #sbcl 2016-02-18T06:06:04Z brucem joined #sbcl 2016-02-18T06:06:05Z |3b| quit (Ping timeout: 268 seconds) 2016-02-18T06:07:43Z |3b|` is now known as |3b| 2016-02-18T06:15:57Z brucem quit (Changing host) 2016-02-18T06:15:57Z brucem joined #sbcl 2016-02-18T07:08:23Z DeadTrickster_ joined #sbcl 2016-02-18T07:21:35Z DeadTrickster quit (Read error: No route to host) 2016-02-18T07:30:52Z myrkraverk quit (Remote host closed the connection) 2016-02-18T07:31:46Z myrkraverk joined #sbcl 2016-02-18T07:34:23Z angavrilov joined #sbcl 2016-02-18T07:38:18Z myrkraverk: Whoever mentioned conium, thank you. 2016-02-18T07:39:37Z zRecursive joined #sbcl 2016-02-18T08:23:45Z scymtym joined #sbcl 2016-02-18T08:32:13Z scymtym quit (Remote host closed the connection) 2016-02-18T08:38:29Z zRecursive quit (Remote host closed the connection) 2016-02-18T08:38:35Z scymtym joined #sbcl 2016-02-18T08:49:27Z DeadTrickster joined #sbcl 2016-02-18T09:46:08Z Shinmera joined #sbcl 2016-02-18T10:08:03Z ASau quit (Ping timeout: 248 seconds) 2016-02-18T10:19:25Z stassats joined #sbcl 2016-02-18T10:52:27Z attila_lendvai joined #sbcl 2016-02-18T10:52:27Z attila_lendvai quit (Changing host) 2016-02-18T10:52:27Z attila_lendvai joined #sbcl 2016-02-18T11:53:24Z yvm quit (Quit: Leaving) 2016-02-18T11:53:45Z yvm joined #sbcl 2016-02-18T11:54:36Z kanru joined #sbcl 2016-02-18T12:16:04Z leo_song: I found sb-ext:save-lisp-and-die got “Heap exhausted, game over.” error with massive arrays in memory. 2016-02-18T12:16:19Z leo_song: I'm not sure if it is a known bug. 2016-02-18T12:17:25Z leo_song: It crashes on SBCL 1.3.2 and 1.2.4(Debian) 2016-02-18T12:17:49Z leo_song: Here is my test code: https://cfp.vim-cn.com/ccv4 2016-02-18T12:38:00Z scymtym_: leo_song: assuming you are on x86_64, those arrays take up more than 360 MB of heap space. SBCL itself (and maybe a few other things loaded into your image) take up another 70 MB or more. The default heap size on x86_64 is around 1 GB. so the system is near 50 % heap usage after allocating those arrays. since SBCL uses a copying garbage collector, it needs lots of free heap space to perform a gc. in the context of 2016-02-18T12:38:00Z scymtym_: sb-ext:save-lisp-and-die, SBCL runs out of heap while gcing. 2016-02-18T12:38:19Z scymtym_: no sure whether that should be considered a bug or not 2016-02-18T12:38:52Z scymtym_: what you can do is add a commandline option like --dynamic-space-size 2GB to increase the heap size 2016-02-18T12:39:51Z Xof: I thought you wouldn't need to move large arrays 2016-02-18T12:40:28Z scymtym_: forget what i said, then 2016-02-18T12:40:45Z jsnell: s-l-a-d moves everything (twice) 2016-02-18T12:40:52Z Xof: there you go then 2016-02-18T12:41:01Z Xof: I thought wrong 2016-02-18T12:41:20Z scymtym_: i was just going whether, maybe that could the difference between gc and s-l-a-d in the paste :) 2016-02-18T12:41:24Z Xof: oh, reminds me: should we try to be a GSoC organization this year? Deadline tomorrow 2016-02-18T12:41:29Z scymtym_: s/going/going to ask/ 2016-02-18T12:41:31Z jsnell: well, in all honesty I'm talking about what the situation was a decade ago! 2016-02-18T12:43:14Z jsnell: right, s-l-a-d as I remember it first forces a non-conservative(!) collection into the upper half of the heap. this guarantees that the lower half is empty. it then does another collection, which will fill the lower half of the heap with no fragmentation 2016-02-18T12:43:28Z scymtym_: Xof: has there been feedback for last year's rejection? 2016-02-18T12:51:15Z DeadTrickster_ quit (Ping timeout: 248 seconds) 2016-02-18T12:52:58Z stassats quit (Ping timeout: 265 seconds) 2016-02-18T12:54:20Z stassats joined #sbcl 2016-02-18T12:57:16Z leo_song: I tried `/usr/bin/sbcl --no-userinit --load heap_test.lisp --dynamic-space-size 2GB`, but it still crashes and report "Heap exhausted, game over." 2016-02-18T12:58:38Z stassats quit (Ping timeout: 250 seconds) 2016-02-18T12:59:20Z stassats joined #sbcl 2016-02-18T12:59:35Z leo_song: I also found a dirty hack: delete the 2 "prepare_for_final_gc();" around line 4766 in the file "./src/runtime/gencgc.c" 2016-02-18T12:59:53Z leo_song: And compile SBCL again 2016-02-18T13:01:15Z leo_song: I mean the whole: 2016-02-18T13:01:15Z leo_song: prepare_for_final_gc(); 2016-02-18T13:01:15Z leo_song: gencgc_alloc_start_page = last_free_page; 2016-02-18T13:01:15Z leo_song: collect_garbage(HIGHEST_NORMAL_GENERATION+1); 2016-02-18T13:01:15Z leo_song: prepare_for_final_gc(); 2016-02-18T13:01:15Z leo_song: gencgc_alloc_start_page = -1; 2016-02-18T13:01:15Z leo_song: collect_garbage(HIGHEST_NORMAL_GENERATION+1); 2016-02-18T13:01:16Z leo_song: should be deleted. 2016-02-18T13:02:35Z leo_song: the "patched" version works well with my program with heavy arrays. 2016-02-18T13:03:50Z stassats quit (Ping timeout: 250 seconds) 2016-02-18T13:07:35Z scymtym_: leo_song: SBCL partitions commandline options into 1) runtime options, 2) toplevel options and 3) user options. commandline arguments have to adhere to this order (see man sbcl). in your case, --dynamic-space-size 2GB has to appear before the other arguments. 2016-02-18T13:07:50Z stassats joined #sbcl 2016-02-18T13:08:59Z leo_song quit (Ping timeout: 240 seconds) 2016-02-18T13:09:05Z Xof: scymtym_: just that it was time to give some others a go 2016-02-18T13:14:25Z stassats quit (Ping timeout: 240 seconds) 2016-02-18T13:15:50Z scymtym_: Xof: thanks. not the most helpful feedback when deciding whether to apply again, though 2016-02-18T13:15:53Z stassats joined #sbcl 2016-02-18T13:20:11Z leo_song joined #sbcl 2016-02-18T13:20:22Z stassats quit (Ping timeout: 255 seconds) 2016-02-18T13:20:52Z stassats joined #sbcl 2016-02-18T13:25:05Z stassats quit (Ping timeout: 244 seconds) 2016-02-18T13:26:23Z stassats joined #sbcl 2016-02-18T13:53:56Z psilord quit (Quit: Leaving.) 2016-02-18T14:05:54Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-02-18T14:31:53Z edgar-rft joined #sbcl 2016-02-18T14:44:08Z Posterdati: hi 2016-02-18T14:44:45Z Posterdati: I've got problem compiling slime-2.14 on sbcl 1.3.2.86: Symbol *ASSEM-INSTRUCTIONS* not found in the SB-ASSEM package 2016-02-18T14:46:45Z scymtym_: Posterdati: this has been changed in SBCL recent. you probably have to update slime. 2016-02-18T14:47:12Z Posterdati: I taken the one from quicklisp repository 2016-02-18T14:49:08Z scymtym_: when this was discussed in #lisp, the slime fix wasn't available in quicklisp 2016-02-18T14:49:13Z scymtym_: that may still be the case 2016-02-18T14:50:51Z Posterdati: it seems there's still no fix 2016-02-18T14:53:01Z scymtym_: i think it was fixed in https://github.com/slime/slime/commit/cac99fa29bad856be2c96146f38c2a457b1d4ab7 2016-02-18T14:53:27Z Posterdati: not in the quicklisp repository version 2016-02-18T14:53:52Z Cymew joined #sbcl 2016-02-18T14:54:13Z scymtym_: yes, that is possible, that's what i was trying to say 2016-02-18T14:54:36Z Posterdati: ok 2016-02-18T14:54:43Z Posterdati: I saw there's a 2.16 2016-02-18T15:16:25Z karswell` joined #sbcl 2016-02-18T15:16:29Z scymtym quit (Ping timeout: 240 seconds) 2016-02-18T15:23:48Z Posterdati: scymtym_: your hint worked 2016-02-18T15:23:54Z Posterdati: scymtym_: thanks 2016-02-18T15:39:25Z Cymew quit (Ping timeout: 244 seconds) 2016-02-18T15:46:15Z psilord joined #sbcl 2016-02-18T15:48:48Z Guest31445: leo_song: yeah, knownish issue. I don't think your fix is a good plan in general. 2016-02-18T15:48:51Z Guest31445 is now known as pkhuong 2016-02-18T16:16:45Z karswell` is now known as karswell 2016-02-18T16:46:35Z stassats: leo_song: you used --dynamic-space-size wrong 2016-02-18T16:46:40Z stassats: leo_song: it should go before --load 2016-02-18T16:46:57Z stassats: oh, that was already suggested 2016-02-18T16:48:45Z stassats: Posterdati: 2.16 doesn't have the fix, quicklisp doesn't have 2.16 2016-02-18T17:06:38Z Posterdati: stassats: I saw that already :( 2016-02-18T17:13:31Z gingerale joined #sbcl 2016-02-18T17:17:26Z scymtym joined #sbcl 2016-02-18T18:01:40Z lnostdal_ joined #sbcl 2016-02-18T18:05:41Z lnostdal quit (Ping timeout: 265 seconds) 2016-02-18T18:25:06Z Bicyclidine joined #sbcl 2016-02-18T18:57:02Z carvite quit (Ping timeout: 250 seconds) 2016-02-18T19:02:02Z yuankode joined #sbcl 2016-02-18T19:05:16Z carvite joined #sbcl 2016-02-18T19:20:03Z prxq joined #sbcl 2016-02-18T19:28:35Z flip214 quit (Ping timeout: 248 seconds) 2016-02-18T19:35:28Z flip214 joined #sbcl 2016-02-18T19:51:34Z Bicyclidine quit (Ping timeout: 240 seconds) 2016-02-18T19:58:32Z Bicyclidine joined #sbcl 2016-02-18T20:09:32Z flip214_ joined #sbcl 2016-02-18T20:12:02Z flip214 quit (Ping timeout: 255 seconds) 2016-02-18T20:12:02Z akkad quit (Ping timeout: 255 seconds) 2016-02-18T20:12:03Z salva quit (Ping timeout: 255 seconds) 2016-02-18T20:12:04Z DeadTrickster quit (Ping timeout: 255 seconds) 2016-02-18T20:12:04Z whiteline quit (Ping timeout: 255 seconds) 2016-02-18T20:12:54Z whiteline joined #sbcl 2016-02-18T20:13:09Z DeadTrickster joined #sbcl 2016-02-18T20:13:20Z akkad joined #sbcl 2016-02-18T20:14:55Z salva joined #sbcl 2016-02-18T20:44:13Z attila_lendvai joined #sbcl 2016-02-18T20:56:20Z prxq quit (Remote host closed the connection) 2016-02-18T20:58:28Z ASau joined #sbcl 2016-02-18T21:06:43Z scymtym quit (Ping timeout: 248 seconds) 2016-02-18T21:08:15Z angavrilov quit (Remote host closed the connection) 2016-02-18T21:16:01Z Bicyclidine quit (Ping timeout: 240 seconds) 2016-02-18T21:18:00Z Bicyclidine joined #sbcl 2016-02-18T21:31:06Z gingerale quit (Remote host closed the connection) 2016-02-18T21:35:50Z |3b|: hmm, failed AVER: (NULL SB-C::CURRENT) http://paste.lisp.org/+6LD5 2016-02-18T21:36:31Z stassats: compile-file within compile-file 2016-02-18T21:36:50Z |3b|: ah 2016-02-18T21:37:09Z stassats: with an error in the inner one 2016-02-18T21:37:15Z |3b|: is that not allowed, or just something that confuses sbcl? 2016-02-18T21:37:20Z stassats: the latter 2016-02-18T21:37:28Z stassats: "can't be bothered to fix it" kind 2016-02-18T21:37:44Z |3b|: yeah, sounds reasonable 2016-02-18T21:37:59Z |3b|: and i guess compile-file twice is what confuses it so it errors 2016-02-18T21:38:31Z |3b|: (the .asd file that errors tries to open a file based on *compile-file-pathname* or *load-truename*) 2016-02-18T21:39:03Z |3b|: or i guess compile-file once, at that point? 2016-02-18T21:39:42Z |3b| wasn't intending this file to be compile-filed anyway, so will just ignore it for now 2016-02-18T22:39:54Z psilord quit (Quit: Leaving.) 2016-02-18T22:43:37Z Bicyclidine quit (Ping timeout: 240 seconds) 2016-02-18T22:45:35Z Bicyclidine joined #sbcl 2016-02-18T23:12:11Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-18T23:35:40Z psilord joined #sbcl 2016-02-18T23:40:25Z Bicyclidine quit (Ping timeout: 240 seconds) 2016-02-19T00:06:57Z stassats quit (Ping timeout: 276 seconds) 2016-02-19T00:13:09Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-02-19T00:30:32Z karswell quit (Read error: Connection reset by peer) 2016-02-19T00:30:46Z karswell joined #sbcl 2016-02-19T00:40:38Z yuankode quit (Ping timeout: 250 seconds) 2016-02-19T00:48:00Z Bicyclidine joined #sbcl 2016-02-19T00:48:33Z Bicyclidine quit (Client Quit) 2016-02-19T02:02:11Z karswell quit (Ping timeout: 248 seconds) 2016-02-19T02:57:43Z nicdev`` is now known as nicdev 2016-02-19T04:49:42Z edgar-rft quit (Quit: edgar-rft) 2016-02-19T06:35:55Z flip214_ is now known as flip214 2016-02-19T06:36:03Z flip214 quit (Changing host) 2016-02-19T06:36:03Z flip214 joined #sbcl 2016-02-19T06:56:22Z angavrilov joined #sbcl 2016-02-19T07:37:01Z zRecursive joined #sbcl 2016-02-19T07:45:39Z Shinmera joined #sbcl 2016-02-19T08:00:56Z igajsin joined #sbcl 2016-02-19T08:01:31Z zRecursive quit (Remote host closed the connection) 2016-02-19T08:29:02Z Cymew joined #sbcl 2016-02-19T09:24:27Z yuankode joined #sbcl 2016-02-19T09:54:11Z scymtym_ quit (Read error: Connection reset by peer) 2016-02-19T10:12:45Z ASau quit (Ping timeout: 276 seconds) 2016-02-19T11:33:24Z attila_lendvai joined #sbcl 2016-02-19T12:25:14Z scymtym joined #sbcl 2016-02-19T12:39:14Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-02-19T12:54:21Z attila_lendvai joined #sbcl 2016-02-19T12:55:12Z momo-reina joined #sbcl 2016-02-19T13:17:24Z karswell joined #sbcl 2016-02-19T13:52:50Z psilord quit (Quit: Leaving.) 2016-02-19T13:55:29Z momo-reina quit (Ping timeout: 240 seconds) 2016-02-19T14:10:27Z attila_lendvai quit (Quit: Leaving.) 2016-02-19T14:10:33Z attila_lendvai1 joined #sbcl 2016-02-19T14:10:33Z attila_lendvai1 is now known as attila_lendvai 2016-02-19T14:10:33Z attila_lendvai quit (Changing host) 2016-02-19T14:10:33Z attila_lendvai joined #sbcl 2016-02-19T14:15:29Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-02-19T14:47:45Z edgar-rft joined #sbcl 2016-02-19T14:49:37Z psilord joined #sbcl 2016-02-19T14:58:27Z myrkraverk quit (Remote host closed the connection) 2016-02-19T14:59:04Z myrkraverk joined #sbcl 2016-02-19T15:23:48Z stassats joined #sbcl 2016-02-19T15:37:26Z gingerale joined #sbcl 2016-02-19T15:58:33Z Cymew quit (Ping timeout: 276 seconds) 2016-02-27T21:45:11Z ccl-logbot joined #sbcl 2016-02-27T21:45:11Z 2016-02-27T21:45:11Z names: ccl-logbot stassats` igajsin2 chu sigjuice angavrilov_ Ober jsnell_ stassats scymtym_ Bicyclidine sjl lnostdal_ karswell flavioc DGASAU Shinmera gingerale les ASau DeadTrickster hitecnologys dim Posterdati nicdev` edgar-rft White_Flame jackdaniel irsol antoszka salv0 p_l christoph_debian mood abbe drmeister PuercoPop pchrist gko specbot jdz |3b| brucem carvite akkad mordocai flip214 yvm _iwc jackc- joshe chris2 Blkt fe[nl]ix foom dougk_ pootler_ scymtym 2016-02-27T21:45:11Z names: ieure ferada reb pkhuong 2016-02-27T21:47:11Z luis` joined #sbcl 2016-02-27T21:47:16Z yauz joined #sbcl 2016-02-27T21:47:16Z kanru joined #sbcl 2016-02-27T21:47:19Z Bicyclid1ne joined #sbcl 2016-02-27T21:48:46Z stassats quit (*.net *.split) 2016-02-27T21:48:58Z Bicyclidine quit (*.net *.split) 2016-02-27T21:48:59Z DeadTrickster quit (*.net *.split) 2016-02-27T21:48:59Z edgar-rft quit (*.net *.split) 2016-02-27T21:49:00Z foom quit (*.net *.split) 2016-02-27T21:49:00Z dougk_ quit (*.net *.split) 2016-02-27T21:49:00Z pootler_ quit (*.net *.split) 2016-02-27T21:49:00Z scymtym quit (*.net *.split) 2016-02-27T21:50:02Z christoph_debian quit (*.net *.split) 2016-02-27T21:50:02Z p_l quit (*.net *.split) 2016-02-27T21:50:30Z dustinm` joined #sbcl 2016-02-27T21:50:32Z p_l_ joined #sbcl 2016-02-27T21:50:32Z nzambe joined #sbcl 2016-02-27T21:50:32Z psilord1 joined #sbcl 2016-02-27T21:50:32Z Intensity joined #sbcl 2016-02-27T21:50:32Z leo_song joined #sbcl 2016-02-27T21:50:55Z dsp-_ joined #sbcl 2016-02-27T21:50:58Z myrkraverk joined #sbcl 2016-02-27T21:50:58Z loke joined #sbcl 2016-02-27T21:50:58Z trinque joined #sbcl 2016-02-27T21:50:58Z minion joined #sbcl 2016-02-27T21:50:58Z ralt joined #sbcl 2016-02-27T21:50:58Z angavrilov_ quit (Remote host closed the connection) 2016-02-27T21:52:59Z ASau quit (Remote host closed the connection) 2016-02-27T21:53:42Z ASau joined #sbcl 2016-02-27T21:54:41Z DeadTrickster joined #sbcl 2016-02-27T21:55:03Z edgar-rft joined #sbcl 2016-02-27T21:57:09Z ASau quit (Read error: Connection reset by peer) 2016-02-27T21:57:17Z ASau` joined #sbcl 2016-02-27T21:59:56Z ASau` is now known as ASau 2016-02-27T22:02:46Z hydan joined #sbcl 2016-02-27T22:07:45Z kanru quit (Ping timeout: 276 seconds) 2016-02-27T22:07:47Z hitecnologys quit (Ping timeout: 276 seconds) 2016-02-27T22:07:49Z Posterdati quit (Ping timeout: 276 seconds) 2016-02-27T22:07:49Z mordocai quit (Ping timeout: 276 seconds) 2016-02-27T22:07:49Z flip214 quit (Ping timeout: 276 seconds) 2016-02-27T22:08:27Z flip214 joined #sbcl 2016-02-27T22:08:27Z flip214 quit (Changing host) 2016-02-27T22:08:27Z flip214 joined #sbcl 2016-02-27T22:08:35Z Posterdati joined #sbcl 2016-02-27T22:08:42Z hitecnologys joined #sbcl 2016-02-27T22:08:55Z mordocai joined #sbcl 2016-02-27T22:26:19Z ccl-logbot joined #sbcl 2016-02-27T22:26:19Z 2016-02-27T22:26:19Z names: ccl-logbot trinque ieure_ drmeister chu_ reb` minion ASau christoph_debian myrkraverk dsp- hydan_ hitecnologys Posterdati flip214 DeadTrickster leo_song Intensity psilord1 nzambe p_l_ dustinm` Bicyclid1ne yauz luis` stassats` igajsin2 sigjuice jsnell_ sjl karswell flavioc DGASAU Shinmera gingerale les nicdev` White_Flame jackdaniel irsol antoszka salv0 abbe PuercoPop pchrist gko specbot jdz |3b| brucem carvite akkad yvm _iwc jackc- joshe chris2 Blkt 2016-02-27T22:26:19Z names: fe[nl]ix mood 2016-02-27T22:27:03Z dustinm` quit (Ping timeout: 240 seconds) 2016-02-27T22:27:39Z psilord1 quit (Ping timeout: 240 seconds) 2016-02-27T22:28:09Z p_l_ quit (Ping timeout: 240 seconds) 2016-02-27T22:28:09Z nzambe quit (Ping timeout: 240 seconds) 2016-02-27T22:28:11Z Intensity quit (Ping timeout: 240 seconds) 2016-02-27T22:28:12Z leo_song quit (Ping timeout: 240 seconds) 2016-02-27T22:28:21Z foom joined #sbcl 2016-02-27T22:28:21Z dougk_ joined #sbcl 2016-02-27T22:28:21Z pootler_ joined #sbcl 2016-02-27T22:31:45Z flip214 quit (Ping timeout: 276 seconds) 2016-02-27T22:32:11Z edgar-rft joined #sbcl 2016-02-27T22:34:41Z Ober joined #sbcl 2016-02-27T22:34:49Z psilord joined #sbcl 2016-02-27T22:35:14Z pkhuong joined #sbcl 2016-02-27T22:35:15Z stassats` quit (Ping timeout: 325 seconds) 2016-02-27T22:35:35Z mordocai joined #sbcl 2016-02-27T22:35:38Z pkhuong is now known as Guest45317 2016-02-27T22:36:43Z stassats joined #sbcl 2016-02-27T22:40:42Z foom quit (*.net *.split) 2016-02-27T22:40:42Z dougk_ quit (*.net *.split) 2016-02-27T22:40:42Z pootler_ quit (*.net *.split) 2016-02-27T22:41:08Z stassats quit (Ping timeout: 260 seconds) 2016-02-27T22:42:57Z pootler_ joined #sbcl 2016-02-27T22:42:57Z stassats joined #sbcl 2016-02-27T22:42:58Z dustinm` joined #sbcl 2016-02-27T22:46:07Z carvite quit (Ping timeout: 276 seconds) 2016-02-27T22:46:50Z carvite joined #sbcl 2016-02-27T22:47:50Z Bicyclid1ne is now known as Bicyclidine 2016-02-27T22:48:17Z stassats quit (Ping timeout: 264 seconds) 2016-02-27T22:49:17Z dougk_ joined #sbcl 2016-02-27T22:53:40Z ASau` joined #sbcl 2016-02-27T22:54:38Z stassats joined #sbcl 2016-02-27T22:54:41Z ASau quit (Read error: Connection reset by peer) 2016-02-27T23:11:00Z ccl-logbot joined #sbcl 2016-02-27T23:11:00Z 2016-02-27T23:11:04Z names: ccl-logbot ralt stassats pchrist Guest39152 loke ASau dougk_ carvite dustinm` pootler_ mordocai Guest45317 psilord Ober edgar-rft ieure_ drmeister chu_ reb` minion christoph_debian myrkraverk dsp- hydan_ hitecnologys Posterdati DeadTrickster yauz luis` igajsin2 sigjuice jsnell_ sjl karswell flavioc DGASAU Shinmera gingerale les nicdev` White_Flame jackdaniel irsol antoszka salv0 abbe PuercoPop gko specbot jdz |3b| brucem akkad yvm _iwc jackc- joshe chris2 2016-02-27T23:11:04Z names: Blkt fe[nl]ix mood 2016-02-27T23:13:15Z flip214 joined #sbcl 2016-02-27T23:13:15Z flip214 quit (Changing host) 2016-02-27T23:13:15Z flip214 joined #sbcl 2016-02-27T23:17:23Z p_l joined #sbcl 2016-02-27T23:37:34Z ASau quit (Remote host closed the connection) 2016-02-27T23:38:04Z ASau joined #sbcl 2016-02-27T23:39:05Z gingerale quit (Remote host closed the connection) 2016-02-27T23:47:47Z ASau quit (Remote host closed the connection) 2016-02-27T23:50:58Z chu_ is now known as chu 2016-02-27T23:58:58Z ASau joined #sbcl 2016-02-28T00:07:04Z p_l quit (Ping timeout: 250 seconds) 2016-02-28T00:12:47Z p_l joined #sbcl 2016-02-28T00:13:15Z Bicyclidine joined #sbcl 2016-02-28T00:28:11Z dim joined #sbcl 2016-02-28T00:28:12Z ferada joined #sbcl 2016-02-28T00:36:18Z Bicyclidine quit (Quit: leaving) 2016-02-28T00:37:40Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-28T00:39:48Z stassats quit (Ping timeout: 276 seconds) 2016-02-28T01:06:07Z leo_song joined #sbcl 2016-02-28T01:10:15Z myrkraverk quit (Remote host closed the connection) 2016-02-28T01:10:50Z myrkraverk joined #sbcl 2016-02-28T01:13:57Z slyrus joined #sbcl 2016-02-28T01:40:44Z mateuszb joined #sbcl 2016-02-28T01:42:51Z slyrus quit (Ping timeout: 276 seconds) 2016-02-28T01:57:13Z karswell` joined #sbcl 2016-02-28T01:59:31Z salv0 quit (Ping timeout: 244 seconds) 2016-02-28T01:59:56Z salv0 joined #sbcl 2016-02-28T02:00:24Z karswell quit (Ping timeout: 276 seconds) 2016-02-28T02:09:04Z PuercoPop quit (Ping timeout: 268 seconds) 2016-02-28T02:11:37Z PuercoPop joined #sbcl 2016-02-28T02:20:46Z slyrus joined #sbcl 2016-02-28T02:27:03Z flavioc quit (Ping timeout: 276 seconds) 2016-02-28T02:44:14Z slyrus_ joined #sbcl 2016-02-28T02:45:40Z slyrus quit (Ping timeout: 252 seconds) 2016-02-28T02:45:53Z slyrus_ is now known as slyrus 2016-02-28T02:47:19Z salv0 quit (Ping timeout: 252 seconds) 2016-02-28T02:54:05Z slyrus quit (Ping timeout: 268 seconds) 2016-02-28T03:00:48Z salv0 joined #sbcl 2016-02-28T03:09:53Z dim quit (*.net *.split) 2016-02-28T03:09:53Z ferada quit (*.net *.split) 2016-02-28T03:19:01Z slyrus joined #sbcl 2016-02-28T03:20:38Z karswell` is now known as karswell 2016-02-28T03:38:20Z sigjuice quit (Ping timeout: 390 seconds) 2016-02-28T03:47:45Z leo_song quit (Ping timeout: 268 seconds) 2016-02-28T03:48:45Z sigjuice joined #sbcl 2016-02-28T03:52:31Z leo_song joined #sbcl 2016-02-28T03:54:31Z abbe quit (Ping timeout: 268 seconds) 2016-02-28T03:55:16Z abbe joined #sbcl 2016-02-28T04:07:48Z slyrus quit (Ping timeout: 276 seconds) 2016-02-28T04:12:50Z dustinm` quit (Ping timeout: 260 seconds) 2016-02-28T04:12:50Z pootler_ quit (Ping timeout: 260 seconds) 2016-02-28T04:12:51Z drmeister quit (Ping timeout: 260 seconds) 2016-02-28T04:13:59Z pchrist quit (Ping timeout: 260 seconds) 2016-02-28T04:15:14Z dustinm` joined #sbcl 2016-02-28T04:15:19Z pchrist joined #sbcl 2016-02-28T04:16:18Z drmeister joined #sbcl 2016-02-28T04:17:43Z dustinm` quit (Excess Flood) 2016-02-28T04:18:54Z dustinm` joined #sbcl 2016-02-28T04:20:25Z PuercoPop quit (Ping timeout: 268 seconds) 2016-02-28T04:21:24Z pootler_ joined #sbcl 2016-02-28T04:25:12Z p_l quit (Ping timeout: 362 seconds) 2016-02-28T04:25:58Z gko quit (Ping timeout: 268 seconds) 2016-02-28T04:28:23Z PuercoPop joined #sbcl 2016-02-28T04:29:27Z p_l joined #sbcl 2016-02-28T04:29:37Z gko joined #sbcl 2016-02-28T04:36:53Z p_l_ joined #sbcl 2016-02-28T04:38:57Z p_l quit (Remote host closed the connection) 2016-02-28T04:41:23Z p_l_ quit (Ping timeout: 268 seconds) 2016-02-28T04:47:34Z gko quit (Ping timeout: 268 seconds) 2016-02-28T04:52:49Z gko joined #sbcl 2016-02-28T04:56:28Z p_l joined #sbcl 2016-02-28T05:14:41Z gko quit (Ping timeout: 268 seconds) 2016-02-28T05:32:01Z gko joined #sbcl 2016-02-28T05:36:48Z gko quit (Excess Flood) 2016-02-28T05:43:05Z gko joined #sbcl 2016-02-28T05:57:51Z DeadTrickster quit (Ping timeout: 268 seconds) 2016-02-28T06:23:45Z p_l quit (Ping timeout: 268 seconds) 2016-02-28T06:24:27Z p_l joined #sbcl 2016-02-28T06:46:57Z angavrilov joined #sbcl 2016-02-28T07:00:34Z DeadTrickster joined #sbcl 2016-02-28T07:22:08Z minion quit (Remote host closed the connection) 2016-02-28T07:26:14Z gingerale joined #sbcl 2016-02-28T07:28:10Z minion joined #sbcl 2016-02-28T07:45:19Z hydan_ quit (Quit: Textual IRC Client: www.textualapp.com) 2016-02-28T07:49:10Z leo_song quit (Excess Flood) 2016-02-28T07:54:30Z Shinmera joined #sbcl 2016-02-28T07:55:03Z Shinmera quit (Client Quit) 2016-02-28T07:56:55Z PuercoPop quit (Ping timeout: 268 seconds) 2016-02-28T07:57:55Z Shinmera joined #sbcl 2016-02-28T07:58:08Z PuercoPop joined #sbcl 2016-02-28T08:07:55Z DeadTrickster_ joined #sbcl 2016-02-28T08:08:07Z leo_song joined #sbcl 2016-02-28T08:08:56Z benkard joined #sbcl 2016-02-28T08:10:08Z Bike joined #sbcl 2016-02-28T08:14:45Z benkard quit (Ping timeout: 268 seconds) 2016-02-28T08:20:10Z benkard joined #sbcl 2016-02-28T08:23:23Z DeadTrickster quit (Ping timeout: 268 seconds) 2016-02-28T08:38:45Z psilord quit (Quit: Leaving.) 2016-02-28T08:47:05Z gingerale- joined #sbcl 2016-02-28T08:47:26Z gingerale quit (Ping timeout: 268 seconds) 2016-02-28T08:49:14Z leo_song quit (Ping timeout: 244 seconds) 2016-02-28T08:54:31Z leo_song joined #sbcl 2016-02-28T09:09:31Z fiveop joined #sbcl 2016-02-28T09:20:46Z dougk_ quit (Ping timeout: 268 seconds) 2016-02-28T09:21:04Z dougk_ joined #sbcl 2016-02-28T09:26:09Z attila_lendvai joined #sbcl 2016-02-28T09:26:09Z attila_lendvai quit (Changing host) 2016-02-28T09:26:09Z attila_lendvai joined #sbcl 2016-02-28T09:26:17Z pchrist quit (Ping timeout: 268 seconds) 2016-02-28T09:28:04Z pchrist joined #sbcl 2016-02-28T09:35:22Z Guest45317 quit (Ping timeout: 244 seconds) 2016-02-28T09:35:22Z pkhuong joined #sbcl 2016-02-28T09:35:22Z pkhuong is now known as Guest36703 2016-02-28T09:37:55Z pchrist quit (Ping timeout: 268 seconds) 2016-02-28T09:37:55Z pchrist joined #sbcl 2016-02-28T09:41:59Z whiteline joined #sbcl 2016-02-28T09:55:31Z Intensity joined #sbcl 2016-02-28T10:08:23Z DeadTrickster joined #sbcl 2016-02-28T10:08:28Z benkard quit (Quit: Textual IRC Client: www.textualapp.com) 2016-02-28T10:15:25Z gingerale- is now known as gingerale 2016-02-28T10:19:56Z DeadTrickster quit (Ping timeout: 268 seconds) 2016-02-28T10:27:02Z DeadTrickster_ quit (Quit: Leaving) 2016-02-28T10:27:16Z DeadTrickster joined #sbcl 2016-02-28T10:43:59Z benkard joined #sbcl 2016-02-28T11:02:58Z sjl quit (Read error: Connection reset by peer) 2016-02-28T11:04:03Z chris2 quit (Ping timeout: 264 seconds) 2016-02-28T11:05:08Z sjl joined #sbcl 2016-02-28T11:13:35Z sjl quit (Ping timeout: 268 seconds) 2016-02-28T11:13:35Z pchrist quit (Ping timeout: 268 seconds) 2016-02-28T11:14:18Z pchrist joined #sbcl 2016-02-28T11:19:58Z chris2 joined #sbcl 2016-02-28T11:20:24Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-02-28T11:21:59Z sjl joined #sbcl 2016-02-28T11:47:31Z sjl quit (Ping timeout: 268 seconds) 2016-02-28T11:54:20Z chris2 quit (Ping timeout: 268 seconds) 2016-02-28T11:54:24Z sjl joined #sbcl 2016-02-28T11:58:57Z attila_lendvai joined #sbcl 2016-02-28T12:06:04Z scymtym joined #sbcl 2016-02-28T12:20:11Z dougk_ quit (Ping timeout: 268 seconds) 2016-02-28T12:20:28Z dougk_ joined #sbcl 2016-02-28T12:23:21Z chris2 joined #sbcl 2016-02-28T12:32:55Z slyrus joined #sbcl 2016-02-28T12:33:19Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-02-28T12:40:32Z slyrus quit (Ping timeout: 268 seconds) 2016-02-28T12:41:49Z flavioc joined #sbcl 2016-02-28T12:42:27Z stassats joined #sbcl 2016-02-28T12:46:38Z gingerale- joined #sbcl 2016-02-28T12:47:04Z gingerale quit (Disconnected by services) 2016-02-28T12:47:15Z gingerale- is now known as gingerale 2016-02-28T12:47:19Z stassats quit (Ping timeout: 268 seconds) 2016-02-28T12:48:12Z stassats joined #sbcl 2016-02-28T12:52:50Z jackc-_ joined #sbcl 2016-02-28T12:53:53Z _iwc quit (Ping timeout: 264 seconds) 2016-02-28T12:53:53Z jackc- quit (Ping timeout: 264 seconds) 2016-02-28T12:54:28Z Ober quit (Ping timeout: 264 seconds) 2016-02-28T12:54:28Z edgar-rft quit (Ping timeout: 264 seconds) 2016-02-28T12:55:52Z Ober joined #sbcl 2016-02-28T12:56:17Z drmeister quit (Ping timeout: 260 seconds) 2016-02-28T12:58:16Z pootler_ quit (Ping timeout: 244 seconds) 2016-02-28T13:00:00Z drmeister joined #sbcl 2016-02-28T13:01:32Z pootler_ joined #sbcl 2016-02-28T13:05:42Z _iwc joined #sbcl 2016-02-28T13:07:04Z jackc-_ quit (Ping timeout: 268 seconds) 2016-02-28T13:07:05Z edgar-rft joined #sbcl 2016-02-28T13:07:47Z jackc- joined #sbcl 2016-02-28T13:11:32Z pootler_ quit (Read error: Connection reset by peer) 2016-02-28T13:12:04Z drmeister quit (Read error: Connection reset by peer) 2016-02-28T13:12:36Z benkard quit (Ping timeout: 268 seconds) 2016-02-28T13:12:36Z PuercoPop quit (Ping timeout: 268 seconds) 2016-02-28T13:13:13Z jackc- quit (Ping timeout: 268 seconds) 2016-02-28T13:13:50Z chris2 quit (Ping timeout: 268 seconds) 2016-02-28T13:13:50Z gko quit (Ping timeout: 268 seconds) 2016-02-28T13:15:02Z jackc- joined #sbcl 2016-02-28T13:15:04Z dougk_ quit (Ping timeout: 268 seconds) 2016-02-28T13:15:04Z pchrist quit (Ping timeout: 268 seconds) 2016-02-28T13:16:32Z drmeister joined #sbcl 2016-02-28T13:17:09Z benkard joined #sbcl 2016-02-28T13:17:13Z dougk_ joined #sbcl 2016-02-28T13:17:13Z pchrist joined #sbcl 2016-02-28T13:17:34Z benkard quit (Max SendQ exceeded) 2016-02-28T13:18:35Z PuercoPop joined #sbcl 2016-02-28T13:18:47Z benkard joined #sbcl 2016-02-28T13:19:26Z chris2 joined #sbcl 2016-02-28T13:20:33Z pootler_ joined #sbcl 2016-02-28T13:20:47Z gko joined #sbcl 2016-02-28T13:25:03Z jackc-_ joined #sbcl 2016-02-28T13:25:39Z jackc- quit (Read error: Connection reset by peer) 2016-02-28T13:32:32Z pootler_ quit (Read error: Network is unreachable) 2016-02-28T13:33:12Z pootler_ joined #sbcl 2016-02-28T13:59:21Z karswell` joined #sbcl 2016-02-28T14:00:27Z karswell quit (Ping timeout: 260 seconds) 2016-02-28T14:03:10Z benkard quit (Ping timeout: 268 seconds) 2016-02-28T14:08:36Z benkard joined #sbcl 2016-02-28T14:11:54Z Posterdati quit (Ping timeout: 246 seconds) 2016-02-28T14:46:15Z jackc-_ quit (Remote host closed the connection) 2016-02-28T14:46:25Z jackc- joined #sbcl 2016-02-28T14:52:28Z _iwc quit (Ping timeout: 244 seconds) 2016-02-28T14:52:44Z angavrilov_ joined #sbcl 2016-02-28T14:52:58Z angavrilov quit (Ping timeout: 244 seconds) 2016-02-28T14:54:40Z slyrus joined #sbcl 2016-02-28T15:01:08Z benkard quit (Ping timeout: 268 seconds) 2016-02-28T15:02:27Z Posterdati joined #sbcl 2016-02-28T15:03:16Z slyrus_ joined #sbcl 2016-02-28T15:04:13Z Posterdati quit (Excess Flood) 2016-02-28T15:04:18Z slyrus quit (Ping timeout: 276 seconds) 2016-02-28T15:04:26Z slyrus_ is now known as slyrus 2016-02-28T15:04:46Z Posterdati joined #sbcl 2016-02-28T15:06:41Z PuercoPop quit (Ping timeout: 268 seconds) 2016-02-28T15:06:43Z _iwc joined #sbcl 2016-02-28T15:07:44Z PuercoPop joined #sbcl 2016-02-28T15:11:00Z pchrist quit (Ping timeout: 268 seconds) 2016-02-28T15:11:42Z pchrist joined #sbcl 2016-02-28T15:22:06Z pootler_ quit (Ping timeout: 268 seconds) 2016-02-28T15:24:47Z pootler_ joined #sbcl 2016-02-28T15:34:57Z slyrus quit (Ping timeout: 260 seconds) 2016-02-28T15:49:08Z slyrus joined #sbcl 2016-02-28T15:51:09Z dim joined #sbcl 2016-02-28T15:51:09Z ferada joined #sbcl 2016-02-28T16:04:45Z slyrus quit (Ping timeout: 276 seconds) 2016-02-28T16:24:00Z fiveop quit 2016-02-28T16:28:54Z chris2 quit (Quit: trotz alledem!) 2016-02-28T16:51:55Z chris2 joined #sbcl 2016-02-28T17:10:41Z ccl-logbot joined #sbcl 2016-02-28T17:10:41Z 2016-02-28T17:10:41Z names: ccl-logbot chris2 ferada dim pootler_ pchrist PuercoPop _iwc Posterdati angavrilov_ jackc- karswell` gko dougk_ drmeister edgar-rft Ober stassats gingerale flavioc scymtym sjl DeadTrickster Intensity whiteline Guest36703 leo_song Bike Shinmera minion p_l dustinm` abbe sigjuice salv0 mateuszb myrkraverk ASau flip214 ralt Guest39152 loke carvite mordocai ieure_ chu reb` christoph_debian dsp- hitecnologys yauz luis` igajsin2 jsnell_ DGASAU les specbot jdz 2016-02-28T17:10:41Z names: |3b| brucem akkad yvm joshe Blkt fe[nl]ix mood antoszka irsol jackdaniel White_Flame nicdev` 2016-02-28T18:18:39Z gingerale quit (Ping timeout: 276 seconds) 2016-02-28T18:32:02Z PuercoPop quit (Ping timeout: 268 seconds) 2016-02-28T18:34:01Z PuercoPop joined #sbcl 2016-02-28T19:04:05Z leo_song quit (Ping timeout: 244 seconds) 2016-02-28T19:25:04Z leo_song joined #sbcl 2016-02-28T19:33:55Z gingerale joined #sbcl 2016-02-28T19:54:12Z irsol quit (Ping timeout: 244 seconds) 2016-02-28T19:56:37Z irsol joined #sbcl 2016-02-28T20:05:18Z attila_lendvai joined #sbcl 2016-02-28T20:22:05Z sjl__ joined #sbcl 2016-02-28T20:24:45Z sjl quit (Ping timeout: 276 seconds) 2016-02-28T21:06:12Z p_l quit (Ping timeout: 248 seconds) 2016-02-28T21:15:23Z p_l joined #sbcl 2016-02-28T21:17:29Z prxq joined #sbcl 2016-02-28T21:17:54Z carvite quit (Ping timeout: 244 seconds) 2016-02-28T21:19:49Z carvite joined #sbcl 2016-02-28T21:25:27Z ASau` joined #sbcl 2016-02-28T21:29:06Z ASau quit (Ping timeout: 276 seconds) 2016-02-28T21:36:25Z ASau` is now known as ASau 2016-02-28T21:38:14Z sjl__ is now known as sjl 2016-02-28T22:27:42Z gingerale quit (Remote host closed the connection) 2016-02-28T22:31:20Z angavrilov_ quit (Remote host closed the connection) 2016-02-28T22:35:24Z myrkraverk quit (Ping timeout: 276 seconds) 2016-02-28T22:38:49Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-02-28T22:50:17Z prxq quit (Remote host closed the connection) 2016-02-28T23:43:27Z sjl quit (Ping timeout: 268 seconds) 2016-02-28T23:57:54Z karswell` quit (Read error: Connection reset by peer) 2016-02-29T00:00:24Z myrkraverk joined #sbcl 2016-02-29T00:19:11Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-29T00:30:27Z stassats quit (Ping timeout: 276 seconds) 2016-02-29T00:32:15Z sjl__ joined #sbcl 2016-02-29T00:51:15Z irsol quit (Ping timeout: 248 seconds) 2016-02-29T00:52:37Z irsol joined #sbcl 2016-02-29T01:05:27Z sjl__ quit (Ping timeout: 260 seconds) 2016-02-29T01:09:14Z lnostdal joined #sbcl 2016-02-29T01:18:01Z jdz quit (Ping timeout: 250 seconds) 2016-02-29T01:19:29Z lnostdal quit (Quit: Invest and trade anonymously: https://goo.gl/Hw81yy) 2016-02-29T01:19:47Z lnostdal joined #sbcl 2016-02-29T01:23:10Z jdz joined #sbcl 2016-02-29T01:39:21Z flavioc quit (Ping timeout: 276 seconds) 2016-02-29T01:54:11Z irsol quit (Ping timeout: 248 seconds) 2016-02-29T01:55:07Z irsol joined #sbcl 2016-02-29T02:00:43Z hydan joined #sbcl 2016-02-29T02:18:21Z scymtym quit (Ping timeout: 276 seconds) 2016-02-29T02:38:12Z loke quit (Ping timeout: 260 seconds) 2016-02-29T02:45:07Z p_l quit (Ping timeout: 250 seconds) 2016-02-29T02:45:59Z hydan quit (Ping timeout: 268 seconds) 2016-02-29T02:46:50Z p_l joined #sbcl 2016-02-29T02:47:50Z lnostdal quit (Ping timeout: 268 seconds) 2016-02-29T02:48:27Z Ober quit (Ping timeout: 268 seconds) 2016-02-29T02:48:40Z Ober joined #sbcl 2016-02-29T02:49:53Z lnostdal joined #sbcl 2016-02-29T02:50:11Z hydan joined #sbcl 2016-02-29T02:50:36Z loke joined #sbcl 2016-02-29T03:02:28Z sjl__ joined #sbcl 2016-02-29T03:07:34Z sjl__ quit (Ping timeout: 268 seconds) 2016-02-29T03:22:41Z karswell` joined #sbcl 2016-02-29T03:23:20Z hydan quit (Remote host closed the connection) 2016-02-29T03:28:02Z karswell` is now known as karswell 2016-02-29T03:30:56Z hydan joined #sbcl 2016-02-29T03:37:41Z hydan quit (Remote host closed the connection) 2016-02-29T03:41:21Z fms joined #sbcl 2016-02-29T03:42:29Z fms quit (Client Quit) 2016-02-29T03:55:00Z Guest39152 quit (Quit: Guest39152) 2016-02-29T03:55:16Z trinque joined #sbcl 2016-02-29T04:03:24Z sjl__ joined #sbcl 2016-02-29T04:08:03Z sjl__ quit (Ping timeout: 248 seconds) 2016-02-29T05:04:12Z sjl__ joined #sbcl 2016-02-29T05:08:42Z sjl__ quit (Ping timeout: 260 seconds) 2016-02-29T05:43:42Z leo_song quit (Ping timeout: 244 seconds) 2016-02-29T05:57:04Z leo_song joined #sbcl 2016-02-29T06:04:59Z sjl__ joined #sbcl 2016-02-29T06:10:12Z sjl__ quit (Ping timeout: 246 seconds) 2016-02-29T06:44:51Z angavrilov joined #sbcl 2016-02-29T06:46:02Z igajsin2 quit (Read error: Connection reset by peer) 2016-02-29T06:49:22Z igajsin joined #sbcl 2016-02-29T06:50:17Z igajsin left #sbcl 2016-02-29T07:06:57Z sjl__ joined #sbcl 2016-02-29T07:12:09Z sjl__ quit (Ping timeout: 276 seconds) 2016-02-29T07:12:22Z Bike quit (Ping timeout: 260 seconds) 2016-02-29T07:15:05Z ASau quit (Ping timeout: 250 seconds) 2016-02-29T07:20:19Z Shinmera joined #sbcl 2016-02-29T07:21:58Z Shinmera quit (Client Quit) 2016-02-29T07:23:35Z Bike joined #sbcl 2016-02-29T07:25:36Z Shinmera joined #sbcl 2016-02-29T07:30:36Z gingerale joined #sbcl 2016-02-29T07:33:21Z scymtym joined #sbcl 2016-02-29T07:36:43Z Bike quit (Remote host closed the connection) 2016-02-29T07:42:05Z Bike joined #sbcl 2016-02-29T07:47:44Z Bike quit (Ping timeout: 260 seconds) 2016-02-29T07:48:52Z Bike joined #sbcl 2016-02-29T07:55:03Z myrkraverk quit (Ping timeout: 276 seconds) 2016-02-29T08:01:33Z Bike quit (Ping timeout: 276 seconds) 2016-02-29T08:04:27Z irsol quit (Remote host closed the connection) 2016-02-29T08:07:05Z irsol joined #sbcl 2016-02-29T08:07:42Z sjl__ joined #sbcl 2016-02-29T08:11:23Z irsol quit (Remote host closed the connection) 2016-02-29T08:11:54Z irsol_ joined #sbcl 2016-02-29T08:12:14Z sjl__ quit (Ping timeout: 260 seconds) 2016-02-29T08:15:12Z trinque quit (Ping timeout: 276 seconds) 2016-02-29T08:15:38Z trinque joined #sbcl 2016-02-29T08:17:20Z irsol_ quit (Read error: Connection reset by peer) 2016-02-29T08:18:25Z irsol joined #sbcl 2016-02-29T08:19:49Z pchrist quit (Ping timeout: 260 seconds) 2016-02-29T08:20:31Z pchrist joined #sbcl 2016-02-29T08:50:43Z DeadTrickster quit (Ping timeout: 248 seconds) 2016-02-29T08:59:24Z attila_lendvai joined #sbcl 2016-02-29T08:59:24Z attila_lendvai quit (Changing host) 2016-02-29T08:59:24Z attila_lendvai joined #sbcl 2016-02-29T09:07:19Z DGASAU quit (Read error: Connection reset by peer) 2016-02-29T09:07:58Z DGASAU joined #sbcl 2016-02-29T09:08:06Z myrkraverk joined #sbcl 2016-02-29T09:13:29Z myrkraverk quit (Ping timeout: 260 seconds) 2016-02-29T09:21:01Z myrkraverk joined #sbcl 2016-02-29T10:02:07Z myrkraverk quit (Ping timeout: 260 seconds) 2016-02-29T10:04:26Z stassats joined #sbcl 2016-02-29T10:08:51Z stassats quit (Ping timeout: 250 seconds) 2016-02-29T10:08:57Z myrkraverk joined #sbcl 2016-02-29T10:12:57Z stassats joined #sbcl 2016-02-29T10:17:31Z stassats quit (Ping timeout: 250 seconds) 2016-02-29T10:17:54Z stassats joined #sbcl 2016-02-29T10:22:12Z stassats quit (Ping timeout: 246 seconds) 2016-02-29T10:22:54Z stassats joined #sbcl 2016-02-29T10:23:02Z sjl__ joined #sbcl 2016-02-29T10:23:58Z sjl__ is now known as sjl 2016-02-29T10:29:12Z stassats quit (Ping timeout: 246 seconds) 2016-02-29T10:30:22Z stassats joined #sbcl 2016-02-29T10:32:18Z lnostdal_ joined #sbcl 2016-02-29T10:36:19Z lnostdal quit (Ping timeout: 260 seconds) 2016-02-29T10:41:21Z myrkraverk quit (Ping timeout: 250 seconds) 2016-02-29T11:12:40Z flip214: RPi 3 is an ARM 64bit.... 2016-02-29T11:23:34Z DeadTrickster joined #sbcl 2016-02-29T11:24:15Z DeadTrickster quit (Remote host closed the connection) 2016-02-29T11:27:16Z Xof joined #sbcl 2016-02-29T11:27:41Z DeadTrickster joined #sbcl 2016-02-29T11:28:49Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-02-29T11:47:17Z DGASAU quit (Read error: Connection reset by peer) 2016-02-29T11:47:47Z DGASAU joined #sbcl 2016-02-29T11:53:43Z sjl__ joined #sbcl 2016-02-29T11:55:26Z sjl quit (Ping timeout: 268 seconds) 2016-02-29T12:13:46Z chris2: "over the next few months we will investigate whether there is value in moving to 64-bit mode" 2016-02-29T12:13:50Z chris2: sheesh :) 2016-02-29T12:19:30Z flip214: bigger fixnums are a good reason 2016-02-29T12:21:53Z sjl__ quit (Ping timeout: 250 seconds) 2016-02-29T12:22:57Z sjl__ joined #sbcl 2016-02-29T12:52:52Z myrkraverk joined #sbcl 2016-02-29T13:12:25Z abbe quit (Ping timeout: 240 seconds) 2016-02-29T13:12:31Z abbe_ joined #sbcl 2016-02-29T13:13:07Z specbot quit (Disconnected by services) 2016-02-29T13:13:10Z specbot joined #sbcl 2016-02-29T13:13:23Z stassats: crap, noticed the wrong commit message just when i pressed "git push" 2016-02-29T13:13:48Z stassats: flip214: how about threads? 2016-02-29T13:14:03Z yauz quit (Ping timeout: 246 seconds) 2016-02-29T13:14:27Z flip214: stassats: on PPC? looked fine last time I tried 2016-02-29T13:14:41Z stassats: on arm64 2016-02-29T13:14:48Z flip214: rpi3 has 4 cores... 2016-02-29T13:14:58Z flip214: so threads would be good to have, yeah 2016-02-29T13:15:06Z stassats: threads are good with one core 2016-02-29T13:15:34Z flip214: ah, I guess you meant "threads are another good reason for amd64" 2016-02-29T13:15:40Z flip214: not only fixnums 2016-02-29T13:15:47Z yauz joined #sbcl 2016-02-29T13:16:17Z stassats: and there is no focus on arm32 development anymore 2016-02-29T13:16:20Z stassats: just keeping it working 2016-02-29T13:17:10Z attila_lendvai joined #sbcl 2016-02-29T13:34:37Z Xof: I have a half-finished threads port for arm32/linux 2016-02-29T13:34:56Z Xof: I've done the easy half, and it's been two months since I last looked at it 2016-02-29T13:35:23Z stassats: which approach did you take? 2016-02-29T13:35:41Z Xof: well, maybe "quarter finished" 2016-02-29T13:35:47Z Xof: all I've done is remove null-tn 2016-02-29T13:36:13Z Xof: the rest should be as simple as introducing thread-tn and pushing :sb-thread, right? 2016-02-29T13:36:16Z stassats: i see 2016-02-29T13:36:25Z stassats: "right" 2016-02-29T13:36:26Z leo_song quit (Quit: ZNC quit) 2016-02-29T13:36:35Z Xof: ILTWYare sarcastic 2016-02-29T13:38:09Z leo_song joined #sbcl 2016-02-29T13:40:37Z stassats: looks like sbcl built with debug 0 is not really great as a build host 2016-02-29T13:41:03Z stassats: or some other options i enabled for speeding up the build process 2016-02-29T13:41:57Z stassats: right, debug 1 gives me sane errors during xc 2016-02-29T13:44:38Z stassats: build times using an older sbcl with debug 0 2:23, the current but debug 1: 2:21 2016-02-29T13:44:43Z stassats: not really conclusive 2016-02-29T13:45:08Z stassats: it's not worse, there's that 2016-02-29T14:03:39Z stassats: setf schar compiles to something strange, i see compile-type-error for some reason 2016-02-29T14:07:28Z stassats: and it's all because of nil-strings 2016-02-29T14:13:58Z stassats: looking at move-to-character, how can it accept any-reg? 2016-02-29T14:15:08Z stassats: ok, i guess it can 2016-02-29T14:16:57Z stassats: there goes my plan of deleting MOVEs with equal locations 2016-02-29T14:38:33Z stassats: location= checks the storage base, but i need to check the storage class 2016-02-29T14:46:28Z nzambe joined #sbcl 2016-02-29T14:47:53Z hydan joined #sbcl 2016-02-29T14:56:11Z foom joined #sbcl 2016-02-29T14:57:30Z DGASAU quit (Read error: Connection reset by peer) 2016-02-29T14:57:59Z DGASAU joined #sbcl 2016-02-29T15:02:34Z stassats: huh, (defun bar (x) (declare (fixnum x)) (loop repeat x do (print 10))) involves generic-.. 2016-02-29T15:03:23Z stassats: but (declare (optimize speed)) removes them 2016-02-29T15:04:14Z stassats: ok, it happens only with debug 2 2016-02-29T15:25:10Z stassats: ok, solved the schar problem 2016-02-29T15:53:04Z sjl__ quit (Ping timeout: 260 seconds) 2016-02-29T15:53:31Z posterdati300 joined #sbcl 2016-02-29T15:53:53Z posterdati300 quit (Client Quit) 2016-02-29T16:15:50Z ieure_ is now known as ieure 2016-02-29T16:38:35Z stassats: found a way not to cons a double in (let (x) (setf x 10d0) x), but (let ((x 3d0)) (setf x 10d0) x) still conses 2016-02-29T16:40:59Z ferada_ joined #sbcl 2016-02-29T16:44:16Z stassats: by avoid a conversion of constants in emit-moves-and-coercions 2016-02-29T16:44:40Z stassats: but the latter case first moves into a double reg, only then into a descriptor 2016-02-29T16:44:48Z stassats: so i will need a pass to see through that 2016-02-29T16:45:46Z dim` joined #sbcl 2016-02-29T16:45:47Z stassats: i'm so deep in the ir2 woods it's a bit scary 2016-02-29T16:46:22Z dim quit (*.net *.split) 2016-02-29T16:46:22Z ferada quit (*.net *.split) 2016-02-29T16:46:23Z dim` is now known as dim 2016-02-29T16:58:57Z trinque: joshe: hi, would you happen to be the openbsd port maintainer? I sent you mail last week, if so. 2016-02-29T17:00:43Z stassats: trinque: you should have sent it to sbcl-devel@ 2016-02-29T17:01:16Z trinque: ok. I sent it to the maintainer contact on the port. 2016-02-29T17:02:10Z stassats: there are is no such thing as a port maintainer, really 2016-02-29T17:02:11Z Bike joined #sbcl 2016-02-29T17:03:19Z trinque: stassats: would it be appropriate to send an attached patch for the port based at /usr/ports/lang/sbcl ? I am looking to get --with-sb-thread added as a flavor. 2016-02-29T17:03:34Z stassats: oh that port 2016-02-29T17:03:44Z stassats: well, that is confusing 2016-02-29T17:03:51Z trinque: ah yes, sorry. I meant openbsd "ports" 2016-02-29T17:04:00Z stassats: disregard then what i said 2016-02-29T17:04:52Z stassats: good thing it wasn't an rs232 port 2016-02-29T17:05:17Z trinque: hehe 2016-02-29T17:05:51Z stassats: or port wine, or the ship port, so much overloading! 2016-02-29T17:07:31Z flip214: pappa ante portas 2016-02-29T17:07:45Z flip214: or Prêt-à-Porter? 2016-02-29T17:09:09Z hydan quit (Remote host closed the connection) 2016-02-29T17:15:44Z pchrist quit (Quit: leaving) 2016-02-29T17:16:29Z pchrist joined #sbcl 2016-02-29T17:29:19Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-02-29T17:41:07Z ieure left #sbcl 2016-02-29T18:45:42Z nzambe quit (Ping timeout: 276 seconds) 2016-02-29T18:55:35Z stassats: looks like i need to understand the representation selection better to optimize float constant consing 2016-02-29T18:58:28Z stassats: seems like it's limited only to the immediate tn reads and writes 2016-02-29T18:58:37Z stassats: which can influence the subsequent ones in a wrong direction 2016-02-29T19:15:04Z attila_lendvai joined #sbcl 2016-02-29T19:15:04Z attila_lendvai quit (Changing host) 2016-02-29T19:15:04Z attila_lendvai joined #sbcl 2016-02-29T19:25:42Z ASau joined #sbcl 2016-02-29T19:50:16Z prxq joined #sbcl 2016-02-29T20:35:58Z sjl__ joined #sbcl 2016-02-29T20:40:42Z mateuszb quit (Quit: My Mac has gone to sleep. ZZZzzz…) 2016-02-29T21:02:14Z nzambe joined #sbcl 2016-02-29T21:10:01Z Bicyclidine joined #sbcl 2016-02-29T21:28:29Z sjl__ is now known as sjl 2016-02-29T21:41:16Z gingerale quit (Remote host closed the connection) 2016-02-29T21:49:16Z angavrilov quit (Remote host closed the connection) 2016-02-29T21:58:18Z Bicyclidine quit (Quit: leaving) 2016-02-29T22:08:31Z prxq quit (Remote host closed the connection) 2016-02-29T22:42:34Z myrkraverk quit (Ping timeout: 260 seconds) 2016-02-29T22:50:56Z csziacobus joined #sbcl 2016-02-29T22:51:56Z slyrus joined #sbcl 2016-02-29T22:56:34Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-02-29T23:03:34Z Shinmera quit (Quit: しつれいしなければならないんです。) 2016-02-29T23:46:24Z myrkraverk joined #sbcl 2016-02-29T23:59:39Z stassats quit (Ping timeout: 276 seconds)