Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions clang/lib/CodeGen/CGCall.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6295,6 +6295,8 @@ RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
DI->EmitFuncDeclForCallSite(
CI, DI->getFunctionType(CalleeDecl, ResTy, Args), CalleeGlobalDecl);
}
// Collect call site target information.
DI->addCallTarget(CI->getCalledFunction(), CalleeDecl, CI);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be inside the inner if above? I'm not sure what value the additional metadata has if call sites are not being emitted

}

return Ret;
Expand Down
110 changes: 108 additions & 2 deletions clang/lib/CodeGen/CGDebugInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2430,6 +2430,9 @@ llvm::DISubprogram *CGDebugInfo::CreateCXXMemberFunction(

SPCache[Method->getCanonicalDecl()].reset(SP);

// Add the method declaration as a call target.
addCallTarget(MethodLinkageName, SP, /*CI=*/nullptr);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Possibly dumb question: What is this call doing?


return SP;
}

Expand Down Expand Up @@ -4955,6 +4958,95 @@ void CGDebugInfo::EmitFunctionDecl(GlobalDecl GD, SourceLocation Loc,
Fn->setSubprogram(SP);
}

bool CGDebugInfo::generateVirtualCallSite() const {
// Check general conditions for call site generation.
return (getCallSiteRelatedAttrs() != llvm::DINode::FlagZero);
}

// Set the 'call_target' metadata in the call instruction.
void CGDebugInfo::addCallTargetMetadata(llvm::MDNode *MD, llvm::CallBase *CI) {
if (!MD || !CI)
return;
CI->setMetadata(llvm::LLVMContext::MD_call_target, MD);
}

// Finalize call_target generation.
void CGDebugInfo::finalizeCallTarget() {
if (!generateVirtualCallSite())
return;

for (auto &E : CallTargetCache) {
for (const auto &WH : E.second.second) {
llvm::CallBase *CI = dyn_cast_or_null<llvm::CallBase>(WH);
addCallTargetMetadata(E.second.first, CI);
}
}
}

void CGDebugInfo::addCallTarget(StringRef Name, llvm::MDNode *MD,
llvm::CallBase *CI) {
if (!generateVirtualCallSite())
return;

// Record only indirect calls.
if (CI && !CI->isIndirectCall())
return;

// Nothing to do.
if (Name.empty())
return;

auto It = CallTargetCache.find(Name);
if (It == CallTargetCache.end()) {
// First time we see 'Name'. Insert record for later finalize.
InstrList List;
if (CI)
List.push_back(CI);
CallTargetCache.try_emplace(Name, MD, std::move(List));
} else {
if (MD)
It->second.first.reset(MD);
if (CI) {
InstrList &List = It->second.second;
List.push_back(CI);
}
}
}

void CGDebugInfo::addCallTarget(llvm::Function *F, const FunctionDecl *FD,
llvm::CallBase *CI) {
if (!generateVirtualCallSite())
return;

if (!F && !FD)
return;

// Ignore method types that never can be indirect calls.
if (!F && (isa<CXXConstructorDecl>(FD) || isa<CXXDestructorDecl>(FD) ||
FD->hasAttr<CUDAGlobalAttr>()))
return;

StringRef Name = (F && F->hasName()) ? F->getName() : CGM.getMangledName(FD);
addCallTarget(Name, /*MD=*/nullptr, CI);
}

void CGDebugInfo::removeCallTarget(StringRef Name) {
if (!generateVirtualCallSite())
return;

auto It = CallTargetCache.find(Name);
if (It != CallTargetCache.end())
CallTargetCache.erase(It);
}

void CGDebugInfo::removeCallTarget(llvm::Function *F) {
if (!generateVirtualCallSite())
return;

if (F && F->hasName())
removeCallTarget(F->getName());
}

