Files
swift-mirror/lib/SIL/IR/SILCoverageMap.cpp
Michael Gottesman e1a19e4173 [sil] Split library into subfolders, while still building as a single library still.
Specifically, I split it into 3 initial categories: IR, Utils, Verifier. I just
did this quickly, we can always split it more later if we want.

I followed the model that we use in SILOptimizer: ./lib/SIL/CMakeLists.txt vends
 a macro (sil_register_sources) to the sub-folders that register the sources of
 the subdirectory with a global state variable that ./lib/SIL/CMakeLists.txt
 defines. Then after including those subdirs, the parent cmake declares the SIL
 library. So the output is the same, but we have the flexibility of having
 subdirectories to categorize source files.
2020-03-30 11:01:00 -07:00

91 lines
3.1 KiB
C++

//===--- SILCoverageMap.cpp - Defines the SILCoverageMap class ------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file defines the SILCoverageMap class, which is used to relay coverage
// mapping information from the AST to lower layers of the compiler.
//
//===----------------------------------------------------------------------===//
#include "llvm/ADT/STLExtras.h"
#include "swift/SIL/SILCoverageMap.h"
#include "swift/SIL/SILModule.h"
using namespace swift;
using llvm::coverage::CounterExpression;
SILCoverageMap *
SILCoverageMap::create(SILModule &M, StringRef Filename, StringRef Name,
StringRef PGOFuncName, uint64_t Hash,
ArrayRef<MappedRegion> MappedRegions,
ArrayRef<CounterExpression> Expressions) {
auto *Buf = M.allocate<SILCoverageMap>(1);
SILCoverageMap *CM = ::new (Buf) SILCoverageMap(Hash);
// Store a copy of the names so that we own the lifetime.
CM->Filename = M.allocateCopy(Filename);
CM->Name = M.allocateCopy(Name);
CM->PGOFuncName = M.allocateCopy(PGOFuncName).str();
// Since we have two arrays, we need to manually tail allocate each of them,
// rather than relying on the flexible array trick.
CM->MappedRegions = M.allocateCopy(MappedRegions);
CM->Expressions = M.allocateCopy(Expressions);
auto result = M.coverageMaps.insert({CM->PGOFuncName, CM});
// Assert that this coverage map is unique.
assert(result.second && "Duplicate coverage mapping for function");
(void)result;
return CM;
}
SILCoverageMap::SILCoverageMap(uint64_t Hash) : Hash(Hash) {}
SILCoverageMap::~SILCoverageMap() {}
namespace {
struct Printer {
const llvm::coverage::Counter &C;
ArrayRef<llvm::coverage::CounterExpression> Exprs;
Printer(const llvm::coverage::Counter &C,
ArrayRef<llvm::coverage::CounterExpression> Exprs)
: C(C), Exprs(Exprs) {}
void print(raw_ostream &OS) const {
// TODO: This format's nice and human readable, but does it fit well with
// SIL's relatively simple structure?
if (C.isZero())
OS << "zero";
else if (C.isExpression()) {
assert(C.getExpressionID() < Exprs.size() && "expression out of range");
const auto &E = Exprs[C.getExpressionID()];
OS << '(' << Printer(E.LHS, Exprs)
<< (E.Kind == CounterExpression::Add ? " + " : " - ")
<< Printer(E.RHS, Exprs) << ')';
} else
OS << C.getCounterID();
}
friend raw_ostream &operator<<(raw_ostream &OS, const Printer &P) {
P.print(OS);
return OS;
}
};
} // end anonymous namespace
void SILCoverageMap::printCounter(llvm::raw_ostream &OS,
llvm::coverage::Counter C) const {
OS << Printer(C, getExpressions());
}