Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StructMake3 (0.1 sec)

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

    		}
    		x := v_0.Args[1]
    		v.copyOf(x)
    		return true
    	}
    	// match: (StructSelect [0] (StructMake3 x _ _))
    	// result: x
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 || v_0.Op != OpStructMake3 {
    			break
    		}
    		x := v_0.Args[0]
    		v.copyOf(x)
    		return true
    	}
    	// match: (StructSelect [1] (StructMake3 _ x _))
    	// result: x
    	for {
    		if auxIntToInt64(v.AuxInt) != 1 || v_0.Op != OpStructMake3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "StructMake1", argLength: 1},                // arg0=field0.  Returns struct.
    	{name: "StructMake2", argLength: 2},                // arg0,arg1=field0,field1.  Returns struct.
    	{name: "StructMake3", argLength: 3},                // arg0..2=field0..2.  Returns struct.
    	{name: "StructMake4", argLength: 4},                // arg0..3=field0..3.  Returns struct.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top