llvm-project/lld/COFF/DebugTypes.h
Alexandre Ganea bf55c4e3e3 [LLD][COFF] Early dependency detection
We introduce a new class hierarchy for debug types merging (in DebugTypes.h). The end-goal is to parallelize the type merging - please see the plan in D59226.

Previously, dependency discovery was done on the fly, much later, during the type merging loop. Unfortunately, parallelizing the type merging requires the dependencies to be merged in first, before any dependent ObjFile, thus this early discovery.

The overall intention for this path is to discover debug information dependencies at a much earlier stage, when processing input files. Currently, two types of dependency are supported: PDB type servers (when compiling with MSVC /Zi) and precompiled headers OBJs (when compiling with MSVC /Yc and /Yu). Once discovered, an explicit link is added into the dependent ObjFile, through the new debug types class hierarchy introduced in DebugTypes.h.

Differential Revision: https://reviews.llvm.org/D59053

llvm-svn: 357383
2019-04-01 13:36:59 +00:00

51 lines
1.3 KiB
C++

//===- DebugTypes.h ---------------------------------------------*- 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
//
//===----------------------------------------------------------------------===//
#ifndef LLD_COFF_DEBUGTYPES_H
#define LLD_COFF_DEBUGTYPES_H
#include "llvm/Support/Error.h"
namespace llvm {
namespace codeview {
class PrecompRecord;
class TypeServer2Record;
} // namespace codeview
} // namespace llvm
namespace lld {
namespace coff {
class ObjFile;
class TpiSource {
public:
enum TpiKind { Regular, PCH, UsingPCH, PDB, UsingPDB };
TpiSource(TpiKind K, ObjFile *F);
virtual ~TpiSource() {}
const TpiKind Kind;
ObjFile *File;
};
TpiSource *makeTpiSource(ObjFile *F);
TpiSource *makeTypeServerSource(ObjFile *F);
TpiSource *makeUseTypeServerSource(ObjFile *F,
llvm::codeview::TypeServer2Record *TS);
TpiSource *makePrecompSource(ObjFile *F);
TpiSource *makeUsePrecompSource(ObjFile *F,
llvm::codeview::PrecompRecord *Precomp);
// Temporary interface to get the dependency
template <typename T> const T &retrieveDependencyInfo(TpiSource *Source);
} // namespace coff
} // namespace lld
#endif