Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LoweredStaticCall (0.14 sec)

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

    		fp64load  = regInfo{inputs: []regMask{gpspsb, 0}, outputs: []regMask{fp64}}
    		fp64store = regInfo{inputs: []regMask{gpspsb, fp64, 0}}
    	)
    
    	var WasmOps = []opData{
    		{name: "LoweredStaticCall", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: "CallOff", call: true},                                // call static function aux.(*obj.LSym). arg0=mem, auxint=argsize, returns mem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Const(32|16|8) [c]) => (I64Const [int64(c)])
    (Const(64|32)F ...) => (F(64|32)Const ...)
    (ConstNil) => (I64Const [0])
    (ConstBool [c]) => (I64Const [b2i(c)])
    
    // Lowering calls
    (StaticCall ...) => (LoweredStaticCall ...)
    (ClosureCall ...) => (LoweredClosureCall ...)
    (InterCall ...) => (LoweredInterCall ...)
    (TailCall ...) => (LoweredTailCall ...)
    
    // Miscellaneous
    (Convert ...) => (LoweredConvert ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/opGen.go

    			inputs: []inputInfo{
    				{0, 2},     // R1
    				{1, 56319}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R11 R12 R14 SP
    			},
    			clobbers: 2, // R1
    		},
    	},
    
    	{
    		name:    "LoweredStaticCall",
    		auxType: auxCallOff,
    		argLen:  1,
    		call:    true,
    		reg: regInfo{
    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