Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for LoweredQuadMove (0.22 sec)

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

    		},
    
    		// The following is similar to the LoweredMove, but uses
    		// LXV instead of LXVD2X, which does not require an index
    		// register and will do 4 in a loop instead of only.
    		{
    			name:      "LoweredQuadMove",
    			aux:       "Int64",
    			argLength: 3,
    			reg: regInfo{
    				inputs:   []regMask{buildReg("R20"), buildReg("R21")},
    				clobbers: buildReg("R20 R21"),
    			},
    			clobberFlags:   true,
    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

    (Move [s] dst src mem) && s > 8 && s <= 64 && buildcfg.GOPPC64 >= 9 =>
            (LoweredQuadMoveShort [s] dst src mem)
    (Move [s] dst src mem) && s > 8 && buildcfg.GOPPC64 >= 9 && logLargeCopy(v, s) =>
            (LoweredQuadMove [s] dst src mem)
    
    // Calls
    // Lowering calls
    (StaticCall ...) => (CALLstatic ...)
    (ClosureCall ...) => (CALLclosure ...)
    (InterCall ...) => (CALLinter ...)
    (TailCall ...) => (CALLtail ...)
    
    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.AuxInt = int64ToAuxInt(s)
    		v.AddArg3(dst, src, mem)
    		return true
    	}
    	// match: (Move [s] dst src mem)
    	// cond: s > 8 && buildcfg.GOPPC64 >= 9 && logLargeCopy(v, s)
    	// result: (LoweredQuadMove [s] dst src mem)
    	for {
    		s := auxIntToInt64(v.AuxInt)
    		dst := v_0
    		src := v_1
    		mem := v_2
    		if !(s > 8 && buildcfg.GOPPC64 >= 9 && logLargeCopy(v, s)) {
    			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

    				{1, 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:           "LoweredQuadMove",
    		auxType:        auxInt64,
    		argLen:         3,
    		clobberFlags:   true,
    		faultOnNilArg0: true,
    		faultOnNilArg1: true,
    		unsafePoint:    true,
    		reg: regInfo{
    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