llvm/llvm/lib/Transforms/Utils/SanitizerStats.cpp

//===- SanitizerStats.cpp - Sanitizer statistics gathering ----------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
//
// Implements code generation for sanitizer statistics gathering.
//
//===----------------------------------------------------------------------===//

#include "llvm/Transforms/Utils/SanitizerStats.h"
#include "llvm/IR/Constants.h"
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/GlobalVariable.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/Module.h"
#include "llvm/Transforms/Utils/ModuleUtils.h"

usingnamespacellvm;

SanitizerStatReport::SanitizerStatReport(Module *M) :{}

ArrayType *SanitizerStatReport::makeModuleStatsArrayTy() {}

StructType *SanitizerStatReport::makeModuleStatsTy() {}

void SanitizerStatReport::create(IRBuilder<> &B, SanitizerStatKind SK) {}

void SanitizerStatReport::finish() {}