v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
frame-constants-ia32.cc
Go to the documentation of this file.
1// Copyright 2006-2008 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_IA32
6
8
13
14namespace v8 {
15namespace internal {
16
20
22 return register_count;
23}
24
26 USE(register_count);
27 return 0;
28}
29
30// static
31intptr_t MaglevFrame::StackGuardFrameSize(int register_input_count) {
32 USE(register_input_count);
34}
35
36} // namespace internal
37} // namespace v8
38
39#endif // V8_TARGET_ARCH_IA32
static Register constant_pool_pointer_register()
static intptr_t StackGuardFrameSize(int register_input_count)
static int RegisterStackSlotCount(int register_count)
#define USE(...)
Definition macros.h:293