Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isRegMoveLike (0.13 sec)

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

    	// returns true if this instruction looks like it moves an ABI
    	// register (or context register for rangefunc bodies) to the
    	// stack, along with the value being stored.
    	isRegMoveLike := func(v *Value) (bool, ID) {
    		n, ok := v.Aux.(*ir.Name)
    		var r ID
    		if (!ok || n.Class != ir.PPARAM) && !needCloCtx {
    			return false, r
    		}
    		regInputs, memInputs, spInputs := 0, 0, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top