Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CallSiteOnPanicPath (0.17 sec)

  1. src/cmd/compile/internal/inline/inlheur/cspropbits_string.go

    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[CallSiteInLoop-1]
    	_ = x[CallSiteOnPanicPath-2]
    	_ = x[CallSiteInInitFunc-4]
    }
    
    var _CSPropBits_value = [...]uint64{
    	0x1, /* CallSiteInLoop */
    	0x2, /* CallSiteOnPanicPath */
    	0x4, /* CallSiteInInitFunc */
    }
    
    const _CSPropBits_name = "CallSiteInLoopCallSiteOnPanicPathCallSiteInInitFunc"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 23:03:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/testdata/props/calls.go

    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[0,0],"ResultFlags":null}
    // callsite: calls.go:69:9|0 flagstr "CallSiteOnPanicPath" flagval 2 score 42 mask 1 maskstr "panicPathAdj"
    // callsite: calls.go:73:9|1 flagstr "CallSiteOnPanicPath" flagval 2 score 42 mask 1 maskstr "panicPathAdj"
    // callsite: calls.go:77:12|2 flagstr "CallSiteOnPanicPath" flagval 2 score 102 mask 1 maskstr "panicPathAdj"
    // <endcallsites>
    // <endfuncpreamble>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/testdata/props/funcflags.go

    	if x < 0 {
    		os.Exit(1)
    	}
    	os.Exit(2)
    }
    
    // funcflags.go T_exitinexpr 281 0 1
    // <endpropsdump>
    // {"Flags":0,"ParamFlags":[0],"ResultFlags":null}
    // callsite: funcflags.go:286:18|0 flagstr "CallSiteOnPanicPath" flagval 2 score 102 mask 1 maskstr "panicPathAdj"
    // <endcallsites>
    // <endfuncpreamble>
    func T_exitinexpr(x int) {
    	// This function does indeed unconditionally call exit, since the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:01 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/scoring.go

    			callee.Sym().Name, fmtFullPos(call.Pos()), score)
    	}
    
    	// First some score adjustments to discourage inlining in selected cases.
    	if csflags&CallSiteOnPanicPath != 0 {
    		score, tmask = adjustScore(panicPathAdj, score, tmask)
    	}
    	if csflags&CallSiteInInitFunc != 0 {
    		score, tmask = adjustScore(initFuncAdj, score, tmask)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top