codegen-arm64.cc 653 Bytes
Newer Older
1
// Copyright 2013 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4

5
#if V8_TARGET_ARCH_ARM64
6

7 8
#include "src/arm64/assembler-arm64-inl.h"
#include "src/arm64/macro-assembler-arm64-inl.h"
9
#include "src/arm64/simulator-arm64.h"
10
#include "src/codegen.h"
11
#include "src/isolate.h"
12
#include "src/macro-assembler.h"
13 14 15 16 17 18

namespace v8 {
namespace internal {

#define __ ACCESS_MASM(masm)

19 20
UnaryMathFunctionWithIsolate CreateSqrtFunction(Isolate* isolate) {
  return nullptr;
21 22 23 24
}

#undef __

25 26
}  // namespace internal
}  // namespace v8
27

28
#endif  // V8_TARGET_ARCH_ARM64