mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
4acfca65df
Merged push/pop, near branches, compressible register assignments. TEST=ci Change-Id: Ic4772a5b78e2c5440c8613aee2ae5b7a26f879e3 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/270802 Reviewed-by: Alexander Aprelev <aam@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
118 lines
2.7 KiB
C++
118 lines
2.7 KiB
C++
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#include "vm/globals.h"
|
|
#if defined(TARGET_ARCH_RISCV32) || defined(TARGET_ARCH_RISCV64)
|
|
|
|
#include "vm/cpu.h"
|
|
#include "vm/cpu_riscv.h"
|
|
|
|
#include "vm/cpuinfo.h"
|
|
#include "vm/simulator.h"
|
|
|
|
#if !defined(USING_SIMULATOR)
|
|
#if !defined(DART_HOST_OS_FUCHSIA)
|
|
#include <sys/syscall.h>
|
|
#else
|
|
#include <zircon/syscalls.h>
|
|
#endif
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#if defined(DART_HOST_OS_MACOS) || defined(DART_HOST_OS_IOS)
|
|
#include <libkern/OSCacheControl.h>
|
|
#endif
|
|
|
|
namespace dart {
|
|
|
|
void CPU::FlushICache(uword start, uword size) {
|
|
#if defined(DART_PRECOMPILED_RUNTIME)
|
|
UNREACHABLE();
|
|
#elif !defined(USING_SIMULATOR)
|
|
// Nothing to do. Flushing no instructions.
|
|
if (size == 0) {
|
|
return;
|
|
}
|
|
|
|
#if defined(DART_HOST_OS_MACOS) || defined(DART_HOST_OS_IOS)
|
|
sys_icache_invalidate(reinterpret_cast<void*>(start), size);
|
|
#elif defined(DART_HOST_OS_ANDROID) || defined(DART_HOST_OS_LINUX)
|
|
char* beg = reinterpret_cast<char*>(start);
|
|
char* end = reinterpret_cast<char*>(start + size);
|
|
__builtin___clear_cache(beg, end);
|
|
#elif defined(DART_HOST_OS_FUCHSIA)
|
|
zx_status_t result = zx_cache_flush(reinterpret_cast<const void*>(start),
|
|
size, ZX_CACHE_FLUSH_INSN);
|
|
ASSERT(result == ZX_OK);
|
|
#else
|
|
#error FlushICache not implemented for this OS
|
|
#endif
|
|
|
|
#endif
|
|
}
|
|
|
|
const char* CPU::Id() {
|
|
return
|
|
#if defined(USING_SIMULATOR)
|
|
"sim"
|
|
#endif // !defined(USING_SIMULATOR)
|
|
#if defined(TARGET_ARCH_RISCV32)
|
|
"riscv32";
|
|
#elif defined(TARGET_ARCH_RISCV64)
|
|
"riscv64";
|
|
#else
|
|
#error What XLEN?
|
|
#endif
|
|
}
|
|
|
|
const char* HostCPUFeatures::hardware_ = NULL;
|
|
#if defined(DEBUG)
|
|
bool HostCPUFeatures::initialized_ = false;
|
|
#endif
|
|
|
|
#if !defined(USING_SIMULATOR)
|
|
void HostCPUFeatures::Init() {
|
|
CpuInfo::Init();
|
|
hardware_ = CpuInfo::GetCpuModel();
|
|
#if defined(DEBUG)
|
|
initialized_ = true;
|
|
#endif
|
|
}
|
|
|
|
void HostCPUFeatures::Cleanup() {
|
|
DEBUG_ASSERT(initialized_);
|
|
#if defined(DEBUG)
|
|
initialized_ = false;
|
|
#endif
|
|
ASSERT(hardware_ != NULL);
|
|
free(const_cast<char*>(hardware_));
|
|
hardware_ = NULL;
|
|
CpuInfo::Cleanup();
|
|
}
|
|
|
|
#else // !defined(USING_SIMULATOR)
|
|
|
|
void HostCPUFeatures::Init() {
|
|
CpuInfo::Init();
|
|
hardware_ = CpuInfo::GetCpuModel();
|
|
#if defined(DEBUG)
|
|
initialized_ = true;
|
|
#endif
|
|
}
|
|
|
|
void HostCPUFeatures::Cleanup() {
|
|
DEBUG_ASSERT(initialized_);
|
|
#if defined(DEBUG)
|
|
initialized_ = false;
|
|
#endif
|
|
ASSERT(hardware_ != NULL);
|
|
free(const_cast<char*>(hardware_));
|
|
hardware_ = NULL;
|
|
CpuInfo::Cleanup();
|
|
}
|
|
#endif // !defined(USING_SIMULATOR)
|
|
|
|
} // namespace dart
|
|
|
|
#endif // defined TARGET_ARCH_RISCV
|