Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DJSON.h82 class ObjectKey; variable
495 class ObjectKey {
497 ObjectKey(const char *S) : ObjectKey(StringRef(S)) {}
515 ObjectKey(const ObjectKey &C) { *this = C; }
516 ObjectKey(ObjectKey &&C) : ObjectKey(static_cast<const ObjectKey &&>(C)) {}
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-12.1/contrib/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp43 std::map<ObjectKey, OwningBinary<ObjectFile>> DebugObjects;
53 void notifyObjectLoaded(ObjectKey Key, const ObjectFile &Obj,
56 void notifyFreeingObject(ObjectKey Key) override;
82 ObjectKey Key, const ObjectFile &Obj, in notifyObjectLoaded()
143 void OProfileJITEventListener::notifyFreeingObject(ObjectKey Key) { in notifyFreeingObject()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/
H A DGDBRegistrationListener.cpp79 typedef llvm::DenseMap<JITEventListener::ObjectKey, RegisteredObjectInfo>
102 void notifyObjectLoaded(ObjectKey K, const ObjectFile &Obj,
108 void notifyFreeingObject(ObjectKey K) override;
151 ObjectKey K, const ObjectFile &Obj, in notifyObjectLoaded()
181 void GDBJITRegistrationListener::notifyFreeingObject(ObjectKey K) { in notifyFreeingObject()
/freebsd-12.1/contrib/llvm/include/llvm/ExecutionEngine/
H A DJITEventListener.h45 using ObjectKey = uint64_t;
59 virtual void notifyObjectLoaded(ObjectKey K, const object::ObjectFile &Obj, in notifyObjectLoaded()
64 virtual void notifyFreeingObject(ObjectKey K) {} in notifyFreeingObject()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp50 std::map<ObjectKey, OwningBinary<ObjectFile>> DebugObjects;
60 void notifyObjectLoaded(ObjectKey Key, const ObjectFile &Obj,
63 void notifyFreeingObject(ObjectKey Key) override;
100 ObjectKey Key, const ObjectFile &Obj, in notifyObjectLoaded()
194 void IntelJITEventListener::notifyFreeingObject(ObjectKey Key) { in notifyFreeingObject()
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp69 void notifyObjectLoaded(ObjectKey K, const ObjectFile &Obj,
71 void notifyFreeingObject(ObjectKey K) override;
231 ObjectKey K, const ObjectFile &Obj, in notifyObjectLoaded()
284 void PerfJITEventListener::notifyFreeingObject(ObjectKey K) { in notifyFreeingObject()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DJSON.cpp18 Value &Object::operator[](const ObjectKey &K) { in operator []()
21 Value &Object::operator[](ObjectKey &&K) { in operator []()