
By storing possible test vectors instead of combinations of conditions, the restriction is dramatically relaxed. This introduces two options to `cc1`: * `-fmcdc-max-conditions=32767` * `-fmcdc-max-test-vectors=2147483646` This change makes coverage mapping, profraw, and profdata incompatible with Clang-18. - Bitmap semantics changed. It is incompatible with previous format. - `BitmapIdx` in `Decision` points to the end of the bitmap. - Bitmap is packed per function. - `llvm-cov` can understand `profdata` generated by `llvm-profdata-18`. RFC: https://discourse.llvm.org/t/rfc-coverage-new-algorithm-and-file-format-for-mc-dc/76798 -- Change(s) since llvmorg-19-init-14288-g7ead2d8c7e91 - Update compiler-rt/test/profile/ContinuousSyncMode/image-with-mcdc.c
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
//===---- MCDCState.h - Per-Function MC/DC state ----------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Per-Function MC/DC state for PGO
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_LIB_CODEGEN_MCDCSTATE_H
|
|
#define LLVM_CLANG_LIB_CODEGEN_MCDCSTATE_H
|
|
|
|
#include "llvm/ADT/DenseMap.h"
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include "llvm/ProfileData/Coverage/MCDCTypes.h"
|
|
|
|
namespace clang {
|
|
class Stmt;
|
|
} // namespace clang
|
|
|
|
namespace clang::CodeGen::MCDC {
|
|
|
|
using namespace llvm::coverage::mcdc;
|
|
|
|
/// Per-Function MC/DC state
|
|
struct State {
|
|
unsigned BitmapBits = 0;
|
|
|
|
struct Decision {
|
|
unsigned BitmapIdx;
|
|
llvm::SmallVector<std::array<int, 2>> Indices;
|
|
};
|
|
|
|
llvm::DenseMap<const Stmt *, Decision> DecisionByStmt;
|
|
|
|
struct Branch {
|
|
ConditionID ID;
|
|
const Stmt *DecisionStmt;
|
|
};
|
|
|
|
llvm::DenseMap<const Stmt *, Branch> BranchByStmt;
|
|
};
|
|
|
|
} // namespace clang::CodeGen::MCDC
|
|
|
|
#endif // LLVM_CLANG_LIB_CODEGEN_MCDCSTATE_H
|