Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for podstore (0.34 sec)

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

    			break
    		}
    		v.reset(OpStore)
    		v.Aux = typeToAux(t1)
    		v0 := b.NewValue0(v.Pos, OpStore, types.TypeMem)
    		v0.Aux = typeToAux(t2)
    		v1 := b.NewValue0(v.Pos, OpStore, types.TypeMem)
    		v1.Aux = typeToAux(t3)
    		v2 := b.NewValue0(v.Pos, OpStore, types.TypeMem)
    		v2.Aux = typeToAux(t4)
    		v2.AddArg3(op4, d4, mem)
    		v1.AddArg3(op3, d3, v2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    	return false
    }
    func rewriteValueARM64_OpSelectN(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	config := b.Func.Config
    	// match: (SelectN [0] call:(CALLstatic {sym} s1:(MOVDstore _ (MOVDconst [sz]) s2:(MOVDstore _ src s3:(MOVDstore {t} _ dst mem)))))
    	// cond: sz >= 0 && isSameCall(sym, "runtime.memmove") && s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1 && isInlinableMemmove(dst, src, sz, config) && clobber(s1, s2, s3, call)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	case OpSqrt:
    		v.Op = OpAMD64SQRTSD
    		return true
    	case OpSqrt32:
    		v.Op = OpAMD64SQRTSS
    		return true
    	case OpStaticCall:
    		v.Op = OpAMD64CALLstatic
    		return true
    	case OpStore:
    		return rewriteValueAMD64_OpStore(v)
    	case OpSub16:
    		v.Op = OpAMD64SUBL
    		return true
    	case OpSub32:
    		v.Op = OpAMD64SUBL
    		return true
    	case OpSub32F:
    		v.Op = OpAMD64SUBSS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top