Searched refs:ObjectKey (Results 1 – 7 of 7) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | JSON.h | 92 class ObjectKey; variable 578 class ObjectKey { 580 ObjectKey(const char *S) : ObjectKey(StringRef(S)) {} in ObjectKey() function 598 ObjectKey(const ObjectKey &C) { *this = C; } in ObjectKey() function 599 ObjectKey(ObjectKey &&C) : ObjectKey(static_cast<const ObjectKey &&>(C)) {} in ObjectKey() function 600 ObjectKey &operator=(const ObjectKey &C) { 609 ObjectKey &operator=(ObjectKey &&) = default; 621 inline bool operator==(const ObjectKey &L, const ObjectKey &R) { 624 inline bool operator!=(const ObjectKey &L, const ObjectKey &R) { 627 inline bool operator<(const ObjectKey &L, const ObjectKey &R) { [all …]
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | JSON.cpp | 24 Value &Object::operator[](const ObjectKey &K) { in operator []() 27 Value &Object::operator[](ObjectKey &&K) { in operator []()
|