Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TailLECall (0.24 sec)

  1. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "InterLECall", argLength: -1, aux: "CallOff", call: true},   // late-expanded interface call. arg0=code pointer, arg1..argN-1 are inputs, argN is mem. auxint = arg size. Result is tuple of result(s), plus mem.
    	{name: "TailLECall", argLength: -1, aux: "CallOff", call: true},    // late-expanded static tail call function aux.(*ssa.AuxCall.Fn). arg0..argN-1 are inputs, argN is mem. auxint = arg size. Result is tuple of result(s), plus mem.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/opGen.go

    		call:    true,
    		generic: true,
    	},
    	{
    		name:    "InterLECall",
    		auxType: auxCallOff,
    		argLen:  -1,
    		call:    true,
    		generic: true,
    	},
    	{
    		name:    "TailLECall",
    		auxType: auxCallOff,
    		argLen:  -1,
    		call:    true,
    		generic: true,
    	},
    	{
    		name:    "SignExt8to16",
    		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