Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for recordCall (0.11 sec)

  1. src/cmd/compile/internal/ssagen/nowb.go

    		callee = arg.Func
    	default:
    		base.Fatalf("expected ONAME or OCLOSURE node, got %+v", arg)
    	}
    	c.extraCalls[c.curfn] = append(c.extraCalls[c.curfn], nowritebarrierrecCall{callee, n.Pos()})
    }
    
    // recordCall records a call from ODCLFUNC node "from", to function
    // symbol "to" at position pos.
    //
    // This should be done as late as possible during compilation to
    // capture precise call graphs. The target of the call is an LSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		}
    	}
    
    	call, ok := v.Aux.(*ssa.AuxCall)
    
    	if ok {
    		// Record call graph information for nowritebarrierrec
    		// analysis.
    		if nowritebarrierrecCheck != nil {
    			nowritebarrierrecCheck.recordCall(s.pp.CurFunc, call.Fn, v.Pos)
    		}
    	}
    
    	if s.maxarg < v.AuxInt {
    		s.maxarg = v.AuxInt
    	}
    }
    
    // UseArgs records the fact that an instruction needs a certain amount of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top