2013-11-08 16:13:15 +08:00
|
|
|
//===--- DebugInfo.cpp - Debug Information Helper Classes -----------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the helper classes used to build and interpret debug
|
|
|
|
// information in LLVM IR form.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-03-06 08:46:21 +08:00
|
|
|
#include "llvm/IR/DebugInfo.h"
|
2014-03-04 18:07:28 +08:00
|
|
|
#include "LLVMContextImpl.h"
|
2013-11-08 16:13:15 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
#include "llvm/Analysis/ValueTracking.h"
|
|
|
|
#include "llvm/IR/Constants.h"
|
2014-08-02 06:11:58 +08:00
|
|
|
#include "llvm/IR/DIBuilder.h"
|
2013-11-08 16:13:15 +08:00
|
|
|
#include "llvm/IR/DerivedTypes.h"
|
|
|
|
#include "llvm/IR/Instructions.h"
|
|
|
|
#include "llvm/IR/IntrinsicInst.h"
|
|
|
|
#include "llvm/IR/Intrinsics.h"
|
2015-03-31 05:36:43 +08:00
|
|
|
#include "llvm/IR/GVMaterializer.h"
|
2013-11-08 16:13:15 +08:00
|
|
|
#include "llvm/IR/Module.h"
|
2014-03-04 19:17:44 +08:00
|
|
|
#include "llvm/IR/ValueHandle.h"
|
2013-11-08 16:13:15 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/Dwarf.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace llvm::dwarf;
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Simple Descriptor Constructors and other Methods
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-04-07 02:02:43 +08:00
|
|
|
DIScopeRef DIScope::getRef() const { return MDScopeRef::get(get()); }
|
2013-11-08 16:13:15 +08:00
|
|
|
|
2014-10-04 04:01:09 +08:00
|
|
|
void DICompileUnit::replaceSubprograms(DIArray Subprograms) {
|
2015-04-08 00:50:39 +08:00
|
|
|
get()->replaceSubprograms(MDSubprogramArray(Subprograms));
|
2014-10-04 04:01:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DICompileUnit::replaceGlobalVariables(DIArray GlobalVariables) {
|
2015-04-08 00:50:39 +08:00
|
|
|
get()->replaceGlobalVariables(MDGlobalVariableArray(GlobalVariables));
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
DIVariable llvm::createInlinedVariable(MDNode *DV, MDNode *InlinedScope,
|
|
|
|
LLVMContext &VMContext) {
|
2015-03-04 01:24:31 +08:00
|
|
|
return cast<MDLocalVariable>(DV)
|
|
|
|
->withInline(cast_or_null<MDLocation>(InlinedScope));
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
DIVariable llvm::cleanseInlinedVariable(MDNode *DV, LLVMContext &VMContext) {
|
2015-03-04 01:24:31 +08:00
|
|
|
return cast<MDLocalVariable>(DV)->withoutInline();
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
DISubprogram llvm::getDISubprogram(const MDNode *Scope) {
|
2015-03-31 10:06:28 +08:00
|
|
|
if (auto *LocalScope = dyn_cast_or_null<MDLocalScope>(Scope))
|
|
|
|
return LocalScope->getSubprogram();
|
|
|
|
return nullptr;
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
|
2014-10-24 07:46:28 +08:00
|
|
|
DISubprogram llvm::getDISubprogram(const Function *F) {
|
|
|
|
// We look for the first instr that has a debug annotation leading back to F.
|
|
|
|
for (auto &BB : *F) {
|
2014-11-01 15:57:14 +08:00
|
|
|
auto Inst = std::find_if(BB.begin(), BB.end(), [](const Instruction &Inst) {
|
2015-03-31 03:40:05 +08:00
|
|
|
return Inst.getDebugLoc();
|
2014-11-01 15:57:14 +08:00
|
|
|
});
|
|
|
|
if (Inst == BB.end())
|
|
|
|
continue;
|
|
|
|
DebugLoc DLoc = Inst->getDebugLoc();
|
2015-03-31 03:40:05 +08:00
|
|
|
const MDNode *Scope = DLoc.getInlinedAtScope();
|
2014-11-01 15:57:14 +08:00
|
|
|
DISubprogram Subprogram = getDISubprogram(Scope);
|
|
|
|
return Subprogram.describes(F) ? Subprogram : DISubprogram();
|
2014-10-24 07:46:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return DISubprogram();
|
|
|
|
}
|
|
|
|
|
2013-11-08 16:13:15 +08:00
|
|
|
DICompositeType llvm::getDICompositeType(DIType T) {
|
2015-04-07 07:18:49 +08:00
|
|
|
if (auto *C = dyn_cast_or_null<MDCompositeTypeBase>(T))
|
|
|
|
return C;
|
2013-11-08 16:13:15 +08:00
|
|
|
|
2015-04-07 07:18:49 +08:00
|
|
|
if (auto *D = dyn_cast_or_null<MDDerivedTypeBase>(T)) {
|
2013-11-08 16:13:15 +08:00
|
|
|
// This function is currently used by dragonegg and dragonegg does
|
|
|
|
// not generate identifier for types, so using an empty map to resolve
|
|
|
|
// DerivedFrom should be fine.
|
|
|
|
DITypeIdentifierMap EmptyMap;
|
|
|
|
return getDICompositeType(
|
2015-04-07 07:18:49 +08:00
|
|
|
DIDerivedType(D).getTypeDerivedFrom().resolve(EmptyMap));
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
|
2015-04-07 07:18:49 +08:00
|
|
|
return nullptr;
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
DITypeIdentifierMap
|
|
|
|
llvm::generateDITypeIdentifierMap(const NamedMDNode *CU_Nodes) {
|
|
|
|
DITypeIdentifierMap Map;
|
|
|
|
for (unsigned CUi = 0, CUe = CU_Nodes->getNumOperands(); CUi != CUe; ++CUi) {
|
2015-04-07 07:18:49 +08:00
|
|
|
DICompileUnit CU = cast<MDCompileUnit>(CU_Nodes->getOperand(CUi));
|
2013-11-08 16:13:15 +08:00
|
|
|
DIArray Retain = CU.getRetainedTypes();
|
2015-04-07 12:14:33 +08:00
|
|
|
for (unsigned Ti = 0, Te = Retain.size(); Ti != Te; ++Ti) {
|
|
|
|
if (!isa<MDCompositeType>(Retain[Ti]))
|
2013-11-08 16:13:15 +08:00
|
|
|
continue;
|
2015-04-07 12:14:33 +08:00
|
|
|
DICompositeType Ty = cast<MDCompositeType>(Retain[Ti]);
|
2013-11-08 16:13:15 +08:00
|
|
|
if (MDString *TypeId = Ty.getIdentifier()) {
|
|
|
|
// Definition has priority over declaration.
|
|
|
|
// Try to insert (TypeId, Ty) to Map.
|
|
|
|
std::pair<DITypeIdentifierMap::iterator, bool> P =
|
|
|
|
Map.insert(std::make_pair(TypeId, Ty));
|
|
|
|
// If TypeId already exists in Map and this is a definition, replace
|
|
|
|
// whatever we had (declaration or definition) with the definition.
|
|
|
|
if (!P.second && !Ty.isForwardDecl())
|
|
|
|
P.first->second = Ty;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Map;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DebugInfoFinder implementations.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
void DebugInfoFinder::reset() {
|
|
|
|
CUs.clear();
|
|
|
|
SPs.clear();
|
|
|
|
GVs.clear();
|
|
|
|
TYs.clear();
|
|
|
|
Scopes.clear();
|
|
|
|
NodesSeen.clear();
|
|
|
|
TypeIdentifierMap.clear();
|
2013-11-18 02:42:37 +08:00
|
|
|
TypeMapInitialized = false;
|
|
|
|
}
|
|
|
|
|
2013-11-18 03:35:03 +08:00
|
|
|
void DebugInfoFinder::InitializeTypeMap(const Module &M) {
|
2013-11-18 02:42:37 +08:00
|
|
|
if (!TypeMapInitialized)
|
|
|
|
if (NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu")) {
|
|
|
|
TypeIdentifierMap = generateDITypeIdentifierMap(CU_Nodes);
|
|
|
|
TypeMapInitialized = true;
|
|
|
|
}
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DebugInfoFinder::processModule(const Module &M) {
|
2013-11-18 03:35:03 +08:00
|
|
|
InitializeTypeMap(M);
|
2013-11-08 16:13:15 +08:00
|
|
|
if (NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu")) {
|
|
|
|
for (unsigned i = 0, e = CU_Nodes->getNumOperands(); i != e; ++i) {
|
2015-04-07 07:18:49 +08:00
|
|
|
DICompileUnit CU = cast<MDCompileUnit>(CU_Nodes->getOperand(i));
|
2013-11-08 16:13:15 +08:00
|
|
|
addCompileUnit(CU);
|
2015-04-07 12:14:33 +08:00
|
|
|
for (DIGlobalVariable DIG : CU->getGlobalVariables()) {
|
2013-11-08 16:13:15 +08:00
|
|
|
if (addGlobalVariable(DIG)) {
|
2014-11-22 03:55:23 +08:00
|
|
|
processScope(DIG.getContext());
|
2014-03-18 10:34:58 +08:00
|
|
|
processType(DIG.getType().resolve(TypeIdentifierMap));
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
}
|
2015-04-07 12:14:33 +08:00
|
|
|
for (auto *SP : CU->getSubprograms())
|
|
|
|
processSubprogram(SP);
|
|
|
|
for (auto *ET : CU->getEnumTypes())
|
|
|
|
processType(ET);
|
|
|
|
for (auto *RT : CU->getRetainedTypes())
|
|
|
|
processType(RT);
|
|
|
|
for (DIImportedEntity Import : CU->getImportedEntities()) {
|
2014-04-01 11:41:04 +08:00
|
|
|
DIDescriptor Entity = Import.getEntity().resolve(TypeIdentifierMap);
|
2015-04-07 07:18:49 +08:00
|
|
|
if (auto *T = dyn_cast<MDType>(Entity))
|
|
|
|
processType(T);
|
|
|
|
else if (auto *SP = dyn_cast<MDSubprogram>(Entity))
|
|
|
|
processSubprogram(SP);
|
|
|
|
else if (auto *NS = dyn_cast<MDNamespace>(Entity))
|
|
|
|
processScope(NS->getScope());
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-18 02:42:37 +08:00
|
|
|
void DebugInfoFinder::processLocation(const Module &M, DILocation Loc) {
|
2013-11-08 16:13:15 +08:00
|
|
|
if (!Loc)
|
|
|
|
return;
|
2013-11-18 03:35:03 +08:00
|
|
|
InitializeTypeMap(M);
|
2013-11-08 16:13:15 +08:00
|
|
|
processScope(Loc.getScope());
|
2013-11-18 02:42:37 +08:00
|
|
|
processLocation(M, Loc.getOrigLocation());
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DebugInfoFinder::processType(DIType DT) {
|
|
|
|
if (!addType(DT))
|
|
|
|
return;
|
|
|
|
processScope(DT.getContext().resolve(TypeIdentifierMap));
|
2015-04-07 07:18:49 +08:00
|
|
|
if (DICompositeType DCT = dyn_cast<MDCompositeTypeBase>(DT)) {
|
2013-11-08 16:13:15 +08:00
|
|
|
processType(DCT.getTypeDerivedFrom().resolve(TypeIdentifierMap));
|
2015-04-07 07:18:49 +08:00
|
|
|
if (DISubroutineType ST = dyn_cast<MDSubroutineType>(DCT)) {
|
2015-04-07 12:14:33 +08:00
|
|
|
for (MDTypeRef Ref : ST->getTypeArray())
|
|
|
|
processType(Ref.resolve(TypeIdentifierMap));
|
2014-07-29 06:24:06 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-04-07 12:14:33 +08:00
|
|
|
for (Metadata *D : DCT->getElements()->operands()) {
|
2015-04-07 07:18:49 +08:00
|
|
|
if (DIType T = dyn_cast<MDType>(D))
|
|
|
|
processType(T);
|
|
|
|
else if (DISubprogram SP = dyn_cast<MDSubprogram>(D))
|
|
|
|
processSubprogram(SP);
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
2015-04-07 07:18:49 +08:00
|
|
|
} else if (DIDerivedType DDT = dyn_cast<MDDerivedTypeBase>(DT)) {
|
2013-11-08 16:13:15 +08:00
|
|
|
processType(DDT.getTypeDerivedFrom().resolve(TypeIdentifierMap));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DebugInfoFinder::processScope(DIScope Scope) {
|
2015-04-07 07:18:49 +08:00
|
|
|
if (!Scope)
|
|
|
|
return;
|
|
|
|
if (DIType Ty = dyn_cast<MDType>(Scope)) {
|
2013-11-08 16:13:15 +08:00
|
|
|
processType(Ty);
|
|
|
|
return;
|
|
|
|
}
|
2015-04-07 07:18:49 +08:00
|
|
|
if (DICompileUnit CU = dyn_cast<MDCompileUnit>(Scope)) {
|
|
|
|
addCompileUnit(CU);
|
2013-11-08 16:13:15 +08:00
|
|
|
return;
|
|
|
|
}
|
2015-04-07 07:18:49 +08:00
|
|
|
if (DISubprogram SP = dyn_cast<MDSubprogram>(Scope)) {
|
|
|
|
processSubprogram(SP);
|
2013-11-08 16:13:15 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!addScope(Scope))
|
|
|
|
return;
|
2015-04-07 07:18:49 +08:00
|
|
|
if (DILexicalBlock LB = dyn_cast<MDLexicalBlockBase>(Scope)) {
|
2013-11-08 16:13:15 +08:00
|
|
|
processScope(LB.getContext());
|
2015-04-07 07:18:49 +08:00
|
|
|
} else if (DINameSpace NS = dyn_cast<MDNamespace>(Scope)) {
|
2013-11-08 16:13:15 +08:00
|
|
|
processScope(NS.getContext());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DebugInfoFinder::processSubprogram(DISubprogram SP) {
|
|
|
|
if (!addSubprogram(SP))
|
|
|
|
return;
|
|
|
|
processScope(SP.getContext().resolve(TypeIdentifierMap));
|
|
|
|
processType(SP.getType());
|
2015-04-07 12:14:33 +08:00
|
|
|
for (auto *Element : SP.getTemplateParams()) {
|
2015-04-07 07:18:49 +08:00
|
|
|
if (DITemplateTypeParameter TType =
|
|
|
|
dyn_cast<MDTemplateTypeParameter>(Element)) {
|
2013-11-08 16:13:15 +08:00
|
|
|
processType(TType.getType().resolve(TypeIdentifierMap));
|
2015-04-07 07:18:49 +08:00
|
|
|
} else if (DITemplateValueParameter TVal =
|
|
|
|
dyn_cast<MDTemplateValueParameter>(Element)) {
|
2013-11-08 16:13:15 +08:00
|
|
|
processType(TVal.getType().resolve(TypeIdentifierMap));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-18 02:42:37 +08:00
|
|
|
void DebugInfoFinder::processDeclare(const Module &M,
|
|
|
|
const DbgDeclareInst *DDI) {
|
2013-11-08 16:13:15 +08:00
|
|
|
MDNode *N = dyn_cast<MDNode>(DDI->getVariable());
|
|
|
|
if (!N)
|
|
|
|
return;
|
2013-11-18 03:35:03 +08:00
|
|
|
InitializeTypeMap(M);
|
2013-11-08 16:13:15 +08:00
|
|
|
|
2015-04-07 07:18:49 +08:00
|
|
|
DIVariable DV = dyn_cast<MDLocalVariable>(N);
|
|
|
|
if (!DV)
|
2013-11-08 16:13:15 +08:00
|
|
|
return;
|
|
|
|
|
2014-11-19 15:49:26 +08:00
|
|
|
if (!NodesSeen.insert(DV).second)
|
2013-11-08 16:13:15 +08:00
|
|
|
return;
|
2015-04-07 07:18:49 +08:00
|
|
|
processScope(DV.getContext());
|
|
|
|
processType(DV.getType().resolve(TypeIdentifierMap));
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
|
2013-11-18 02:42:37 +08:00
|
|
|
void DebugInfoFinder::processValue(const Module &M, const DbgValueInst *DVI) {
|
2013-11-08 16:13:15 +08:00
|
|
|
MDNode *N = dyn_cast<MDNode>(DVI->getVariable());
|
|
|
|
if (!N)
|
|
|
|
return;
|
2013-11-18 03:35:03 +08:00
|
|
|
InitializeTypeMap(M);
|
2013-11-08 16:13:15 +08:00
|
|
|
|
2015-04-07 07:18:49 +08:00
|
|
|
DIVariable DV = dyn_cast<MDLocalVariable>(N);
|
|
|
|
if (!DV)
|
2013-11-08 16:13:15 +08:00
|
|
|
return;
|
|
|
|
|
2014-11-19 15:49:26 +08:00
|
|
|
if (!NodesSeen.insert(DV).second)
|
2013-11-08 16:13:15 +08:00
|
|
|
return;
|
2015-04-07 07:18:49 +08:00
|
|
|
processScope(DV.getContext());
|
|
|
|
processType(DV.getType().resolve(TypeIdentifierMap));
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool DebugInfoFinder::addType(DIType DT) {
|
|
|
|
if (!DT)
|
|
|
|
return false;
|
|
|
|
|
2014-11-19 15:49:26 +08:00
|
|
|
if (!NodesSeen.insert(DT).second)
|
2013-11-08 16:13:15 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
TYs.push_back(DT);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DebugInfoFinder::addCompileUnit(DICompileUnit CU) {
|
|
|
|
if (!CU)
|
|
|
|
return false;
|
2014-11-19 15:49:26 +08:00
|
|
|
if (!NodesSeen.insert(CU).second)
|
2013-11-08 16:13:15 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
CUs.push_back(CU);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DebugInfoFinder::addGlobalVariable(DIGlobalVariable DIG) {
|
|
|
|
if (!DIG)
|
|
|
|
return false;
|
|
|
|
|
2014-11-19 15:49:26 +08:00
|
|
|
if (!NodesSeen.insert(DIG).second)
|
2013-11-08 16:13:15 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
GVs.push_back(DIG);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DebugInfoFinder::addSubprogram(DISubprogram SP) {
|
|
|
|
if (!SP)
|
|
|
|
return false;
|
|
|
|
|
2014-11-19 15:49:26 +08:00
|
|
|
if (!NodesSeen.insert(SP).second)
|
2013-11-08 16:13:15 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
SPs.push_back(SP);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DebugInfoFinder::addScope(DIScope Scope) {
|
|
|
|
if (!Scope)
|
|
|
|
return false;
|
|
|
|
// FIXME: Ocaml binding generates a scope with no content, we treat it
|
|
|
|
// as null for now.
|
|
|
|
if (Scope->getNumOperands() == 0)
|
|
|
|
return false;
|
2014-11-19 15:49:26 +08:00
|
|
|
if (!NodesSeen.insert(Scope).second)
|
2013-11-08 16:13:15 +08:00
|
|
|
return false;
|
|
|
|
Scopes.push_back(Scope);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DIDescriptor: dump routines for all descriptors.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
void DIDescriptor::dump() const {
|
|
|
|
print(dbgs());
|
|
|
|
dbgs() << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
void DIDescriptor::print(raw_ostream &OS) const {
|
2015-03-04 01:24:31 +08:00
|
|
|
if (!get())
|
2013-11-08 16:13:15 +08:00
|
|
|
return;
|
2015-03-04 01:24:31 +08:00
|
|
|
get()->print(OS);
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void printDebugLoc(DebugLoc DL, raw_ostream &CommentOS,
|
|
|
|
const LLVMContext &Ctx) {
|
2015-03-31 03:40:05 +08:00
|
|
|
if (!DL)
|
2015-03-31 02:45:11 +08:00
|
|
|
return;
|
|
|
|
|
2015-04-07 07:18:49 +08:00
|
|
|
DIScope Scope = cast<MDScope>(DL.getScope());
|
2015-03-31 02:45:11 +08:00
|
|
|
// Omit the directory, because it's likely to be long and uninteresting.
|
|
|
|
CommentOS << Scope.getFilename();
|
|
|
|
CommentOS << ':' << DL.getLine();
|
|
|
|
if (DL.getCol() != 0)
|
|
|
|
CommentOS << ':' << DL.getCol();
|
|
|
|
|
2015-03-31 03:40:05 +08:00
|
|
|
DebugLoc InlinedAtDL = DL.getInlinedAt();
|
|
|
|
if (!InlinedAtDL)
|
2015-03-31 02:45:11 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
CommentOS << " @[ ";
|
|
|
|
printDebugLoc(InlinedAtDL, CommentOS, Ctx);
|
|
|
|
CommentOS << " ]";
|
2013-11-08 16:13:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DIVariable::printExtendedName(raw_ostream &OS) const {
|
|
|
|
const LLVMContext &Ctx = DbgNode->getContext();
|
|
|
|
StringRef Res = getName();
|
|
|
|
if (!Res.empty())
|
|
|
|
OS << Res << "," << getLineNumber();
|
2015-03-31 03:40:05 +08:00
|
|
|
if (auto *InlinedAt = get()->getInlinedAt()) {
|
|
|
|
if (DebugLoc InlinedAtDL = InlinedAt) {
|
2013-11-08 16:13:15 +08:00
|
|
|
OS << " @[";
|
|
|
|
printDebugLoc(InlinedAtDL, OS, Ctx);
|
|
|
|
OS << "]";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-07 06:27:37 +08:00
|
|
|
template <>
|
|
|
|
DIDescriptor
|
|
|
|
DIRef<DIDescriptor>::resolve(const DITypeIdentifierMap &Map) const {
|
|
|
|
return DIDescriptor(DebugNodeRef(Val).resolve(Map));
|
|
|
|
}
|
|
|
|
template <>
|
|
|
|
DIScope DIRef<DIScope>::resolve(const DITypeIdentifierMap &Map) const {
|
|
|
|
return MDScopeRef(Val).resolve(Map);
|
|
|
|
}
|
|
|
|
template <>
|
|
|
|
DIType DIRef<DIType>::resolve(const DITypeIdentifierMap &Map) const {
|
|
|
|
return MDTypeRef(Val).resolve(Map);
|
|
|
|
}
|
|
|
|
|
2015-03-31 05:36:43 +08:00
|
|
|
bool llvm::stripDebugInfo(Function &F) {
|
|
|
|
bool Changed = false;
|
|
|
|
for (BasicBlock &BB : F) {
|
|
|
|
for (Instruction &I : BB) {
|
|
|
|
if (I.getDebugLoc()) {
|
|
|
|
Changed = true;
|
|
|
|
I.setDebugLoc(DebugLoc());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
2013-11-23 06:06:31 +08:00
|
|
|
bool llvm::StripDebugInfo(Module &M) {
|
|
|
|
bool Changed = false;
|
|
|
|
|
|
|
|
// Remove all of the calls to the debugger intrinsics, and remove them from
|
|
|
|
// the module.
|
|
|
|
if (Function *Declare = M.getFunction("llvm.dbg.declare")) {
|
|
|
|
while (!Declare->use_empty()) {
|
2014-03-09 11:16:01 +08:00
|
|
|
CallInst *CI = cast<CallInst>(Declare->user_back());
|
2013-11-23 06:06:31 +08:00
|
|
|
CI->eraseFromParent();
|
|
|
|
}
|
|
|
|
Declare->eraseFromParent();
|
|
|
|
Changed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Function *DbgVal = M.getFunction("llvm.dbg.value")) {
|
|
|
|
while (!DbgVal->use_empty()) {
|
2014-03-09 11:16:01 +08:00
|
|
|
CallInst *CI = cast<CallInst>(DbgVal->user_back());
|
2013-11-23 06:06:31 +08:00
|
|
|
CI->eraseFromParent();
|
|
|
|
}
|
|
|
|
DbgVal->eraseFromParent();
|
|
|
|
Changed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (Module::named_metadata_iterator NMI = M.named_metadata_begin(),
|
|
|
|
NME = M.named_metadata_end(); NMI != NME;) {
|
|
|
|
NamedMDNode *NMD = NMI;
|
|
|
|
++NMI;
|
|
|
|
if (NMD->getName().startswith("llvm.dbg.")) {
|
|
|
|
NMD->eraseFromParent();
|
|
|
|
Changed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-31 05:36:43 +08:00
|
|
|
for (Function &F : M)
|
|
|
|
Changed |= stripDebugInfo(F);
|
|
|
|
|
2015-04-01 22:44:59 +08:00
|
|
|
if (GVMaterializer *Materializer = M.getMaterializer())
|
2015-03-31 05:36:43 +08:00
|
|
|
Materializer->setStripDebugInfo();
|
2013-11-23 06:06:31 +08:00
|
|
|
|
|
|
|
return Changed;
|
|
|
|
}
|
2013-12-03 05:29:56 +08:00
|
|
|
|
2013-12-03 08:12:14 +08:00
|
|
|
unsigned llvm::getDebugMetadataVersionFromModule(const Module &M) {
|
2015-02-16 14:04:53 +08:00
|
|
|
if (auto *Val = mdconst::dyn_extract_or_null<ConstantInt>(
|
IR: Split Metadata from Value
Split `Metadata` away from the `Value` class hierarchy, as part of
PR21532. Assembly and bitcode changes are in the wings, but this is the
bulk of the change for the IR C++ API.
I have a follow-up patch prepared for `clang`. If this breaks other
sub-projects, I apologize in advance :(. Help me compile it on Darwin
I'll try to fix it. FWIW, the errors should be easy to fix, so it may
be simpler to just fix it yourself.
This breaks the build for all metadata-related code that's out-of-tree.
Rest assured the transition is mechanical and the compiler should catch
almost all of the problems.
Here's a quick guide for updating your code:
- `Metadata` is the root of a class hierarchy with three main classes:
`MDNode`, `MDString`, and `ValueAsMetadata`. It is distinct from
the `Value` class hierarchy. It is typeless -- i.e., instances do
*not* have a `Type`.
- `MDNode`'s operands are all `Metadata *` (instead of `Value *`).
- `TrackingVH<MDNode>` and `WeakVH` referring to metadata can be
replaced with `TrackingMDNodeRef` and `TrackingMDRef`, respectively.
If you're referring solely to resolved `MDNode`s -- post graph
construction -- just use `MDNode*`.
- `MDNode` (and the rest of `Metadata`) have only limited support for
`replaceAllUsesWith()`.
As long as an `MDNode` is pointing at a forward declaration -- the
result of `MDNode::getTemporary()` -- it maintains a side map of its
uses and can RAUW itself. Once the forward declarations are fully
resolved RAUW support is dropped on the ground. This means that
uniquing collisions on changing operands cause nodes to become
"distinct". (This already happened fairly commonly, whenever an
operand went to null.)
If you're constructing complex (non self-reference) `MDNode` cycles,
you need to call `MDNode::resolveCycles()` on each node (or on a
top-level node that somehow references all of the nodes). Also,
don't do that. Metadata cycles (and the RAUW machinery needed to
construct them) are expensive.
- An `MDNode` can only refer to a `Constant` through a bridge called
`ConstantAsMetadata` (one of the subclasses of `ValueAsMetadata`).
As a side effect, accessing an operand of an `MDNode` that is known
to be, e.g., `ConstantInt`, takes three steps: first, cast from
`Metadata` to `ConstantAsMetadata`; second, extract the `Constant`;
third, cast down to `ConstantInt`.
The eventual goal is to introduce `MDInt`/`MDFloat`/etc. and have
metadata schema owners transition away from using `Constant`s when
the type isn't important (and they don't care about referring to
`GlobalValue`s).
In the meantime, I've added transitional API to the `mdconst`
namespace that matches semantics with the old code, in order to
avoid adding the error-prone three-step equivalent to every call
site. If your old code was:
MDNode *N = foo();
bar(isa <ConstantInt>(N->getOperand(0)));
baz(cast <ConstantInt>(N->getOperand(1)));
bak(cast_or_null <ConstantInt>(N->getOperand(2)));
bat(dyn_cast <ConstantInt>(N->getOperand(3)));
bay(dyn_cast_or_null<ConstantInt>(N->getOperand(4)));
you can trivially match its semantics with:
MDNode *N = foo();
bar(mdconst::hasa <ConstantInt>(N->getOperand(0)));
baz(mdconst::extract <ConstantInt>(N->getOperand(1)));
bak(mdconst::extract_or_null <ConstantInt>(N->getOperand(2)));
bat(mdconst::dyn_extract <ConstantInt>(N->getOperand(3)));
bay(mdconst::dyn_extract_or_null<ConstantInt>(N->getOperand(4)));
and when you transition your metadata schema to `MDInt`:
MDNode *N = foo();
bar(isa <MDInt>(N->getOperand(0)));
baz(cast <MDInt>(N->getOperand(1)));
bak(cast_or_null <MDInt>(N->getOperand(2)));
bat(dyn_cast <MDInt>(N->getOperand(3)));
bay(dyn_cast_or_null<MDInt>(N->getOperand(4)));
- A `CallInst` -- specifically, intrinsic instructions -- can refer to
metadata through a bridge called `MetadataAsValue`. This is a
subclass of `Value` where `getType()->isMetadataTy()`.
`MetadataAsValue` is the *only* class that can legally refer to a
`LocalAsMetadata`, which is a bridged form of non-`Constant` values
like `Argument` and `Instruction`. It can also refer to any other
`Metadata` subclass.
(I'll break all your testcases in a follow-up commit, when I propagate
this change to assembly.)
llvm-svn: 223802
2014-12-10 02:38:53 +08:00
|
|
|
M.getModuleFlag("Debug Info Version")))
|
|
|
|
return Val->getZExtValue();
|
|
|
|
return 0;
|
2013-12-03 05:29:56 +08:00
|
|
|
}
|
2014-07-02 04:05:26 +08:00
|
|
|
|
2014-07-03 02:30:05 +08:00
|
|
|
llvm::DenseMap<const llvm::Function *, llvm::DISubprogram>
|
|
|
|
llvm::makeSubprogramMap(const Module &M) {
|
|
|
|
DenseMap<const Function *, DISubprogram> R;
|
2014-07-02 04:05:26 +08:00
|
|
|
|
|
|
|
NamedMDNode *CU_Nodes = M.getNamedMetadata("llvm.dbg.cu");
|
|
|
|
if (!CU_Nodes)
|
|
|
|
return R;
|
|
|
|
|
2014-11-12 05:30:22 +08:00
|
|
|
for (MDNode *N : CU_Nodes->operands()) {
|
2015-04-07 07:18:49 +08:00
|
|
|
DICompileUnit CUNode = cast<MDCompileUnit>(N);
|
2015-04-07 12:14:33 +08:00
|
|
|
for (DISubprogram SP : CUNode->getSubprograms()) {
|
2014-07-02 04:05:26 +08:00
|
|
|
if (Function *F = SP.getFunction())
|
|
|
|
R.insert(std::make_pair(F, SP));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return R;
|
|
|
|
}
|