// Copy the GPRs and FPRs from the given thread's context to the given buffers. This function // expects that a long jump (art_quick_do_long_jump) is called afterwards. extern"C"void artContextCopyForLongJump(Context* context, uintptr_t* gprs, uintptr_t* fprs) {
context->CopyContextTo(gprs, fprs); // Once the context has been copied, it is no longer needed. // The context pointer is passed via hand-written assembly stubs, otherwise we'd take the // context argument as a `std::unique_ptr<>` to indicate the ownership handover. delete context;
}
} // namespace art
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.10 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.