juliusb_ | jonibo_: DSX implementation done I believe :) | 07:46 |
---|---|---|
jonibo_ | juliusb_: I just saw the patch! best looking thing I've seen go across the wire yet! | 07:58 |
jonibo_ | juliusb_: that new key should work for you now, too... give it a try and let me know if it doesn't | 07:58 |
juliusb_ | cool, will have a crack | 08:05 |
juliusb_ | hmm, key not working | 08:08 |
juliusb_ | in my ~/.ssh/config I have : | 08:08 |
juliusb_ | Host openrisc.net Hostname openrisc.net User julius IdentityFile ~/.ssh/id_rsa | 08:08 |
juliusb_ | argh, with \n after much of that | 08:08 |
jonibo_ | hehe | 08:08 |
jonibo_ | not sure how to interpret all your comment there... not working? | 08:09 |
juliusb_ | yeah, i still get fatal: The remote end hung up unexpectedly | 08:09 |
jonibo_ | ok | 08:09 |
juliusb_ | that's maybe not an auth issue? | 08:10 |
jonibo_ | try again... i'm not seeing any login attempt from you | 08:11 |
jonibo_ | i see the login attempt... | 08:12 |
juliusb_ | ok i added a new origin with ssh://julius@openrisc.net..... | 08:12 |
juliusb_ | and just pushed to that | 08:12 |
juliusb_ | and it's there | 08:12 |
jonibo_ | great | 08:12 |
jonibo_ | so the key works | 08:12 |
jonibo_ | perfect | 08:12 |
juliusb_ | yeah, awesome, thanks for that | 08:12 |
jonibo_ | what was your old origin? | 08:12 |
juliusb_ | just an anon checkout I presume | 08:13 |
juliusb_ | i cloned it to apply the patches today onto this machine | 08:13 |
jonibo_ | yeah, ok | 08:13 |
jonibo_ | makes sense | 08:13 |
jonibo_ | juliusb_: any chance you could try pushing to code@openrisc.net:openocd ? | 08:19 |
jonibo_ | just for kicks | 08:19 |
juliusb_ | the whole repo? | 08:20 |
jonibo_ | yeah | 08:20 |
juliusb_ | ok | 08:20 |
juliusb_ | how do you recommend I d oit? | 08:21 |
juliusb_ | should I add a new remote? | 08:21 |
jonibo_ | git push code@openrisc.net:openocd master | 08:22 |
juliusb_ | ok | 08:22 |
jonibo_ | nah, you don't need to add a new remote right now... just the simple push is fine for now | 08:22 |
juliusb_ | i Added --all | 08:22 |
jonibo_ | ok | 08:22 |
juliusb_ | to get all the branches | 08:22 |
jonibo_ | i'm just interested to know that it works for you | 08:23 |
juliusb_ | yep i'm writing | 08:23 |
jonibo_ | ok, good | 08:23 |
jonibo_ | i'll start working on the cleanup that I talked about... that new URL will be the new repo | 08:23 |
jonibo_ | i think it's cleaner | 08:23 |
jonibo_ | and you can give write access to others to that same repo, if you so desire | 08:24 |
jonibo_ | i'll leave it up to you | 08:24 |
jonibo_ | but I'll get back to you when I'm done with the cleanup | 08:24 |
juliusb_ | ok nice | 08:26 |
juliusb_ | oh my typo of "adv_debug_syys" showed up :( | 08:26 |
juliusb_ | fixed | 08:29 |
stekern | that's the finnish version? ;) | 08:35 |
juliusb_ | wouldn't that be aiuuudv_deeeeiubuuug_syys? | 08:37 |
jonibo_ | after a few drinks, yes | 08:38 |
juliusb_ | :) | 08:39 |
stekern | hehe, probably, but aiuuudv_deeeeiubuuug doesn't mean anything opposed to syys, which means "autumn" :) | 08:42 |
juliusb_ | haha, I guess autumn does debug things a bit by making all of the flowers and trees lose their leaves | 08:43 |
juliusb_ | nowhere for the bugs to live | 08:44 |
stekern | poetic ;) | 08:44 |
stekern | and for the drunk part, that's the default state for finnish people | 08:44 |
juliusb_ | not for the bugs, they lose their homes! But maybe that's when they metamorphose and migrate into code databases | 08:45 |
juliusb_ | I presume that drinking is due to the proximity of Russia | 08:46 |
stekern | yes, that, and bad weather | 08:47 |
stekern | jonibo_: I spent last evening looking through the llvm-openrisc backend, your tablegen instrinfo is far ahead of the one in there | 08:54 |
jonibo_ | really? | 08:54 |
jonibo_ | ok, that's disappointing | 08:54 |
jonibo_ | i guess 24 hours didn't quite cut it then! :) | 08:55 |
jonibo_ | pretty sure I spent more than 24 hours on that backend already... | 08:55 |
stekern | yeah, he basically just have l.nop, l.add{i}, l.or{i} and return (l.jr r9) | 08:56 |
stekern | and no delayslots (although I hacked a simple one just filling with l.nops yesterda) | 08:57 |
stekern | I'm starting to get my head (slightly) around the tablegen stuff at least | 08:57 |
stekern | was pretty confusing at first glance, but it seems really nice when you get to know it | 08:58 |
jonibo_ | yeah, that's the thing... it's brutal at first glance, but pretty well thought-out once you start poking at it | 08:59 |
stekern | I threw the few lines needed in clang too, so I was able to compile a simple int foo(void){return 0;} function ;) | 09:00 |
jonibo_ | nice! | 09:00 |
stekern | I like that you have a well defined language that you are translating against, how does that work in gcc? | 09:03 |
jonibo_ | gcc has that too | 09:10 |
jonibo_ | it's pretty much GIMPLE | 09:10 |
jonibo_ | in fact, GCC keeps GIMPLE in the object files now in order to allow LTO (link time optimization) | 09:11 |
jonibo_ | LLVM does this with it's IR directly | 09:11 |
stekern | I see | 09:12 |
jeremybennett | stekern: jonibo: Good work on LLVM. Where can I pull your latest work from? | 10:43 |
stekern | jeremybennett: I was trying out the work by anton yesterday | 10:44 |
jeremybennett | From the comments above, I gather jonibo's work is rather ahead of that. | 10:45 |
stekern | ah, yes, at least in the tablegen instrinfo department | 10:46 |
jeremybennett | I might try to merge the best of both together to keep me busy while I'm at this conference. | 10:46 |
stekern | that one is still available at: https://github.com/skristiansson/llvm-or1k | 10:46 |
jeremybennett | Thanks - I'll pull it over. | 10:46 |
jeremybennett | I see Anton K's stuff still uses the or32 notation, so it would be good to move him over to or1k. | 10:47 |
stekern | are you at the llvm conference now? | 10:47 |
jeremybennett | It starts at noon, and I'll be there. | 10:47 |
stekern | yes, I noted that too, it's a minor issue | 10:47 |
stekern | cool, be sure to report back here ;) | 10:48 |
jeremybennett | I'll try to make sure I spend time with Anton K. Will report back. | 10:48 |
unicos | donated to the ASIC project last night, cheers! | 21:28 |
Generated by irclog2html.py 2.15.2 by Marius Gedminas - find it at mg.pov.lt!