Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetupScoreAdjustments (0.55 sec)

  1. src/cmd/compile/internal/inline/interleaved/interleaved.go

    			for _, fn := range list {
    				devirtualize.ProfileGuided(fn, profile)
    			}
    		})
    		ir.CurFunc = nil
    	}
    
    	if base.Flag.LowerL != 0 {
    		inlheur.SetupScoreAdjustments()
    	}
    
    	var inlProfile *pgoir.Profile // copy of profile for inlining
    	if base.Debug.PGOInline != 0 {
    		inlProfile = profile
    	}
    
    	// First compute inlinability of all functions in the package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/scoring.go

    	returnFeedsConcreteToInterfaceCallAdj: -25,
    }
    
    // SetupScoreAdjustments interprets the value of the -d=inlscoreadj
    // debugging option, if set. The value of this flag is expected to be
    // a series of "/"-separated clauses of the form adj1:value1. Example:
    // -d=inlscoreadj=inLoopAdj=0/passConstToIfAdj=-99
    func SetupScoreAdjustments() {
    	if base.Debug.InlScoreAdj == "" {
    		return
    	}
    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