v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
frame-constants-ppc.cc
Go to the documentation of this file.
1// Copyright 2014 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
5#if V8_TARGET_ARCH_PPC64
6
8
12
13namespace v8 {
14namespace internal {
15
16Register JavaScriptFrame::fp_register() { return v8::internal::fp; }
21}
22
24 return register_count;
25}
26
28 USE(register_count);
29 return 0;
30}
31
32// static
33intptr_t MaglevFrame::StackGuardFrameSize(int register_input_count) {
34 USE(register_input_count);
36}
37
38} // namespace internal
39} // namespace v8
40
41#endif // V8_TARGET_ARCH_PPC64
static Register constant_pool_pointer_register()
static intptr_t StackGuardFrameSize(int register_input_count)
static int RegisterStackSlotCount(int register_count)
#define V8_EMBEDDED_CONSTANT_POOL_BOOL
Definition globals.h:81
constexpr Register kConstantPoolRegister
constexpr Register cp
#define DCHECK(condition)
Definition logging.h:482
#define USE(...)
Definition macros.h:293