Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for intrinsicCall (0.12 sec)

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

    		return false
    	}
    	name, ok := n.Fun.(*ir.Name)
    	if !ok {
    		return false
    	}
    	return findIntrinsic(name.Sym()) != nil
    }
    
    // intrinsicCall converts a call to a recognized intrinsic function into the intrinsic SSA operation.
    func (s *state) intrinsicCall(n *ir.CallExpr) *ssa.Value {
    	v := findIntrinsic(n.Fun.Sym())(s, n, s.intrinsicArgs(n))
    	if ssa.IntrinsicsDebug > 0 {
    		x := v
    		if x == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ctrlflow/ctrlflow.go

    func hasReachableReturn(g *cfg.CFG) bool {
    	for _, b := range g.Blocks {
    		if b.Live && b.Return() != nil {
    			return true
    		}
    	}
    	return false
    }
    
    // isIntrinsicNoReturn reports whether a function intrinsically never
    // returns because it stops execution of the calling thread.
    // It is the base case in the recursion.
    func isIntrinsicNoReturn(fn *types.Func) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top