Commit 5f30664e authored by Matt Ma's avatar Matt Ma Committed by Facebook Github Bot

Prefer linkage name to name for inline function frames.

Summary: Linkage name (DW_AT_linkage_name) contains more information than the identifier name (DW_AT_name).

Reviewed By: luciang

Differential Revision: D19657767

fbshipit-source-id: 87b2293e6f723ceb8b5202db0f3c569c37c6c7ea
parent 1fbc7066
...@@ -538,30 +538,35 @@ bool Dwarf::findLocation( ...@@ -538,30 +538,35 @@ bool Dwarf::findLocation(
inlineLocIter++, inlineFrameIter++) { inlineLocIter++, inlineFrameIter++) {
inlineFrameIter->location.line = callerLine; inlineFrameIter->location.line = callerLine;
callerLine = inlineLocIter->line; callerLine = inlineLocIter->line;
folly::Optional<folly::StringPiece> linkageName;
folly::Optional<folly::StringPiece> name; folly::Optional<folly::StringPiece> name;
folly::Optional<uint64_t> file; folly::Optional<uint64_t> file;
forEachAttribute( forEachAttribute(
cu, inlineLocIter->die, [&](const detail::Attribute& attr) { cu, inlineLocIter->die, [&](const detail::Attribute& attr) {
switch (attr.spec.name) { switch (attr.spec.name) {
case DW_AT_linkage_name:
linkageName = boost::get<folly::StringPiece>(attr.attrValue);
break;
case DW_AT_name: case DW_AT_name:
name = boost::get<StringPiece>(attr.attrValue); name = boost::get<folly::StringPiece>(attr.attrValue);
break; break;
case DW_AT_decl_file: case DW_AT_decl_file:
file = boost::get<uint64_t>(attr.attrValue); file = boost::get<uint64_t>(attr.attrValue);
break; break;
} }
return !file.has_value() || !name.has_value(); return !file || !name || !linkageName;
}); });
if (!(name || linkageName) || !file) {
if (!name.has_value() || !file.has_value()) {
break; break;
} }
inlineFrameIter->found = true; inlineFrameIter->found = true;
inlineFrameIter->addr = address; inlineFrameIter->addr = address;
inlineFrameIter->name = name.value().data(); inlineFrameIter->name =
linkageName ? linkageName.value().data() : name.value().data();
inlineFrameIter->location.hasFileAndLine = true; inlineFrameIter->location.hasFileAndLine = true;
inlineFrameIter->location.name = name.value(); inlineFrameIter->location.name =
linkageName ? linkageName.value() : name.value();
inlineFrameIter->location.file = lineVM.getFullFileName(file.value()); inlineFrameIter->location.file = lineVM.getFullFileName(file.value());
} }
locationInfo.line = callerLine; locationInfo.line = callerLine;
...@@ -656,7 +661,7 @@ detail::Die Dwarf::findDefinitionDie( ...@@ -656,7 +661,7 @@ detail::Die Dwarf::findDefinitionDie(
return true; return true;
}); });
if (!offset.hasValue()) { if (!offset) {
return die; return die;
} }
return getDieAtOffset(cu, cu.offset + offset.value()); return getDieAtOffset(cu, cu.offset + offset.value());
......
...@@ -158,12 +158,15 @@ void verifyStackTrace( ...@@ -158,12 +158,15 @@ void verifyStackTrace(
const FrameArray<100>& frames, const FrameArray<100>& frames,
const std::string& barName, const std::string& barName,
size_t barLine) { size_t barLine) {
EXPECT_EQ("inlineFoo<100>", std::string(frames.frames[5].name)); EXPECT_EQ(
"void folly::symbolizer::test::(anonymous namespace)::inlineFoo<100ul>("
"folly::symbolizer::FrameArray<100ul>&)",
std::string(folly::demangle(frames.frames[5].name)));
EXPECT_EQ( EXPECT_EQ(
"folly/experimental/symbolizer/test/SymbolizerTest.cpp", "folly/experimental/symbolizer/test/SymbolizerTest.cpp",
std::string(frames.frames[5].location.file.toString())); std::string(frames.frames[5].location.file.toString()));
EXPECT_EQ(kQsortCallLineNo, frames.frames[5].location.line); EXPECT_EQ(kQsortCallLineNo, frames.frames[5].location.line);
EXPECT_EQ(barName, std::string(frames.frames[6].name)); EXPECT_EQ(barName, std::string(folly::demangle(frames.frames[6].name)));
EXPECT_EQ( EXPECT_EQ(
"folly/experimental/symbolizer/test/SymbolizerTest.cpp", "folly/experimental/symbolizer/test/SymbolizerTest.cpp",
std::string(frames.frames[6].location.file.toString())); std::string(frames.frames[6].location.file.toString()));
...@@ -212,14 +215,13 @@ TEST(SymbolizerTest, InlineFunctionBasic) { ...@@ -212,14 +215,13 @@ TEST(SymbolizerTest, InlineFunctionBasic) {
// clang-format off // clang-format off
// Expected full stack trace with @mode/dev. The last frame is missing in opt // Expected full stack trace with @mode/dev. The last frame is missing in opt
// mode. // mode.
// Frame: _ZN5folly10symbolizer13getStackTraceEPmm // Frame: _ZN5folly10symbolizer13getStackTraceILm100EEEbRNS0_10FrameArrayIXT_EEE
// Frame: getStackTrace<100>
// Frame: _ZN5folly10symbolizer4test10comparatorILm100EEEiPKvS4_ // Frame: _ZN5folly10symbolizer4test10comparatorILm100EEEiPKvS4_
// Frame: msort_with_tmp.part.0 // Frame: msort_with_tmp.part.0
// Frame: __GI___qsort_r // Frame: __GI___qsort_r
// Frame: inlineFoo<100> // Frame: _ZN5folly10symbolizer4test12_GLOBAL__N_19inlineFooILm100EEEvRNS0_10FrameArrayIXT_EEE
// Frame: inlineBar<100> // Frame: _ZN5folly10symbolizer4test12_GLOBAL__N_19inlineBarILm100EEEvRNS0_10FrameArrayIXT_EEE
// Frame: _ZN5folly10symbolizer4test43SymbolizerTest_InlineFunctionWithCache_Test8TestBodyEv // Frame: _ZN5folly10symbolizer4test39SymbolizerTest_InlineFunctionBasic_Test8TestBodyEv
// Frame: _ZN7testing8internal35HandleExceptionsInMethodIfSupportedINS_4TestEvEET0_PT_MS4_FS3_vEPKc // Frame: _ZN7testing8internal35HandleExceptionsInMethodIfSupportedINS_4TestEvEET0_PT_MS4_FS3_vEPKc
// Frame: _ZN7testing4Test3RunEv // Frame: _ZN7testing4Test3RunEv
// Frame: _ZN7testing8TestInfo3RunEv // Frame: _ZN7testing8TestInfo3RunEv
...@@ -228,7 +230,11 @@ TEST(SymbolizerTest, InlineFunctionBasic) { ...@@ -228,7 +230,11 @@ TEST(SymbolizerTest, InlineFunctionBasic) {
// Frame: _ZN7testing8UnitTest3RunEv // Frame: _ZN7testing8UnitTest3RunEv
// Frame: _Z13RUN_ALL_TESTSv // Frame: _Z13RUN_ALL_TESTSv
// clang-format on // clang-format on
verifyStackTrace(frames, "inlineBar<100>", kFooCallByStandaloneBarLineNo); verifyStackTrace(
frames,
"void folly::symbolizer::test::(anonymous namespace)::inlineBar<100ul>("
"folly::symbolizer::FrameArray<100ul>&)",
kFooCallByStandaloneBarLineNo);
FrameArray<100> frames2; FrameArray<100> frames2;
inlineBar<100>(frames2); inlineBar<100>(frames2);
...@@ -245,7 +251,11 @@ TEST(SymbolizerTest, InlineClassMemberFunction) { ...@@ -245,7 +251,11 @@ TEST(SymbolizerTest, InlineClassMemberFunction) {
obj.inlineBar(frames); obj.inlineBar(frames);
symbolizer.symbolize(frames); symbolizer.symbolize(frames);
verifyStackTrace(frames, "inlineBar", kFooCallByClassBarLineNo); verifyStackTrace(
frames,
"folly::symbolizer::test::ClassWithInlineFunctions::inlineBar("
"folly::symbolizer::FrameArray<100ul>&) const",
kFooCallByClassBarLineNo);
} }
TEST(SymbolizerTest, StaticInlineClassMemberFunction) { TEST(SymbolizerTest, StaticInlineClassMemberFunction) {
...@@ -255,7 +265,11 @@ TEST(SymbolizerTest, StaticInlineClassMemberFunction) { ...@@ -255,7 +265,11 @@ TEST(SymbolizerTest, StaticInlineClassMemberFunction) {
ClassWithInlineFunctions::staticInlineBar(frames); ClassWithInlineFunctions::staticInlineBar(frames);
symbolizer.symbolize(frames); symbolizer.symbolize(frames);
verifyStackTrace(frames, "staticInlineBar", kFooCallByClassStaticBarLineNo); verifyStackTrace(
frames,
"folly::symbolizer::test::ClassWithInlineFunctions::staticInlineBar("
"folly::symbolizer::FrameArray<100ul>&)",
kFooCallByClassStaticBarLineNo);
} }
// No inline frames should be filled because of no extra frames. // No inline frames should be filled because of no extra frames.
...@@ -280,7 +294,11 @@ TEST(SymbolizerTest, InlineFunctionWithCache) { ...@@ -280,7 +294,11 @@ TEST(SymbolizerTest, InlineFunctionWithCache) {
inlineBar<100>(frames); inlineBar<100>(frames);
symbolizer.symbolize(frames); symbolizer.symbolize(frames);
verifyStackTrace(frames, "inlineBar<100>", kFooCallByStandaloneBarLineNo); verifyStackTrace(
frames,
"void folly::symbolizer::test::(anonymous namespace)::inlineBar<100ul>("
"folly::symbolizer::FrameArray<100ul>&)",
kFooCallByStandaloneBarLineNo);
FrameArray<100> frames2; FrameArray<100> frames2;
inlineBar<100>(frames2); inlineBar<100>(frames2);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment