void Riscv64Context::FillCalleeSaves(uint8_t* frame, const QuickMethodFrameInfo& frame_info) { // RA is at top of the frame
DCHECK_NE(frame_info.CoreSpillMask() & (1u << RA), 0u); const size_t frame_size = frame_info.FrameSizeInBytes();
gprs_[RA] = CalleeSaveAddress<InstructionSet::kRiscv64>(frame, 0, frame_size);
// Core registers come first, from the highest down to the lowest, with the exception of RA/X1. int spill_pos = 1; for (uint32_t core_reg : HighToLowBits(frame_info.CoreSpillMask() & ~(1u << RA))) {
gprs_[core_reg] = CalleeSaveAddress<InstructionSet::kRiscv64>(frame, spill_pos, frame_size);
++spill_pos;
}
DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()));
// FP registers come second, from the highest down to the lowest. for (uint32_t fp_reg : HighToLowBits(frame_info.FpSpillMask())) {
fprs_[fp_reg] = CalleeSaveAddress<InstructionSet::kRiscv64>(frame, spill_pos, frame_size);
++spill_pos;
}
DCHECK_EQ(spill_pos, POPCOUNT(frame_info.CoreSpillMask()) + POPCOUNT(frame_info.FpSpillMask()));
}
void Riscv64Context::SetGPR(uint32_t reg, uintptr_t value) {
DCHECK_LT(reg, arraysize(gprs_));
DCHECK_NE(reg, static_cast<uint32_t>(Zero)); // Zero/X0 is immutable (hard-wired zero)
DCHECK(IsAccessibleGPR(reg));
DCHECK_NE(gprs_[reg], &gZero); // Can't overwrite this static value since they are never reset.
*gprs_[reg] = value;
}
void Riscv64Context::SetFPR(uint32_t reg, uintptr_t value) {
DCHECK_LT(reg, static_cast<uint32_t>(kNumberOfFRegisters));
DCHECK(IsAccessibleFPR(reg));
DCHECK_NE(fprs_[reg], &gZero); // Can't overwrite this static value since they are never reset.
*fprs_[reg] = value;
}
void Riscv64Context::SmashCallerSaves() { // Temporary registers T0 - T6 and argument registers A0 - A7 are caller-saved.
gprs_[Zero] = const_cast<uint64_t*>(&gZero); // hard-wired zero
gprs_[T0] = nullptr;
gprs_[T1] = nullptr;
gprs_[T2] = nullptr;
gprs_[T3] = nullptr;
gprs_[T4] = nullptr;
gprs_[T5] = nullptr;
gprs_[T6] = nullptr;
gprs_[A0] = const_cast<uint64_t*>(&gZero); // must be 0 because we want a null/zero return value
gprs_[A1] = nullptr;
gprs_[A2] = nullptr;
gprs_[A3] = nullptr;
gprs_[A4] = nullptr;
gprs_[A5] = nullptr;
gprs_[A6] = nullptr;
gprs_[A7] = nullptr;
void Riscv64Context::CopyContextTo(uintptr_t* gprs, uintptr_t* fprs) { // The long jump routine called below expects to find the value for SP at index 2.
DCHECK_EQ(SP, 2);
for (size_t i = 0; i < arraysize(gprs_); ++i) {
gprs[i] = gprs_[i] != nullptr ? *gprs_[i] : kBadGprBase + i;
} for (size_t i = 0; i < kNumberOfFRegisters; ++i) {
fprs[i] = fprs_[i] != nullptr ? *fprs_[i] : kBadFprBase + i;
}
// Fill in TR (the ART Thread Register) with the address of the current thread.
gprs[TR] = reinterpret_cast<uintptr_t>(Thread::Current());
// Tell HWASan about the new stack top. if (__hwasan_handle_longjmp != nullptr) {
__hwasan_handle_longjmp(reinterpret_cast<void*>(gprs[SP]));
}
}
} // namespace riscv64
} // namespace art
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet am 2026-06-29)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.