Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for EXTSWSLconst (0.38 sec)

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

    		{name: "ROTLWconst", argLength: 1, reg: gp11, asm: "ROTLW", aux: "Int64"}, // uint32(arg0) rotate left by auxInt bits
    		{name: "EXTSWSLconst", argLength: 1, reg: gp11, asm: "EXTSWSLI", aux: "Int64"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // special case for power9
    (SL(W|D)const [c] z:(MOVWreg x)) && c < 32 && buildcfg.GOPPC64 >= 9 => (EXTSWSLconst [c] x)
    
    // Lose widening ops fed to stores
    (MOVBstore [off] {sym} ptr (MOV(B|BZ|H|HZ|W|WZ)reg x) mem) => (MOVBstore [off] {sym} ptr x mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritePPC64.go

    			v.AddArg(x)
    			return true
    		}
    		break
    	}
    	// match: (SLDconst [c] z:(MOVWreg x))
    	// cond: c < 32 && buildcfg.GOPPC64 >= 9
    	// result: (EXTSWSLconst [c] x)
    	for {
    		c := auxIntToInt64(v.AuxInt)
    		z := v_0
    		if z.Op != OpPPC64MOVWreg {
    			break
    		}
    		x := z.Args[0]
    		if !(c < 32 && buildcfg.GOPPC64 >= 9) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 1073733624}, // R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R14 R15 R16 R17 R18 R19 R20 R21 R22 R23 R24 R25 R26 R27 R28 R29
    			},
    		},
    	},
    	{
    		name:    "EXTSWSLconst",
    		auxType: auxInt64,
    		argLen:  1,
    		asm:     ppc64.AEXTSWSLI,
    		reg: regInfo{
    			inputs: []inputInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top