summaryrefslogtreecommitdiff
path: root/deps/v8/src/base/platform/platform.cc
blob: 3914b7dabab3fd32a85237cb1e7d97ad14f94d31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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::GetStackStart() {
  DCHECK_IMPLIES(thread_stack_start,
                 thread_stack_start == ObtainCurrentThreadStackStart());

  if (!thread_stack_start) {
    thread_stack_start = ObtainCurrentThreadStackStart();
  }
  return thread_stack_start;
}

}  // namespace base
}  // namespace v8