Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for flagConstant (0.24 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/ARM.rules

    (GE (FlagConstant [fc]) yes no) && !fc.ge() => (First no yes)
    
    (ULT (FlagConstant [fc]) yes no) &&  fc.ult() => (First yes no)
    (ULT (FlagConstant [fc]) yes no) && !fc.ult() => (First no yes)
    
    (ULE (FlagConstant [fc]) yes no) &&  fc.ule() => (First yes no)
    (ULE (FlagConstant [fc]) yes no) && !fc.ule() => (First no yes)
    
    (UGT (FlagConstant [fc]) yes no) &&  fc.ugt() => (First yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  3. 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