search for: scooter

Displaying 20 results from an estimated 233 matches for "scooter".

2010 Feb 26
2
[LLVMdev] RegisterScavenging on targets without subregisters
...SubUsed = true; break; } assert(SubUsed && "Using an undefined register!"); CellSPU does not define any subregisters; consequently, SubUsed will always be false and trip the assert. What's the intended behavior (before I submit a bug report)? -scooter -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100225/aef5c1be/attachment.html>
2010 Feb 26
0
[LLVMdev] RegisterScavenging on targets without subregisters
Ugh. Management lobotomy kicked in. Need to RTFC better. On Thu, Feb 25, 2010 at 6:18 PM, Scott Michel <scooter.phd at gmail.com> wrote: > There's an assert at line 192, lib/CodeGen/RegisterScavenging.cpp that > appears to get tripped on targets that don't have subregisters defined: > > bool SubUsed = false; > for (const unsigned *SubRegs = TRI->getSubRegisters(R...
2010 Feb 26
2
[LLVMdev] RegisterScavenging on targets without subregisters
No, I wasn't having a management lobotomy moment. If the target's registers have no subregisters, SubUsed is false and the assert gets tripped. Ok, back to the original question: What was the original intent in this code (lines 186-193 in lib/CodeGen/RegisterScavenging.cpp)? -scooter On Thu, Feb 25, 2010 at 7:00 PM, Scott Michel <scooter.phd at gmail.com> wrote: > Ugh. Management lobotomy kicked in. Need to RTFC better. > > > On Thu, Feb 25, 2010 at 6:18 PM, Scott Michel <scooter.phd at gmail.com>wrote: > >> There's an assert at line 192,...
2020 Mar 26
4
Blocking IP addresses on a per mountpoint level
.../mountpointB.ogg wants to block that IP address. Using iptables I've blocked connections, at a server level, from example.com for my User B but my User A doesn't mind their connection being probed once per minute 24/7/365 by a badly-configured player from that IP address. Thank you Chip Scooter On Thu, 26 Mar 2020 at 11:30, Marius Flage <marius at flage.org> wrote: > I believe the easiest is just to do this using iptables ('iptables -A > INPUT -s 93.184.216.34 -j DROP'). There's also an geoip module available > for iptables. > > -- > Marius > On 26...
2007 Oct 16
3
[LLVMdev] The one remaining bug keeping CellSPU from release...
....ll files, respectively. Can anyone shed some light on what I should look at to track this one down? /Users/scottm/play/llvm/branches/llvm-spu/lib/CodeGen/SelectionDAG/ ScheduleDAG.cpp:406: failed assertion `I != VRBaseMap.end() && "Node emitted out of order - late"' -scooter -------------- next part -------------- A non-text attachment was scrubbed... Name: crtbegin.debug Type: application/octet-stream Size: 12231 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20071015/c76cfe0f/attachment.obj> -------------- next part ------...
2009 Dec 18
2
[LLVMdev] Compilation problem with JIT/Interpreter
...I have less and less time to hack. I'm becoming less enthusiastic about continued development since IBM has all but declared the Cell dead (no one from the Cell team at Supercomputing, so, read between the lines.) A UCLA comp sci group might pick up and finish the backend for their research. -scooter On Mon, Dec 7, 2009 at 4:04 PM, Anton Korobeynikov <anton at korobeynikov.info>wrote: > Hello > > > Is there additionnals information to provide to the linker when > > compiling llvm on mac os x? > Do you have libffi installed somehere? > > > > > > The...
2009 Dec 18
0
[LLVMdev] Compilation problem with JIT/Interpreter
Thank very much for this answer, so my last question will be: is it possible to use the LLVM JIT on a PS3 with Yellow Dog 6.2 distribution, instead of the LLVM interpreter, by using the PPE as it seems to be similar to 64-bit PowerPC processors? 2009/12/18 Scott Michel <scooter.phd at gmail.com> > Jerome: > > No, there are no plans to JIT to SPU. That's considerably more complicated > -- you'd have to figure out when to JIT to the SPU and live with all of the > constraints that the SPU imposes (data reformatting, r/w DMA, ensure your > code l...
2009 Jan 02
0
[LLVMdev] New .ll parser
Checking in ParserInternals.h would probably be a good thing about now... because if you take this update, it doesn't compile. -scooter On Thu, Jan 1, 2009 at 11:12 PM, Chris Lattner <clattner at apple.com> wrote: > I just checked in a new parser for .ll files, deleting the old bison > parser. This means that the last of the ".cvs" files are gone from the > tree, which will hopefully make the world a hap...
2007 Oct 16
0
[LLVMdev] The one remaining bug keeping CellSPU from release...
...shed some light on > what I should look at to track this one down? > > /Users/scottm/play/llvm/branches/llvm-spu/lib/CodeGen/SelectionDAG/ > ScheduleDAG.cpp:406: failed assertion `I != VRBaseMap.end() && "Node > emitted out of order - late"' > > > -scooter > > <crtbegin.debug> > <testcase.ll> > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
2007 Oct 17
2
[LLVMdev] The one remaining bug keeping CellSPU from release...
...095d0: ch,flag = inlineasm 0xa906e30, 0xa908570, 0xa908c60, 0xa9070e0, 0xa9075a0, 0xa9070e0, 0xa906e30:1 SU(2): 0xa909560: ch = CopyToReg 0xa907600:1, 0xa909500, 0xa907600 SU(3): 0xa907ff0: ch = BRZ 0xa907600, 0xa906f10, 0xa909560 0xa906e30: ch,flag = CopyToReg 0xa908760, 0xa9070e0, 0xa9071f0 -scooter On Oct 16, 2007, at 12:00 AM, Evan Cheng wrote: > This is a scheduler assertion. It means a value (virtual register) use > is somehow scheduled before its definition. > > Please run llc in gdb. Call dumpSchedule() to print out the schedule. > Also please let me know which node it i...
2009 Jan 02
3
[LLVMdev] New .ll parser
I just checked in a new parser for .ll files, deleting the old bison parser. This means that the last of the ".cvs" files are gone from the tree, which will hopefully make the world a happier place for windows users in particular. I tested it thoroughly but expect minor fallout, if you notice any problems, please let me know.
2020 Mar 26
2
Blocking IP addresses on a per mountpoint level
...but my user with /mountpointB.ogg wants to block that IP address. b) is it possible to geoblock ranges of IP addresses and whole countries on a per mountpoint basis? c) what options do people use for geoblocking? I'm on a VPS so ipset is currently not an option. Many thanks in advance Chip Scooter -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.xiph.org/pipermail/icecast/attachments/20200326/03e1f93f/attachment.html>
2009 Feb 25
3
[LLVMdev] [llvm-commits] [llvm] r65296 - in /llvm/trunk: include/llvm/CodeGen/ lib/CodeGen/SelectionDAG/ lib/Target/CellSPU/ lib/Target/PowerPC/ lib/Target/X86/ test/CodeGen/X86/
...ch first? Evan On Feb 24, 2009, at 7:14 PM, Scott Michel wrote: > Evan: > > I did not encounter this back trace before I committed the newest > BuildVectorSDNode patch, which removed all class instance members > and passes results back via reference parameters. > > > -scooter > > On Tue, Feb 24, 2009 at 11:39 AM, Evan Cheng <evan.cheng at apple.com> > wrote: > I believe this patch has broken a PPC app that I am tracking. Here > is a reduced test case. Reproduce with llc -mattr=+Altivec -mcpu=g5. > The backtrace looks like this: > > #0...
2009 Feb 25
0
[LLVMdev] [llvm-commits] [llvm] r65296 - in /llvm/trunk: include/llvm/CodeGen/ lib/CodeGen/SelectionDAG/ lib/Target/CellSPU/ lib/Target/PowerPC/ lib/Target/X86/ test/CodeGen/X86/
Evan: I work on reverting it, although, when I tried yesterday, it wasn't particularly clean (lots of rejected patches, presumably due to intervening commits.) Are you still getting the backtrace or is this just a case of incorrectly generated code? -scooter On Wed, Feb 25, 2009 at 10:09 AM, Evan Cheng <echeng at apple.com> wrote: > Things are still broken. Unfortunately llvm test suite does not contain > enough vector code to fully test this. Can you revert the patch first? > Evan > > On Feb 24, 2009, at 7:14 PM, Scott Michel wr...
2020 Mar 20
2
Issue with Wordpress in HTTPS and Icecast Stream URL in HTTP
...lt;icecast>' Do you know how to fix it ? BR, *Ceelo* On Wed, Mar 18, 2020 at 7:34 PM Chip <chiapas at aktivix.org> wrote: > How about this: > > - https://serverok.in/centovacast-enable-ssl-on-icecast > > You're welcome. Don't mention it :o) > > Chip Scooter > > On Wed, 18 Mar 2020 at 15:31, Damien GENESTE <d.geneste at illud.fr> wrote: > >> Hello, >> >> Configuration : >> - Debian 8 >> - Wordpress 5.3.2 (Apache) >> - Icecast 2 >> - Radio web player : Streamcast >> >> I just installed...
2009 Mar 02
1
[LLVMdev] [llvm-commits] [llvm] r65296 - in /llvm/trunk: include/llvm/CodeGen/ lib/CodeGen/SelectionDAG/ lib/Target/CellSPU/ lib/Target/PowerPC/ lib/Target/X86/ test/CodeGen/X86/
...> I work on reverting it, although, when I tried yesterday, it wasn't > particularly clean (lots of rejected patches, presumably due to > intervening commits.) > > Are you still getting the backtrace or is this just a case of > incorrectly generated code? > > > -scooter > > On Wed, Feb 25, 2009 at 10:09 AM, Evan Cheng <echeng at apple.com> wrote: > Things are still broken. Unfortunately llvm test suite does not > contain enough vector code to fully test this. Can you revert the > patch first? > > Evan > > On Feb 24, 2009, at 7:...
2020 Jan 14
3
Load balancing Icecast - aggregated logs
...log > files. > May I ask which applications do you know of that can aggregate and interpret Icecast log files from multiple servers in this way? Free and open source solutions, of course, are good but I need not be restricted to those in this regard. With many thanks and best regards Chip Scooter -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.xiph.org/pipermail/icecast/attachments/20200114/a75a896e/attachment.html>
2007 Oct 18
0
[LLVMdev] The one remaining bug keeping CellSPU from release...
...0, 0xa908570, 0xa908c60, > 0xa9070e0, 0xa9075a0, 0xa9070e0, 0xa906e30:1 > SU(2): 0xa909560: ch = CopyToReg 0xa907600:1, 0xa909500, 0xa907600 > SU(3): 0xa907ff0: ch = BRZ 0xa907600, 0xa906f10, 0xa909560 > > 0xa906e30: ch,flag = CopyToReg 0xa908760, 0xa9070e0, 0xa9071f0 > > > -scooter > > On Oct 16, 2007, at 12:00 AM, Evan Cheng wrote: > >> This is a scheduler assertion. It means a value (virtual register) >> use >> is somehow scheduled before its definition. >> >> Please run llc in gdb. Call dumpSchedule() to print out the schedule. >...
2007 Apr 18
1
[LLVMdev] Regalloc Refactoring
Who's your advisor? -scooter (aka "Dr. B. Scott Michel, UCLA CS 2004" :-) On Apr 12, 2007, at 4:39 PM, Fernando Magno Quintao Pereira wrote: > >>> And I have a quite fast algo that I believe is simpler than >>> [Budimlic02] >>> and I can share it with you :) >> >> Do y...
2020 Mar 20
1
Issue with Wordpress in HTTPS and Icecast Stream URL in HTTP
...in your conf file. > > Check it from the command line using: *xmllint icecast.xml* > > That will show you the error. > > Or use something like this: https://xmlvalidation.com/ > > Probably an unclosed tag. > > You're welcome. Don't mention it :o) > > Chip Scooter > > On Fri, 20 Mar 2020 at 14:06, Damien GENESTE <d.geneste at illud.fr> wrote: > >> Hello, >> >> Thank you for your help. I tried to follow steps on your link but it >> didn't work. I used this one : >> https://weekly-geekly.github.io/articles/35023...