Skip to content

Commit

Permalink
Use CAS to minimize critical sections.
Browse files Browse the repository at this point in the history
  • Loading branch information
dok-net committed Sep 6, 2023
1 parent b6ec857 commit 369b1ab
Showing 1 changed file with 22 additions and 15 deletions.
37 changes: 22 additions & 15 deletions cores/esp8266/Schedule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "Schedule.h"
#include "PolledTimeout.h"
#include "interrupts.h"
#include <atomic>

typedef std::function<void(void)> mSchedFuncT;
struct scheduled_fn_t
Expand All @@ -47,7 +48,7 @@ struct recurrent_fn_t
static recurrent_fn_t* rFirst = nullptr;
static recurrent_fn_t* rLast = nullptr;
// The target time for scheduling the next timed recurrent function
static decltype(micros()) rTarget;
static std::atomic<decltype(micros())> rTarget;

// As 32 bit unsigned integer, micros() rolls over every 71.6 minutes.
// For unambiguous earlier/later order between two timestamps,
Expand Down Expand Up @@ -133,13 +134,17 @@ bool schedule_recurrent_function_us(const std::function<bool(void)>& fn,

esp8266::InterruptLock lockAllInterruptsInThisScope;

// prevent new item overwriting an already expired rTarget.
const auto now = micros();
const auto itemRemaining = item->callNow.remaining();
const auto remaining = rTarget - now;
if (!rFirst || (remaining <= HALF_MAX_MICROS && remaining > itemRemaining))
for (auto _rTarget = rTarget.load(); ;)
{
rTarget = now + itemRemaining;
const auto remaining = _rTarget - now;
if (!rFirst || (remaining <= HALF_MAX_MICROS && remaining > itemRemaining))
{
// if (!rTarget.compare_exchange_weak(_rTarget, now + itemRemaining)) continue;
rTarget = now + itemRemaining; // interrupt lock is active, no ABA issue
}
break;
}

if (rLast)
Expand All @@ -158,9 +163,8 @@ bool schedule_recurrent_function_us(const std::function<bool(void)>& fn,
decltype(micros()) get_scheduled_recurrent_delay_us()
{
if (!rFirst) return HALF_MAX_MICROS;
// handle already expired rTarget.
const auto now = micros();
const auto remaining = rTarget - now;
const auto remaining = rTarget.load() - now;
return (remaining <= HALF_MAX_MICROS) ? remaining : 0;
}

Expand Down Expand Up @@ -233,9 +237,9 @@ void run_scheduled_recurrent_functions()
recurrent_fn_t* prev = nullptr;
bool done;

rTarget.store(micros() + HALF_MAX_MICROS);
// prevent scheduling of new functions during this run
stop = rLast;
rTarget = micros() + HALF_MAX_MICROS;

do
{
Expand Down Expand Up @@ -268,17 +272,20 @@ void run_scheduled_recurrent_functions()
}
else
{
esp8266::InterruptLock lockAllInterruptsInThisScope;

// prevent current item overwriting an already expired rTarget.
const auto now = micros();
const auto currentRemaining = current->callNow.remaining();
const auto remaining = rTarget - now;
if (remaining <= HALF_MAX_MICROS && remaining > currentRemaining)
for (auto _rTarget = rTarget.load(); ;)
{
rTarget = now + currentRemaining;
const auto remaining = _rTarget - now;
if (remaining <= HALF_MAX_MICROS && remaining > currentRemaining)
{
// if (!rTarget.compare_exchange_weak(_rTarget, now + currentRemaining)) continue;
esp8266::InterruptLock lockAllInterruptsInThisScope;
if (rTarget != _rTarget) { _rTarget = rTarget; continue; }
rTarget = now + currentRemaining;
}
break;
}

prev = current;
current = current->mNext;
}
Expand Down

0 comments on commit 369b1ab

Please sign in to comment.