Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for panicPathAdj (0.09 sec)

  1. src/cmd/compile/internal/inline/inlheur/testdata/props/calls.go

    // 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>
    func T_calls_on_panic_paths(x int, q []string) {
    	if x+G == 101 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/scoreadjusttyp_string.go

    import "strconv"
    import "bytes"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[panicPathAdj-1]
    	_ = x[initFuncAdj-2]
    	_ = x[inLoopAdj-4]
    	_ = x[passConstToIfAdj-8]
    	_ = x[passConstToNestedIfAdj-16]
    	_ = x[passConcreteToItfCallAdj-32]
    	_ = x[passConcreteToNestedItfCallAdj-64]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 21:13:01 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/inline/inlheur/testdata/props/funcflags.go

    }
    
    // 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
    	// first thing it does is invoke exprcallsexit, however from 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

    // param feeding call) is guaranteed to happen. For the "may" version,
    // there may be control flow that could cause the benefit to be
    // bypassed.
    const (
    	// Category 1 adjustments (see above)
    	panicPathAdj scoreAdjustTyp = (1 << iota)
    	initFuncAdj
    	inLoopAdj
    
    	// Category 2 adjustments (see above).
    	passConstToIfAdj
    	passConstToNestedIfAdj
    	passConcreteToItfCallAdj
    	passConcreteToNestedItfCallAdj
    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