Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for JNZ (0.23 sec)

  1. src/hash/crc32/crc32_amd64.s

    	CRC32Q 8(R8), AX
    	CRC32Q 8(R9), CX
    	CRC32Q 8(R10), DX
    
    	CRC32Q 16(R8), AX
    	CRC32Q 16(R9), CX
    	CRC32Q 16(R10), DX
    
    	ADDQ $24, R8
    	ADDQ $24, R9
    	ADDQ $24, R10
    
    	DECQ R11
    	JNZ loop
    
    	MOVL AX, retA+96(FP)
    	MOVL CX, retB+100(FP)
    	MOVL DX, retC+104(FP)
    	RET
    
    // CRC32 polynomial data
    //
    // These constants are lifted from the
    // Linux kernel, since they avoid the costly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    			default:
    				return intelReg[a]
    			}
    		}
    	}
    	return strings.ToLower(arg.String())
    }
    
    var intelOp = map[Op]string{
    	JAE:       "jnb",
    	JA:        "jnbe",
    	JGE:       "jnl",
    	JNE:       "jnz",
    	JG:        "jnle",
    	JE:        "jz",
    	SETAE:     "setnb",
    	SETA:      "setnbe",
    	SETGE:     "setnl",
    	SETNE:     "setnz",
    	SETG:      "setnle",
    	SETE:      "setz",
    	CMOVAE:    "cmovnb",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/x86/ssa.go

    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg()
    
    		// JNZ 2(PC)
    		p1 := s.Prog(x86.AJNE)
    		p1.To.Type = obj.TYPE_BRANCH
    
    		// MOVL $32, out
    		p2 := s.Prog(x86.AMOVL)
    		p2.From.Type = obj.TYPE_CONST
    		p2.From.Offset = 32
    		p2.To.Type = obj.TYPE_REG
    		p2.To.Reg = v.Reg()
    
    		// NOP (so the JNZ has somewhere to land)
    		nop := s.Prog(obj.ANOP)
    		p1.To.SetTarget(nop)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  4. src/runtime/memmove_amd64.s

    	CMPQ	BX, $32
    	JBE	move_17through32
    	CMPQ	BX, $64
    	JBE	move_33through64
    	CMPQ	BX, $128
    	JBE	move_65through128
    	CMPQ	BX, $256
    	JBE	move_129through256
    
    	TESTB	$1, runtime·useAVXmemmove(SB)
    	JNZ	avxUnaligned
    
    /*
     * check and set for backwards
     */
    	CMPQ	SI, DI
    	JLS	back
    
    /*
     * forward copy loop
     */
    forward:
    	CMPQ	BX, $2048
    	JLS	move_256through2048
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/arch/arch.go

    	instructions["JNLE"] = x86.AJGT /* alternate */
    	instructions["JNO"] = x86.AJOC  /* alternate */
    	instructions["JNP"] = x86.AJPC  /* alternate */
    	instructions["JNS"] = x86.AJPL  /* alternate */
    	instructions["JNZ"] = x86.AJNE  /* alternate */
    	instructions["JO"] = x86.AJOS   /* alternate */
    	instructions["JOC"] = x86.AJOC  /* overflow clear (OF = 0) */
    	instructions["JOS"] = x86.AJOS  /* overflow set (OF = 1) */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  6. src/runtime/asm_386.s

    CALLFN(·call268435456, 268435456)
    CALLFN(·call536870912, 536870912)
    CALLFN(·call1073741824, 1073741824)
    
    TEXT runtime·procyield(SB),NOSPLIT,$0-0
    	MOVL	cycles+0(FP), AX
    again:
    	PAUSE
    	SUBL	$1, AX
    	JNZ	again
    	RET
    
    TEXT ·publicationBarrier(SB),NOSPLIT,$0-0
    	// Stores are already ordered on x86, so this is just a
    	// compile barrier.
    	RET
    
    // Save state of caller into g->sched,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    CALLFN(·call268435456, 268435456)
    CALLFN(·call536870912, 536870912)
    CALLFN(·call1073741824, 1073741824)
    
    TEXT runtime·procyield(SB),NOSPLIT,$0-0
    	MOVL	cycles+0(FP), AX
    again:
    	PAUSE
    	SUBL	$1, AX
    	JNZ	again
    	RET
    
    
    TEXT ·publicationBarrier<ABIInternal>(SB),NOSPLIT,$0-0
    	// Stores are already ordered on x86, so this is just a
    	// compile barrier.
    	RET
    
    // Save state of caller into g->sched,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top