void CGDebugInfo::EmitFuncDeclForCallSite(llvm::CallBase *CallOrInvoke,
QualType CalleeType,
GlobalDecl CalleeGlobalDecl) {
Expand All @@ -4978,9 +5070,15 @@ void CGDebugInfo::EmitFuncDeclForCallSite(llvm::CallBase *CallOrInvoke,
// If there is no DISubprogram attached to the function being called,
// create the one describing the function in order to have complete
// call site debug info.
if (!CalleeDecl->isStatic() && !CalleeDecl->isInlined())
if (!CalleeDecl->isStatic() && !CalleeDecl->isInlined()) {
EmitFunctionDecl(CalleeGlobalDecl, CalleeDecl->getLocation(), CalleeType,
Func);
if (Func->getSubprogram()) {
// For each call instruction emitted, add the call site target metadata.
llvm::DISubprogram *SP = Func->getSubprogram();
addCallTarget(SP->getLinkageName(), SP, /*CI=*/nullptr);
}
Comment on lines +5076 to +5080
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (Func->getSubprogram()) {
// For each call instruction emitted, add the call site target metadata.
llvm::DISubprogram *SP = Func->getSubprogram();
addCallTarget(SP->getLinkageName(), SP, /*CI=*/nullptr);
}
// For each call instruction emitted, add the call site target metadata.
if (llvm::DISubprogram *SP = Func->getSubprogram())
addCallTarget(SP->getLinkageName(), SP, /*CI=*/nullptr);

nits: vardecl into if statement, drop braces

}
}

void CGDebugInfo::EmitInlineFunctionStart(CGBuilderTy &Builder, GlobalDecl GD) {
Expand Down Expand Up @@ -5082,8 +5180,13 @@ void CGDebugInfo::EmitFunctionEnd(CGBuilderTy &Builder, llvm::Function *Fn) {
}
FnBeginRegionCount.pop_back();

if (Fn && Fn->getSubprogram())
if (Fn && Fn->getSubprogram()) {
// For each call instruction emitted, add the call site target metadata.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: comment mentions call instruction, but we pass nullptr for the call here - can the comment be re-wording?

llvm::DISubprogram *SP = Fn->getSubprogram();
addCallTarget(SP->getLinkageName(), SP, /*CI=*/nullptr);

DBuilder.finalizeSubprogram(Fn->getSubprogram());
}
}

CGDebugInfo::BlockByRefType
Expand Down Expand Up @@ -6498,6 +6601,9 @@ void CGDebugInfo::finalize() {
if (auto MD = TypeCache[RT])
DBuilder.retainType(cast<llvm::DIType>(MD));

// Generate call_target information.
finalizeCallTarget();

DBuilder.finalize();
}

Expand Down
28 changes: 28 additions & 0 deletions clang/lib/CodeGen/CGDebugInfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,15 @@ class CGDebugInfo {
/// that it is supported and enabled.
llvm::DINode::DIFlags getCallSiteRelatedAttrs() const;

/// Add call target information.
void addCallTarget(StringRef Name, llvm::MDNode *MD, llvm::CallBase *CI);
void addCallTarget(llvm::Function *F, const FunctionDecl *FD,
llvm::CallBase *CI);

/// Remove a call target entry for the given name or function.
void removeCallTarget(StringRef Name);
void removeCallTarget(llvm::Function *F);

private:
/// Amend \p I's DebugLoc with \p Group (its source atom group) and \p
/// Rank (lower nonzero rank is higher precedence). Does nothing if \p I
Expand Down Expand Up @@ -903,6 +912,25 @@ class CGDebugInfo {
/// If one exists, returns the linkage name of the specified \
/// (non-null) \c Method. Returns empty string otherwise.
llvm::StringRef GetMethodLinkageName(const CXXMethodDecl *Method) const;

/// For each 'DISuprogram' we store a list of call instructions 'CallBase'
/// that indirectly call such 'DISuprogram'. We use its linkage name to
/// update such list.
/// The 'CallTargetCache' is updated in the following scenarios:
/// - Both 'CallBase' and 'MDNode' are ready available.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/// - Both 'CallBase' and 'MDNode' are ready available.
/// - Both 'CallBase' and 'MDNode' are available.

/// - If only the 'CallBase' or 'MDNode' are are available, the partial
/// information is added and later is completed when the missing item
/// ('CallBase' or 'MDNode') is available.
Comment on lines +921 to +923
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/// - If only the 'CallBase' or 'MDNode' are are available, the partial
/// information is added and later is completed when the missing item
/// ('CallBase' or 'MDNode') is available.
/// - If only the 'CallBase' or 'MDNode' are available, the partial
/// information is added and later is completed when the missing item
/// ('CallBase' or 'MDNode') is available.

using InstrList = llvm::SmallVector<llvm::WeakVH, 2>;
using CallTargetEntry = std::pair<llvm::TrackingMDNodeRef, InstrList>;
llvm::SmallDenseMap<StringRef, CallTargetEntry> CallTargetCache;

/// Generate call target information.
bool generateVirtualCallSite() const;

/// Add 'call_target' metadata to the 'call' instruction.
void addCallTargetMetadata(llvm::MDNode *MD, llvm::CallBase *CI);
void finalizeCallTarget();
};

/// A scoped helper to set the current debug location to the specified
Expand Down
2 changes: 2 additions & 0 deletions clang/lib/CodeGen/CodeGenFunction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1510,6 +1510,8 @@ void CodeGenFunction::GenerateCode(GlobalDecl GD, llvm::Function *Fn,
// Clear non-distinct debug info that was possibly attached to the function
// due to an earlier declaration without the nodebug attribute
Fn->setSubprogram(nullptr);
if (CGDebugInfo *DI = getDebugInfo())
DI->removeCallTarget(Fn);
// Disable debug info indefinitely for this function
DebugInfo = nullptr;
}
Expand Down
36 changes: 36 additions & 0 deletions clang/test/DebugInfo/CXX/callsite-base.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// Simple class with only virtual methods: inlined and not-inlined
// We check for a generated 'call_target' for:
// - 'one', 'two' and 'three'.

class CBase {
public:
virtual void one();
virtual void two();
virtual void three() {}
};
void CBase::one() {}

void bar(CBase *Base) {
Base->one();
Base->two();
Base->three();

CBase B;
B.one();
}

// RUN: %clang_cc1 -triple=x86_64-linux -disable-llvm-passes -emit-llvm \
// RUN: -debug-info-kind=constructor -dwarf-version=5 -O1 %s \
// RUN: -o - | FileCheck %s -check-prefix CHECK-BASE
Comment on lines +22 to +24
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Run lines typically sit at the top of the file (I could be wrong, if you've seen others in this style feel free to ignore).


// CHECK-BASE: define {{.*}} @_Z3barP5CBase{{.*}} {
// CHECK-BASE-DAG: call void %1{{.*}} !dbg {{![0-9]+}}, !call_target [[BASE_ONE:![0-9]+]]
// CHECK-BASE-DAG: call void %3{{.*}} !dbg {{![0-9]+}}, !call_target [[BASE_TWO:![0-9]+]]
// CHECK-BASE-DAG: call void %5{{.*}} !dbg {{![0-9]+}}, !call_target [[BASE_THREE:![0-9]+]]
// CHECK-BASE-DAG: call void @_ZN5CBaseC2Ev{{.*}} !dbg {{![0-9]+}}
// CHECK-BASE-DAG: call void @_ZN5CBase3oneEv{{.*}} !dbg {{![0-9]+}}
Comment on lines +27 to +31
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think these need to be -DAG checks since the calls will always get emitted in this order? Same applies to the non-metadata checks in the other tests.

// CHECK-BASE: }

// CHECK-BASE-DAG: [[BASE_ONE]] = {{.*}}!DISubprogram(name: "one", linkageName: "_ZN5CBase3oneEv"
// CHECK-BASE-DAG: [[BASE_TWO]] = {{.*}}!DISubprogram(name: "two", linkageName: "_ZN5CBase3twoEv"
// CHECK-BASE-DAG: [[BASE_THREE]] = {{.*}}!DISubprogram(name: "three", linkageName: "_ZN5CBase5threeEv"
77 changes: 77 additions & 0 deletions clang/test/DebugInfo/CXX/callsite-derived.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
// Simple base and derived class with virtual and static methods:
// We check for a generated 'call_target' for:
// - 'one', 'two' and 'three'.

class CBase {
public:
virtual void one(bool Flag) {}
virtual void two(int P1, char P2) {}
static void three();
};

void CBase::three() {
}
void bar(CBase *Base);

void foo(CBase *Base) {
CBase::three();
}

class CDerived : public CBase {
public:
void one(bool Flag) {}
void two(int P1, char P2) {}
};
void foo(CDerived *Derived);

int main() {
CBase B;
bar(&B);

CDerived D;
foo(&D);

return 0;
}

void bar(CBase *Base) {
Base->two(77, 'a');
}

void foo(CDerived *Derived) {
Derived->one(true);
}

// RUN: %clang_cc1 -triple=x86_64-linux -disable-llvm-passes -emit-llvm \
// RUN: -debug-info-kind=constructor -dwarf-version=5 -O1 %s \
// RUN: -o - | FileCheck %s -check-prefix CHECK-DERIVED

// CHECK-DERIVED: define {{.*}} @_Z3fooP5CBase{{.*}} {
// CHECK-DERIVED-DAG: call void @_ZN5CBase5threeEv{{.*}} !dbg {{![0-9]+}}
// CHECK-DERIVED: }

// CHECK-DERIVED: define {{.*}} @main{{.*}} {
// CHECK-DERIVED-DAG: call void @_ZN5CBaseC1Ev{{.*}} !dbg {{![0-9]+}}
// CHECK-DERIVED-DAG: call void @_Z3barP5CBase{{.*}} !dbg {{![0-9]+}}
// CHECK-DERIVED-DAG: call void @_ZN8CDerivedC1Ev{{.*}} !dbg {{![0-9]+}}
// CHECK-DERIVED-DAG: call void @_Z3fooP8CDerived{{.*}} !dbg {{![0-9]+}}
// CHECK-DERIVED: }

// CHECK-DERIVED: define {{.*}} @_ZN5CBaseC1Ev{{.*}} {
// CHECK-DERIVED-DAG: call void @_ZN5CBaseC2Ev{{.*}} !dbg {{![0-9]+}}
// CHECK-DERIVED: }

// CHECK-DERIVED: define {{.*}} @_Z3barP5CBase{{.*}} {
// CHECK-DERIVED-DAG: call void %1{{.*}} !dbg {{![0-9]+}}, !call_target [[BASE_TWO:![0-9]+]]
// CHECK-DERIVED: }

// CHECK-DERIVED: define {{.*}} @_ZN8CDerivedC1Ev{{.*}} {
// CHECK-DERIVED-DAG: call void @_ZN8CDerivedC2Ev{{.*}} !dbg {{![0-9]+}}
// CHECK-DERIVED: }

// CHECK-DERIVED: define {{.*}} @_Z3fooP8CDerived{{.*}} {
// CHECK-DERIVED-DAG: call void %1{{.*}} !dbg {{![0-9]+}}, !call_target [[DERIVED_ONE:![0-9]+]]
// CHECK-DERIVED: }

// CHECK-DERIVED-DAG: [[BASE_TWO]] = {{.*}}!DISubprogram(name: "two", linkageName: "_ZN5CBase3twoEic"
// CHECK-DERIVED-DAG: [[DERIVED_ONE]] = {{.*}}!DISubprogram(name: "one", linkageName: "_ZN8CDerived3oneEb"
Loading
Loading