Files
lk/lib/uefi/switch_stack.S
Kelvin Zhang 76ce54625a [lib][uefi] Support 5 arguments for switch stack call
Some functions have >4 arguments, bump support to 5 arguments
2025-07-16 14:00:00 -07:00

42 lines
1.1 KiB
ArmAsm

/*
* Copyright (C) 2024 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#include <lk/asm.h>
// int call_with_stack_asm(void *stack, int (*fp)(), int arg1, int arg2, int arg3, int arg4, int arg5);
FUNCTION(call_with_stack_asm)
stp fp, lr, [sp, #-16]!
mov fp, sp
sub x0,x0,16
mov x8,sp
str x8,[x0]
mov sp,x0
mov x7,x1
mov x0,x2
mov x1,x3
mov x2,x4
mov x3,x5
mov x4,x6
blr x7
ldr x8,[sp]
mov sp,x8
ldp fp, lr, [sp], 16
ret lr
END_FUNCTION(call_with_stack_asm)