search for: shouldnots

Displaying 13 results from an estimated 13 matches for "shouldnots".

Did you mean: shouldnot
2011 Jul 06
2
[LLVMdev] code generation removes duplicated instructions
Hello, The code snippet pasted in the previous email are generated at -O0 with llc. Since I am inserting a new basic block (contains printf statement and program exit) which is jumped upon based on the result of the comparison, the compiler cannot/shouldnot optimize that away by means of DCE or anything else. The same kind of stuff is happening for the following duplication. bb6.split:
2019 Oct 05
3
Failed to create BUILTIN\Guests group NT_STATUS_ACCESS_DENIED! Can Winbind allocate gids?
...???? idmap config * : backend = tdb ????? idmap config * : range 10000-199999 ????? idmap config DOMAIN : backend = autorid ????? idmap config DOMAIN : range = 200000-2147483647 ??? Ensure the BUILTIN\Guests is mapped ??? Raw ??? net groupman list sid=S-1-5-32-546 Does not bother me shoulds and shouldnots, I'm doing it, and facing a problem which I'd hope can be solved without changing a lot. User db is in LDAP and winbind is not used. many thanks, L.
2013 Aug 27
1
[LLVMdev] [lld] adding deadStrip() to undefined Atoms
Hi Nick, On 8/27/2013 12:45 AM, Nick Kledzik wrote: > On Aug 26, 2013, at 10:20 PM, Shankar Easwaran wrote: >> Can we add deadStrip() to undefinedAtoms as well ? >> >> This will enable to choose whether we want to set the property deadStripNormal or deadStripNever on them. >> >> Also I think it will be cleaner for atoms to be added to deadStripRoot set using a
2011 Jul 06
0
[LLVMdev] code generation removes duplicated instructions
On 6 July 2011 15:57, D S Khudia <daya.khudia at gmail.com> wrote: > Since I am inserting a new basic block (contains printf statement and > program exit) which is jumped upon based on the result of > the comparison, the compiler cannot/shouldnot optimize that away by means of > DCE or anything else. It most certainly can, since the comparison yields always the same result. The
1999 Jul 27
12
hi
hi This is Tarun from Indusa Global , Jamaica pl. reply regards -------------- next part -------------- A non-text attachment was scrubbed... Name: tarun.vcf Type: text/x-vcard Size: 180 bytes Desc: Card for tarun kumar Url : http://lists.samba.org/archive/samba/attachments/19990727/506b9d4c/tarun.vcf
2012 Dec 12
0
[LLVMdev] how to execute a *.ll with a thread_local global variable?
hi guys, i wrote a small program that can load the *.ll file, parse it and execute it. but there is a thread_local global variable. during execution, it says: Cannot allocate thread local storage on this arch! UNREACHABLE executed at /root/llvm/lib/Target/X86/X86JITInfo.cpp:585!. it seems that i did not initialize the executionEngine right or i shouldnot use InitializeNativeTarget()? i
2013 Aug 27
0
[LLVMdev] [lld] adding deadStrip() to undefined Atoms
On Aug 26, 2013, at 10:20 PM, Shankar Easwaran wrote: > Can we add deadStrip() to undefinedAtoms as well ? > > This will enable to choose whether we want to set the property deadStripNormal or deadStripNever on them. > > Also I think it will be cleaner for atoms to be added to deadStripRoot set using a single API. Can you give more more background on this? When would you want
2011 Jul 06
0
[LLVMdev] code generation removes duplicated instructions
On 6 July 2011 14:55, D S Khudia <daya.khudia at gmail.com> wrote: > The following is an example code generation for arm and x86 for a same IR > BB. In the x86 code I can see that the same computation is done twice and > result is stored in two different registers and then these two different > registers are used for comparision. Yes, but you shouldn't rely on it, since the
2019 Oct 07
0
Failed to create BUILTIN\Guests group NT_STATUS_ACCESS_DENIED! Can Winbind allocate gids?
...p config * : range 10000-199999 > ????? idmap config DOMAIN : backend = autorid > ????? idmap config DOMAIN : range = 200000-2147483647 > > ??? Ensure the BUILTIN\Guests is mapped > ??? Raw > > ??? net groupman list sid=S-1-5-32-546 > > > Does not bother me shoulds and shouldnots, I'm doing it, and > facing a problem which I'd hope can be solved without > changing a lot. User db is in LDAP and winbind is not used. > many thanks, L. > > > any experts roaming around? To make it a bit bizarre - it only happens to one of the three Sambas which re virt...
2019 Oct 05
2
Failed to create BUILTIN\Guests group NT_STATUS_ACCESS_DENIED! Can Winbind allocate gids?
hi everyone, I believe a resolution is there - https://access.redhat.com/solutions/4367771 But what I'm hoping for is an expert would comment how would this apply to Samba with LDAP backend? many thanks, L.
2013 Aug 27
3
[LLVMdev] [lld] adding deadStrip() to undefined Atoms
Hi, Can we add deadStrip() to undefinedAtoms as well ? This will enable to choose whether we want to set the property deadStripNormal or deadStripNever on them. Also I think it will be cleaner for atoms to be added to deadStripRoot set using a single API. Thanks Shankar Easwaran -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by the Linux Foundation
2011 Jul 06
2
[LLVMdev] code generation removes duplicated instructions
Thank you for replying. Yes. The remaining part of the BB is in splitted basic block. The following is an example code generation for arm and x86 for a same IR BB. In the x86 code I can see that the same computation is done twice and result is stored in two different registers and then these two different registers are used for comparision. By the way I am duplicating instruction and inserting
2011 Jul 06
2
[LLVMdev] code generation removes duplicated instructions
Hi Renato, I am trying to add a intrinsic call between the similar two instructions which either I'll remove or convert to nop in codegen. Does that kind of seem appropriate for the purpose here? Thanks Daya On Wed, Jul 6, 2011 at 11:55 AM, Renato Golin <renato.golin at arm.com> wrote: > On 6 July 2011 15:57, D S Khudia <daya.khudia at gmail.com> wrote: > > Since I am