Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RLL (0.01 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "RLLG", argLength: 2, reg: sh21, asm: "RLLG"},                  // arg0 rotate left arg1, rotate amount 0-63
    		{name: "RLL", argLength: 2, reg: sh21, asm: "RLL"},                    // arg0 rotate left arg1, rotate amount 0-31
    		{name: "RLLconst", argLength: 1, reg: gp11, asm: "RLL", aux: "UInt8"}, // arg0 rotate left auxint, rotate amount 0-31
    
    		// Rotate then (and|or|xor|insert) selected bits instructions.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // applying atomic AND operation to target word.
    //
    // *(*uint32)(ptr &^ 3) &= rotateleft(uint32(val) | 0xffffff00, ((3 << 3) ^ ((ptr & 3) << 3))
    //
    (AtomicAnd8 ptr val mem)
      => (LANfloor
           ptr
           (RLL <typ.UInt32>
             (ORWconst <typ.UInt32> val [-1<<8])
             (RXSBG <typ.UInt32> {s390x.NewRotateParams(59, 60, 3)} (MOVDconst [3<<3]) ptr))
           mem)
    
    // Atomic or: *(*uint8)(ptr) |= val
    //
    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