Searched refs:ObjectKey (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | JSON.h | 84 class ObjectKey; variable 495 class ObjectKey { 497 ObjectKey(const char *S) : ObjectKey(StringRef(S)) {} in ObjectKey() function 515 ObjectKey(const ObjectKey &C) { *this = C; } in ObjectKey() function 516 ObjectKey(ObjectKey &&C) : ObjectKey(static_cast<const ObjectKey &&>(C)) {} in ObjectKey() function 517 ObjectKey &operator=(const ObjectKey &C) { 526 ObjectKey &operator=(ObjectKey &&) = default; 538 inline bool operator==(const ObjectKey &L, const ObjectKey &R) { 541 inline bool operator!=(const ObjectKey &L, const ObjectKey &R) { 544 inline bool operator<(const ObjectKey &L, const ObjectKey &R) { [all …]
|
| /freebsd-13.1/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-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
| H A D | GDBRegistrationListener.cpp | 85 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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
| H A D | JITEventListener.h | 43 using ObjectKey = uint64_t; 57 virtual void notifyObjectLoaded(ObjectKey K, const object::ObjectFile &Obj, in notifyObjectLoaded() 62 virtual void notifyFreeingObject(ObjectKey K) {} in notifyFreeingObject()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/ |
| H A D | IntelJITEventListener.cpp | 130 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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/ |
| H A D | PerfJITEventListener.cpp | 68 void notifyObjectLoaded(ObjectKey K, const ObjectFile &Obj, 70 void notifyFreeingObject(ObjectKey K) override; 231 ObjectKey K, const ObjectFile &Obj, in notifyObjectLoaded() 293 void PerfJITEventListener::notifyFreeingObject(ObjectKey K) { in notifyFreeingObject()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | JSON.cpp | 20 Value &Object::operator[](const ObjectKey &K) { in operator []() 23 Value &Object::operator[](ObjectKey &&K) { in operator []()
|