search for: intsruct

Displaying 3 results from an estimated 3 matches for "intsruct".

Did you mean: instruct
2000 Jan 14
0
Q: Solaris, two interfaces, outgoing smb fed throug 'wrong' interface!
...rough default interface instead of specified, causing congestion. Question: How can I instruct samba to tell Solaris to SEND data through specified network interface? Detailed: I have a solaris filesserver with two network interfaces, hme0 and hme1. I'd like NFS to use hme0 and smb hme1. I intsruct samba to only listen for connections on the IP-address associated with eth1. (as os 2.0.6 I actually specify interfaces=hme1, I also set socket address). Both ports are connected (with unique ethernet numbers) to the same network (different switches though). The routing table looks like this: se...
2008 Feb 10
0
[LLVMdev] Some questions about live intervals
...ll, as far as I understand this algorithm, it does not do any explicit interval splitting. But it tries to color each live range of the live interval separately and may assign different colors to each of those live ranges. After color assignment is done, the algorithm needs to insert some move intsructions, which is done by step 6. In any case, it does not really mean each program point, but only end-points of live range belonging to an live interval. So, it could be seen as some sort of live interval spliiting, but a very limited one, since it only splits at the end of live ranges of live i...
2008 Feb 01
3
[LLVMdev] Some questions about live intervals
Hi Fernando, > Hi, Roman, > > we have an implementation of an allocator for LLVM that, like > Sarkar's, allows to split live ranges at any program point. You can > find > its description here: > > http://compilers.cs.ucla.edu/fernando/publications/drafts/long_PereiraPalsberg07.pdf > I've read your paper already. It is a very interesting approach! But