search for: hairier

Displaying 12 results from an estimated 12 matches for "hairier".

Did you mean: barrier
2012 Dec 13
0
[LLVMdev] Question about FMA formation
...ity in > codegen-prepare would solve that problem. Thus, we can re-associate in > codegen-prepare and emit FMA in fast-isel. > Yep. I misread the association on Shuxin's example, but even ((a*b) + (c*d)) + e would match to a 3-instructions: (fadd (fma a b (fmul c d)) e). If there are hairier examples that really require reassociation my vote would be for this last scheme: An FMA-friendly reassociation pass run before isel that exposes simple patterns for isel to match. - Lang. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pip...
2009 Nov 17
2
src/dst TIDs static @ 69 ?
...are anxious to tighten security. They hope to only allow tftp traffic on port 69, coming and going. This would bypass the RFC1350 client TID=ephemeral and server ACK TID=!69. Is there any chance tftpd-hpa would do this with "-R 69:69", or would this require tftpd-hpa to threaded, with a hairier connection lookup? Can the syslinux client be constrained to send tftp from port 69? [ googling, R'ing TFM, and even glancing briefly at the code don't provide quick clarity ...]
2002 Oct 21
1
locking .. smb locks and unix locks
...es, will there be a problem with locking? Or will it be ok, since they both just use the underlying Unix locks? Has anyone done this? Regards, Matt PS. Another possibility that occurred to me is the have the second server on a second machine NFS mounting the first. But I think this would be even hairier. -- To unsubscribe from this list go to the following URL and read the instructions: http://lists.samba.org/mailman/listinfo/samba .
2012 Dec 13
2
[LLVMdev] Question about FMA formation
On Dec 12, 2012, at 5:20 PM, Eric Christopher <echristo at gmail.com> wrote: > Why not just form them via a fast IR level pass and just have patterns match in fast isel instead of trying to form code? Or are we saying the same thing? (Your words of "fast isel spot"ting and "form better code" caused me to think you mean to do optimizations within the fast isel pass).
2005 Aug 26
0
[LLVMdev] Mapping of class derivated and interfaces
...he dark with this. Well that's really just a specific manifestation of implementing virtual function calls basically. The key to this issue is virtual function tables or vtables. Again you can explore this by looking at how LLVM compiles some appropriate C++ examples, though it's a little hairier. Try feeding the following example through llvmgcc -S struct base { virtual float foo() = 0; }; struct derived: base { float foo() { return 4.5; } }; float test(base* b) { return b->foo(); } float test_derived() { derived d; return test(&a...
2005 Aug 25
5
[LLVMdev] Mapping of class derivated and interfaces
Hi! i'm tring to figure out how classes and dependencies can be mapped to llvm. I've read on docs that nesting can be used: class base { int Y; }; class derived : base { short Z; }; becomes: %base = type { int } %derived = type { %base, short } That's ok, but now the question is: how do i encode a function that takes "base" type so that it also takes "derived"
2010 Feb 01
0
[LLVMdev] Adding CFG edges for null pointer exceptions?
Hi James, > Is it possible to add edges to the CFG from instructions that reference > memory to exception landing pads? I want to do this so that I can > convert SEGV signals into exceptions that can be safely unwound and > caught. My compiler's existing code generator handles this by having a > combined memory dereference and jump on null instruction. LLVM doesn't
2010 Jan 31
2
[LLVMdev] Adding CFG edges for null pointer exceptions?
Hi, Is it possible to add edges to the CFG from instructions that reference memory to exception landing pads? I want to do this so that I can convert SEGV signals into exceptions that can be safely unwound and caught. My compiler's existing code generator handles this by having a combined memory dereference and jump on null instruction. LLVM doesn't seem to have anything similar - I was
2019 Apr 23
1
Re: [nbdkit PATCH 7/7] nbd: Implement structured replies
On 4/22/19 7:50 PM, Eric Blake wrote: > Time to enhance the nbd plugin to request structured replies from the > server. For now, deal only with structured reads. The server can now > return sparse reads, even though we need nbdkit version 3 before we > can in turn return sparse reads back to the client. > > In general, we have to assume the server is malicious, and so we must
2005 Dec 14
4
Is it possible to highlight search keywords in results?
I''m wondering if ferret has any built-in search/replace mechanism that I might be able to use to highlight the query data in each search result. The reason I think this would be a good idea is that I could end up having to practically duplicate the ferret query parser just to interpret the query so that I can figure out how to highlight the keywords in the search results. Just in case
2001 Jul 20
3
data loss with ssh -n
Hi, Using OpenSSH 2.9p2 (2.5.2 was also bad), I've noticed data loss on Linux when: 1) ssh -n flag is used, and 2) ssh jobs are run from cron (effectively causing the same as above). What is done, is a command basically like: ssh [-n] -c blowfish -p 722 -i rsakey -l pwget passwdserver passwd > passwd.tmp 2> /tmp/log ie, retrieve dynamically created passwd-file from passwdserver
2006 Jul 05
8
Beating the authentication horse (dead yet?)
Guys, I''m frankly overwhelmed by the number of Rails authentication options(?) out there...from ActiveRBAC to acts_as_authenticated to LoginEngine and so on...so many options, yet on resource I''ve found really distinguishes between each. This is sad, as authentication and user management is really an area where some Rails simplicity pixie dust could be a real boon to