Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    ((EQ|NE|LT|LE|GT|GE) (CMPWconst [0] x:(ANDconst [c] y)) yes no) && x.Uses == 1 => ((EQ|NE|LT|LE|GT|GE) (TSTWconst [int32(c)] y) yes no)
    
    // For conditional instructions such as CSET, CSEL.
    ((Equal|NotEqual|LessThan|LessEqual|GreaterThan|GreaterEqual) (CMPconst [0]  z:(AND        x y))) && z.Uses == 1 =>
    	((Equal|NotEqual|LessThan|LessEqual|GreaterThan|GreaterEqual) (TST x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    		} else {
    			cond -= SPOP_EQ
    		}
    
    		r := int(p.Reg)
    		var rf int = r
    		if p.From3Type() == obj.TYPE_NONE {
    			/* CINC/CINV/CNEG or CSET/CSETM*/
    			if r == obj.REG_NONE {
    				/* CSET/CSETM */
    				rf = REGZERO
    				r = rf
    			}
    			cond ^= 1
    		} else {
    			rf = int(p.GetFrom3().Reg) /* CSEL */
    		}
    
    		rt := int(p.To.Reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top