Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Munk (0.1 sec)

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

    (PopCount64 x) => (MOVBZreg (SumBytes8 (POPCNT <typ.UInt64> x)))
    
    // SumBytes{2,4,8} pseudo operations sum the values of the rightmost
    // 2, 4 or 8 bytes respectively. The result is a single byte however
    // other bytes might contain junk so a zero extension is required if
    // the desired output type is larger than 1 byte.
    (SumBytes2 x) => (ADDW (SRWconst <typ.UInt8> x [8]) x)
    (SumBytes4 x) => (SumBytes2 (ADDW <typ.UInt16> (SRWconst <typ.UInt16> x [16]) x))
    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/ARM64Ops.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "strings"
    
    // Notes:
    //  - Integer types live in the low portion of registers. Upper portions are junk.
    //  - Boolean types use the low-order byte of a register. 0=false, 1=true.
    //    Upper bytes are junk.
    //  - *const instructions may use a constant larger than the instruction can encode.
    //    In this case the assembler expands to multiple instructions and uses tmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "strings"
    
    // Notes:
    //  - Integer types live in the low portion of registers. Upper portions are junk.
    //  - Boolean types use the low-order byte of a register. 0=false, 1=true.
    //    Upper bytes are junk.
    //  - When doing sub-register operations, we try to write the whole
    //    destination register to avoid a partial-register write.
    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