Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findExtraCalls (0.1 sec)

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

    			// We only want "real" calls to these
    			// functions, not the generated ones within
    			// their own ABI wrappers.
    			continue
    		}
    		ir.Visit(n, c.findExtraCalls)
    	}
    	c.curfn = nil
    	return c
    }
    
    func (c *nowritebarrierrecChecker) findExtraCalls(nn ir.Node) {
    	if nn.Op() != ir.OCALLFUNC {
    		return
    	}
    	n := nn.(*ir.CallExpr)
    	if n.Fun == nil || n.Fun.Op() != ir.ONAME {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top