Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FlagLT (0.41 sec)

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

    // absorb flag constants into branches
    (EQ (FlagEQ) yes no) => (First yes no)
    (EQ (FlagLT) yes no) => (First no yes)
    (EQ (FlagGT) yes no) => (First no yes)
    
    (NE (FlagEQ) yes no) => (First no yes)
    (NE (FlagLT) yes no) => (First yes no)
    (NE (FlagGT) yes no) => (First yes no)
    
    (LT (FlagEQ) yes no) => (First no yes)
    (LT (FlagLT) yes no) => (First yes no)
    (LT (FlagGT) yes no) => (First no yes)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (CMPWUconst (SRWconst _ [c]) [n]) && c > 0 && c < 32 && (1<<uint(32-c)) <= uint32(n) => (FlagLT)
    
    (CMPWconst  (ANDWconst _ [m]) [n]) && int32(m) >= 0 &&  int32(m) <  int32(n) => (FlagLT)
    (CMPWUconst (ANDWconst _ [m]) [n]) && uint32(m) < uint32(n) => (FlagLT)
    
    (CMPconst  (RISBGZ x {r}) [c]) && c > 0 && r.OutMask() < uint64(c) => (FlagLT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// Constant condition code values. The condition code can be 0, 1, 2 or 3.
    		{name: "FlagEQ"}, // CC=0 (equal)
    		{name: "FlagLT"}, // CC=1 (less than)
    		{name: "FlagGT"}, // CC=2 (greater than)
    		{name: "FlagOV"}, // CC=3 (overflow)
    
    		// Fast-BCR-serialization to ensure store-load ordering.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
Back to top