cmerge

package standard library
go1.20.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 2, 2023 License: BSD-3-Clause Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func SaturatingAdd

func SaturatingAdd(dst, src uint32) (uint32, bool)

Saturating add does a saturing addition of 'dst' and 'src', returning added value or math.MaxUint32 plus an overflow flag.

Types

type Merger

type Merger struct {
	// contains filtered or unexported fields
}

Merger provides state and methods to help manage the process of merging together coverage counter data for a given function, for tools that need to implicitly merge counter as they read multiple coverage counter data files.

func (*Merger) Granularity

func (cm *Merger) Granularity() coverage.CounterGranularity

func (*Merger) MergeCounters

func (m *Merger) MergeCounters(dst, src []uint32) (error, bool)

MergeCounters takes the counter values in 'src' and merges them into 'dst' according to the correct counter mode.

func (*Merger) Mode

func (cm *Merger) Mode() coverage.CounterMode

func (*Merger) ResetModeAndGranularity

func (cm *Merger) ResetModeAndGranularity()

func (*Merger) SaturatingAdd

func (m *Merger) SaturatingAdd(dst, src uint32) uint32

Saturating add does a saturating addition of 'dst' and 'src', returning added value or math.MaxUint32 if there is an overflow. Overflows are recorded in case the client needs to track them.

func (*Merger) SetModeAndGranularity

func (cm *Merger) SetModeAndGranularity(mdf string, cmode coverage.CounterMode, cgran coverage.CounterGranularity) error

SetModeAndGranularity records the counter mode and granularity for the current merge. In the specific case of merging across coverage data files from different binaries, where we're combining data from more than one meta-data file, we need to check for mode/granularity clashes.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL