Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for go_args_stackmap (1.12 sec)

  1. src/runtime/funcdata.h

    // whose package-qualified symbol name belongs to the current package;
    // it is therefore usually not necessary to write explicitly.
    #define GO_ARGS	FUNCDATA $FUNCDATA_ArgsPointerMaps, go_args_stackmap(SB)
    
    // GO_RESULTS_INITIALIZED indicates that the assembly function
    // has initialized the stack space for its results and that those results
    // should be considered live for the remainder of the function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:28:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/plist.go

    			continue
    
    		case AFUNCDATA:
    			// Rewrite reference to go_args_stackmap(SB) to the Go-provided declaration information.
    			if curtext == nil { // func _() {}
    				continue
    			}
    			switch p.To.Sym.Name {
    			case "go_args_stackmap":
    				if p.From.Type != TYPE_CONST || p.From.Offset != abi.FUNCDATA_ArgsPointerMaps {
    					ctxt.Diag("%s: FUNCDATA use of go_args_stackmap(SB) without FUNCDATA_ArgsPointerMaps", p.Pos)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top