Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sasl (0.07 sec)

  1. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (SARL x (MOVQconst [c]))
    	// result: (SARLconst [int8(c&31)] x)
    	for {
    		x := v_0
    		if v_1.Op != OpAMD64MOVQconst {
    			break
    		}
    		c := auxIntToInt64(v_1.AuxInt)
    		v.reset(OpAMD64SARLconst)
    		v.AuxInt = int8ToAuxInt(int8(c & 31))
    		v.AddArg(x)
    		return true
    	}
    	// match: (SARL x (MOVLconst [c]))
    	// result: (SARLconst [int8(c&31)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	SARL $1, (BX)                           // d13b
    	SARL $1, (R11)                          // 41d13b
    	SARL $1, DX                             // d1fa
    	SARL $1, R11                            // 41d1fb
    	SARL CL, (BX)                           // d33b
    	SARL CL, (R11)                          // 41d33b
    	SARL CL, DX                             // d3fa
    	SARL CL, R11                            // 41d3fb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  3. RELEASE.md

        `CUDA_ILLEGAL_ADDRESS` failures.
    
        Google discovered in mid-December 2017 that the PTX-to-SASS compiler in CUDA
        9 and CUDA 9.1 sometimes does not properly compute the carry bit when
        decomposing 64-bit address calculations with large offsets (e.g. `load [x +
        large_constant]`) into 32-bit arithmetic in SASS.
    
        As a result, these versions of `ptxas` miscompile most XLA programs which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top