Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FlagGT (0.09 sec)

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

    (NotEqual (FlagGT)) => (MOVDconst [1])
    
    (LessThan (FlagEQ)) => (MOVDconst [0])
    (LessThan (FlagLT)) => (MOVDconst [1])
    (LessThan (FlagGT)) => (MOVDconst [0])
    
    (LessEqual (FlagEQ)) => (MOVDconst [1])
    (LessEqual (FlagLT)) => (MOVDconst [1])
    (LessEqual (FlagGT)) => (MOVDconst [0])
    
    (GreaterThan (FlagEQ)) => (MOVDconst [0])
    (GreaterThan (FlagLT)) => (MOVDconst [0])
    (GreaterThan (FlagGT)) => (MOVDconst [1])
    
    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

    (CMPconst (MOVDconst [x]) [y]) && x<int64(y) => (FlagLT)
    (CMPconst (MOVDconst [x]) [y]) && x>int64(y) => (FlagGT)
    (CMPUconst (MOVDconst [x]) [y]) && uint64(x)==uint64(y) => (FlagEQ)
    (CMPUconst (MOVDconst [x]) [y]) && uint64(x)<uint64(y) => (FlagLT)
    (CMPUconst (MOVDconst [x]) [y]) && uint64(x)>uint64(y) => (FlagGT)
    
    (CMPWconst (MOVDconst [x]) [y]) && int32(x)==int32(y) => (FlagEQ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top