Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for flagConstant (0.16 sec)

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

    func (fc flagConstant) le() bool {
    	return fc.Z() || fc.lt()
    }
    func (fc flagConstant) gt() bool {
    	return !fc.Z() && fc.ge()
    }
    func (fc flagConstant) ge() bool {
    	return fc.N() == fc.V()
    }
    func (fc flagConstant) ult() bool {
    	return !fc.C()
    }
    func (fc flagConstant) ule() bool {
    	return fc.Z() || fc.ult()
    }
    func (fc flagConstant) ugt() bool {
    	return !fc.Z() && fc.uge()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// comparisons, but we don't use such a beast yet.
    		// This op is for temporary use by rewrite rules. It
    		// cannot appear in the generated assembly.
    		{name: "FlagConstant", aux: "FlagConstant"},
    
    		// (InvertFlags (CMP a b)) == (CMP b a)
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    		{name: "InvertFlags", argLength: 1}, // reverse direction of arg0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top