Lines Matching refs:FallThroughWeight
439 uint64_t &FallThroughWeight) { in updateBranchWeights() argument
442 if (!FallThroughWeight) in updateBranchWeights()
448 HeaderIdx ? MDB.createBranchWeights(ExitWeight, FallThroughWeight) in updateBranchWeights()
449 : MDB.createBranchWeights(FallThroughWeight, ExitWeight); in updateBranchWeights()
451 FallThroughWeight = in updateBranchWeights()
452 FallThroughWeight > ExitWeight ? FallThroughWeight - ExitWeight : 1; in updateBranchWeights()
463 uint64_t &FallThroughWeight) { in initBranchWeights() argument
469 FallThroughWeight = HeaderIdx ? FalseWeight : TrueWeight; in initBranchWeights()
480 uint64_t FallThroughWeight) { in fixupBranchWeights() argument
483 if (!FallThroughWeight) in fixupBranchWeights()
490 HeaderIdx ? MDB.createBranchWeights(ExitWeight, FallThroughWeight) in fixupBranchWeights()
491 : MDB.createBranchWeights(FallThroughWeight, ExitWeight); in fixupBranchWeights()
776 uint64_t ExitWeight = 0, FallThroughWeight = 0; in peelLoop() local
777 initBranchWeights(Header, LatchBR, ExitWeight, FallThroughWeight); in peelLoop()
811 updateBranchWeights(InsertBot, LatchBRCopy, ExitWeight, FallThroughWeight); in peelLoop()
837 fixupBranchWeights(Header, LatchBR, ExitWeight, FallThroughWeight); in peelLoop()