Home
last modified time | relevance | path

Searched defs:MCDCRecord (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h378 struct MCDCRecord { struct
385 enum CondState { MCDC_DontCare = -1, MCDC_False = 0, MCDC_True = 1 };
393 BitVector Values; /// True/False (False when DontCare)
394 BitVector Visited; /// ~DontCare
398 TestVector(unsigned N) : Values(N), Visited(N) {} in TestVector()
407 auto getIndex() const { return Values.getData()[0]; } in getIndex()
411 void set(int I, CondState Val) { in set()
417 void push_back(CondState Val) { in push_back()
429 auto getDifferences(const TestVector &B) const { in getDifferences()
455 MCDCRecord(const CounterMappingRegion &Region, TestVectors &&TV, in MCDCRecord() argument
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp183 SmallVector<MCDCRecord, 0> Records) { in addMCDCRecord()