Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for put$index (0.38 sec)

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

    	return false
    }
    func rewriteValuegeneric_OpPtrIndex(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	config := b.Func.Config
    	typ := &b.Func.Config.Types
    	// match: (PtrIndex <t> ptr idx)
    	// cond: config.PtrSize == 4 && is32Bit(t.Elem().Size())
    	// result: (AddPtr ptr (Mul32 <typ.Int> idx (Const32 <typ.Int> [int32(t.Elem().Size())])))
    	for {
    		t := v.Type
    		ptr := v_0
    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/opGen.go

    	},
    	{
    		name:    "GetCallerPC",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "GetCallerSP",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "PtrIndex",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "OffPtr",
    		auxType: auxInt64,
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "SliceMake",
    		argLen:  3,
    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