%PDF- %PDF-
| Direktori : /home2/vacivi36/vittasync.vacivitta.com.br/vittasync/node/deps/v8/src/base/platform/ |
| Current File : //home2/vacivi36/vittasync.vacivitta.com.br/vittasync/node/deps/v8/src/base/platform/platform.cc |
// Copyright 2023 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/base/platform/platform.h"
namespace v8 {
namespace base {
namespace {
// A pointer to current thread's stack beginning.
thread_local void* thread_stack_start = nullptr;
} // namespace
// static
Stack::StackSlot Stack::GetStackStartUnchecked() {
if (!thread_stack_start) {
thread_stack_start = ObtainCurrentThreadStackStart();
}
return thread_stack_start;
}
// static
Stack::StackSlot Stack::GetStackStart() {
DCHECK_IMPLIES(thread_stack_start,
thread_stack_start == ObtainCurrentThreadStackStart());
return GetStackStartUnchecked();
}
} // namespace base
} // namespace v8