search for: typedtrackingmdref

Displaying 2 results from an estimated 2 matches for "typedtrackingmdref".

2015 Nov 22
2
BuildMI crashes on a certain probability on the exact same test
...k() + 42 9 clang 0x000000010e1bcec6 llvm::TrackingMDRef::TrackingMDRef(llvm::TrackingMDRef const&) + 38 10 clang 0x000000010e1bce8d llvm::TrackingMDRef::TrackingMDRef(llvm::TrackingMDRef const&) + 29 11 clang 0x000000010e1bce5d llvm::TypedTrackingMDRef<llvm::MDNode>::TypedTrackingMDRef(llvm::TypedTrackingMDRef<llvm::MDNode> const&) + 29 12 clang 0x000000010e1bce2d llvm::TypedTrackingMDRef<llvm::MDNode>::TypedTrackingMDRef(llvm::TypedTrackingMDRef<llvm::MDNode> const&) + 29 13 clang...
2015 Aug 18
3
[RFC PATCH 1/2] [clang]: Add AuxAttr support
...{ + AuxAttrs[Ty].push_back(std::make_pair(key, val)); +} diff --git a/lib/CodeGen/CGDebugInfo.h b/lib/CodeGen/CGDebugInfo.h index 9c62f6c..94abd3b 100644 --- a/lib/CodeGen/CGDebugInfo.h +++ b/lib/CodeGen/CGDebugInfo.h @@ -121,6 +121,9 @@ class CGDebugInfo { llvm::DenseMap<const Decl *, llvm::TypedTrackingMDRef<llvm::DIDerivedType>> StaticDataMemberCache; + llvm::DenseMap<const Type *, std::vector<std::pair<std::string, uint64_t> > > + AuxAttrs; + /// Helper functions for getOrCreateType. /// @{ /// Currently the checksum of an interface includes the numb...