search for: equivivalent

Displaying 5 results from an estimated 5 matches for "equivivalent".

2004 Apr 22
1
[LLVMdev] Motivation for 'select' instruction
...code, which > has exactly one path through it. I don't think you should need to break > it up into multiple paths. If the control flow has been flattened like > this, does it matter if some combination of predicates is impossible? Yes, because the target processor does not have any equivivalent of the 'select' statement. Generally speaking, I have to search for paths in assembler for that processor and, devise a way to map them back into LLVM and run analysis then, but that's more work (and research). For a start, lowering selects will do. - Volodya
2015 Mar 04
2
Domain Member Server (wheezy) - Unable to edit permissions of share without usermapping - shall I add to Wiki?
Hi Davor, If the mapping of administrator to root is not ideal, I do like the idea of having a specific FileShareAdmin group. But, why chown and not simply chgrp? Thanks! Shane Robinson Chief Administrative Officer SimpeQ Care Inc. t. 604.988.3103 ext. 104 c. 604.506.3311 f. 604.988.3105 Please consider the environment before printing this email. -----Original Message----- From:
2004 Apr 22
0
[LLVMdev] Motivation for 'select' instruction
On Thu, 22 Apr 2004, Vladimir Prus wrote: > > > int %logsch(int %ih, int %nbh) { > > > entry: > > > %tmp.1 = setlt int %nbh, 0 > > > %ih_addr.1 = select bool %tmp.1, int 10, int %ih > > > %nbh_addr.1 = select bool %tmp.1, int 0, int %nbh > > > %tmp.4 = setgt int %nbh_addr.1, 22528
2015 Mar 04
0
Domain Member Server (wheezy) - Unable to edit permissions of share without usermapping - shall I add to Wiki?
...e Robinson <srobinson at simpeq.ca>: > Hi Davor, > > If the mapping of administrator to root is not ideal, I do like the idea of > having a specific FileShareAdmin group. > > But, why chown and not simply chgrp? > If you consider 'root' as a BUILTIN\Administrator equivivalent it might work changing both Share and DACL "the Windows way". I'm not sure it's going to work as 'root' (on the local file/Samba server) cannot be resolved. There is no 'SERVER\root' account in the AD database. I suggest to you to change owner to a domain user acco...
2004 Apr 22
2
[LLVMdev] Motivation for 'select' instruction
Chris Lattner wrote: > The select instruction is basically an SSA-form "conditional move", or a > very simple form of predication. Integer codes often have very complex > CFG's which are usually doing simple things. For example, it's not > uncommon to see something like this: > > if (blah) > X = 14; > > If the body of the if statement is simple