Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for description (0.59 sec)

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

    // SRL only considers the bottom 6 bits of y, similarly SRLW only considers the
    // bottom 5 bits of y. Ensure that the result is always zero if the shift exceeds
    // the maximum value. See Lsh above for a detailed description.
    (Rsh8Ux8   <t> x y) && !shiftIsBounded(v) => (AND (SRL  <t> (ZeroExt8to64  x) y) (Neg8  <t> (SLTIU <t> [64] (ZeroExt8to64  y))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Convert (Add(64|32) (Convert ptr mem) off) mem) => (AddPtr ptr off)
    (Convert (Convert ptr mem) mem) => ptr
    
    // strength reduction of divide by a constant.
    // See ../magic.go for a detailed description of these algorithms.
    
    // Unsigned divide by power of 2.  Strength reduce to a shift.
    (Div8u  n (Const8  [c])) && isPowerOfTwo8(c)  => (Rsh8Ux64  n (Const64 <typ.UInt64> [log8(c)]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg runtime/metrics, type Description struct, Description string
    pkg runtime/metrics, type Description struct, Kind ValueKind
    pkg runtime/metrics, type Description struct, Name string
    pkg runtime/metrics, type Float64Histogram struct
    pkg runtime/metrics, type Float64Histogram struct, Buckets []float64
    pkg runtime/metrics, type Float64Histogram struct, Counts []uint64
    pkg runtime/metrics, type Sample struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top