29 #ifndef __FUTEX_MAP_HH__ 30 #define __FUTEX_MAP_HH__ 32 #include <unordered_map> 46 : addr(addr_in), tgid(tgid_in)
53 return addr == in.
addr && tgid == in.
tgid;
69 for (
int i = 0;
i <
sizeof(uint64_t) /
sizeof(
size_t);
i++) {
70 hash ^= (size_t)(in.
addr >>
sizeof(
size_t) *
i) ^
71 (
size_t)(in.
tgid >>
sizeof(size_t) *
i);
91 : tc(_tc), bitmask(_bitmask)
98 : tc(_tc), bitmask(0xffffffff)
108 return bitmask & wakeup_bitmask;
117 class FutexMap :
public std::unordered_map<FutexKey, WaiterList>
129 insert({key, waiterList});
149 auto &waiterList = it->second;
151 while (!waiterList.empty() && woken_up <
count) {
156 auto& tc = waiterList.front().tc;
161 waiterList.pop_front();
164 if (waiterList.empty())
183 insert({key, waiterList});
207 auto &waiterList = it->second;
208 auto iter = waiterList.begin();
210 while (iter != waiterList.end()) {
215 iter = waiterList.erase(iter);
222 if (waiterList.empty())
242 auto it1 = find(key1);
248 auto &waiterList1 =
it1->second;
250 while (!waiterList1.empty() && woken_up <
count) {
251 waiterList1.front().tc->activate();
252 waiterList1.pop_front();
259 while (!waiterList1.empty() && requeued < count2) {
260 auto w = waiterList1.front();
261 waiterList1.pop_front();
262 tmpList.push_back(
w);
267 auto it2 = find(key2);
269 if (
it2 == end() && requeued > 0) {
270 insert({key2, tmpList});
272 it2->second.insert(
it2->second.end(),
273 tmpList.begin(), tmpList.end());
276 if (waiterList1.empty())
279 return woken_up + requeued;
283 #endif // __FUTEX_MAP_HH__
bool operator==(const FutexKey &in) const
std::list< WaiterState > WaiterList
size_t operator()(const FutexKey &in) const
WaiterState defines internal state of a waiter thread.
Overload hash function for BasicBlockRange type.
bool checkMask(int wakeup_bitmask) const
return true if the bit-wise AND of the wakeup_bitmask given by a waking thread and this thread's inte...
ThreadContext is the external interface to all thread state for anything outside of the CPU...
int requeue(Addr addr1, uint64_t tgid, int count, int count2, Addr addr2)
This operation wakes a given number (val) of waiters.
int wakeup(Addr addr, uint64_t tgid, int count)
Wakes up at most count waiting threads on a futex.
virtual void suspend()=0
Set the status to Suspended.
virtual void activate()=0
Set the status to Active.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
WaiterState(ThreadContext *_tc)
if bitset is not defined, just set bitmask to 0xffffffff
WaiterState(ThreadContext *_tc, int _bitmask)
this constructor is used if futex ops with bitset are used
void suspend_bitset(Addr addr, uint64_t tgid, ThreadContext *tc, int bitmask)
inserts a futex into the map with one waiting TC associates the waiter with a given bitmask ...
int wakeup_bitset(Addr addr, uint64_t tgid, int bitmask)
Wakes up all waiters waiting on the addr and associated with the given bitset.
FutexKey(uint64_t addr_in, uint64_t tgid_in)
void suspend(Addr addr, uint64_t tgid, ThreadContext *tc)
Inserts a futex into the map with one waiting TC.
FutexMap class holds a map of all futexes used in the system.
FutexKey class defines an unique identifier for a particular futex in the system. ...