v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
frame-constants-riscv.cc
Go to the documentation of this file.
1// Copyright 2021 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
6
9
10namespace v8 {
11namespace internal {
12
13Register JavaScriptFrame::fp_register() { return v8::internal::fp; }
16
18 return register_count;
19}
20
22 USE(register_count);
23 return 0;
24}
25
26// static
27intptr_t MaglevFrame::StackGuardFrameSize(int register_input_count) {
28 USE(register_input_count);
30}
31
32} // namespace internal
33} // namespace v8
static Register constant_pool_pointer_register()
static intptr_t StackGuardFrameSize(int register_input_count)
static int RegisterStackSlotCount(int register_count)
constexpr Register cp
#define USE(...)
Definition macros.h:293