Home
last modified time | relevance | path

Searched refs:ObjectKey (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DJSON.h84 class ObjectKey; variable
91 using Storage = DenseMap<ObjectKey, Value, llvm::DenseMapInfo<StringRef>>;
95 using key_type = ObjectKey;
118 std::pair<iterator, bool> try_emplace(const ObjectKey &K, Ts &&... Args) { in try_emplace()
122 std::pair<iterator, bool> try_emplace(ObjectKey &&K, Ts &&... Args) { in try_emplace()
131 Value &operator[](const ObjectKey &K);
132 Value &operator[](ObjectKey &&K);
495 class ObjectKey {
497 ObjectKey(const char *S) : ObjectKey(StringRef(S)) {} in ObjectKey() function
498 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) { in ObjectKey() function
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp42 std::map<ObjectKey, OwningBinary<ObjectFile>> DebugObjects;
52 void notifyObjectLoaded(ObjectKey Key, const ObjectFile &Obj,
55 void notifyFreeingObject(ObjectKey Key) override;
81 ObjectKey Key, const ObjectFile &Obj, in notifyObjectLoaded()
142 void OProfileJITEventListener::notifyFreeingObject(ObjectKey Key) { in notifyFreeingObject()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
H A DGDBRegistrationListener.cpp85 typedef llvm::DenseMap<JITEventListener::ObjectKey, RegisteredObjectInfo>
108 void notifyObjectLoaded(ObjectKey K, const ObjectFile &Obj,
114 void notifyFreeingObject(ObjectKey K) override;
157 ObjectKey K, const ObjectFile &Obj, in notifyObjectLoaded()
187 void GDBJITRegistrationListener::notifyFreeingObject(ObjectKey K) { in notifyFreeingObject()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
H A DJITEventListener.h43 using ObjectKey = uint64_t;
57 virtual void notifyObjectLoaded(ObjectKey K, const object::ObjectFile &Obj, in notifyObjectLoaded()
62 virtual void notifyFreeingObject(ObjectKey K) {} in notifyFreeingObject()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp130 std::map<ObjectKey, OwningBinary<ObjectFile>> DebugObjects;
132 std::map<ObjectKey, std::unique_ptr<IntelIttnotifyInfo>> KeyToIttnotify;
142 void notifyObjectLoaded(ObjectKey Key, const ObjectFile &Obj,
145 void notifyFreeingObject(ObjectKey Key) override;
193 ObjectKey Key, const ObjectFile &Obj, in notifyObjectLoaded()
335 void IntelJITEventListener::notifyFreeingObject(ObjectKey Key) { in notifyFreeingObject()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp68 void notifyObjectLoaded(ObjectKey K, const ObjectFile &Obj,
70 void notifyFreeingObject(ObjectKey K) override;
231 ObjectKey K, const ObjectFile &Obj, in notifyObjectLoaded()
290 void PerfJITEventListener::notifyFreeingObject(ObjectKey K) { in notifyFreeingObject()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DJSON.cpp20 Value &Object::operator[](const ObjectKey &K) { in operator []()
23 Value &Object::operator[](ObjectKey &&K) { in operator []()