Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for arraymake (0.1 sec)

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

    	// cond: t.IsArray() && t.NumElem() == 0
    	// result: (ArrayMake0)
    	for {
    		t := v.Type
    		if !(t.IsArray() && t.NumElem() == 0) {
    			break
    		}
    		v.reset(OpArrayMake0)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    	// cond: t.IsArray() && t.NumElem() == 1 && CanSSA(t)
    	// result: (ArrayMake1 (Load <t.Elem()> ptr mem))
    	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

    		generic: true,
    	},
    	{
    		name:    "StructSelect",
    		auxType: auxInt64,
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "ArrayMake0",
    		argLen:  0,
    		generic: true,
    	},
    	{
    		name:    "ArrayMake1",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "ArraySelect",
    		auxType: auxInt64,
    		argLen:  1,
    		generic: true,
    	},
    	{
    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