2008-11-10 03:56:27 +01: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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/DebugInfo.h"
|
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/DerivedTypes.h"
|
|
|
|
#include "llvm/Intrinsics.h"
|
2008-12-16 10:07:36 +01:00
|
|
|
#include "llvm/IntrinsicInst.h"
|
2008-11-10 03:56:27 +01:00
|
|
|
#include "llvm/Instructions.h"
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/Analysis/ValueTracking.h"
|
2009-08-29 01:24:31 +02:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2010-07-22 01:38:33 +02:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2010-08-21 00:02:26 +02:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2009-12-23 20:45:49 +01:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-05-03 10:50:41 +02:00
|
|
|
#include "llvm/Support/Dwarf.h"
|
2009-08-23 09:33:14 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2008-11-10 03:56:27 +01:00
|
|
|
using namespace llvm;
|
2009-05-03 10:50:41 +02:00
|
|
|
using namespace llvm::dwarf;
|
2008-11-10 03:56:27 +01:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DIDescriptor
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-08-03 00:51:46 +02:00
|
|
|
DIDescriptor::DIDescriptor(const DIFile F) : DbgNode(F.DbgNode) {
|
|
|
|
}
|
|
|
|
|
|
|
|
DIDescriptor::DIDescriptor(const DISubprogram F) : DbgNode(F.DbgNode) {
|
|
|
|
}
|
|
|
|
|
|
|
|
DIDescriptor::DIDescriptor(const DILexicalBlock F) : DbgNode(F.DbgNode) {
|
|
|
|
}
|
|
|
|
|
|
|
|
DIDescriptor::DIDescriptor(const DIVariable F) : DbgNode(F.DbgNode) {
|
|
|
|
}
|
|
|
|
|
|
|
|
DIDescriptor::DIDescriptor(const DIType F) : DbgNode(F.DbgNode) {
|
|
|
|
}
|
|
|
|
|
2010-07-21 23:36:25 +02:00
|
|
|
StringRef
|
2009-09-29 20:40:58 +02:00
|
|
|
DIDescriptor::getStringField(unsigned Elt) const {
|
2009-08-29 01:24:31 +02:00
|
|
|
if (DbgNode == 0)
|
2009-11-25 18:36:49 +01:00
|
|
|
return StringRef();
|
2009-03-13 05:39:26 +01:00
|
|
|
|
2009-12-31 02:22:29 +01:00
|
|
|
if (Elt < DbgNode->getNumOperands())
|
|
|
|
if (MDString *MDS = dyn_cast_or_null<MDString>(DbgNode->getOperand(Elt)))
|
2009-11-25 18:36:49 +01:00
|
|
|
return MDS->getString();
|
2009-09-19 22:40:05 +02:00
|
|
|
|
2009-11-25 18:36:49 +01:00
|
|
|
return StringRef();
|
2008-11-10 03:56:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t DIDescriptor::getUInt64Field(unsigned Elt) const {
|
2009-09-19 22:40:05 +02:00
|
|
|
if (DbgNode == 0)
|
2008-11-10 03:56:27 +01:00
|
|
|
return 0;
|
2009-05-14 20:26:15 +02:00
|
|
|
|
2009-12-31 02:22:29 +01:00
|
|
|
if (Elt < DbgNode->getNumOperands())
|
|
|
|
if (ConstantInt *CI = dyn_cast<ConstantInt>(DbgNode->getOperand(Elt)))
|
2009-08-29 01:24:31 +02:00
|
|
|
return CI->getZExtValue();
|
2009-09-19 22:40:05 +02:00
|
|
|
|
2008-11-10 03:56:27 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
DIDescriptor DIDescriptor::getDescriptorField(unsigned Elt) const {
|
2009-09-19 22:40:05 +02:00
|
|
|
if (DbgNode == 0)
|
2009-08-26 07:01:18 +02:00
|
|
|
return DIDescriptor();
|
2009-08-25 07:24:07 +02:00
|
|
|
|
2010-03-31 07:53:47 +02:00
|
|
|
if (Elt < DbgNode->getNumOperands())
|
2010-07-21 23:36:25 +02:00
|
|
|
return
|
|
|
|
DIDescriptor(dyn_cast_or_null<const MDNode>(DbgNode->getOperand(Elt)));
|
2009-08-29 01:24:31 +02:00
|
|
|
return DIDescriptor();
|
2008-11-10 03:56:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
GlobalVariable *DIDescriptor::getGlobalVariableField(unsigned Elt) const {
|
2009-09-19 22:40:05 +02:00
|
|
|
if (DbgNode == 0)
|
2008-11-10 03:56:27 +01:00
|
|
|
return 0;
|
2009-05-14 20:26:15 +02:00
|
|
|
|
2009-12-31 02:22:29 +01:00
|
|
|
if (Elt < DbgNode->getNumOperands())
|
|
|
|
return dyn_cast_or_null<GlobalVariable>(DbgNode->getOperand(Elt));
|
2009-08-29 01:24:31 +02:00
|
|
|
return 0;
|
2008-11-10 03:56:27 +01:00
|
|
|
}
|
|
|
|
|
2010-08-09 23:39:24 +02:00
|
|
|
Constant *DIDescriptor::getConstantField(unsigned Elt) const {
|
|
|
|
if (DbgNode == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (Elt < DbgNode->getNumOperands())
|
|
|
|
return dyn_cast_or_null<Constant>(DbgNode->getOperand(Elt));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-06-11 22:08:44 +02:00
|
|
|
Function *DIDescriptor::getFunctionField(unsigned Elt) const {
|
|
|
|
if (DbgNode == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (Elt < DbgNode->getNumOperands())
|
|
|
|
return dyn_cast_or_null<Function>(DbgNode->getOperand(Elt));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-31 04:02:08 +01:00
|
|
|
unsigned DIVariable::getNumAddrElements() const {
|
2010-09-30 01:07:21 +02:00
|
|
|
if (getVersion() <= llvm::LLVMDebugVersion8)
|
|
|
|
return DbgNode->getNumOperands()-6;
|
|
|
|
return DbgNode->getNumOperands()-7;
|
2009-12-31 04:02:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-10 03:56:27 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
2009-08-31 20:49:10 +02:00
|
|
|
// Predicates
|
2008-11-10 03:56:27 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-31 20:49:10 +02:00
|
|
|
/// isBasicType - Return true if the specified tag is legal for
|
|
|
|
/// DIBasicType.
|
|
|
|
bool DIDescriptor::isBasicType() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
return DbgNode && getTag() == dwarf::DW_TAG_base_type;
|
2008-12-13 09:25:29 +01:00
|
|
|
}
|
2008-11-10 03:56:27 +01:00
|
|
|
|
2009-08-31 20:49:10 +02:00
|
|
|
/// isDerivedType - Return true if the specified tag is legal for DIDerivedType.
|
|
|
|
bool DIDescriptor::isDerivedType() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode) return false;
|
2009-12-29 10:22:47 +01:00
|
|
|
switch (getTag()) {
|
2008-11-10 03:56:27 +01:00
|
|
|
case dwarf::DW_TAG_typedef:
|
|
|
|
case dwarf::DW_TAG_pointer_type:
|
|
|
|
case dwarf::DW_TAG_reference_type:
|
|
|
|
case dwarf::DW_TAG_const_type:
|
|
|
|
case dwarf::DW_TAG_volatile_type:
|
|
|
|
case dwarf::DW_TAG_restrict_type:
|
|
|
|
case dwarf::DW_TAG_member:
|
|
|
|
case dwarf::DW_TAG_inheritance:
|
2010-08-24 01:16:25 +02:00
|
|
|
case dwarf::DW_TAG_friend:
|
2008-11-10 03:56:27 +01:00
|
|
|
return true;
|
|
|
|
default:
|
2009-08-29 01:24:31 +02:00
|
|
|
// CompositeTypes are currently modelled as DerivedTypes.
|
2009-08-31 20:49:10 +02:00
|
|
|
return isCompositeType();
|
2008-11-10 03:56:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// isCompositeType - Return true if the specified tag is legal for
|
|
|
|
/// DICompositeType.
|
2009-08-31 20:49:10 +02:00
|
|
|
bool DIDescriptor::isCompositeType() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode) return false;
|
2009-12-29 10:22:47 +01:00
|
|
|
switch (getTag()) {
|
2008-11-10 03:56:27 +01:00
|
|
|
case dwarf::DW_TAG_array_type:
|
|
|
|
case dwarf::DW_TAG_structure_type:
|
|
|
|
case dwarf::DW_TAG_union_type:
|
|
|
|
case dwarf::DW_TAG_enumeration_type:
|
|
|
|
case dwarf::DW_TAG_vector_type:
|
|
|
|
case dwarf::DW_TAG_subroutine_type:
|
2009-03-25 04:52:06 +01:00
|
|
|
case dwarf::DW_TAG_class_type:
|
2008-11-10 03:56:27 +01:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// isVariable - Return true if the specified tag is legal for DIVariable.
|
2009-08-31 20:49:10 +02:00
|
|
|
bool DIDescriptor::isVariable() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode) return false;
|
2009-12-29 10:22:47 +01:00
|
|
|
switch (getTag()) {
|
2008-11-10 03:56:27 +01:00
|
|
|
case dwarf::DW_TAG_auto_variable:
|
|
|
|
case dwarf::DW_TAG_arg_variable:
|
|
|
|
case dwarf::DW_TAG_return_variable:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-01 00:34:41 +02:00
|
|
|
/// isType - Return true if the specified tag is legal for DIType.
|
|
|
|
bool DIDescriptor::isType() const {
|
|
|
|
return isBasicType() || isCompositeType() || isDerivedType();
|
|
|
|
}
|
|
|
|
|
2009-08-31 20:49:10 +02:00
|
|
|
/// isSubprogram - Return true if the specified tag is legal for
|
|
|
|
/// DISubprogram.
|
|
|
|
bool DIDescriptor::isSubprogram() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
return DbgNode && getTag() == dwarf::DW_TAG_subprogram;
|
2009-08-31 20:49:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// isGlobalVariable - Return true if the specified tag is legal for
|
|
|
|
/// DIGlobalVariable.
|
|
|
|
bool DIDescriptor::isGlobalVariable() const {
|
2010-08-10 09:11:13 +02:00
|
|
|
return DbgNode && (getTag() == dwarf::DW_TAG_variable ||
|
|
|
|
getTag() == dwarf::DW_TAG_constant);
|
2009-08-31 20:49:10 +02:00
|
|
|
}
|
|
|
|
|
2009-10-01 00:34:41 +02:00
|
|
|
/// isGlobal - Return true if the specified tag is legal for DIGlobal.
|
|
|
|
bool DIDescriptor::isGlobal() const {
|
|
|
|
return isGlobalVariable();
|
|
|
|
}
|
|
|
|
|
2011-02-03 01:13:47 +01:00
|
|
|
/// isUnspecifiedParmeter - Return true if the specified tag is
|
2010-10-06 22:50:40 +02:00
|
|
|
/// DW_TAG_unspecified_parameters.
|
|
|
|
bool DIDescriptor::isUnspecifiedParameter() const {
|
|
|
|
return DbgNode && getTag() == dwarf::DW_TAG_unspecified_parameters;
|
|
|
|
}
|
|
|
|
|
2009-09-19 22:40:05 +02:00
|
|
|
/// isScope - Return true if the specified tag is one of the scope
|
2009-08-31 22:44:45 +02:00
|
|
|
/// related tag.
|
|
|
|
bool DIDescriptor::isScope() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode) return false;
|
2009-12-29 10:22:47 +01:00
|
|
|
switch (getTag()) {
|
|
|
|
case dwarf::DW_TAG_compile_unit:
|
|
|
|
case dwarf::DW_TAG_lexical_block:
|
|
|
|
case dwarf::DW_TAG_subprogram:
|
|
|
|
case dwarf::DW_TAG_namespace:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
2009-08-31 22:44:45 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-08-31 20:49:10 +02:00
|
|
|
|
2011-02-02 22:38:25 +01:00
|
|
|
/// isTemplateTypeParameter - Return true if the specified tag is
|
|
|
|
/// DW_TAG_template_type_parameter.
|
|
|
|
bool DIDescriptor::isTemplateTypeParameter() const {
|
|
|
|
return DbgNode && getTag() == dwarf::DW_TAG_template_type_parameter;
|
|
|
|
}
|
|
|
|
|
2011-02-02 23:35:53 +01:00
|
|
|
/// isTemplateValueParameter - Return true if the specified tag is
|
|
|
|
/// DW_TAG_template_value_parameter.
|
|
|
|
bool DIDescriptor::isTemplateValueParameter() const {
|
|
|
|
return DbgNode && getTag() == dwarf::DW_TAG_template_value_parameter;
|
|
|
|
}
|
|
|
|
|
2009-08-31 23:34:44 +02:00
|
|
|
/// isCompileUnit - Return true if the specified tag is DW_TAG_compile_unit.
|
|
|
|
bool DIDescriptor::isCompileUnit() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
return DbgNode && getTag() == dwarf::DW_TAG_compile_unit;
|
2009-08-31 23:34:44 +02:00
|
|
|
}
|
|
|
|
|
2010-03-08 23:27:22 +01:00
|
|
|
/// isFile - Return true if the specified tag is DW_TAG_file_type.
|
|
|
|
bool DIDescriptor::isFile() const {
|
|
|
|
return DbgNode && getTag() == dwarf::DW_TAG_file_type;
|
|
|
|
}
|
|
|
|
|
2009-12-15 20:16:48 +01:00
|
|
|
/// isNameSpace - Return true if the specified tag is DW_TAG_namespace.
|
|
|
|
bool DIDescriptor::isNameSpace() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
return DbgNode && getTag() == dwarf::DW_TAG_namespace;
|
2009-12-15 20:16:48 +01:00
|
|
|
}
|
|
|
|
|
2009-09-01 00:00:15 +02:00
|
|
|
/// isLexicalBlock - Return true if the specified tag is DW_TAG_lexical_block.
|
|
|
|
bool DIDescriptor::isLexicalBlock() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
return DbgNode && getTag() == dwarf::DW_TAG_lexical_block;
|
2009-09-01 00:00:15 +02:00
|
|
|
}
|
|
|
|
|
2009-10-01 00:34:41 +02:00
|
|
|
/// isSubrange - Return true if the specified tag is DW_TAG_subrange_type.
|
|
|
|
bool DIDescriptor::isSubrange() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
return DbgNode && getTag() == dwarf::DW_TAG_subrange_type;
|
2009-10-01 00:34:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// isEnumerator - Return true if the specified tag is DW_TAG_enumerator.
|
|
|
|
bool DIDescriptor::isEnumerator() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
return DbgNode && getTag() == dwarf::DW_TAG_enumerator;
|
2009-10-01 00:34:41 +02:00
|
|
|
}
|
|
|
|
|
2009-08-31 20:49:10 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Simple Descriptor Constructors and other Methods
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-05-07 22:54:48 +02:00
|
|
|
DIType::DIType(const MDNode *N) : DIScope(N) {
|
2009-08-31 20:49:10 +02:00
|
|
|
if (!N) return;
|
|
|
|
if (!isBasicType() && !isDerivedType() && !isCompositeType()) {
|
|
|
|
DbgNode = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-05 19:33:01 +01:00
|
|
|
unsigned DIArray::getNumElements() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode)
|
|
|
|
return 0;
|
2009-12-31 02:22:29 +01:00
|
|
|
return DbgNode->getNumOperands();
|
2009-01-05 19:33:01 +01:00
|
|
|
}
|
2008-11-10 03:56:27 +01:00
|
|
|
|
2009-07-22 20:23:44 +02:00
|
|
|
/// replaceAllUsesWith - Replace all uses of debug info referenced by
|
2010-07-21 20:54:18 +02:00
|
|
|
/// this descriptor.
|
2010-08-21 00:02:26 +02:00
|
|
|
void DIType::replaceAllUsesWith(DIDescriptor &D) {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode)
|
2009-07-22 20:23:44 +02:00
|
|
|
return;
|
|
|
|
|
2009-09-22 04:03:18 +02:00
|
|
|
// Since we use a TrackingVH for the node, its easy for clients to manufacture
|
|
|
|
// legitimate situations where they want to replaceAllUsesWith() on something
|
|
|
|
// which, due to uniquing, has merged with the source. We shield clients from
|
|
|
|
// this detail by allowing a value to be replaced with replaceAllUsesWith()
|
|
|
|
// itself.
|
2010-05-07 20:19:32 +02:00
|
|
|
if (DbgNode != D) {
|
2010-05-07 22:54:48 +02:00
|
|
|
MDNode *Node = const_cast<MDNode*>(DbgNode);
|
|
|
|
const MDNode *DN = D;
|
|
|
|
const Value *V = cast_or_null<Value>(DN);
|
|
|
|
Node->replaceAllUsesWith(const_cast<Value*>(V));
|
2010-08-21 00:02:26 +02:00
|
|
|
MDNode::deleteTemporary(Node);
|
2009-09-22 04:03:18 +02:00
|
|
|
}
|
2009-07-22 20:23:44 +02:00
|
|
|
}
|
|
|
|
|
2010-12-08 21:18:20 +01:00
|
|
|
/// replaceAllUsesWith - Replace all uses of debug info referenced by
|
|
|
|
/// this descriptor.
|
|
|
|
void DIType::replaceAllUsesWith(MDNode *D) {
|
|
|
|
if (!DbgNode)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Since we use a TrackingVH for the node, its easy for clients to manufacture
|
|
|
|
// legitimate situations where they want to replaceAllUsesWith() on something
|
|
|
|
// which, due to uniquing, has merged with the source. We shield clients from
|
|
|
|
// this detail by allowing a value to be replaced with replaceAllUsesWith()
|
|
|
|
// itself.
|
|
|
|
if (DbgNode != D) {
|
|
|
|
MDNode *Node = const_cast<MDNode*>(DbgNode);
|
|
|
|
const MDNode *DN = D;
|
|
|
|
const Value *V = cast_or_null<Value>(DN);
|
|
|
|
Node->replaceAllUsesWith(const_cast<Value*>(V));
|
|
|
|
MDNode::deleteTemporary(Node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-20 00:21:49 +01:00
|
|
|
/// Verify - Verify that a compile unit is well formed.
|
|
|
|
bool DICompileUnit::Verify() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode)
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
2009-11-25 18:36:49 +01:00
|
|
|
StringRef N = getFilename();
|
|
|
|
if (N.empty())
|
2009-03-13 05:39:26 +01:00
|
|
|
return false;
|
2009-01-20 00:21:49 +01:00
|
|
|
// It is possible that directory and produce string is empty.
|
2009-03-13 05:39:26 +01:00
|
|
|
return true;
|
2009-01-20 00:21:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Verify - Verify that a type descriptor is well formed.
|
|
|
|
bool DIType::Verify() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode)
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!getContext().Verify())
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
2010-11-02 21:41:13 +01:00
|
|
|
unsigned Tag = getTag();
|
|
|
|
if (!isBasicType() && Tag != dwarf::DW_TAG_const_type &&
|
|
|
|
Tag != dwarf::DW_TAG_volatile_type && Tag != dwarf::DW_TAG_pointer_type &&
|
2010-12-08 00:25:47 +01:00
|
|
|
Tag != dwarf::DW_TAG_reference_type && Tag != dwarf::DW_TAG_restrict_type
|
2010-12-08 02:50:15 +01:00
|
|
|
&& Tag != dwarf::DW_TAG_vector_type && Tag != dwarf::DW_TAG_array_type
|
|
|
|
&& Tag != dwarf::DW_TAG_enumeration_type
|
2010-12-08 00:25:47 +01:00
|
|
|
&& getFilename().empty())
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-08-23 20:25:56 +02:00
|
|
|
/// Verify - Verify that a basic type descriptor is well formed.
|
|
|
|
bool DIBasicType::Verify() const {
|
|
|
|
return isBasicType();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Verify - Verify that a derived type descriptor is well formed.
|
|
|
|
bool DIDerivedType::Verify() const {
|
|
|
|
return isDerivedType();
|
|
|
|
}
|
|
|
|
|
2009-01-20 00:21:49 +01:00
|
|
|
/// Verify - Verify that a composite type descriptor is well formed.
|
|
|
|
bool DICompositeType::Verify() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode)
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!getContext().Verify())
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
DICompileUnit CU = getCompileUnit();
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!CU.Verify())
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Verify - Verify that a subprogram descriptor is well formed.
|
|
|
|
bool DISubprogram::Verify() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode)
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
2009-09-19 22:40:05 +02:00
|
|
|
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!getContext().Verify())
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
DICompileUnit CU = getCompileUnit();
|
2009-09-19 22:40:05 +02:00
|
|
|
if (!CU.Verify())
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
DICompositeType Ty = getType();
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!Ty.Verify())
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Verify - Verify that a global variable descriptor is well formed.
|
|
|
|
bool DIGlobalVariable::Verify() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode)
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
2009-09-19 22:40:05 +02:00
|
|
|
|
2009-11-25 18:36:49 +01:00
|
|
|
if (getDisplayName().empty())
|
2009-11-06 18:58:12 +01:00
|
|
|
return false;
|
|
|
|
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!getContext().Verify())
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
DICompileUnit CU = getCompileUnit();
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!CU.Verify())
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
DIType Ty = getType();
|
|
|
|
if (!Ty.Verify())
|
|
|
|
return false;
|
|
|
|
|
2010-08-09 23:39:24 +02:00
|
|
|
if (!getGlobal() && !getConstant())
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Verify - Verify that a variable descriptor is well formed.
|
|
|
|
bool DIVariable::Verify() const {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode)
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
2009-09-19 22:40:05 +02:00
|
|
|
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!getContext().Verify())
|
2009-01-20 00:21:49 +01:00
|
|
|
return false;
|
|
|
|
|
2010-05-07 23:42:24 +02:00
|
|
|
if (!getCompileUnit().Verify())
|
|
|
|
return false;
|
|
|
|
|
2009-01-20 00:21:49 +01:00
|
|
|
DIType Ty = getType();
|
|
|
|
if (!Ty.Verify())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-03-08 21:52:55 +01:00
|
|
|
/// Verify - Verify that a location descriptor is well formed.
|
|
|
|
bool DILocation::Verify() const {
|
|
|
|
if (!DbgNode)
|
|
|
|
return false;
|
2010-07-21 23:36:25 +02:00
|
|
|
|
2010-03-08 21:52:55 +01:00
|
|
|
return DbgNode->getNumOperands() == 4;
|
|
|
|
}
|
|
|
|
|
2010-05-08 01:04:32 +02:00
|
|
|
/// Verify - Verify that a namespace descriptor is well formed.
|
|
|
|
bool DINameSpace::Verify() const {
|
|
|
|
if (!DbgNode)
|
|
|
|
return false;
|
|
|
|
if (getName().empty())
|
|
|
|
return false;
|
|
|
|
if (!getCompileUnit().Verify())
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-02-17 22:23:59 +01:00
|
|
|
/// getOriginalTypeSize - If this type is derived from a base type then
|
|
|
|
/// return base type size.
|
|
|
|
uint64_t DIDerivedType::getOriginalTypeSize() const {
|
2009-11-05 00:48:00 +01:00
|
|
|
unsigned Tag = getTag();
|
|
|
|
if (Tag == dwarf::DW_TAG_member || Tag == dwarf::DW_TAG_typedef ||
|
|
|
|
Tag == dwarf::DW_TAG_const_type || Tag == dwarf::DW_TAG_volatile_type ||
|
|
|
|
Tag == dwarf::DW_TAG_restrict_type) {
|
|
|
|
DIType BaseType = getTypeDerivedFrom();
|
2010-07-21 23:36:25 +02:00
|
|
|
// If this type is not derived from any type then take conservative
|
2009-11-06 19:24:05 +01:00
|
|
|
// approach.
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!BaseType.isValid())
|
2009-11-06 19:24:05 +01:00
|
|
|
return getSizeInBits();
|
2009-11-05 00:48:00 +01:00
|
|
|
if (BaseType.isDerivedType())
|
2010-05-07 20:11:54 +02:00
|
|
|
return DIDerivedType(BaseType).getOriginalTypeSize();
|
2009-11-05 00:48:00 +01:00
|
|
|
else
|
|
|
|
return BaseType.getSizeInBits();
|
|
|
|
}
|
2010-07-21 23:36:25 +02:00
|
|
|
|
2009-11-05 00:48:00 +01:00
|
|
|
return getSizeInBits();
|
2009-02-17 22:23:59 +01:00
|
|
|
}
|
2009-01-20 00:21:49 +01:00
|
|
|
|
2010-07-21 23:36:25 +02:00
|
|
|
/// isInlinedFnArgument - Return true if this variable provides debugging
|
2010-04-29 22:40:36 +02:00
|
|
|
/// information for an inlined function arguments.
|
|
|
|
bool DIVariable::isInlinedFnArgument(const Function *CurFn) {
|
|
|
|
assert(CurFn && "Invalid function");
|
|
|
|
if (!getContext().isSubprogram())
|
|
|
|
return false;
|
2010-07-21 23:36:25 +02:00
|
|
|
// This variable is not inlined function argument if its scope
|
2010-04-29 22:40:36 +02:00
|
|
|
// does not describe current function.
|
2010-05-07 20:11:54 +02:00
|
|
|
return !(DISubprogram(getContext()).describes(CurFn));
|
2010-04-29 22:40:36 +02:00
|
|
|
}
|
|
|
|
|
2009-04-15 02:06:07 +02:00
|
|
|
/// describes - Return true if this subprogram provides debugging
|
|
|
|
/// information for the function F.
|
|
|
|
bool DISubprogram::describes(const Function *F) {
|
2009-12-29 10:22:47 +01:00
|
|
|
assert(F && "Invalid function");
|
2010-06-16 08:42:02 +02:00
|
|
|
if (F == getFunction())
|
|
|
|
return true;
|
2009-11-25 18:36:49 +01:00
|
|
|
StringRef Name = getLinkageName();
|
|
|
|
if (Name.empty())
|
2009-09-29 20:40:58 +02:00
|
|
|
Name = getName();
|
2009-11-25 18:36:49 +01:00
|
|
|
if (F->getName() == Name)
|
2009-04-15 02:06:07 +02:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-07-21 23:36:25 +02:00
|
|
|
unsigned DISubprogram::isOptimized() const {
|
2010-04-30 21:38:23 +02:00
|
|
|
assert (DbgNode && "Invalid subprogram descriptor!");
|
|
|
|
if (DbgNode->getNumOperands() == 16)
|
|
|
|
return getUnsignedField(15);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-11-25 18:36:49 +01:00
|
|
|
StringRef DIScope::getFilename() const {
|
2010-03-08 23:02:50 +01:00
|
|
|
if (!DbgNode)
|
|
|
|
return StringRef();
|
2010-07-21 23:36:25 +02:00
|
|
|
if (isLexicalBlock())
|
2009-10-01 00:34:41 +02:00
|
|
|
return DILexicalBlock(DbgNode).getFilename();
|
2009-12-29 10:22:47 +01:00
|
|
|
if (isSubprogram())
|
2009-10-01 00:34:41 +02:00
|
|
|
return DISubprogram(DbgNode).getFilename();
|
2009-12-29 10:22:47 +01:00
|
|
|
if (isCompileUnit())
|
2009-10-01 00:34:41 +02:00
|
|
|
return DICompileUnit(DbgNode).getFilename();
|
2009-12-29 10:22:47 +01:00
|
|
|
if (isNameSpace())
|
2009-12-15 20:16:48 +01:00
|
|
|
return DINameSpace(DbgNode).getFilename();
|
2010-03-08 23:02:50 +01:00
|
|
|
if (isType())
|
|
|
|
return DIType(DbgNode).getFilename();
|
2010-03-08 23:27:22 +01:00
|
|
|
if (isFile())
|
|
|
|
return DIFile(DbgNode).getFilename();
|
2009-12-29 10:22:47 +01:00
|
|
|
assert(0 && "Invalid DIScope!");
|
2009-11-25 18:36:49 +01:00
|
|
|
return StringRef();
|
2009-10-01 00:34:41 +02:00
|
|
|
}
|
|
|
|
|
2009-11-25 18:36:49 +01:00
|
|
|
StringRef DIScope::getDirectory() const {
|
2010-03-08 23:02:50 +01:00
|
|
|
if (!DbgNode)
|
|
|
|
return StringRef();
|
2010-07-21 23:36:25 +02:00
|
|
|
if (isLexicalBlock())
|
2009-10-01 00:34:41 +02:00
|
|
|
return DILexicalBlock(DbgNode).getDirectory();
|
2009-12-29 10:22:47 +01:00
|
|
|
if (isSubprogram())
|
2009-10-01 00:34:41 +02:00
|
|
|
return DISubprogram(DbgNode).getDirectory();
|
2009-12-29 10:22:47 +01:00
|
|
|
if (isCompileUnit())
|
2009-10-01 00:34:41 +02:00
|
|
|
return DICompileUnit(DbgNode).getDirectory();
|
2009-12-29 10:22:47 +01:00
|
|
|
if (isNameSpace())
|
2009-12-15 20:16:48 +01:00
|
|
|
return DINameSpace(DbgNode).getDirectory();
|
2010-03-08 23:02:50 +01:00
|
|
|
if (isType())
|
|
|
|
return DIType(DbgNode).getDirectory();
|
2010-03-08 23:27:22 +01:00
|
|
|
if (isFile())
|
|
|
|
return DIFile(DbgNode).getDirectory();
|
2009-12-29 10:22:47 +01:00
|
|
|
assert(0 && "Invalid DIScope!");
|
2009-11-25 18:36:49 +01:00
|
|
|
return StringRef();
|
2009-10-01 00:34:41 +02:00
|
|
|
}
|
|
|
|
|
2009-07-02 00:10:23 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DIDescriptor: dump routines for all descriptors.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
2010-05-07 17:30:29 +02:00
|
|
|
/// print - Print descriptor.
|
|
|
|
void DIDescriptor::print(raw_ostream &OS) const {
|
|
|
|
OS << "[" << dwarf::TagString(getTag()) << "] ";
|
|
|
|
OS.write_hex((intptr_t) &*DbgNode) << ']';
|
2009-07-02 00:10:23 +02:00
|
|
|
}
|
|
|
|
|
2010-05-07 17:30:29 +02:00
|
|
|
/// print - Print compile unit.
|
|
|
|
void DICompileUnit::print(raw_ostream &OS) const {
|
2009-07-02 00:10:23 +02:00
|
|
|
if (getLanguage())
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [" << dwarf::LanguageString(getLanguage()) << "] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
|
2010-05-10 22:07:44 +02:00
|
|
|
OS << " [" << getDirectory() << "/" << getFilename() << "]";
|
2009-07-02 00:10:23 +02:00
|
|
|
}
|
|
|
|
|
2010-05-07 17:30:29 +02:00
|
|
|
/// print - Print type.
|
|
|
|
void DIType::print(raw_ostream &OS) const {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DbgNode) return;
|
2009-07-02 00:10:23 +02:00
|
|
|
|
2009-11-25 18:36:49 +01:00
|
|
|
StringRef Res = getName();
|
|
|
|
if (!Res.empty())
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [" << Res << "] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
|
|
|
|
unsigned Tag = getTag();
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [" << dwarf::TagString(Tag) << "] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
|
|
|
|
// TODO : Print context
|
2010-05-07 18:17:22 +02:00
|
|
|
getCompileUnit().print(OS);
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " ["
|
2010-05-07 18:39:27 +02:00
|
|
|
<< "line " << getLineNumber() << ", "
|
|
|
|
<< getSizeInBits() << " bits, "
|
|
|
|
<< getAlignInBits() << " bit alignment, "
|
|
|
|
<< getOffsetInBits() << " bit offset"
|
2009-08-23 09:33:14 +02:00
|
|
|
<< "] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
|
2009-09-19 22:40:05 +02:00
|
|
|
if (isPrivate())
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [private] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
else if (isProtected())
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [protected] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
|
|
|
|
if (isForwardDecl())
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [fwd] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
|
2009-08-31 20:49:10 +02:00
|
|
|
if (isBasicType())
|
2010-05-07 18:17:22 +02:00
|
|
|
DIBasicType(DbgNode).print(OS);
|
2009-08-31 20:49:10 +02:00
|
|
|
else if (isDerivedType())
|
2010-05-07 18:17:22 +02:00
|
|
|
DIDerivedType(DbgNode).print(OS);
|
2009-08-31 20:49:10 +02:00
|
|
|
else if (isCompositeType())
|
2010-05-07 18:17:22 +02:00
|
|
|
DICompositeType(DbgNode).print(OS);
|
2009-07-02 00:10:23 +02:00
|
|
|
else {
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << "Invalid DIType\n";
|
2009-07-02 00:10:23 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << "\n";
|
2009-07-02 00:10:23 +02:00
|
|
|
}
|
|
|
|
|
2010-05-07 17:30:29 +02:00
|
|
|
/// print - Print basic type.
|
|
|
|
void DIBasicType::print(raw_ostream &OS) const {
|
|
|
|
OS << " [" << dwarf::AttributeEncodingString(getEncoding()) << "] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
}
|
|
|
|
|
2010-05-07 17:30:29 +02:00
|
|
|
/// print - Print derived type.
|
|
|
|
void DIDerivedType::print(raw_ostream &OS) const {
|
2010-05-07 18:17:22 +02:00
|
|
|
OS << "\n\t Derived From: "; getTypeDerivedFrom().print(OS);
|
2009-07-02 00:10:23 +02:00
|
|
|
}
|
|
|
|
|
2010-05-07 17:30:29 +02:00
|
|
|
/// print - Print composite type.
|
|
|
|
void DICompositeType::print(raw_ostream &OS) const {
|
2009-07-02 00:10:23 +02:00
|
|
|
DIArray A = getTypeArray();
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [" << A.getNumElements() << " elements]";
|
2009-07-02 00:10:23 +02:00
|
|
|
}
|
|
|
|
|
2010-05-08 01:19:07 +02:00
|
|
|
/// print - Print subprogram.
|
|
|
|
void DISubprogram::print(raw_ostream &OS) const {
|
2009-11-25 18:36:49 +01:00
|
|
|
StringRef Res = getName();
|
|
|
|
if (!Res.empty())
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [" << Res << "] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
|
|
|
|
unsigned Tag = getTag();
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [" << dwarf::TagString(Tag) << "] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
|
|
|
|
// TODO : Print context
|
2010-05-07 18:17:22 +02:00
|
|
|
getCompileUnit().print(OS);
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [" << getLineNumber() << "] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
|
|
|
|
if (isLocalToUnit())
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [local] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
|
|
|
|
if (isDefinition())
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [def] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << "\n";
|
2009-07-02 00:10:23 +02:00
|
|
|
}
|
|
|
|
|
2010-05-08 01:19:07 +02:00
|
|
|
/// print - Print global variable.
|
|
|
|
void DIGlobalVariable::print(raw_ostream &OS) const {
|
|
|
|
OS << " [";
|
2009-11-25 18:36:49 +01:00
|
|
|
StringRef Res = getName();
|
|
|
|
if (!Res.empty())
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [" << Res << "] ";
|
2009-09-01 00:47:13 +02:00
|
|
|
|
|
|
|
unsigned Tag = getTag();
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [" << dwarf::TagString(Tag) << "] ";
|
2009-09-01 00:47:13 +02:00
|
|
|
|
|
|
|
// TODO : Print context
|
2010-05-07 18:17:22 +02:00
|
|
|
getCompileUnit().print(OS);
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [" << getLineNumber() << "] ";
|
2009-09-01 00:47:13 +02:00
|
|
|
|
|
|
|
if (isLocalToUnit())
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [local] ";
|
2009-09-01 00:47:13 +02:00
|
|
|
|
|
|
|
if (isDefinition())
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [def] ";
|
2009-09-01 00:47:13 +02:00
|
|
|
|
2010-05-08 01:19:07 +02:00
|
|
|
if (isGlobalVariable())
|
|
|
|
DIGlobalVariable(DbgNode).print(OS);
|
|
|
|
OS << "]\n";
|
2009-07-02 00:10:23 +02:00
|
|
|
}
|
|
|
|
|
2010-05-07 17:30:29 +02:00
|
|
|
/// print - Print variable.
|
|
|
|
void DIVariable::print(raw_ostream &OS) const {
|
2009-11-25 18:36:49 +01:00
|
|
|
StringRef Res = getName();
|
|
|
|
if (!Res.empty())
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [" << Res << "] ";
|
2009-07-02 00:10:23 +02:00
|
|
|
|
2010-05-07 18:17:22 +02:00
|
|
|
getCompileUnit().print(OS);
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << " [" << getLineNumber() << "] ";
|
2010-05-07 18:17:22 +02:00
|
|
|
getType().print(OS);
|
2010-05-07 17:30:29 +02:00
|
|
|
OS << "\n";
|
2009-09-30 02:08:22 +02:00
|
|
|
|
|
|
|
// FIXME: Dump complex addresses
|
2009-07-02 00:10:23 +02:00
|
|
|
}
|
|
|
|
|
2010-05-07 17:30:29 +02:00
|
|
|
/// dump - Print descriptor to dbgs() with a newline.
|
|
|
|
void DIDescriptor::dump() const {
|
|
|
|
print(dbgs()); dbgs() << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
/// dump - Print compile unit to dbgs() with a newline.
|
|
|
|
void DICompileUnit::dump() const {
|
|
|
|
print(dbgs()); dbgs() << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
/// dump - Print type to dbgs() with a newline.
|
|
|
|
void DIType::dump() const {
|
|
|
|
print(dbgs()); dbgs() << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
/// dump - Print basic type to dbgs() with a newline.
|
|
|
|
void DIBasicType::dump() const {
|
|
|
|
print(dbgs()); dbgs() << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
/// dump - Print derived type to dbgs() with a newline.
|
|
|
|
void DIDerivedType::dump() const {
|
|
|
|
print(dbgs()); dbgs() << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
/// dump - Print composite type to dbgs() with a newline.
|
|
|
|
void DICompositeType::dump() const {
|
|
|
|
print(dbgs()); dbgs() << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
/// dump - Print subprogram to dbgs() with a newline.
|
|
|
|
void DISubprogram::dump() const {
|
|
|
|
print(dbgs()); dbgs() << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
/// dump - Print global variable.
|
|
|
|
void DIGlobalVariable::dump() const {
|
|
|
|
print(dbgs()); dbgs() << '\n';
|
|
|
|
}
|
|
|
|
|
|
|
|
/// dump - Print variable.
|
|
|
|
void DIVariable::dump() const {
|
|
|
|
print(dbgs()); dbgs() << '\n';
|
|
|
|
}
|
|
|
|
|
2010-11-10 23:19:21 +01:00
|
|
|
/// fixupObjcLikeName - Replace contains special characters used
|
|
|
|
/// in a typical Objective-C names with '.' in a given string.
|
|
|
|
static void fixupObjcLikeName(std::string &Str) {
|
|
|
|
for (size_t i = 0, e = Str.size(); i < e; ++i) {
|
|
|
|
char C = Str[i];
|
2010-12-04 00:40:45 +01:00
|
|
|
if (C == '[' || C == ']' || C == ' ' || C == ':' || C == '+' ||
|
|
|
|
C == '(' || C == ')')
|
2010-11-10 23:19:21 +01:00
|
|
|
Str[i] = '.';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getFnSpecificMDNode - Return a NameMDNode, if available, that is
|
|
|
|
/// suitable to hold function specific information.
|
|
|
|
NamedMDNode *llvm::getFnSpecificMDNode(const Module &M, StringRef FuncName) {
|
|
|
|
if (FuncName.find('[') == StringRef::npos)
|
|
|
|
return M.getNamedMetadata(Twine("llvm.dbg.lv.", FuncName));
|
|
|
|
std::string Name = FuncName;
|
|
|
|
fixupObjcLikeName(Name);
|
|
|
|
return M.getNamedMetadata(Twine("llvm.dbg.lv.", Name));
|
|
|
|
}
|
|
|
|
|
2011-03-02 21:30:37 +01:00
|
|
|
/// getOrInsertFnSpecificMDNode - Return a NameMDNode that is suitable
|
|
|
|
/// to hold function specific information.
|
|
|
|
NamedMDNode *llvm::getOrInsertFnSpecificMDNode(Module &M, StringRef FuncName) {
|
|
|
|
SmallString<32> Out;
|
|
|
|
if (FuncName.find('[') == StringRef::npos)
|
|
|
|
return M.getOrInsertNamedMetadata(Twine("llvm.dbg.lv.", FuncName)
|
|
|
|
.toStringRef(Out));
|
|
|
|
|
|
|
|
std::string Name = FuncName;
|
|
|
|
fixupObjcLikeName(Name);
|
|
|
|
return M.getOrInsertNamedMetadata(Twine("llvm.dbg.lv.", Name)
|
|
|
|
.toStringRef(Out));
|
2010-09-28 20:08:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-28 21:55:13 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2009-07-30 20:25:15 +02:00
|
|
|
// DebugInfoFinder implementations.
|
2009-07-28 21:55:13 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-07-30 20:25:15 +02:00
|
|
|
/// processModule - Process entire module and collect debug info.
|
|
|
|
void DebugInfoFinder::processModule(Module &M) {
|
2009-07-28 21:55:13 +02:00
|
|
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
|
|
|
for (Function::iterator FI = (*I).begin(), FE = (*I).end(); FI != FE; ++FI)
|
|
|
|
for (BasicBlock::iterator BI = (*FI).begin(), BE = (*FI).end(); BI != BE;
|
|
|
|
++BI) {
|
2010-05-04 03:05:02 +02:00
|
|
|
if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(BI))
|
2009-07-31 20:18:52 +02:00
|
|
|
processDeclare(DDI);
|
2010-07-21 23:36:25 +02:00
|
|
|
|
2010-04-02 22:44:29 +02:00
|
|
|
DebugLoc Loc = BI->getDebugLoc();
|
|
|
|
if (Loc.isUnknown())
|
|
|
|
continue;
|
2010-07-21 23:36:25 +02:00
|
|
|
|
2010-04-02 22:44:29 +02:00
|
|
|
LLVMContext &Ctx = BI->getContext();
|
|
|
|
DIDescriptor Scope(Loc.getScope(Ctx));
|
2010-07-21 23:36:25 +02:00
|
|
|
|
2010-04-02 22:44:29 +02:00
|
|
|
if (Scope.isCompileUnit())
|
2010-05-07 20:11:54 +02:00
|
|
|
addCompileUnit(DICompileUnit(Scope));
|
2010-04-02 22:44:29 +02:00
|
|
|
else if (Scope.isSubprogram())
|
2010-05-07 20:11:54 +02:00
|
|
|
processSubprogram(DISubprogram(Scope));
|
2010-04-02 22:44:29 +02:00
|
|
|
else if (Scope.isLexicalBlock())
|
2010-05-07 20:11:54 +02:00
|
|
|
processLexicalBlock(DILexicalBlock(Scope));
|
2010-07-21 23:36:25 +02:00
|
|
|
|
2010-04-02 22:44:29 +02:00
|
|
|
if (MDNode *IA = Loc.getInlinedAt(Ctx))
|
|
|
|
processLocation(DILocation(IA));
|
2009-07-28 21:55:13 +02:00
|
|
|
}
|
2009-08-29 01:24:31 +02:00
|
|
|
|
2010-06-28 07:53:08 +02:00
|
|
|
if (NamedMDNode *NMD = M.getNamedMetadata("llvm.dbg.gv")) {
|
|
|
|
for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i) {
|
|
|
|
DIGlobalVariable DIG(cast<MDNode>(NMD->getOperand(i)));
|
|
|
|
if (addGlobalVariable(DIG)) {
|
|
|
|
addCompileUnit(DIG.getCompileUnit());
|
|
|
|
processType(DIG.getType());
|
|
|
|
}
|
2009-07-28 21:55:13 +02:00
|
|
|
}
|
|
|
|
}
|
2010-06-28 07:53:08 +02:00
|
|
|
|
|
|
|
if (NamedMDNode *NMD = M.getNamedMetadata("llvm.dbg.sp"))
|
|
|
|
for (unsigned i = 0, e = NMD->getNumOperands(); i != e; ++i)
|
|
|
|
processSubprogram(DISubprogram(NMD->getOperand(i)));
|
2009-07-28 21:55:13 +02:00
|
|
|
}
|
2009-09-19 22:40:05 +02:00
|
|
|
|
2009-11-10 23:05:35 +01:00
|
|
|
/// processLocation - Process DILocation.
|
|
|
|
void DebugInfoFinder::processLocation(DILocation Loc) {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!Loc.Verify()) return;
|
2010-05-07 20:11:54 +02:00
|
|
|
DIDescriptor S(Loc.getScope());
|
2009-11-10 23:05:35 +01:00
|
|
|
if (S.isCompileUnit())
|
2010-05-07 20:11:54 +02:00
|
|
|
addCompileUnit(DICompileUnit(S));
|
2009-11-10 23:05:35 +01:00
|
|
|
else if (S.isSubprogram())
|
2010-05-07 20:11:54 +02:00
|
|
|
processSubprogram(DISubprogram(S));
|
2009-11-10 23:05:35 +01:00
|
|
|
else if (S.isLexicalBlock())
|
2010-05-07 20:11:54 +02:00
|
|
|
processLexicalBlock(DILexicalBlock(S));
|
2009-11-10 23:05:35 +01:00
|
|
|
processLocation(Loc.getOrigLocation());
|
|
|
|
}
|
|
|
|
|
2009-07-30 20:25:15 +02:00
|
|
|
/// processType - Process DIType.
|
|
|
|
void DebugInfoFinder::processType(DIType DT) {
|
2009-08-11 00:09:58 +02:00
|
|
|
if (!addType(DT))
|
2009-07-28 21:55:13 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
addCompileUnit(DT.getCompileUnit());
|
2009-08-31 20:49:10 +02:00
|
|
|
if (DT.isCompositeType()) {
|
2010-05-07 20:11:54 +02:00
|
|
|
DICompositeType DCT(DT);
|
2009-07-30 20:25:15 +02:00
|
|
|
processType(DCT.getTypeDerivedFrom());
|
2009-07-28 21:55:13 +02:00
|
|
|
DIArray DA = DCT.getTypeArray();
|
2010-03-08 21:52:55 +01:00
|
|
|
for (unsigned i = 0, e = DA.getNumElements(); i != e; ++i) {
|
|
|
|
DIDescriptor D = DA.getElement(i);
|
|
|
|
if (D.isType())
|
2010-05-07 20:11:54 +02:00
|
|
|
processType(DIType(D));
|
2010-03-08 21:52:55 +01:00
|
|
|
else if (D.isSubprogram())
|
2010-05-07 20:11:54 +02:00
|
|
|
processSubprogram(DISubprogram(D));
|
2010-03-08 21:52:55 +01:00
|
|
|
}
|
2009-08-31 20:49:10 +02:00
|
|
|
} else if (DT.isDerivedType()) {
|
2010-05-07 20:11:54 +02:00
|
|
|
DIDerivedType DDT(DT);
|
2010-03-08 21:52:55 +01:00
|
|
|
processType(DDT.getTypeDerivedFrom());
|
2009-07-28 21:55:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-08 00:04:08 +02:00
|
|
|
/// processLexicalBlock
|
|
|
|
void DebugInfoFinder::processLexicalBlock(DILexicalBlock LB) {
|
|
|
|
DIScope Context = LB.getContext();
|
|
|
|
if (Context.isLexicalBlock())
|
2010-05-07 20:11:54 +02:00
|
|
|
return processLexicalBlock(DILexicalBlock(Context));
|
2009-10-08 00:04:08 +02:00
|
|
|
else
|
2010-05-07 20:11:54 +02:00
|
|
|
return processSubprogram(DISubprogram(Context));
|
2009-10-08 00:04:08 +02:00
|
|
|
}
|
|
|
|
|
2009-07-30 20:25:15 +02:00
|
|
|
/// processSubprogram - Process DISubprogram.
|
|
|
|
void DebugInfoFinder::processSubprogram(DISubprogram SP) {
|
2009-07-28 21:55:13 +02:00
|
|
|
if (!addSubprogram(SP))
|
|
|
|
return;
|
|
|
|
addCompileUnit(SP.getCompileUnit());
|
2009-07-30 20:25:15 +02:00
|
|
|
processType(SP.getType());
|
2009-07-28 21:55:13 +02:00
|
|
|
}
|
|
|
|
|
2009-07-31 20:18:52 +02:00
|
|
|
/// processDeclare - Process DbgDeclareInst.
|
|
|
|
void DebugInfoFinder::processDeclare(DbgDeclareInst *DDI) {
|
2010-03-08 21:52:55 +01:00
|
|
|
MDNode *N = dyn_cast<MDNode>(DDI->getVariable());
|
|
|
|
if (!N) return;
|
|
|
|
|
|
|
|
DIDescriptor DV(N);
|
|
|
|
if (!DV.isVariable())
|
2009-07-31 20:18:52 +02:00
|
|
|
return;
|
|
|
|
|
2010-05-07 20:11:54 +02:00
|
|
|
if (!NodesSeen.insert(DV))
|
2009-07-31 20:18:52 +02:00
|
|
|
return;
|
|
|
|
|
2010-03-08 21:52:55 +01:00
|
|
|
addCompileUnit(DIVariable(N).getCompileUnit());
|
|
|
|
processType(DIVariable(N).getType());
|
2009-07-31 20:18:52 +02:00
|
|
|
}
|
|
|
|
|
2009-08-11 00:09:58 +02:00
|
|
|
/// addType - Add type into Tys.
|
|
|
|
bool DebugInfoFinder::addType(DIType DT) {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!DT.isValid())
|
2009-08-11 00:09:58 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-07 20:11:54 +02:00
|
|
|
if (!NodesSeen.insert(DT))
|
2009-08-11 00:09:58 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-07 20:11:54 +02:00
|
|
|
TYs.push_back(DT);
|
2009-08-11 00:09:58 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-07-28 21:55:13 +02:00
|
|
|
/// addCompileUnit - Add compile unit into CUs.
|
2009-07-30 20:25:15 +02:00
|
|
|
bool DebugInfoFinder::addCompileUnit(DICompileUnit CU) {
|
2010-03-08 21:52:55 +01:00
|
|
|
if (!CU.Verify())
|
2009-07-28 21:55:13 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-07 20:11:54 +02:00
|
|
|
if (!NodesSeen.insert(CU))
|
2009-07-28 21:55:13 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-07 20:11:54 +02:00
|
|
|
CUs.push_back(CU);
|
2009-07-28 21:55:13 +02:00
|
|
|
return true;
|
|
|
|
}
|
2009-09-19 22:40:05 +02:00
|
|
|
|
2009-07-28 21:55:13 +02:00
|
|
|
/// addGlobalVariable - Add global variable into GVs.
|
2009-07-30 20:25:15 +02:00
|
|
|
bool DebugInfoFinder::addGlobalVariable(DIGlobalVariable DIG) {
|
2010-05-07 20:11:54 +02:00
|
|
|
if (!DIDescriptor(DIG).isGlobalVariable())
|
2009-07-28 21:55:13 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-07 20:11:54 +02:00
|
|
|
if (!NodesSeen.insert(DIG))
|
2009-07-28 21:55:13 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-07 20:11:54 +02:00
|
|
|
GVs.push_back(DIG);
|
2009-07-28 21:55:13 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// addSubprogram - Add subprgoram into SPs.
|
2009-07-30 20:25:15 +02:00
|
|
|
bool DebugInfoFinder::addSubprogram(DISubprogram SP) {
|
2010-05-07 20:11:54 +02:00
|
|
|
if (!DIDescriptor(SP).isSubprogram())
|
2009-07-28 21:55:13 +02:00
|
|
|
return false;
|
2009-09-19 22:40:05 +02:00
|
|
|
|
2010-05-07 20:11:54 +02:00
|
|
|
if (!NodesSeen.insert(SP))
|
2009-07-28 21:55:13 +02:00
|
|
|
return false;
|
|
|
|
|
2010-05-07 20:11:54 +02:00
|
|
|
SPs.push_back(SP);
|
2009-07-28 21:55:13 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-12-29 10:22:47 +01:00
|
|
|
/// getDISubprogram - Find subprogram that is enclosing this scope.
|
2010-05-07 22:54:48 +02:00
|
|
|
DISubprogram llvm::getDISubprogram(const MDNode *Scope) {
|
2009-12-29 10:22:47 +01:00
|
|
|
DIDescriptor D(Scope);
|
|
|
|
if (D.isSubprogram())
|
|
|
|
return DISubprogram(Scope);
|
2010-07-21 23:36:25 +02:00
|
|
|
|
2009-12-29 10:22:47 +01:00
|
|
|
if (D.isLexicalBlock())
|
2010-05-07 20:11:54 +02:00
|
|
|
return getDISubprogram(DILexicalBlock(Scope).getContext());
|
2010-07-21 23:36:25 +02:00
|
|
|
|
2009-12-29 10:22:47 +01:00
|
|
|
return DISubprogram();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// getDICompositeType - Find underlying composite type.
|
|
|
|
DICompositeType llvm::getDICompositeType(DIType T) {
|
|
|
|
if (T.isCompositeType())
|
2010-05-07 20:11:54 +02:00
|
|
|
return DICompositeType(T);
|
2010-07-21 23:36:25 +02:00
|
|
|
|
2009-12-29 10:22:47 +01:00
|
|
|
if (T.isDerivedType())
|
2010-05-07 20:11:54 +02:00
|
|
|
return getDICompositeType(DIDerivedType(T).getTypeDerivedFrom());
|
2010-07-21 23:36:25 +02:00
|
|
|
|
2009-12-29 10:22:47 +01:00
|
|
|
return DICompositeType();
|
2008-12-16 10:07:36 +01:00
|
|
|
}
|