Searched defs:DIDescriptor (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/IR/
H A DDebugInfo.h58 /// DIDescriptor - A thin wraper around MDNode to access encoded debug info.
61 class DIDescriptor { class in namespace:llvm
95 DIDescriptor getDescriptorField(unsigned Elt) const;
107 explicit DIDescriptor(const MDNode *N = nullptr) : DbgNode(N) {} function in class:llvm::DIDescriptor
117 // moment due to the conversion operator above making DIDescriptor nodes
121 bool operator==(DIDescriptor Other) const { return DbgNode == Other.DbgNode; }
122 bool operator!=(DIDescriptor Other) const { return !operator==(Other); }
157 class DISubrange : public DIDescriptor {
158 friend class DIDescriptor;
162 explicit DISubrange(const MDNode *N = nullptr) : DIDescriptor(
[all...]

Completed in 146 milliseconds