Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for StructMake3 (0.16 sec)

  1. src/cmd/compile/internal/ssa/_gen/dec.rules

    (StructSelect [0] (IData x)) => (IData x)
    
    (StructSelect (StructMake1 x)) => x
    (StructSelect [0] (StructMake2 x _)) => x
    (StructSelect [1] (StructMake2 _ x)) => x
    (StructSelect [0] (StructMake3 x _ _)) => x
    (StructSelect [1] (StructMake3 _ x _)) => x
    (StructSelect [2] (StructMake3 _ _ x)) => x
    (StructSelect [0] (StructMake4 x _ _ _)) => x
    (StructSelect [1] (StructMake4 _ x _ _)) => x
    (StructSelect [2] (StructMake4 _ _ x _)) => x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    // struct operations
    (StructSelect (StructMake1 x)) => x
    (StructSelect [0] (StructMake2 x _)) => x
    (StructSelect [1] (StructMake2 _ x)) => x
    (StructSelect [0] (StructMake3 x _ _)) => x
    (StructSelect [1] (StructMake3 _ x _)) => x
    (StructSelect [2] (StructMake3 _ _ x)) => x
    (StructSelect [0] (StructMake4 x _ _ _)) => x
    (StructSelect [1] (StructMake4 _ x _ _)) => x
    (StructSelect [2] (StructMake4 _ _ x _)) => x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/compile/internal/ssa/rewritegeneric.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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    	},
    	{
    		name:    "StructMake1",
    		argLen:  1,
    		generic: true,
    	},
    	{
    		name:    "StructMake2",
    		argLen:  2,
    		generic: true,
    	},
    	{
    		name:    "StructMake3",
    		argLen:  3,
    		generic: true,
    	},
    	{
    		name:    "StructMake4",
    		argLen:  4,
    		generic: true,
    	},
    	{
    		name:    "StructSelect",
    		auxType: auxInt64,
    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