Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: more efficient access to FiberInterface epoch field #388

Merged
merged 1 commit into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions util/fibers/detail/fiber_interface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ PMR_NS::memory_resource* default_stack_resource = nullptr;
size_t default_stack_size = 64 * 1024;
uint64_t g_tsc_cycles_per_ms = 0;

__thread FiberInterface::TL FiberInterface::tl;

// Per thread initialization structure.
struct TL_FiberInitializer {
TL_FiberInitializer* next = nullptr;
Expand All @@ -63,7 +65,6 @@ struct TL_FiberInitializer {
// Per-thread scheduler instance.
// Allows overriding the main dispatch loop
Scheduler* sched;
uint64_t epoch = 0;
uint64_t switch_delay_cycles = 0; // switch delay in cycles.

// Tracks fiber runtimes that took longer than 1ms.
Expand Down Expand Up @@ -379,7 +380,7 @@ FiberInterface* FiberInterface::SwitchSetup() {
// When a kernel suspends we may get a negative delta because TSC is reset.
// We ignore such cases (and they are very rare).
if (tsc > cpu_tsc_) {
++fb_initializer.epoch;
++tl.epoch;
DCHECK_GE(tsc, to_suspend->cpu_tsc_);
fb_initializer.switch_delay_cycles += (tsc - cpu_tsc_);

Expand Down Expand Up @@ -437,10 +438,6 @@ void SetCustomDispatcher(DispatchPolicy* policy) {
fb_init.sched->AttachCustomPolicy(policy);
}

uint64_t FiberSwitchEpoch() noexcept {
return detail::FbInitializer().epoch;
}

uint64_t FiberSwitchDelayUsec() noexcept {
// in nanoseconds, so lets convert from cycles
return detail::FbInitializer().switch_delay_cycles * 1000 / detail::g_tsc_cycles_per_ms;
Expand Down
7 changes: 7 additions & 0 deletions util/fibers/detail/fiber_interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,9 @@ class FiberInterface {

size_t GetStackMargin(const void* stack_address) const;

static uint64_t TL_Epoch() {
return tl.epoch;
}
protected:
static constexpr uint16_t kTerminatedBit = 0x1;
static constexpr uint16_t kBusyBit = 0x2;
Expand Down Expand Up @@ -262,6 +265,10 @@ class FiberInterface {
uint32_t stack_size_ = 0;
uint8_t* stack_bottom_ = nullptr;

static __thread struct TL {
uint64_t epoch = 0;
} tl;
Comment on lines +268 to +270
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do you use a struct here instead of just static __thread uint64_t epoch_ = 0;?

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no strong reason, just a placeholder to move more "safe" fields.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh, gotcha, this is intended to (potentially) grow..


private:
#ifndef NDEBUG
std::function<std::string()> stacktrace_print_cb_;
Expand Down
4 changes: 3 additions & 1 deletion util/fibers/fibers.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ class Fiber {
};

// Returns the context switch epoch number for this thread.
uint64_t FiberSwitchEpoch() noexcept;
inline uint64_t FiberSwitchEpoch() noexcept {
return detail::FiberInterface::TL_Epoch();
}

// Returns the aggregated delay between activation of fibers and
// the time they were switched to in microseconds.
Expand Down
Loading