blob: 937c7456623282858fadb429371ecc1fad736ad0 (
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
|
// Copyright 2014 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.
#if V8_TARGET_ARCH_PPC
#include "src/api/api-arguments-inl.h"
#include "src/base/bits.h"
#include "src/code-stubs.h"
#include "src/codegen/assembler-inl.h"
#include "src/codegen/macro-assembler.h"
#include "src/execution/frame-constants.h"
#include "src/execution/frames.h"
#include "src/execution/isolate.h"
#include "src/ic/ic.h"
#include "src/ic/stub-cache.h"
#include "src/init/bootstrapper.h"
#include "src/numbers/double.h"
#include "src/objects/api-callbacks.h"
#include "src/regexp/jsregexp.h"
#include "src/regexp/regexp-macro-assembler.h"
#include "src/runtime/runtime.h"
namespace v8 {
namespace internal {} // namespace internal
} // namespace v8
#endif // V8_TARGET_ARCH_PPC
|