search for: andn

Displaying 18 results from an estimated 18 matches for "andn".

Did you mean: and
2009 May 15
1
[LLVMdev] RFC: More AVX Experience
...- The second source object class (register or memory, depending) // DSTCLASS - The destination object class (register or memory, depending) // ADDRCLASS - Either 'addr' or REGCLASS, depending // MEMOP - Either 'memop' or 'srcvalue,' depending // Scalar defm FsANDN : sse1_sse2_avx_binary_scalar_xs_xd_node_pattern_rm_rrm< 0x55, "andn", [[(set DSTREGCLASS:$dst, (INTTYPE (and (not (INTTYPE (bitconvert (TYPE SRCREGCLASS:$src1)))),...
2019 Aug 15
2
[RFC][RISCV] Selection of complex codegen patterns into RISCV bit manipulation instructions
Hi Roman, > That depends. > If there's LLVM intrinsic for it, then any normal optimization pass could do it. > In cttz's case it's mainly done in LoopIdiom pass. Oh yes. Thank you! Unfortunately several of the instructions of the bit manipulation extension don't seem to have an intrinsic already in LLVM. That will require to add some passes to the middle end. >
2019 Aug 14
3
[RFC][RISCV] Selection of complex codegen patterns into RISCV bit manipulation instructions
...intrinsic functions to the user in order to implement code that is more optimal for bit manipulations on RISCV targets, but also to provide automatic optimization by lowering simple code patterns into optimized bit manipulation assembly,     %neg = xor i32 %1, -1                    ----->      andn t0, t0, t1     %and = and i32 %0, %neg just in case the user wants such optimization but is not aware of all the bits that can be optimized. I'm dealing with the fact that it is pretty hard to select some patterns of DAG nodes in order to replace them with an optimal machine equivalent machi...
2008 Jul 21
0
[LLVMdev] Extending vector operations
...number of > operations. This would be an extension of select to support an <N x > i1> vector mask to select between elements of <N x T> vectors for some > basic type T. Vector min, max, sign, etc. can be built on top of this > operation. How is this anything other than AND/ANDN/OR on any integer vector type? I don't see what adding this to the IR gets you for vectors, since "vector of i1" doesn't mean "vector of bits" necessarily. > 5) Vector comparisons that return <N x i1> > > This is maybe not a must-have, and perhaps mo...
2016 Feb 24
5
Desynced DC
Hi list, We use samba 4.1.17 (debian's version) on several DCs. I just realized that one of them is desynced and cannot get it to resync. The long story: we got 5 DCs splitted over several sites. Recently we had to replace one of them (let's call him DC5). Since both had to run in parallel for data recovery/users work we decided to join a brand new DC (DC6) and latter demote the
2016 Feb 25
0
Desynced DC
I'd try to rejoin the faulty DC instead of copying sam.ldb files. I guess there are unique DC specific entries in the local database. Can be samba-tool replicate works if you try the push the settings from an other dc or pull em on the faulty dc. What command did you try andn on what dc? Am 25.02.2016 um 14:02 schrieb Sébastien Le Ray: > Still the same error… > > ERROR(<class 'samba.drs_utils.drsException'>): DsReplicaSync failed - > drsException: DsReplicaSync failed (-1073610723, > 'NT_STATUS_RPC_PROTOCOL_ERROR') > > Would...
2019 Aug 02
0
Serverinfo Error
Uh.. .. poweroff. ;-) And then cleanup the AD-DB and DNS old records. Dns tool and Domain user andn computer mananger shows all you need. This is because, not many records where shown in you ad-db. Note, for the new server use a new hostname. Greetz, Louis > -----Oorspronkelijk bericht----- > Van: samba [mailto:samba-bounces at lists.samba.org] Namens > Robert A Wooldridge via...
2009 Feb 26
1
wrapped cell contents in tables
...-------|------------------|--------------------- > 9 | Other | Another element | another element > | | | with 2 lines > ----|---------|------------------|--------------------- > 5 | Illust. | An illustration | line breaks are not > | | andn I think you | possible in a table > | | know what I mena.| > > This is totally unambiguous and easy to scan for the reader. The > problem is that, even though it's easy to read, it's also more tedious > to write. > Reading you a second time, I agree that...
2009 Feb 25
2
A Modest Definition List Proposal (David E. Wheeler)
Taking David's example further, here is a first try: id | name | description | more info -----+---------+-------------------+----------------- 6 | Inset | An inset element | just one element 8 | Stories | Another element | another element : with 2 lines, without : colons on the left. 9 | Other
2014 Aug 08
6
[LLVMdev] Signed NaNs in APFloat arithmetic
Is there any intention of making floating absolute and negate primitive IR instructions? I ask because only a few days ago I was also faced with the task of implementing negate in my compiler, and finding no suitable IR instruction, simply subtracted from zero. But this is wrong. I could change my code to do the bit casting and fiddling, but I wonder: would that be lowered appropriately on all
2015 Jul 23
0
[LLVMdev] some superoptimizer results
...thought > about making that into a top-level goal. > What I said is sort of misleading in that the targets have a variety of "exotic" instructions that can effectively collapse multiple nodes in the critical path e.g. x86 BMI, PPC rlwinm, etc. Even stuff like whether the target has ANDN will affect the critical path (or an instruction taking a general truth table). Also the precise cost in a critical path of the individual instructions can vary a fair amount.to the extent that except for getting rid of mul's or div's it's not a universal win (even with mul, there are o...
2013 Mar 01
0
XCP 1.6 don’t pass throug all traffic to (tpcdump) snort
...rt b12,b13,b14,b15 (these servers work on a XCP 0.5) - on port a3 have have mirrort al ports from a1,a2,a4-b24 - have a other HP server with XCP1.6 with (Debian 6.0.6 as host) and install snort. this has 2 eth carts in it. Eth0 is plugt in the VLAN2 network and configured with ip andn eth1 is in the a3 mirror port. The eth1 is not configured with any IP address. This is only for listing. - have a AP in VLAN 4 on port a13 - And other 8 VLAN for other purpose. a1 | a3 a13 b12 b14 b23 |-----------------...
2014 Aug 08
2
[LLVMdev] Signed NaNs in APFloat arithmetic
...vey from my various manuals: > > - m68k has negate and absolute value instructions. > > - so does x87 > > - so does PA-RISC > > - but SPARC does not. > > - and neither does x86 SSE (although bit fiddling might be real cheap > here) > > [V]AND[SS|SD|PS|PD] / [V]ANDN[SS|SD|PS|PD] / [V]OR[SS|SD|PS|PD] is by far > the preferred idiom to perform these operations on SSE/AVX. > > – Steve > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc...
2015 Jul 23
3
[LLVMdev] some superoptimizer results
> Interesting. Do you happen to have some examples laying around? Sorry, no, I'll have to re-run. I felt that the select-heavy results were sort of humorous and clever at first, but then just annoying. > Except for decode-limited situations, in general decreasing the critical path length is more important > than eliminating instructions. The critical path length is a
2008 Jun 17
2
[LLVMdev] VFCmp failing when unordered or UnsafeFPMath on x86
Hi Nate! I don't see how that would work. Select doesn't work per element. Say we're trying to vectorize the following C++ code: if(v[0] < 0) v[0] += 1.0f; if(v[1] < 0) v[1] += 1.0f; if(v[2] < 0) v[2] += 1.0f; if(v[3] < 0) v[3] += 1.0f; With SSE assembly this would be as simple as: movaps xmm1, xmm0 // v in xmm0 cmpltps xmm1, zero // zero =
2011 Jan 09
5
replace x86 with x64 system and reuse existing LVM
I want to replace an existing 32bit with a 64bit installation (Centos 5). There's an existing LVM with lots of partitions. Most are used for Xen guests. The system itself uses only one of them plus a separate /boot partition that is not on LVM. What's the best course of action here? Should I do the reinstall with kickstart or better manually and reuse the existing filesystem? As I
2008 Jul 21
10
[LLVMdev] Extending vector operations
Hi, We would like to extend the vector operations in llvm a bit. We're hoping to get some feedback on the right way to go, or some starting points. I had previously had some discussion on this list about a subset of the changes we have in mind. All of these changes are intended to make target-independent IR (i.e. IR without machine specific intrinsics) generate better code or be
2019 Aug 02
9
Serverinfo Error
After a quick look at this thread, yes, i suggest you add a new DC. I also suggest you read : First this one. https://github.com/thctlo/samba4/blob/master/howtos/stretch-base-1.1-checkup.txt Now you are joining a existing domain. Line 20, the resolv.conf, set the first name server to you windows DC, the second to the internet. Besides that, before you install samba do these checks. Next is