Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sh32 (0.03 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    	case ACRC32B:
    		return S32 | OPDP2(16)
    
    	case ACRC32H:
    		return S32 | OPDP2(17)
    
    	case ACRC32W:
    		return S32 | OPDP2(18)
    
    	case ACRC32X:
    		return S64 | OPDP2(19)
    
    	case ACRC32CB:
    		return S32 | OPDP2(20)
    
    	case ACRC32CH:
    		return S32 | OPDP2(21)
    
    	case ACRC32CW:
    		return S32 | OPDP2(22)
    
    	case ACRC32CX:
    		return S64 | OPDP2(23)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Rsh8Ux(64|32|16|8)  (Const8  [0]) _) => (Const8  [0])
    
    // large left shifts of all values, and right shifts of unsigned values
    ((Lsh64|Rsh64U)x64  _ (Const64 [c])) && uint64(c) >= 64 => (Const64 [0])
    ((Lsh32|Rsh32U)x64  _ (Const64 [c])) && uint64(c) >= 32 => (Const32 [0])
    ((Lsh16|Rsh16U)x64  _ (Const64 [c])) && uint64(c) >= 16 => (Const16 [0])
    ((Lsh8|Rsh8U)x64    _ (Const64 [c])) && uint64(c) >= 8  => (Const8  [0])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top