freebsd-dev/lib/Analysis/DebugInfo.cpp

1600 lines
52 KiB
C++
Raw Normal View History

2009-06-02 17:52:33 +00: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"
#include "llvm/IntrinsicInst.h"
#include "llvm/Instructions.h"
#include "llvm/Module.h"
#include "llvm/Analysis/ValueTracking.h"
2009-10-14 17:57:32 +00:00
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/STLExtras.h"
2010-01-01 10:31:22 +00:00
#include "llvm/Support/Debug.h"
2009-06-02 17:52:33 +00:00
#include "llvm/Support/Dwarf.h"
2009-10-14 17:57:32 +00:00
#include "llvm/Support/raw_ostream.h"
2009-06-02 17:52:33 +00:00
using namespace llvm;
using namespace llvm::dwarf;
//===----------------------------------------------------------------------===//
// DIDescriptor
//===----------------------------------------------------------------------===//
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) {
}
StringRef
2009-10-14 17:57:32 +00:00
DIDescriptor::getStringField(unsigned Elt) const {
if (DbgNode == 0)
2009-12-01 11:07:05 +00:00
return StringRef();
2009-06-02 17:52:33 +00:00
2010-01-01 10:31:22 +00:00
if (Elt < DbgNode->getNumOperands())
if (MDString *MDS = dyn_cast_or_null<MDString>(DbgNode->getOperand(Elt)))
2009-12-01 11:07:05 +00:00
return MDS->getString();
2009-06-02 17:52:33 +00:00
2009-12-01 11:07:05 +00:00
return StringRef();
2009-06-02 17:52:33 +00:00
}
uint64_t DIDescriptor::getUInt64Field(unsigned Elt) const {
2009-10-14 17:57:32 +00:00
if (DbgNode == 0)
2009-06-02 17:52:33 +00:00
return 0;
2010-01-01 10:31:22 +00:00
if (Elt < DbgNode->getNumOperands())
if (ConstantInt *CI = dyn_cast<ConstantInt>(DbgNode->getOperand(Elt)))
2009-10-14 17:57:32 +00:00
return CI->getZExtValue();
2009-06-02 17:52:33 +00:00
return 0;
}
DIDescriptor DIDescriptor::getDescriptorField(unsigned Elt) const {
2009-10-14 17:57:32 +00:00
if (DbgNode == 0)
2009-06-02 17:52:33 +00:00
return DIDescriptor();
2010-04-02 08:54:30 +00:00
if (Elt < DbgNode->getNumOperands())
return
DIDescriptor(dyn_cast_or_null<const MDNode>(DbgNode->getOperand(Elt)));
2009-10-14 17:57:32 +00:00
return DIDescriptor();
2009-06-02 17:52:33 +00:00
}
GlobalVariable *DIDescriptor::getGlobalVariableField(unsigned Elt) const {
2009-10-14 17:57:32 +00:00
if (DbgNode == 0)
2009-06-02 17:52:33 +00:00
return 0;
2010-01-01 10:31:22 +00:00
if (Elt < DbgNode->getNumOperands())
return dyn_cast_or_null<GlobalVariable>(DbgNode->getOperand(Elt));
2009-10-14 17:57:32 +00:00
return 0;
2009-06-02 17:52:33 +00: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-07-13 17:19:57 +00: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;
}
2010-01-01 10:31:22 +00:00
unsigned DIVariable::getNumAddrElements() const {
if (getVersion() <= llvm::LLVMDebugVersion8)
return DbgNode->getNumOperands()-6;
return DbgNode->getNumOperands()-7;
2010-01-01 10:31:22 +00:00
}
2009-06-02 17:52:33 +00:00
//===----------------------------------------------------------------------===//
2009-10-14 17:57:32 +00:00
// Predicates
2009-06-02 17:52:33 +00:00
//===----------------------------------------------------------------------===//
2009-10-14 17:57:32 +00:00
/// isBasicType - Return true if the specified tag is legal for
/// DIBasicType.
bool DIDescriptor::isBasicType() const {
2010-03-10 17:45:15 +00:00
return DbgNode && getTag() == dwarf::DW_TAG_base_type;
2009-06-02 17:52:33 +00:00
}
2009-10-14 17:57:32 +00:00
/// isDerivedType - Return true if the specified tag is legal for DIDerivedType.
bool DIDescriptor::isDerivedType() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode) return false;
2010-01-01 10:31:22 +00:00
switch (getTag()) {
2009-06-02 17:52:33 +00: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:
case dwarf::DW_TAG_friend:
2009-06-02 17:52:33 +00:00
return true;
default:
2009-10-14 17:57:32 +00:00
// CompositeTypes are currently modelled as DerivedTypes.
return isCompositeType();
2009-06-02 17:52:33 +00:00
}
}
/// isCompositeType - Return true if the specified tag is legal for
/// DICompositeType.
2009-10-14 17:57:32 +00:00
bool DIDescriptor::isCompositeType() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode) return false;
2010-01-01 10:31:22 +00:00
switch (getTag()) {
2009-06-02 17:52:33 +00: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:
case dwarf::DW_TAG_class_type:
return true;
default:
return false;
}
}
/// isVariable - Return true if the specified tag is legal for DIVariable.
2009-10-14 17:57:32 +00:00
bool DIDescriptor::isVariable() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode) return false;
2010-01-01 10:31:22 +00:00
switch (getTag()) {
2009-06-02 17:52:33 +00: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-14 17:57:32 +00:00
/// isType - Return true if the specified tag is legal for DIType.
bool DIDescriptor::isType() const {
return isBasicType() || isCompositeType() || isDerivedType();
}
/// isSubprogram - Return true if the specified tag is legal for
/// DISubprogram.
bool DIDescriptor::isSubprogram() const {
2010-03-10 17:45:15 +00:00
return DbgNode && getTag() == dwarf::DW_TAG_subprogram;
2009-10-14 17:57:32 +00:00
}
/// isGlobalVariable - Return true if the specified tag is legal for
/// DIGlobalVariable.
bool DIDescriptor::isGlobalVariable() const {
return DbgNode && (getTag() == dwarf::DW_TAG_variable ||
getTag() == dwarf::DW_TAG_constant);
2009-10-14 17:57:32 +00:00
}
/// isGlobal - Return true if the specified tag is legal for DIGlobal.
bool DIDescriptor::isGlobal() const {
return isGlobalVariable();
}
/// isUnspecifiedParmeter - Return true if the specified tag is
/// DW_TAG_unspecified_parameters.
bool DIDescriptor::isUnspecifiedParameter() const {
return DbgNode && getTag() == dwarf::DW_TAG_unspecified_parameters;
}
2009-10-14 17:57:32 +00:00
/// isScope - Return true if the specified tag is one of the scope
/// related tag.
bool DIDescriptor::isScope() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode) return false;
2010-01-01 10:31:22 +00: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-10-14 17:57:32 +00:00
}
return false;
}
/// 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;
}
/// 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-10-14 17:57:32 +00:00
/// isCompileUnit - Return true if the specified tag is DW_TAG_compile_unit.
bool DIDescriptor::isCompileUnit() const {
2010-03-10 17:45:15 +00:00
return DbgNode && getTag() == dwarf::DW_TAG_compile_unit;
}
/// isFile - Return true if the specified tag is DW_TAG_file_type.
bool DIDescriptor::isFile() const {
return DbgNode && getTag() == dwarf::DW_TAG_file_type;
2010-01-01 10:31:22 +00:00
}
2009-10-14 17:57:32 +00:00
2010-01-01 10:31:22 +00:00
/// isNameSpace - Return true if the specified tag is DW_TAG_namespace.
bool DIDescriptor::isNameSpace() const {
2010-03-10 17:45:15 +00:00
return DbgNode && getTag() == dwarf::DW_TAG_namespace;
2009-10-14 17:57:32 +00:00
}
/// isLexicalBlock - Return true if the specified tag is DW_TAG_lexical_block.
bool DIDescriptor::isLexicalBlock() const {
2010-03-10 17:45:15 +00:00
return DbgNode && getTag() == dwarf::DW_TAG_lexical_block;
2009-10-14 17:57:32 +00:00
}
/// isSubrange - Return true if the specified tag is DW_TAG_subrange_type.
bool DIDescriptor::isSubrange() const {
2010-03-10 17:45:15 +00:00
return DbgNode && getTag() == dwarf::DW_TAG_subrange_type;
2009-10-14 17:57:32 +00:00
}
/// isEnumerator - Return true if the specified tag is DW_TAG_enumerator.
bool DIDescriptor::isEnumerator() const {
2010-03-10 17:45:15 +00:00
return DbgNode && getTag() == dwarf::DW_TAG_enumerator;
2009-10-14 17:57:32 +00:00
}
//===----------------------------------------------------------------------===//
// Simple Descriptor Constructors and other Methods
//===----------------------------------------------------------------------===//
2010-05-27 15:15:58 +00:00
DIType::DIType(const MDNode *N) : DIScope(N) {
2009-10-14 17:57:32 +00:00
if (!N) return;
if (!isBasicType() && !isDerivedType() && !isCompositeType()) {
DbgNode = 0;
}
}
2009-06-02 17:52:33 +00:00
unsigned DIArray::getNumElements() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode)
return 0;
2010-01-01 10:31:22 +00:00
return DbgNode->getNumOperands();
2009-10-14 17:57:32 +00:00
}
/// replaceAllUsesWith - Replace all uses of debug info referenced by
/// this descriptor.
void DIType::replaceAllUsesWith(DIDescriptor &D) {
2010-03-10 17:45:15 +00:00
if (!DbgNode)
2009-10-14 17:57:32 +00:00
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.
2010-05-27 15:15:58 +00:00
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-10-14 17:57:32 +00:00
}
2009-06-02 17:52:33 +00: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-06-02 17:52:33 +00:00
/// Verify - Verify that a compile unit is well formed.
bool DICompileUnit::Verify() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode)
2009-06-02 17:52:33 +00:00
return false;
2009-12-01 11:07:05 +00:00
StringRef N = getFilename();
if (N.empty())
2009-06-02 17:52:33 +00:00
return false;
// It is possible that directory and produce string is empty.
return true;
}
/// Verify - Verify that a type descriptor is well formed.
bool DIType::Verify() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode)
2009-06-02 17:52:33 +00:00
return false;
2010-03-10 17:45:15 +00:00
if (!getContext().Verify())
2009-06-02 17:52:33 +00:00
return false;
unsigned Tag = getTag();
if (!isBasicType() && Tag != dwarf::DW_TAG_const_type &&
Tag != dwarf::DW_TAG_volatile_type && Tag != dwarf::DW_TAG_pointer_type &&
Tag != dwarf::DW_TAG_reference_type && Tag != dwarf::DW_TAG_restrict_type
&& Tag != dwarf::DW_TAG_vector_type && Tag != dwarf::DW_TAG_array_type
&& Tag != dwarf::DW_TAG_enumeration_type
&& getFilename().empty())
2009-06-02 17:52:33 +00:00
return false;
return true;
}
/// 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-06-02 17:52:33 +00:00
/// Verify - Verify that a composite type descriptor is well formed.
bool DICompositeType::Verify() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode)
2009-06-02 17:52:33 +00:00
return false;
2010-03-10 17:45:15 +00:00
if (!getContext().Verify())
2009-06-02 17:52:33 +00:00
return false;
DICompileUnit CU = getCompileUnit();
2010-03-10 17:45:15 +00:00
if (!CU.Verify())
2009-06-02 17:52:33 +00:00
return false;
return true;
}
/// Verify - Verify that a subprogram descriptor is well formed.
bool DISubprogram::Verify() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode)
2009-06-02 17:52:33 +00:00
return false;
2009-10-14 17:57:32 +00:00
2010-03-10 17:45:15 +00:00
if (!getContext().Verify())
2009-06-02 17:52:33 +00:00
return false;
DICompileUnit CU = getCompileUnit();
2009-10-14 17:57:32 +00:00
if (!CU.Verify())
2009-06-02 17:52:33 +00:00
return false;
DICompositeType Ty = getType();
2010-03-10 17:45:15 +00:00
if (!Ty.Verify())
2009-06-02 17:52:33 +00:00
return false;
return true;
}
/// Verify - Verify that a global variable descriptor is well formed.
bool DIGlobalVariable::Verify() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode)
2009-06-02 17:52:33 +00:00
return false;
2009-10-14 17:57:32 +00:00
2009-12-01 11:07:05 +00:00
if (getDisplayName().empty())
2009-11-18 14:58:34 +00:00
return false;
2010-03-10 17:45:15 +00:00
if (!getContext().Verify())
2009-06-02 17:52:33 +00:00
return false;
DICompileUnit CU = getCompileUnit();
2010-03-10 17:45:15 +00:00
if (!CU.Verify())
2009-06-02 17:52:33 +00:00
return false;
DIType Ty = getType();
if (!Ty.Verify())
return false;
if (!getGlobal() && !getConstant())
2009-06-02 17:52:33 +00:00
return false;
return true;
}
/// Verify - Verify that a variable descriptor is well formed.
bool DIVariable::Verify() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode)
2009-06-02 17:52:33 +00:00
return false;
2009-10-14 17:57:32 +00:00
2010-03-10 17:45:15 +00:00
if (!getContext().Verify())
2009-06-02 17:52:33 +00:00
return false;
2010-05-27 15:15:58 +00:00
if (!getCompileUnit().Verify())
return false;
2009-06-02 17:52:33 +00:00
DIType Ty = getType();
if (!Ty.Verify())
return false;
return true;
}
2010-03-10 17:45:15 +00:00
/// Verify - Verify that a location descriptor is well formed.
bool DILocation::Verify() const {
if (!DbgNode)
return false;
2010-03-10 17:45:15 +00:00
return DbgNode->getNumOperands() == 4;
}
2010-05-27 15:15:58 +00: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-06-02 17:52:33 +00:00
/// getOriginalTypeSize - If this type is derived from a base type then
/// return base type size.
uint64_t DIDerivedType::getOriginalTypeSize() const {
2009-11-05 17:17:44 +00: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();
// If this type is not derived from any type then take conservative
2009-11-18 14:58:34 +00:00
// approach.
2010-03-10 17:45:15 +00:00
if (!BaseType.isValid())
2009-11-18 14:58:34 +00:00
return getSizeInBits();
2009-11-05 17:17:44 +00:00
if (BaseType.isDerivedType())
2010-05-27 15:15:58 +00:00
return DIDerivedType(BaseType).getOriginalTypeSize();
2009-11-05 17:17:44 +00:00
else
return BaseType.getSizeInBits();
}
2009-11-05 17:17:44 +00:00
return getSizeInBits();
2009-06-02 17:52:33 +00:00
}
/// isInlinedFnArgument - Return true if this variable provides debugging
2010-05-04 16:11:02 +00:00
/// information for an inlined function arguments.
bool DIVariable::isInlinedFnArgument(const Function *CurFn) {
assert(CurFn && "Invalid function");
if (!getContext().isSubprogram())
return false;
// This variable is not inlined function argument if its scope
2010-05-04 16:11:02 +00:00
// does not describe current function.
2010-05-27 15:15:58 +00:00
return !(DISubprogram(getContext()).describes(CurFn));
2010-05-04 16:11:02 +00:00
}
2009-06-02 17:52:33 +00:00
/// describes - Return true if this subprogram provides debugging
/// information for the function F.
bool DISubprogram::describes(const Function *F) {
2010-01-01 10:31:22 +00:00
assert(F && "Invalid function");
2010-07-13 17:19:57 +00:00
if (F == getFunction())
return true;
2009-12-01 11:07:05 +00:00
StringRef Name = getLinkageName();
if (Name.empty())
2009-10-14 17:57:32 +00:00
Name = getName();
2009-12-01 11:07:05 +00:00
if (F->getName() == Name)
2009-06-02 17:52:33 +00:00
return true;
return false;
}
unsigned DISubprogram::isOptimized() const {
2010-05-04 16:11:02 +00:00
assert (DbgNode && "Invalid subprogram descriptor!");
if (DbgNode->getNumOperands() == 16)
return getUnsignedField(15);
return 0;
}
2009-12-01 11:07:05 +00:00
StringRef DIScope::getFilename() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode)
return StringRef();
if (isLexicalBlock())
2009-10-14 17:57:32 +00:00
return DILexicalBlock(DbgNode).getFilename();
2010-01-01 10:31:22 +00:00
if (isSubprogram())
2009-10-14 17:57:32 +00:00
return DISubprogram(DbgNode).getFilename();
2010-01-01 10:31:22 +00:00
if (isCompileUnit())
2009-10-14 17:57:32 +00:00
return DICompileUnit(DbgNode).getFilename();
2010-01-01 10:31:22 +00:00
if (isNameSpace())
return DINameSpace(DbgNode).getFilename();
2010-03-10 17:45:15 +00:00
if (isType())
return DIType(DbgNode).getFilename();
if (isFile())
return DIFile(DbgNode).getFilename();
2010-01-01 10:31:22 +00:00
assert(0 && "Invalid DIScope!");
2009-12-01 11:07:05 +00:00
return StringRef();
2009-10-14 17:57:32 +00:00
}
2009-12-01 11:07:05 +00:00
StringRef DIScope::getDirectory() const {
2010-03-10 17:45:15 +00:00
if (!DbgNode)
return StringRef();
if (isLexicalBlock())
2009-10-14 17:57:32 +00:00
return DILexicalBlock(DbgNode).getDirectory();
2010-01-01 10:31:22 +00:00
if (isSubprogram())
2009-10-14 17:57:32 +00:00
return DISubprogram(DbgNode).getDirectory();
2010-01-01 10:31:22 +00:00
if (isCompileUnit())
2009-10-14 17:57:32 +00:00
return DICompileUnit(DbgNode).getDirectory();
2010-01-01 10:31:22 +00:00
if (isNameSpace())
return DINameSpace(DbgNode).getDirectory();
2010-03-10 17:45:15 +00:00
if (isType())
return DIType(DbgNode).getDirectory();
if (isFile())
return DIFile(DbgNode).getDirectory();
2010-01-01 10:31:22 +00:00
assert(0 && "Invalid DIScope!");
2009-12-01 11:07:05 +00:00
return StringRef();
2009-10-14 17:57:32 +00:00
}
2009-07-04 13:58:26 +00:00
//===----------------------------------------------------------------------===//
// DIDescriptor: dump routines for all descriptors.
//===----------------------------------------------------------------------===//
2010-05-27 15:15:58 +00:00
/// print - Print descriptor.
void DIDescriptor::print(raw_ostream &OS) const {
OS << "[" << dwarf::TagString(getTag()) << "] ";
OS.write_hex((intptr_t) &*DbgNode) << ']';
2009-07-04 13:58:26 +00:00
}
2010-05-27 15:15:58 +00:00
/// print - Print compile unit.
void DICompileUnit::print(raw_ostream &OS) const {
2009-07-04 13:58:26 +00:00
if (getLanguage())
2010-05-27 15:15:58 +00:00
OS << " [" << dwarf::LanguageString(getLanguage()) << "] ";
2009-07-04 13:58:26 +00:00
2010-05-27 15:15:58 +00:00
OS << " [" << getDirectory() << "/" << getFilename() << "]";
2009-07-04 13:58:26 +00:00
}
2010-05-27 15:15:58 +00:00
/// print - Print type.
void DIType::print(raw_ostream &OS) const {
2010-03-10 17:45:15 +00:00
if (!DbgNode) return;
2009-07-04 13:58:26 +00:00
2009-12-01 11:07:05 +00:00
StringRef Res = getName();
if (!Res.empty())
2010-05-27 15:15:58 +00:00
OS << " [" << Res << "] ";
2009-07-04 13:58:26 +00:00
unsigned Tag = getTag();
2010-05-27 15:15:58 +00:00
OS << " [" << dwarf::TagString(Tag) << "] ";
2009-07-04 13:58:26 +00:00
// TODO : Print context
2010-05-27 15:15:58 +00:00
getCompileUnit().print(OS);
OS << " ["
<< "line " << getLineNumber() << ", "
<< getSizeInBits() << " bits, "
<< getAlignInBits() << " bit alignment, "
<< getOffsetInBits() << " bit offset"
2009-10-14 17:57:32 +00:00
<< "] ";
if (isPrivate())
2010-05-27 15:15:58 +00:00
OS << " [private] ";
2009-07-04 13:58:26 +00:00
else if (isProtected())
2010-05-27 15:15:58 +00:00
OS << " [protected] ";
2009-07-04 13:58:26 +00:00
if (isForwardDecl())
2010-05-27 15:15:58 +00:00
OS << " [fwd] ";
2009-10-14 17:57:32 +00:00
if (isBasicType())
2010-05-27 15:15:58 +00:00
DIBasicType(DbgNode).print(OS);
2009-10-14 17:57:32 +00:00
else if (isDerivedType())
2010-05-27 15:15:58 +00:00
DIDerivedType(DbgNode).print(OS);
2009-10-14 17:57:32 +00:00
else if (isCompositeType())
2010-05-27 15:15:58 +00:00
DICompositeType(DbgNode).print(OS);
2009-07-04 13:58:26 +00:00
else {
2010-05-27 15:15:58 +00:00
OS << "Invalid DIType\n";
2009-07-04 13:58:26 +00:00
return;
}
2010-05-27 15:15:58 +00:00
OS << "\n";
2009-07-04 13:58:26 +00:00
}
2010-05-27 15:15:58 +00:00
/// print - Print basic type.
void DIBasicType::print(raw_ostream &OS) const {
OS << " [" << dwarf::AttributeEncodingString(getEncoding()) << "] ";
2009-07-04 13:58:26 +00:00
}
2010-05-27 15:15:58 +00:00
/// print - Print derived type.
void DIDerivedType::print(raw_ostream &OS) const {
OS << "\n\t Derived From: "; getTypeDerivedFrom().print(OS);
2009-07-04 13:58:26 +00:00
}
2010-05-27 15:15:58 +00:00
/// print - Print composite type.
void DICompositeType::print(raw_ostream &OS) const {
2009-07-04 13:58:26 +00:00
DIArray A = getTypeArray();
2010-05-27 15:15:58 +00:00
OS << " [" << A.getNumElements() << " elements]";
2009-07-04 13:58:26 +00:00
}
2010-05-27 15:15:58 +00:00
/// print - Print subprogram.
void DISubprogram::print(raw_ostream &OS) const {
2009-12-01 11:07:05 +00:00
StringRef Res = getName();
if (!Res.empty())
2010-05-27 15:15:58 +00:00
OS << " [" << Res << "] ";
2009-07-04 13:58:26 +00:00
unsigned Tag = getTag();
2010-05-27 15:15:58 +00:00
OS << " [" << dwarf::TagString(Tag) << "] ";
2009-07-04 13:58:26 +00:00
// TODO : Print context
2010-05-27 15:15:58 +00:00
getCompileUnit().print(OS);
OS << " [" << getLineNumber() << "] ";
2009-07-04 13:58:26 +00:00
if (isLocalToUnit())
2010-05-27 15:15:58 +00:00
OS << " [local] ";
2009-07-04 13:58:26 +00:00
if (isDefinition())
2010-05-27 15:15:58 +00:00
OS << " [def] ";
2009-07-04 13:58:26 +00:00
2010-05-27 15:15:58 +00:00
OS << "\n";
2009-07-04 13:58:26 +00:00
}
2010-05-27 15:15:58 +00:00
/// print - Print global variable.
void DIGlobalVariable::print(raw_ostream &OS) const {
OS << " [";
2009-12-01 11:07:05 +00:00
StringRef Res = getName();
if (!Res.empty())
2010-05-27 15:15:58 +00:00
OS << " [" << Res << "] ";
2009-10-14 17:57:32 +00:00
unsigned Tag = getTag();
2010-05-27 15:15:58 +00:00
OS << " [" << dwarf::TagString(Tag) << "] ";
2009-10-14 17:57:32 +00:00
// TODO : Print context
2010-05-27 15:15:58 +00:00
getCompileUnit().print(OS);
OS << " [" << getLineNumber() << "] ";
2009-10-14 17:57:32 +00:00
if (isLocalToUnit())
2010-05-27 15:15:58 +00:00
OS << " [local] ";
2009-10-14 17:57:32 +00:00
if (isDefinition())
2010-05-27 15:15:58 +00:00
OS << " [def] ";
if (isGlobalVariable())
DIGlobalVariable(DbgNode).print(OS);
OS << "]\n";
}
/// print - Print variable.
void DIVariable::print(raw_ostream &OS) const {
StringRef Res = getName();
if (!Res.empty())
OS << " [" << Res << "] ";
getCompileUnit().print(OS);
OS << " [" << getLineNumber() << "] ";
getType().print(OS);
OS << "\n";
// FIXME: Dump complex addresses
}
/// 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';
}
2009-10-14 17:57:32 +00:00
2010-05-27 15:15:58 +00:00
/// 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';
2009-07-04 13:58:26 +00:00
}
/// dump - Print global variable.
void DIGlobalVariable::dump() const {
2010-05-27 15:15:58 +00:00
print(dbgs()); dbgs() << '\n';
2009-07-04 13:58:26 +00:00
}
/// dump - Print variable.
void DIVariable::dump() const {
2010-05-27 15:15:58 +00:00
print(dbgs()); dbgs() << '\n';
2009-07-04 13:58:26 +00:00
}
2009-06-02 17:52:33 +00:00
//===----------------------------------------------------------------------===//
// DIFactory: Basic Helpers
//===----------------------------------------------------------------------===//
DIFactory::DIFactory(Module &m)
2010-01-23 11:09:33 +00:00
: M(m), VMContext(M.getContext()), DeclareFn(0), ValueFn(0) {}
2009-06-02 17:52:33 +00:00
Constant *DIFactory::GetTagConstant(unsigned TAG) {
assert((TAG & LLVMDebugVersionMask) == 0 &&
"Tag too large for debug encoding!");
2009-10-14 17:57:32 +00:00
return ConstantInt::get(Type::getInt32Ty(VMContext), TAG | LLVMDebugVersion);
2009-06-02 17:52:33 +00:00
}
//===----------------------------------------------------------------------===//
// DIFactory: Primary Constructors
//===----------------------------------------------------------------------===//
2009-10-14 17:57:32 +00:00
/// GetOrCreateArray - Create an descriptor for an array of descriptors.
2009-06-02 17:52:33 +00:00
/// This implicitly uniques the arrays created.
DIArray DIFactory::GetOrCreateArray(DIDescriptor *Tys, unsigned NumTys) {
if (NumTys == 0) {
Value *Null = llvm::Constant::getNullValue(Type::getInt32Ty(VMContext));
return DIArray(MDNode::get(VMContext, &Null, 1));
}
2009-10-14 17:57:32 +00:00
SmallVector<Value *, 16> Elts(Tys, Tys+NumTys);
return DIArray(MDNode::get(VMContext, Elts.data(), Elts.size()));
2009-06-02 17:52:33 +00:00
}
/// GetOrCreateSubrange - Create a descriptor for a value range. This
/// implicitly uniques the values returned.
DISubrange DIFactory::GetOrCreateSubrange(int64_t Lo, int64_t Hi) {
2009-10-14 17:57:32 +00:00
Value *Elts[] = {
2009-06-02 17:52:33 +00:00
GetTagConstant(dwarf::DW_TAG_subrange_type),
2009-10-14 17:57:32 +00:00
ConstantInt::get(Type::getInt64Ty(VMContext), Lo),
ConstantInt::get(Type::getInt64Ty(VMContext), Hi)
2009-06-02 17:52:33 +00:00
};
2009-10-14 17:57:32 +00:00
return DISubrange(MDNode::get(VMContext, &Elts[0], 3));
2009-06-02 17:52:33 +00:00
}
/// CreateUnspecifiedParameter - Create unspeicified type descriptor
/// for the subroutine type.
DIDescriptor DIFactory::CreateUnspecifiedParameter() {
Value *Elts[] = {
GetTagConstant(dwarf::DW_TAG_unspecified_parameters)
};
return DIDescriptor(MDNode::get(VMContext, &Elts[0], 1));
}
2009-06-02 17:52:33 +00:00
/// CreateCompileUnit - Create a new descriptor for the specified compile
/// unit. Note that this does not unique compile units within the module.
DICompileUnit DIFactory::CreateCompileUnit(unsigned LangID,
2009-12-01 11:07:05 +00:00
StringRef Filename,
StringRef Directory,
StringRef Producer,
2009-06-02 17:52:33 +00:00
bool isMain,
bool isOptimized,
2009-12-01 11:07:05 +00:00
StringRef Flags,
2009-06-02 17:52:33 +00:00
unsigned RunTimeVer) {
2009-10-14 17:57:32 +00:00
Value *Elts[] = {
2009-06-02 17:52:33 +00:00
GetTagConstant(dwarf::DW_TAG_compile_unit),
2009-10-14 17:57:32 +00:00
llvm::Constant::getNullValue(Type::getInt32Ty(VMContext)),
ConstantInt::get(Type::getInt32Ty(VMContext), LangID),
MDString::get(VMContext, Filename),
MDString::get(VMContext, Directory),
MDString::get(VMContext, Producer),
ConstantInt::get(Type::getInt1Ty(VMContext), isMain),
ConstantInt::get(Type::getInt1Ty(VMContext), isOptimized),
MDString::get(VMContext, Flags),
ConstantInt::get(Type::getInt32Ty(VMContext), RunTimeVer)
2009-06-02 17:52:33 +00:00
};
2009-10-14 17:57:32 +00:00
return DICompileUnit(MDNode::get(VMContext, &Elts[0], 10));
2009-06-02 17:52:33 +00:00
}
2010-03-10 17:45:15 +00:00
/// CreateFile - Create a new descriptor for the specified file.
DIFile DIFactory::CreateFile(StringRef Filename,
StringRef Directory,
DICompileUnit CU) {
Value *Elts[] = {
GetTagConstant(dwarf::DW_TAG_file_type),
MDString::get(VMContext, Filename),
MDString::get(VMContext, Directory),
2010-05-27 15:15:58 +00:00
CU
2010-03-10 17:45:15 +00:00
};
return DIFile(MDNode::get(VMContext, &Elts[0], 4));
}
2009-06-02 17:52:33 +00:00
/// CreateEnumerator - Create a single enumerator value.
2009-12-01 11:07:05 +00:00
DIEnumerator DIFactory::CreateEnumerator(StringRef Name, uint64_t Val){
2009-10-14 17:57:32 +00:00
Value *Elts[] = {
2009-06-02 17:52:33 +00:00
GetTagConstant(dwarf::DW_TAG_enumerator),
2009-10-14 17:57:32 +00:00
MDString::get(VMContext, Name),
ConstantInt::get(Type::getInt64Ty(VMContext), Val)
2009-06-02 17:52:33 +00:00
};
2009-10-14 17:57:32 +00:00
return DIEnumerator(MDNode::get(VMContext, &Elts[0], 3));
2009-06-02 17:52:33 +00:00
}
/// CreateBasicType - Create a basic type like int, float, etc.
DIBasicType DIFactory::CreateBasicType(DIDescriptor Context,
2009-12-01 11:07:05 +00:00
StringRef Name,
2010-03-10 17:45:15 +00:00
DIFile F,
2009-06-02 17:52:33 +00:00
unsigned LineNumber,
uint64_t SizeInBits,
uint64_t AlignInBits,
uint64_t OffsetInBits, unsigned Flags,
unsigned Encoding) {
2009-10-14 17:57:32 +00:00
Value *Elts[] = {
2009-06-02 17:52:33 +00:00
GetTagConstant(dwarf::DW_TAG_base_type),
2010-05-27 15:15:58 +00:00
Context,
2009-10-14 17:57:32 +00:00
MDString::get(VMContext, Name),
2010-05-27 15:15:58 +00:00
F,
2009-10-14 17:57:32 +00:00
ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits),
ConstantInt::get(Type::getInt64Ty(VMContext), AlignInBits),
ConstantInt::get(Type::getInt64Ty(VMContext), OffsetInBits),
ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
ConstantInt::get(Type::getInt32Ty(VMContext), Encoding)
2009-06-02 17:52:33 +00:00
};
2009-10-14 17:57:32 +00:00
return DIBasicType(MDNode::get(VMContext, &Elts[0], 10));
2009-06-02 17:52:33 +00:00
}
2009-11-04 14:58:56 +00:00
/// CreateBasicType - Create a basic type like int, float, etc.
DIBasicType DIFactory::CreateBasicTypeEx(DIDescriptor Context,
2009-12-01 11:07:05 +00:00
StringRef Name,
2010-03-10 17:45:15 +00:00
DIFile F,
2009-11-04 14:58:56 +00:00
unsigned LineNumber,
Constant *SizeInBits,
Constant *AlignInBits,
Constant *OffsetInBits, unsigned Flags,
unsigned Encoding) {
Value *Elts[] = {
GetTagConstant(dwarf::DW_TAG_base_type),
2010-05-27 15:15:58 +00:00
Context,
2009-11-04 14:58:56 +00:00
MDString::get(VMContext, Name),
2010-05-27 15:15:58 +00:00
F,
2009-11-04 14:58:56 +00:00
ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
SizeInBits,
AlignInBits,
OffsetInBits,
ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
ConstantInt::get(Type::getInt32Ty(VMContext), Encoding)
};
return DIBasicType(MDNode::get(VMContext, &Elts[0], 10));
}
2010-02-16 09:30:23 +00:00
/// CreateArtificialType - Create a new DIType with "artificial" flag set.
DIType DIFactory::CreateArtificialType(DIType Ty) {
if (Ty.isArtificial())
return Ty;
SmallVector<Value *, 9> Elts;
2010-05-27 15:15:58 +00:00
MDNode *N = Ty;
2010-02-16 09:30:23 +00:00
assert (N && "Unexpected input DIType!");
for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
if (Value *V = N->getOperand(i))
Elts.push_back(V);
else
Elts.push_back(Constant::getNullValue(Type::getInt32Ty(VMContext)));
}
unsigned CurFlags = Ty.getFlags();
CurFlags = CurFlags | DIType::FlagArtificial;
// Flags are stored at this slot.
Elts[8] = ConstantInt::get(Type::getInt32Ty(VMContext), CurFlags);
return DIType(MDNode::get(VMContext, Elts.data(), Elts.size()));
}
2009-11-04 14:58:56 +00:00
2009-06-02 17:52:33 +00:00
/// CreateDerivedType - Create a derived type like const qualified type,
/// pointer, typedef, etc.
DIDerivedType DIFactory::CreateDerivedType(unsigned Tag,
DIDescriptor Context,
2009-12-01 11:07:05 +00:00
StringRef Name,
2010-03-10 17:45:15 +00:00
DIFile F,
2009-06-02 17:52:33 +00:00
unsigned LineNumber,
uint64_t SizeInBits,
uint64_t AlignInBits,
uint64_t OffsetInBits,
unsigned Flags,
DIType DerivedFrom) {
2009-10-14 17:57:32 +00:00
Value *Elts[] = {
2009-06-02 17:52:33 +00:00
GetTagConstant(Tag),
2010-05-27 15:15:58 +00:00
Context,
2009-10-14 17:57:32 +00:00
MDString::get(VMContext, Name),
2010-05-27 15:15:58 +00:00
F,
2009-10-14 17:57:32 +00:00
ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits),
ConstantInt::get(Type::getInt64Ty(VMContext), AlignInBits),
ConstantInt::get(Type::getInt64Ty(VMContext), OffsetInBits),
ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
2010-05-27 15:15:58 +00:00
DerivedFrom,
2009-06-02 17:52:33 +00:00
};
2009-10-14 17:57:32 +00:00
return DIDerivedType(MDNode::get(VMContext, &Elts[0], 10));
2009-06-02 17:52:33 +00:00
}
2009-11-04 14:58:56 +00:00
/// CreateDerivedType - Create a derived type like const qualified type,
/// pointer, typedef, etc.
DIDerivedType DIFactory::CreateDerivedTypeEx(unsigned Tag,
DIDescriptor Context,
2009-12-01 11:07:05 +00:00
StringRef Name,
2010-03-10 17:45:15 +00:00
DIFile F,
2009-11-04 14:58:56 +00:00
unsigned LineNumber,
Constant *SizeInBits,
Constant *AlignInBits,
Constant *OffsetInBits,
unsigned Flags,
DIType DerivedFrom) {
Value *Elts[] = {
GetTagConstant(Tag),
2010-05-27 15:15:58 +00:00
Context,
2009-11-04 14:58:56 +00:00
MDString::get(VMContext, Name),
2010-05-27 15:15:58 +00:00
F,
2009-11-04 14:58:56 +00:00
ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
SizeInBits,
AlignInBits,
OffsetInBits,
ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
2010-05-27 15:15:58 +00:00
DerivedFrom,
2009-11-04 14:58:56 +00:00
};
return DIDerivedType(MDNode::get(VMContext, &Elts[0], 10));
}
2009-06-02 17:52:33 +00:00
/// CreateCompositeType - Create a composite type like array, struct, etc.
DICompositeType DIFactory::CreateCompositeType(unsigned Tag,
DIDescriptor Context,
2009-12-01 11:07:05 +00:00
StringRef Name,
2010-03-10 17:45:15 +00:00
DIFile F,
2009-06-02 17:52:33 +00:00
unsigned LineNumber,
uint64_t SizeInBits,
uint64_t AlignInBits,
uint64_t OffsetInBits,
unsigned Flags,
DIType DerivedFrom,
DIArray Elements,
2010-02-16 09:30:23 +00:00
unsigned RuntimeLang,
MDNode *ContainingType) {
2009-06-02 17:52:33 +00:00
2009-10-14 17:57:32 +00:00
Value *Elts[] = {
2009-06-02 17:52:33 +00:00
GetTagConstant(Tag),
2010-05-27 15:15:58 +00:00
Context,
2009-10-14 17:57:32 +00:00
MDString::get(VMContext, Name),
2010-05-27 15:15:58 +00:00
F,
2009-10-14 17:57:32 +00:00
ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits),
ConstantInt::get(Type::getInt64Ty(VMContext), AlignInBits),
ConstantInt::get(Type::getInt64Ty(VMContext), OffsetInBits),
ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
2010-05-27 15:15:58 +00:00
DerivedFrom,
Elements,
2010-02-16 09:30:23 +00:00
ConstantInt::get(Type::getInt32Ty(VMContext), RuntimeLang),
ContainingType
2009-06-02 17:52:33 +00:00
};
MDNode *Node = MDNode::get(VMContext, &Elts[0], 13);
// Create a named metadata so that we do not lose this enum info.
if (Tag == dwarf::DW_TAG_enumeration_type) {
NamedMDNode *NMD = M.getOrInsertNamedMetadata("llvm.dbg.enum");
NMD->addOperand(Node);
}
return DICompositeType(Node);
}
/// CreateTemporaryType - Create a temporary forward-declared type.
DIType DIFactory::CreateTemporaryType() {
// Give the temporary MDNode a tag. It doesn't matter what tag we
// use here as long as DIType accepts it.
Value *Elts[] = {
GetTagConstant(DW_TAG_base_type)
};
MDNode *Node = MDNode::getTemporary(VMContext, Elts, array_lengthof(Elts));
return DIType(Node);
2009-06-02 17:52:33 +00:00
}
/// CreateTemporaryType - Create a temporary forward-declared type.
DIType DIFactory::CreateTemporaryType(DIFile F) {
// Give the temporary MDNode a tag. It doesn't matter what tag we
// use here as long as DIType accepts it.
Value *Elts[] = {
GetTagConstant(DW_TAG_base_type),
F.getCompileUnit(),
NULL,
F
};
MDNode *Node = MDNode::getTemporary(VMContext, Elts, array_lengthof(Elts));
return DIType(Node);
}
2009-06-02 17:52:33 +00:00
2009-11-04 14:58:56 +00:00
/// CreateCompositeType - Create a composite type like array, struct, etc.
DICompositeType DIFactory::CreateCompositeTypeEx(unsigned Tag,
DIDescriptor Context,
2009-12-01 11:07:05 +00:00
StringRef Name,
2010-03-10 17:45:15 +00:00
DIFile F,
2009-11-04 14:58:56 +00:00
unsigned LineNumber,
Constant *SizeInBits,
Constant *AlignInBits,
Constant *OffsetInBits,
unsigned Flags,
DIType DerivedFrom,
DIArray Elements,
unsigned RuntimeLang,
MDNode *ContainingType) {
2009-11-04 14:58:56 +00:00
Value *Elts[] = {
GetTagConstant(Tag),
2010-05-27 15:15:58 +00:00
Context,
2009-11-04 14:58:56 +00:00
MDString::get(VMContext, Name),
2010-05-27 15:15:58 +00:00
F,
2009-11-04 14:58:56 +00:00
ConstantInt::get(Type::getInt32Ty(VMContext), LineNumber),
SizeInBits,
AlignInBits,
OffsetInBits,
ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
2010-05-27 15:15:58 +00:00
DerivedFrom,
Elements,
ConstantInt::get(Type::getInt32Ty(VMContext), RuntimeLang),
ContainingType
2009-11-04 14:58:56 +00:00
};
MDNode *Node = MDNode::get(VMContext, &Elts[0], 13);
// Create a named metadata so that we do not lose this enum info.
if (Tag == dwarf::DW_TAG_enumeration_type) {
NamedMDNode *NMD = M.getOrInsertNamedMetadata("llvm.dbg.enum");
NMD->addOperand(Node);
}
return DICompositeType(Node);
2009-11-04 14:58:56 +00:00
}
2009-06-02 17:52:33 +00:00
/// CreateSubprogram - Create a new descriptor for the specified subprogram.
/// See comments in DISubprogram for descriptions of these fields. This
/// method does not unique the generated descriptors.
2009-10-14 17:57:32 +00:00
DISubprogram DIFactory::CreateSubprogram(DIDescriptor Context,
2009-12-01 11:07:05 +00:00
StringRef Name,
StringRef DisplayName,
StringRef LinkageName,
2010-03-10 17:45:15 +00:00
DIFile F,
2010-01-23 11:09:33 +00:00
unsigned LineNo, DIType Ty,
2009-06-02 17:52:33 +00:00
bool isLocalToUnit,
2009-12-15 18:09:07 +00:00
bool isDefinition,
unsigned VK, unsigned VIndex,
2010-02-16 09:30:23 +00:00
DIType ContainingType,
unsigned Flags,
2010-07-13 17:19:57 +00:00
bool isOptimized,
Function *Fn) {
2009-06-02 17:52:33 +00:00
2009-10-14 17:57:32 +00:00
Value *Elts[] = {
2009-06-02 17:52:33 +00:00
GetTagConstant(dwarf::DW_TAG_subprogram),
2009-10-14 17:57:32 +00:00
llvm::Constant::getNullValue(Type::getInt32Ty(VMContext)),
2010-05-27 15:15:58 +00:00
Context,
2009-10-14 17:57:32 +00:00
MDString::get(VMContext, Name),
MDString::get(VMContext, DisplayName),
MDString::get(VMContext, LinkageName),
2010-05-27 15:15:58 +00:00
F,
2009-10-14 17:57:32 +00:00
ConstantInt::get(Type::getInt32Ty(VMContext), LineNo),
2010-05-27 15:15:58 +00:00
Ty,
2009-10-14 17:57:32 +00:00
ConstantInt::get(Type::getInt1Ty(VMContext), isLocalToUnit),
2009-12-15 18:09:07 +00:00
ConstantInt::get(Type::getInt1Ty(VMContext), isDefinition),
ConstantInt::get(Type::getInt32Ty(VMContext), (unsigned)VK),
ConstantInt::get(Type::getInt32Ty(VMContext), VIndex),
2010-05-27 15:15:58 +00:00
ContainingType,
ConstantInt::get(Type::getInt32Ty(VMContext), Flags),
2010-07-13 17:19:57 +00:00
ConstantInt::get(Type::getInt1Ty(VMContext), isOptimized),
Fn
2009-06-02 17:52:33 +00:00
};
2010-07-13 17:19:57 +00:00
MDNode *Node = MDNode::get(VMContext, &Elts[0], 17);
// Create a named metadata so that we do not lose this mdnode.
NamedMDNode *NMD = M.getOrInsertNamedMetadata("llvm.dbg.sp");
NMD->addOperand(Node);
return DISubprogram(Node);
2009-12-15 18:09:07 +00:00
}
/// CreateSubprogramDefinition - Create new subprogram descriptor for the
/// given declaration.
DISubprogram DIFactory::CreateSubprogramDefinition(DISubprogram &SPDeclaration){
2009-12-15 18:09:07 +00:00
if (SPDeclaration.isDefinition())
2010-05-27 15:15:58 +00:00
return DISubprogram(SPDeclaration);
2009-12-15 18:09:07 +00:00
2010-05-27 15:15:58 +00:00
MDNode *DeclNode = SPDeclaration;
2009-12-15 18:09:07 +00:00
Value *Elts[] = {
GetTagConstant(dwarf::DW_TAG_subprogram),
llvm::Constant::getNullValue(Type::getInt32Ty(VMContext)),
2010-01-01 10:31:22 +00:00
DeclNode->getOperand(2), // Context
DeclNode->getOperand(3), // Name
DeclNode->getOperand(4), // DisplayName
DeclNode->getOperand(5), // LinkageName
DeclNode->getOperand(6), // CompileUnit
DeclNode->getOperand(7), // LineNo
DeclNode->getOperand(8), // Type
DeclNode->getOperand(9), // isLocalToUnit
2009-12-15 18:09:07 +00:00
ConstantInt::get(Type::getInt1Ty(VMContext), true),
2010-01-01 10:31:22 +00:00
DeclNode->getOperand(11), // Virtuality
DeclNode->getOperand(12), // VIndex
2010-02-16 09:30:23 +00:00
DeclNode->getOperand(13), // Containting Type
DeclNode->getOperand(14), // Flags
2010-07-13 17:19:57 +00:00
DeclNode->getOperand(15), // isOptimized
SPDeclaration.getFunction()
2009-12-15 18:09:07 +00:00
};
2010-07-13 17:19:57 +00:00
MDNode *Node =MDNode::get(VMContext, &Elts[0], 16);
// Create a named metadata so that we do not lose this mdnode.
NamedMDNode *NMD = M.getOrInsertNamedMetadata("llvm.dbg.sp");
NMD->addOperand(Node);
return DISubprogram(Node);
2009-06-02 17:52:33 +00:00
}
/// CreateGlobalVariable - Create a new descriptor for the specified global.
DIGlobalVariable
2009-12-01 11:07:05 +00:00
DIFactory::CreateGlobalVariable(DIDescriptor Context, StringRef Name,
StringRef DisplayName,
StringRef LinkageName,
2010-03-10 17:45:15 +00:00
DIFile F,
2010-01-23 11:09:33 +00:00
unsigned LineNo, DIType Ty,bool isLocalToUnit,
2009-06-02 17:52:33 +00:00
bool isDefinition, llvm::GlobalVariable *Val) {
2009-10-14 17:57:32 +00:00
Value *Elts[] = {
2009-06-02 17:52:33 +00:00
GetTagConstant(dwarf::DW_TAG_variable),
2009-10-14 17:57:32 +00:00
llvm::Constant::getNullValue(Type::getInt32Ty(VMContext)),
2010-05-27 15:15:58 +00:00
Context,
2009-10-14 17:57:32 +00:00
MDString::get(VMContext, Name),
MDString::get(VMContext, DisplayName),
MDString::get(VMContext, LinkageName),
2010-05-27 15:15:58 +00:00
F,
2009-10-14 17:57:32 +00:00
ConstantInt::get(Type::getInt32Ty(VMContext), LineNo),
2010-05-27 15:15:58 +00:00
Ty,
2009-10-14 17:57:32 +00:00
ConstantInt::get(Type::getInt1Ty(VMContext), isLocalToUnit),
ConstantInt::get(Type::getInt1Ty(VMContext), isDefinition),
Val
2009-06-02 17:52:33 +00:00
};
2009-10-14 17:57:32 +00:00
Value *const *Vs = &Elts[0];
MDNode *Node = MDNode::get(VMContext,Vs, 12);
// Create a named metadata so that we do not lose this mdnode.
NamedMDNode *NMD = M.getOrInsertNamedMetadata("llvm.dbg.gv");
2010-01-01 10:31:22 +00:00
NMD->addOperand(Node);
2009-10-14 17:57:32 +00:00
return DIGlobalVariable(Node);
2009-06-02 17:52:33 +00:00
}
/// CreateGlobalVariable - Create a new descriptor for the specified constant.
DIGlobalVariable
DIFactory::CreateGlobalVariable(DIDescriptor Context, StringRef Name,
StringRef DisplayName,
StringRef LinkageName,
DIFile F,
unsigned LineNo, DIType Ty,bool isLocalToUnit,
bool isDefinition, llvm::Constant *Val) {
Value *Elts[] = {
GetTagConstant(dwarf::DW_TAG_variable),
llvm::Constant::getNullValue(Type::getInt32Ty(VMContext)),
Context,
MDString::get(VMContext, Name),
MDString::get(VMContext, DisplayName),
MDString::get(VMContext, LinkageName),
F,
ConstantInt::get(Type::getInt32Ty(VMContext), LineNo),
Ty,
ConstantInt::get(Type::getInt1Ty(VMContext), isLocalToUnit),
ConstantInt::get(Type::getInt1Ty(VMContext), isDefinition),
Val
};
Value *const *Vs = &Elts[0];
MDNode *Node = MDNode::get(VMContext,Vs, 12);
// Create a named metadata so that we do not lose this mdnode.
NamedMDNode *NMD = M.getOrInsertNamedMetadata("llvm.dbg.gv");
NMD->addOperand(Node);
return DIGlobalVariable(Node);
}
2009-06-02 17:52:33 +00: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];
if (C == '[' || C == ']' || C == ' ' || C == ':' || C == '+' ||
C == '(' || C == ')')
Str[i] = '.';
}
}
/// 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));
}
/// 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));
}
2009-06-02 17:52:33 +00:00
/// CreateVariable - Create a new descriptor for the specified variable.
DIVariable DIFactory::CreateVariable(unsigned Tag, DIDescriptor Context,
2009-12-01 11:07:05 +00:00
StringRef Name,
2010-03-10 17:45:15 +00:00
DIFile F,
unsigned LineNo,
DIType Ty, bool AlwaysPreserve,
unsigned Flags) {
2009-10-14 17:57:32 +00:00
Value *Elts[] = {
2009-06-02 17:52:33 +00:00
GetTagConstant(Tag),
2010-05-27 15:15:58 +00:00
Context,
2009-10-14 17:57:32 +00:00
MDString::get(VMContext, Name),
2010-05-27 15:15:58 +00:00
F,
2009-10-14 17:57:32 +00:00
ConstantInt::get(Type::getInt32Ty(VMContext), LineNo),
2010-05-27 15:15:58 +00:00
Ty,
ConstantInt::get(Type::getInt32Ty(VMContext), Flags)
2009-06-02 17:52:33 +00:00
};
MDNode *Node = MDNode::get(VMContext, &Elts[0], 7);
2010-05-27 15:15:58 +00:00
if (AlwaysPreserve) {
// The optimizer may remove local variable. If there is an interest
// to preserve variable info in such situation then stash it in a
// named mdnode.
2010-07-13 17:19:57 +00:00
DISubprogram Fn(getDISubprogram(Context));
StringRef FName = "fn";
if (Fn.getFunction())
FName = Fn.getFunction()->getName();
char One = '\1';
if (FName.startswith(StringRef(&One, 1)))
FName = FName.substr(1);
NamedMDNode *FnLocals = getOrInsertFnSpecificMDNode(M, FName);
2010-07-13 17:19:57 +00:00
FnLocals->addOperand(Node);
2010-05-27 15:15:58 +00:00
}
return DIVariable(Node);
2009-10-14 17:57:32 +00:00
}
/// CreateComplexVariable - Create a new descriptor for the specified variable
/// which has a complex address expression for its address.
DIVariable DIFactory::CreateComplexVariable(unsigned Tag, DIDescriptor Context,
StringRef Name, DIFile F,
2009-10-14 17:57:32 +00:00
unsigned LineNo,
DIType Ty, Value *const *Addr,
unsigned NumAddr) {
SmallVector<Value *, 15> Elts;
2009-10-14 17:57:32 +00:00
Elts.push_back(GetTagConstant(Tag));
2010-05-27 15:15:58 +00:00
Elts.push_back(Context);
2009-10-14 17:57:32 +00:00
Elts.push_back(MDString::get(VMContext, Name));
2010-05-27 15:15:58 +00:00
Elts.push_back(F);
2009-10-14 17:57:32 +00:00
Elts.push_back(ConstantInt::get(Type::getInt32Ty(VMContext), LineNo));
2010-05-27 15:15:58 +00:00
Elts.push_back(Ty);
Elts.append(Addr, Addr+NumAddr);
2009-10-14 17:57:32 +00:00
return DIVariable(MDNode::get(VMContext, Elts.data(), Elts.size()));
2009-06-02 17:52:33 +00:00
}
/// CreateBlock - This creates a descriptor for a lexical block with the
2009-10-14 17:57:32 +00:00
/// specified parent VMContext.
2010-03-03 17:27:15 +00:00
DILexicalBlock DIFactory::CreateLexicalBlock(DIDescriptor Context,
DIFile F, unsigned LineNo,
unsigned Col) {
// Defeat MDNode uniqing for lexical blocks.
static unsigned int unique_id = 0;
2009-10-14 17:57:32 +00:00
Value *Elts[] = {
2009-06-02 17:52:33 +00:00
GetTagConstant(dwarf::DW_TAG_lexical_block),
2010-05-27 15:15:58 +00:00
Context,
2010-03-03 17:27:15 +00:00
ConstantInt::get(Type::getInt32Ty(VMContext), LineNo),
ConstantInt::get(Type::getInt32Ty(VMContext), Col),
F,
ConstantInt::get(Type::getInt32Ty(VMContext), unique_id++)
2009-10-14 17:57:32 +00:00
};
return DILexicalBlock(MDNode::get(VMContext, &Elts[0], 6));
2009-10-14 17:57:32 +00:00
}
2010-01-01 10:31:22 +00:00
/// CreateNameSpace - This creates new descriptor for a namespace
/// with the specified parent context.
DINameSpace DIFactory::CreateNameSpace(DIDescriptor Context, StringRef Name,
2010-03-10 17:45:15 +00:00
DIFile F,
2010-01-01 10:31:22 +00:00
unsigned LineNo) {
Value *Elts[] = {
GetTagConstant(dwarf::DW_TAG_namespace),
2010-05-27 15:15:58 +00:00
Context,
2010-01-01 10:31:22 +00:00
MDString::get(VMContext, Name),
2010-05-27 15:15:58 +00:00
F,
2010-01-01 10:31:22 +00:00
ConstantInt::get(Type::getInt32Ty(VMContext), LineNo)
};
return DINameSpace(MDNode::get(VMContext, &Elts[0], 5));
}
2009-10-14 17:57:32 +00:00
/// CreateLocation - Creates a debug info location.
DILocation DIFactory::CreateLocation(unsigned LineNo, unsigned ColumnNo,
DIScope S, DILocation OrigLoc) {
Value *Elts[] = {
ConstantInt::get(Type::getInt32Ty(VMContext), LineNo),
ConstantInt::get(Type::getInt32Ty(VMContext), ColumnNo),
2010-05-27 15:15:58 +00:00
S,
OrigLoc,
2009-06-02 17:52:33 +00:00
};
2009-10-14 17:57:32 +00:00
return DILocation(MDNode::get(VMContext, &Elts[0], 4));
2009-06-02 17:52:33 +00:00
}
//===----------------------------------------------------------------------===//
// DIFactory: Routines for inserting code into a function
//===----------------------------------------------------------------------===//
/// InsertDeclare - Insert a new llvm.dbg.declare intrinsic call.
2009-11-18 14:58:34 +00:00
Instruction *DIFactory::InsertDeclare(Value *Storage, DIVariable D,
2010-01-15 15:37:28 +00:00
Instruction *InsertBefore) {
2010-02-16 09:30:23 +00:00
assert(Storage && "no storage passed to dbg.declare");
2010-05-27 15:15:58 +00:00
assert(D.Verify() && "empty DIVariable passed to dbg.declare");
2009-06-02 17:52:33 +00:00
if (!DeclareFn)
DeclareFn = Intrinsic::getDeclaration(&M, Intrinsic::dbg_declare);
2010-01-23 11:09:33 +00:00
Value *Args[] = { MDNode::get(Storage->getContext(), &Storage, 1),
2010-05-27 15:15:58 +00:00
D };
2009-11-18 14:58:34 +00:00
return CallInst::Create(DeclareFn, Args, Args+2, "", InsertBefore);
2009-10-14 17:57:32 +00:00
}
/// InsertDeclare - Insert a new llvm.dbg.declare intrinsic call.
2009-11-18 14:58:34 +00:00
Instruction *DIFactory::InsertDeclare(Value *Storage, DIVariable D,
2010-01-15 15:37:28 +00:00
BasicBlock *InsertAtEnd) {
2010-02-16 09:30:23 +00:00
assert(Storage && "no storage passed to dbg.declare");
2010-05-27 15:15:58 +00:00
assert(D.Verify() && "invalid DIVariable passed to dbg.declare");
2009-10-14 17:57:32 +00:00
if (!DeclareFn)
DeclareFn = Intrinsic::getDeclaration(&M, Intrinsic::dbg_declare);
2010-01-23 11:09:33 +00:00
Value *Args[] = { MDNode::get(Storage->getContext(), &Storage, 1),
2010-05-27 15:15:58 +00:00
D };
2010-02-16 09:30:23 +00:00
// If this block already has a terminator then insert this intrinsic
// before the terminator.
if (TerminatorInst *T = InsertAtEnd->getTerminator())
2010-02-16 09:30:23 +00:00
return CallInst::Create(DeclareFn, Args, Args+2, "", T);
else
return CallInst::Create(DeclareFn, Args, Args+2, "", InsertAtEnd);}
2009-10-14 17:57:32 +00:00
2009-12-15 18:09:07 +00:00
/// InsertDbgValueIntrinsic - Insert a new llvm.dbg.value intrinsic call.
2010-01-15 15:37:28 +00:00
Instruction *DIFactory::InsertDbgValueIntrinsic(Value *V, uint64_t Offset,
2009-12-15 18:09:07 +00:00
DIVariable D,
Instruction *InsertBefore) {
assert(V && "no value passed to dbg.value");
2010-05-27 15:15:58 +00:00
assert(D.Verify() && "invalid DIVariable passed to dbg.value");
2009-12-15 18:09:07 +00:00
if (!ValueFn)
ValueFn = Intrinsic::getDeclaration(&M, Intrinsic::dbg_value);
2010-01-23 11:09:33 +00:00
Value *Args[] = { MDNode::get(V->getContext(), &V, 1),
2010-01-15 15:37:28 +00:00
ConstantInt::get(Type::getInt64Ty(V->getContext()), Offset),
2010-05-27 15:15:58 +00:00
D };
2009-12-15 18:09:07 +00:00
return CallInst::Create(ValueFn, Args, Args+3, "", InsertBefore);
}
/// InsertDbgValueIntrinsic - Insert a new llvm.dbg.value intrinsic call.
2010-01-15 15:37:28 +00:00
Instruction *DIFactory::InsertDbgValueIntrinsic(Value *V, uint64_t Offset,
2009-12-15 18:09:07 +00:00
DIVariable D,
BasicBlock *InsertAtEnd) {
assert(V && "no value passed to dbg.value");
2010-05-27 15:15:58 +00:00
assert(D.Verify() && "invalid DIVariable passed to dbg.value");
2009-12-15 18:09:07 +00:00
if (!ValueFn)
ValueFn = Intrinsic::getDeclaration(&M, Intrinsic::dbg_value);
Value *Args[] = { MDNode::get(V->getContext(), &V, 1),
2010-01-15 15:37:28 +00:00
ConstantInt::get(Type::getInt64Ty(V->getContext()), Offset),
2010-05-27 15:15:58 +00:00
D };
2009-12-15 18:09:07 +00:00
return CallInst::Create(ValueFn, Args, Args+3, "", InsertAtEnd);
}
2009-10-14 17:57:32 +00:00
// RecordType - Record DIType in a module such that it is not lost even if
// it is not referenced through debug info anchors.
void DIFactory::RecordType(DIType T) {
NamedMDNode *NMD = M.getOrInsertNamedMetadata("llvm.dbg.ty");
NMD->addOperand(T);
}
2009-10-14 17:57:32 +00:00
//===----------------------------------------------------------------------===//
// DebugInfoFinder implementations.
//===----------------------------------------------------------------------===//
/// processModule - Process entire module and collect debug info.
void DebugInfoFinder::processModule(Module &M) {
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 16:11:02 +00:00
if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(BI))
2009-10-14 17:57:32 +00:00
processDeclare(DDI);
2010-04-03 07:51:10 +00:00
DebugLoc Loc = BI->getDebugLoc();
if (Loc.isUnknown())
continue;
2010-04-03 07:51:10 +00:00
LLVMContext &Ctx = BI->getContext();
DIDescriptor Scope(Loc.getScope(Ctx));
2010-04-03 07:51:10 +00:00
if (Scope.isCompileUnit())
2010-05-27 15:15:58 +00:00
addCompileUnit(DICompileUnit(Scope));
2010-04-03 07:51:10 +00:00
else if (Scope.isSubprogram())
2010-05-27 15:15:58 +00:00
processSubprogram(DISubprogram(Scope));
2010-04-03 07:51:10 +00:00
else if (Scope.isLexicalBlock())
2010-05-27 15:15:58 +00:00
processLexicalBlock(DILexicalBlock(Scope));
2010-04-03 07:51:10 +00:00
if (MDNode *IA = Loc.getInlinedAt(Ctx))
processLocation(DILocation(IA));
2009-10-14 17:57:32 +00:00
}
2010-07-13 17:19:57 +00: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-10-14 17:57:32 +00:00
}
}
2010-07-13 17:19:57 +00: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-10-14 17:57:32 +00:00
}
2009-11-18 14:58:34 +00:00
/// processLocation - Process DILocation.
void DebugInfoFinder::processLocation(DILocation Loc) {
2010-03-10 17:45:15 +00:00
if (!Loc.Verify()) return;
2010-05-27 15:15:58 +00:00
DIDescriptor S(Loc.getScope());
2009-11-18 14:58:34 +00:00
if (S.isCompileUnit())
2010-05-27 15:15:58 +00:00
addCompileUnit(DICompileUnit(S));
2009-11-18 14:58:34 +00:00
else if (S.isSubprogram())
2010-05-27 15:15:58 +00:00
processSubprogram(DISubprogram(S));
2009-11-18 14:58:34 +00:00
else if (S.isLexicalBlock())
2010-05-27 15:15:58 +00:00
processLexicalBlock(DILexicalBlock(S));
2009-11-18 14:58:34 +00:00
processLocation(Loc.getOrigLocation());
}
2009-10-14 17:57:32 +00:00
/// processType - Process DIType.
void DebugInfoFinder::processType(DIType DT) {
if (!addType(DT))
return;
addCompileUnit(DT.getCompileUnit());
if (DT.isCompositeType()) {
2010-05-27 15:15:58 +00:00
DICompositeType DCT(DT);
2009-10-14 17:57:32 +00:00
processType(DCT.getTypeDerivedFrom());
DIArray DA = DCT.getTypeArray();
2010-03-10 17:45:15 +00:00
for (unsigned i = 0, e = DA.getNumElements(); i != e; ++i) {
DIDescriptor D = DA.getElement(i);
if (D.isType())
2010-05-27 15:15:58 +00:00
processType(DIType(D));
2010-03-10 17:45:15 +00:00
else if (D.isSubprogram())
2010-05-27 15:15:58 +00:00
processSubprogram(DISubprogram(D));
2010-03-10 17:45:15 +00:00
}
2009-10-14 17:57:32 +00:00
} else if (DT.isDerivedType()) {
2010-05-27 15:15:58 +00:00
DIDerivedType DDT(DT);
2010-03-10 17:45:15 +00:00
processType(DDT.getTypeDerivedFrom());
2009-10-14 17:57:32 +00:00
}
}
/// processLexicalBlock
void DebugInfoFinder::processLexicalBlock(DILexicalBlock LB) {
DIScope Context = LB.getContext();
if (Context.isLexicalBlock())
2010-05-27 15:15:58 +00:00
return processLexicalBlock(DILexicalBlock(Context));
2009-10-14 17:57:32 +00:00
else
2010-05-27 15:15:58 +00:00
return processSubprogram(DISubprogram(Context));
2009-10-14 17:57:32 +00:00
}
/// processSubprogram - Process DISubprogram.
void DebugInfoFinder::processSubprogram(DISubprogram SP) {
if (!addSubprogram(SP))
return;
addCompileUnit(SP.getCompileUnit());
processType(SP.getType());
}
/// processDeclare - Process DbgDeclareInst.
void DebugInfoFinder::processDeclare(DbgDeclareInst *DDI) {
2010-03-10 17:45:15 +00:00
MDNode *N = dyn_cast<MDNode>(DDI->getVariable());
if (!N) return;
DIDescriptor DV(N);
if (!DV.isVariable())
2009-10-14 17:57:32 +00:00
return;
2010-05-27 15:15:58 +00:00
if (!NodesSeen.insert(DV))
2009-10-14 17:57:32 +00:00
return;
2010-03-10 17:45:15 +00:00
addCompileUnit(DIVariable(N).getCompileUnit());
processType(DIVariable(N).getType());
2009-10-14 17:57:32 +00:00
}
/// addType - Add type into Tys.
bool DebugInfoFinder::addType(DIType DT) {
2010-03-10 17:45:15 +00:00
if (!DT.isValid())
2009-10-14 17:57:32 +00:00
return false;
2010-05-27 15:15:58 +00:00
if (!NodesSeen.insert(DT))
2009-10-14 17:57:32 +00:00
return false;
2010-05-27 15:15:58 +00:00
TYs.push_back(DT);
2009-10-14 17:57:32 +00:00
return true;
}
/// addCompileUnit - Add compile unit into CUs.
bool DebugInfoFinder::addCompileUnit(DICompileUnit CU) {
2010-03-10 17:45:15 +00:00
if (!CU.Verify())
2009-10-14 17:57:32 +00:00
return false;
2010-05-27 15:15:58 +00:00
if (!NodesSeen.insert(CU))
2009-10-14 17:57:32 +00:00
return false;
2010-05-27 15:15:58 +00:00
CUs.push_back(CU);
2009-10-14 17:57:32 +00:00
return true;
}
/// addGlobalVariable - Add global variable into GVs.
bool DebugInfoFinder::addGlobalVariable(DIGlobalVariable DIG) {
2010-05-27 15:15:58 +00:00
if (!DIDescriptor(DIG).isGlobalVariable())
2009-10-14 17:57:32 +00:00
return false;
2010-05-27 15:15:58 +00:00
if (!NodesSeen.insert(DIG))
2009-10-14 17:57:32 +00:00
return false;
2010-05-27 15:15:58 +00:00
GVs.push_back(DIG);
2009-10-14 17:57:32 +00:00
return true;
}
// addSubprogram - Add subprgoram into SPs.
bool DebugInfoFinder::addSubprogram(DISubprogram SP) {
2010-05-27 15:15:58 +00:00
if (!DIDescriptor(SP).isSubprogram())
2009-10-14 17:57:32 +00:00
return false;
2010-05-27 15:15:58 +00:00
if (!NodesSeen.insert(SP))
2009-10-14 17:57:32 +00:00
return false;
2010-05-27 15:15:58 +00:00
SPs.push_back(SP);
2009-10-14 17:57:32 +00:00
return true;
2009-06-02 17:52:33 +00:00
}
2010-01-01 10:31:22 +00:00
/// getDISubprogram - Find subprogram that is enclosing this scope.
2010-05-27 15:15:58 +00:00
DISubprogram llvm::getDISubprogram(const MDNode *Scope) {
2010-01-01 10:31:22 +00:00
DIDescriptor D(Scope);
if (D.isSubprogram())
return DISubprogram(Scope);
2010-01-01 10:31:22 +00:00
if (D.isLexicalBlock())
2010-05-27 15:15:58 +00:00
return getDISubprogram(DILexicalBlock(Scope).getContext());
2010-01-01 10:31:22 +00:00
return DISubprogram();
}
/// getDICompositeType - Find underlying composite type.
DICompositeType llvm::getDICompositeType(DIType T) {
if (T.isCompositeType())
2010-05-27 15:15:58 +00:00
return DICompositeType(T);
2010-01-01 10:31:22 +00:00
if (T.isDerivedType())
2010-05-27 15:15:58 +00:00
return getDICompositeType(DIDerivedType(T).getTypeDerivedFrom());
2010-01-01 10:31:22 +00:00
return DICompositeType();
2009-06-02 17:52:33 +00:00
}