Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Absorb (0.09 sec)

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

    // Absorb 'rotate then insert selected bits [into zero]' into left shift.
    (SLDconst (RISBGZ x {r}) [c])
      && s390x.NewRotateParams(0, 63-c, c).InMerge(r.OutMask()) != nil
      => (RISBGZ x {(*s390x.NewRotateParams(0, 63-c, c).InMerge(r.OutMask())).RotateLeft(r.Amount)})
    
    // Absorb 'rotate then insert selected bits [into zero]' into right shift.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (If cond yes no) => (NE (CMPconst [0] (ANDconst [1] cond)) yes no)
    
    // Absorb boolean tests into block
    (NE (CMPconst [0] (ANDconst [1] ((Equal|NotEqual|LessThan|LessEqual|GreaterThan|GreaterEqual) cc))) yes no) => ((EQ|NE|LT|LE|GT|GE) cc yes no)
    (NE (CMPconst [0] (ANDconst [1] ((FLessThan|FLessEqual|FGreaterThan|FGreaterEqual) cc))) yes no) => ((FLT|FLE|FGT|FGE) cc yes no)
    
    // absorb flag constants into branches
    (EQ (FlagEQ) yes no) => (First yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (IsSliceInBounds idx len) => (LessEqualU (CMP idx len))
    
    // pseudo-ops
    (GetClosurePtr ...) => (LoweredGetClosurePtr ...)
    (GetCallerSP ...) => (LoweredGetCallerSP ...)
    (GetCallerPC ...) => (LoweredGetCallerPC ...)
    
    // Absorb pseudo-ops into blocks.
    (If (Equal cc) yes no) => (EQ cc yes no)
    (If (NotEqual cc) yes no) => (NE cc yes no)
    (If (LessThan cc) yes no) => (LT cc yes no)
    (If (LessThanU cc) yes no) => (ULT cc 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)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

        => (CMOVLNE y x (CMPQconst [0] check))
    (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 8 && is16BitInt(t)
        => (CMOVWNE y x (CMPQconst [0] check))
    
    // Absorb InvertFlags
    (CMOVQ(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS) x y (InvertFlags cond))
        => (CMOVQ(EQ|NE|GT|LT|GE|LE|CS|HI|LS|CC) x y cond)
    (CMOVL(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS) x y (InvertFlags cond))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top