Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for racefuncexit (0.12 sec)

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

    		return false
    	}
    	if !isSameCall(sym, "runtime.racefuncenter") && !isSameCall(sym, "runtime.racefuncexit") {
    		return false
    	}
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			switch v.Op {
    			case OpStaticCall, OpStaticLECall:
    				// Check for racefuncenter will encounter racefuncexit and vice versa.
    				// Allow calls to panic*
    				s := v.Aux.(*AuxCall).Fn.String()
    				switch s {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top