Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for cmovnb (0.43 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    	{AFMOVQ, C_NSOREG, C_NONE, C_NONE, C_FREG, C_NONE, 21, 4, 0, 0, 0},
    
    	/* long displacement store */
    	{AMOVB, C_ZREG, C_NONE, C_NONE, C_LAUTO, C_NONE, 30, 8, REGSP, 0, 0},
    	{AMOVB, C_ZREG, C_NONE, C_NONE, C_LAUTOPOOL, C_NONE, 30, 8, REGSP, LTO, 0},
    	{AMOVB, C_ZREG, C_NONE, C_NONE, C_LOREG, C_NONE, 30, 8, 0, 0, 0},
    	{AMOVB, C_ZREG, C_NONE, C_NONE, C_LOREGPOOL, C_NONE, 30, 8, 0, LTO, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/a.out.go

    	ALU32ID
    	ALU52ID
    	APCALAU12I
    	APCADDU12I
    	AJIRL
    	ABGE
    	ABLT
    	ABLTU
    	ABGEU
    
    	ADIV
    	ADIVD
    	ADIVF
    	ADIVU
    	ADIVW
    
    	ALL
    	ALLV
    
    	ALUI
    
    	AMOVB
    	AMOVBU
    
    	AMOVD
    	AMOVDF
    	AMOVDW
    	AMOVF
    	AMOVFD
    	AMOVFW
    
    	AMOVH
    	AMOVHU
    	AMOVW
    
    	AMOVWD
    	AMOVWF
    
    	AMOVWL
    	AMOVWR
    
    	AMUL
    	AMULD
    	AMULF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. test/codegen/mathbits.go

    func IterateBits(n uint) int {
    	i := 0
    	for n != 0 {
    		// amd64/v1,amd64/v2:"BSFQ",-"CMOVEQ"
    		// amd64/v3:"TZCNTQ"
    		i += bits.TrailingZeros(n)
    		n &= n - 1
    	}
    	return i
    }
    
    func IterateBits64(n uint64) int {
    	i := 0
    	for n != 0 {
    		// amd64/v1,amd64/v2:"BSFQ",-"CMOVEQ"
    		// amd64/v3:"TZCNTQ"
    		i += bits.TrailingZeros64(n)
    		n &= n - 1
    	}
    	return i
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	{i: 72, as: AMOVW, a1: C_ADDCON, a6: C_LAUTO},
    	{i: 72, as: AMOVWZ, a1: C_SCON, a6: C_LAUTO},
    	{i: 72, as: AMOVWZ, a1: C_ADDCON, a6: C_LAUTO},
    	{i: 72, as: AMOVB, a1: C_SCON, a6: C_LAUTO},
    	{i: 72, as: AMOVB, a1: C_ADDCON, a6: C_LAUTO},
    	{i: 72, as: AMOVBZ, a1: C_SCON, a6: C_LAUTO},
    	{i: 72, as: AMOVBZ, a1: C_ADDCON, a6: C_LAUTO},
    	{i: 72, as: AMOVD, a1: C_SCON, a6: C_LOREG},
    	{i: 72, as: AMOVD, a1: C_ADDCON, a6: C_LOREG},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (CMOVL(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS) x y (InvertFlags cond))
        => (CMOVL(EQ|NE|GT|LT|GE|LE|CS|HI|LS|CC) x y cond)
    (CMOVW(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS) x y (InvertFlags cond))
        => (CMOVW(EQ|NE|GT|LT|GE|LE|CS|HI|LS|CC) x y cond)
    
    // Absorb constants generated during lower
    (CMOV(QEQ|QLE|QGE|QCC|QLS|LEQ|LLE|LGE|LCC|LLS|WEQ|WLE|WGE|WCC|WLS) _ x (FlagEQ)) => x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm_amd64.s

    	MOVQ acc3, t3
    	// Add in case the operand was > p256
    	ADDQ $-1, acc0
    	ADCQ p256const0<>(SB), acc1
    	ADCQ $0, acc2
    	ADCQ p256const1<>(SB), acc3
    	ADCQ $0, mul0
    	CMOVQNE t0, acc0
    	CMOVQNE t1, acc1
    	CMOVQNE t2, acc2
    	CMOVQNE t3, acc3
    	// If condition is 0, keep original value
    	TESTQ DX, DX
    	CMOVQEQ acc4, acc0
    	CMOVQEQ acc5, acc1
    	CMOVQEQ acc6, acc2
    	CMOVQEQ acc7, acc3
    	// Store result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    	{as: AMOVHBR, a1: C_XOREG, a6: C_REG, type_: 45, size: 4},
    
    	{as: AMOVB, a1: C_SOREG, a6: C_REG, type_: 8, size: 8},
    	{as: AMOVB, a1: C_XOREG, a6: C_REG, type_: 109, size: 8},
    	{as: AMOVB, a1: C_REG, a6: C_SOREG, type_: 7, size: 4},
    	{as: AMOVB, a1: C_REG, a6: C_XOREG, type_: 108, size: 4},
    	{as: AMOVB, a1: C_REG, a6: C_REG, type_: 13, size: 4},
    
    	{as: AMOVBZ, a1: C_SOREG, a6: C_REG, type_: 8, size: 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/mips/asm0.go

    	{AMOVV, C_REG, C_NONE, C_LEXT, 35, 12, REGSB, sys.MIPS64, 0},
    	{AMOVB, C_REG, C_NONE, C_LEXT, 35, 12, REGSB, sys.MIPS64, 0},
    	{AMOVBU, C_REG, C_NONE, C_LEXT, 35, 12, REGSB, sys.MIPS64, 0},
    	{AMOVW, C_REG, C_NONE, C_LAUTO, 35, 12, REGSP, 0, 0},
    	{AMOVWU, C_REG, C_NONE, C_LAUTO, 35, 12, REGSP, sys.MIPS64, 0},
    	{AMOVV, C_REG, C_NONE, C_LAUTO, 35, 12, REGSP, sys.MIPS64, 0},
    	{AMOVB, C_REG, C_NONE, C_LAUTO, 35, 12, REGSP, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/cpu.go

    	ABEQZ
    	ABGEZ
    	ABGT
    	ABGTU
    	ABGTZ
    	ABLE
    	ABLEU
    	ABLEZ
    	ABLTZ
    	ABNEZ
    	AFABSD
    	AFABSS
    	AFNEGD
    	AFNEGS
    	AFNED
    	AFNES
    	AMOV
    	AMOVB
    	AMOVBU
    	AMOVF
    	AMOVD
    	AMOVH
    	AMOVHU
    	AMOVW
    	AMOVWU
    	ANEG
    	ANEGW
    	ANOT
    	ASEQZ
    	ASNEZ
    
    	// End marker
    	ALAST
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    	{AMONITOR, ynone, Px, opBytes{0x0f, 0x01, 0xc8, 0}},
    	{AMWAIT, ynone, Px, opBytes{0x0f, 0x01, 0xc9, 0}},
    	{AMOVAPD, yxmov, Pe, opBytes{0x28, 0x29}},
    	{AMOVAPS, yxmov, Pm, opBytes{0x28, 0x29}},
    	{AMOVB, ymovb, Pb, opBytes{0x88, 0x8a, 0xb0, 0xc6, 00}},
    	{AMOVBLSX, ymb_rl, Pm, opBytes{0xbe}},
    	{AMOVBLZX, ymb_rl, Pm, opBytes{0xb6}},
    	{AMOVBQSX, ymb_rl, Pw, opBytes{0x0f, 0xbe}},
    	{AMOVBQZX, ymb_rl, Pw, opBytes{0x0f, 0xb6}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top