Searched refs:ObjectKey (Results 1 – 7 of 7) sorted by relevance
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
H A D | JSON.h | 86 class ObjectKey; variable 93 using Storage = DenseMap<ObjectKey, Value, llvm::DenseMapInfo<StringRef>>; 97 using key_type = ObjectKey; 120 std::pair<iterator, bool> try_emplace(const ObjectKey &K, Ts &&... Args) { in try_emplace() 124 std::pair<iterator, bool> try_emplace(ObjectKey &&K, Ts &&... Args) { in try_emplace() 133 Value &operator[](const ObjectKey &K); 134 Value &operator[](ObjectKey &&K); 557 class ObjectKey { 559 ObjectKey(const char *S) : ObjectKey(StringRef(S)) {} in ObjectKey() function 560 ObjectKey(std::string S) : Owned(new std::string(std::move(S))) { in ObjectKey() function [all …]
|
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/OProfileJIT/ |
H A D | OProfileJITEventListener.cpp | 42 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()
|
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/ |
H A D | GDBRegistrationListener.cpp | 85 typedef llvm::DenseMap<JITEventListener::ObjectKey, RegisteredObjectInfo> 121 void notifyObjectLoaded(ObjectKey K, const ObjectFile &Obj, 127 void notifyFreeingObject(ObjectKey K) override; 166 ObjectKey K, const ObjectFile &Obj, in notifyObjectLoaded() 196 void GDBJITRegistrationListener::notifyFreeingObject(ObjectKey K) { in notifyFreeingObject()
|
/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/ |
H A D | JITEventListener.h | 42 using ObjectKey = uint64_t; 56 virtual void notifyObjectLoaded(ObjectKey K, const object::ObjectFile &Obj, in notifyObjectLoaded() 61 virtual void notifyFreeingObject(ObjectKey K) {} in notifyFreeingObject()
|
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/IntelJITEvents/ |
H A D | IntelJITEventListener.cpp | 131 std::map<ObjectKey, OwningBinary<ObjectFile>> DebugObjects; 133 std::map<ObjectKey, std::unique_ptr<IntelIttnotifyInfo>> KeyToIttnotify; 143 void notifyObjectLoaded(ObjectKey Key, const ObjectFile &Obj, 146 void notifyFreeingObject(ObjectKey Key) override; 194 ObjectKey Key, const ObjectFile &Obj, in notifyObjectLoaded() 336 void IntelJITEventListener::notifyFreeingObject(ObjectKey Key) { in notifyFreeingObject()
|
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/PerfJITEvents/ |
H A D | PerfJITEventListener.cpp | 67 void notifyObjectLoaded(ObjectKey K, const ObjectFile &Obj, 69 void notifyFreeingObject(ObjectKey K) override; 230 ObjectKey K, const ObjectFile &Obj, in notifyObjectLoaded() 292 void PerfJITEventListener::notifyFreeingObject(ObjectKey K) { in notifyFreeingObject()
|
/openbsd-src/gnu/llvm/llvm/lib/Support/ |
H A D | JSON.cpp | 22 Value &Object::operator[](const ObjectKey &K) { in operator []() 25 Value &Object::operator[](ObjectKey &&K) { in operator []()
|