// The AAPCS64 requires 16-byte alignment. This is the same as the Managed ABI stack alignment. static constexpr size_t kAapcs64StackAlignment = 16u;
static_assert(kAapcs64StackAlignment == kStackAlignment);
// Up to how many float-like (float, double) args can be in registers. // The rest of the args must go on the stack.
constexpr size_t kMaxFloatOrDoubleRegisterArguments = 8u; // Up to how many integer-like (pointers, objects, longs, int, short, bool, etc) args can be // in registers. The rest of the args must go on the stack.
constexpr size_t kMaxIntLikeRegisterArguments = 8u;
// Get the size of the arguments for a native call. inline size_t GetNativeOutArgsSize(size_t num_fp_args, size_t num_non_fp_args) { // Account for FP arguments passed through v0-v7.
size_t num_stack_fp_args =
num_fp_args - std::min(kMaxFloatOrDoubleRegisterArguments, num_fp_args); // Account for other (integer and pointer) arguments passed through GPR (x0-x7).
size_t num_stack_non_fp_args =
num_non_fp_args - std::min(kMaxIntLikeRegisterArguments, num_non_fp_args); // Each stack argument takes 8 bytes. return (num_stack_fp_args + num_stack_non_fp_args) * static_cast<size_t>(kArm64PointerSize);
}
// Get stack args size for @CriticalNative method calls. inline size_t GetCriticalNativeCallArgsSize(std::string_view shorty) {
size_t num_fp_args =
std::count_if(shorty.begin() + 1, shorty.end(), [](char c) { return c == 'F' || c == 'D'; });
size_t num_non_fp_args = shorty.length() - 1u - num_fp_args;
// Get the frame size for @CriticalNative method stub. // This must match the size of the extra frame emitted by the compiler at the native call site. inline size_t GetCriticalNativeStubFrameSize(std::string_view shorty) { // The size of outgoing arguments.
size_t size = GetCriticalNativeCallArgsSize(shorty);
// We can make a tail call if there are no stack args and we do not need // to extend the result. Otherwise, add space for return PC. if (size != 0u || shorty[0] == 'B' || shorty[0] == 'C' || shorty[0] == 'S' || shorty[0] == 'Z') {
size += kFramePointerSize; // We need to spill LR with the args.
} return RoundUp(size, kAapcs64StackAlignment);
}
// Get the frame size for direct call to a @CriticalNative method. // This must match the size of the frame emitted by the JNI compiler at the native call site. inline size_t GetCriticalNativeDirectCallFrameSize(std::string_view shorty) { // The size of outgoing arguments.
size_t size = GetCriticalNativeCallArgsSize(shorty);
// No return PC to save, zero- and sign-extension are handled by the caller. return RoundUp(size, kAapcs64StackAlignment);
}
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.