Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BranchPrediction (0.37 sec)

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

    func (b *Block) Fatalf(msg string, args ...interface{}) { b.Func.Fatalf(msg, args...) }
    
    type BranchPrediction int8
    
    const (
    	BranchUnlikely = BranchPrediction(-1)
    	BranchUnknown  = BranchPrediction(0)
    	BranchLikely   = BranchPrediction(+1)
    )
    
    type Hotness int8 // Could use negative numbers for specifically non-hot blocks, but don't, yet.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/likelyadjust.go

    func describePredictionAgrees(b *Block, prediction BranchPrediction) string {
    	s := ""
    	if prediction == b.Likely {
    		s = " (agrees with previous)"
    	} else if b.Likely != BranchUnknown {
    		s = " (disagrees with previous, ignored)"
    	}
    	return s
    }
    
    func describeBranchPrediction(f *Func, b *Block, likely, not int8, prediction BranchPrediction) {
    	f.Warnl(b.Pos, "Branch prediction rule %s < %s%s",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		s.stmtList(cond.Init())
    		s.condBranch(cond.X, yes, no, likely)
    		return
    	}
    	c := s.expr(cond)
    	b := s.endBlock()
    	b.Kind = ssa.BlockIf
    	b.SetControl(c)
    	b.Likely = ssa.BranchPrediction(likely) // gc and ssa both use -1/0/+1 for likeliness
    	b.AddEdgeTo(yes)
    	b.AddEdgeTo(no)
    }
    
    type skipMask uint8
    
    const (
    	skipPtr skipMask = 1 << iota
    	skipLen
    	skipCap
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top