Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClosureLECall (0.38 sec)

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

    	{name: "TailCall", argLength: -1, aux: "CallOff", call: true},    // tail call function aux.(*obj.LSym), arg0..argN-1 are register inputs, argN=memory.  auxint=arg size.  Returns Result of register results, plus memory.
    
    	{name: "ClosureLECall", argLength: -1, aux: "CallOff", call: true}, // late-expanded closure call. arg0=code pointer, arg1=context ptr,  arg2..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:    "TailCall",
    		auxType: auxCallOff,
    		argLen:  -1,
    		call:    true,
    		generic: true,
    	},
    	{
    		name:    "ClosureLECall",
    		auxType: auxCallOff,
    		argLen:  -1,
    		call:    true,
    		generic: true,
    	},
    	{
    		name:    "StaticLECall",
    		auxType: auxCallOff,
    		argLen:  -1,
    		call:    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