Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setnb (0.05 sec)

  1. src/cmd/compile/internal/ssa/rewrite386.go

    	return false
    }
    func rewriteValue386_Op386SETNE(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (SETNE (InvertFlags x))
    	// result: (SETNE x)
    	for {
    		if v_0.Op != Op386InvertFlags {
    			break
    		}
    		x := v_0.Args[0]
    		v.reset(Op386SETNE)
    		v.AddArg(x)
    		return true
    	}
    	// match: (SETNE (FlagEQ))
    	// result: (MOVLconst [0])
    	for {
    		if v_0.Op != Op386FlagEQ {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	PSTW:           "pstw",
    	PSTXSD:         "pstxsd",
    	PSTXSSP:        "pstxssp",
    	PSTXV:          "pstxv",
    	PSTXVP:         "pstxvp",
    	SETBC:          "setbc",
    	SETBCR:         "setbcr",
    	SETNBC:         "setnbc",
    	SETNBCR:        "setnbcr",
    	STXVP:          "stxvp",
    	STXVPX:         "stxvpx",
    	STXVRBX:        "stxvrbx",
    	STXVRDX:        "stxvrdx",
    	STXVRHX:        "stxvrhx",
    	STXVRWX:        "stxvrwx",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
Back to top