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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: set ts=8 sts=2 et sw=2 tw=80:
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "jit/arm64/Architecture-arm64.h"
#include <cstring>
#include "jit/arm64/vixl/Cpu-vixl.h"
#include "jit/FlushICache.h" // js::jit::FlushICache
#include "jit/RegisterSets.h"
namespace js {
namespace jit {
Registers::Code Registers::FromName(const char* name) {
// Check for some register aliases first.
if (strcmp(name, "ip0") == 0) {
return ip0;
}
if (strcmp(name, "ip1") == 0) {
return ip1;
}
if (strcmp(name, "fp") == 0) {
return fp;
}
for (uint32_t i = 0; i < Total; i++) {
if (strcmp(GetName(i), name) == 0) {
return Code(i);
}
}
return Invalid;
}
FloatRegisters::Code FloatRegisters::FromName(const char* name) {
for (size_t i = 0; i < Total; i++) {
if (strcmp(GetName(i), name) == 0) {
return Code(i);
}
}
return Invalid;
}
// These assume no SIMD registers as the register sets do not directly support
// SIMD. When SIMD is needed (wasm baseline + stubs), other routines are used.
FloatRegisterSet FloatRegister::ReduceSetForPush(const FloatRegisterSet& s) {
LiveFloatRegisterSet ret;
for (FloatRegisterIterator iter(s); iter.more(); ++iter) {
ret.addUnchecked(FromCode((*iter).encoding()));
}
return ret.set();
}
uint32_t FloatRegister::GetPushSizeInBytes(const FloatRegisterSet& s) {
return s.size() * sizeof(double);
}
uint32_t FloatRegister::getRegisterDumpOffsetInBytes() {
// Although registers are 128-bits wide, only the first 64 need saving per
// ABI.
return encoding() * sizeof(double);
}
#if defined(ENABLE_WASM_SIMD)
uint32_t FloatRegister::GetPushSizeInBytesForWasmStubs(
const FloatRegisterSet& s) {
return s.size() * SizeOfSimd128;
}
#endif
uint32_t GetARM64Flags() { return 0; }
void FlushICache(void* code, size_t size, bool codeIsThreadLocal) {
vixl::CPU::EnsureIAndDCacheCoherency(code, size, codeIsThreadLocal);
}
bool CanFlushICacheFromBackgroundThreads() {
return vixl::CPU::CanFlushICacheFromBackgroundThreads();
}
} // namespace jit
} // namespace js
|