add C-cmse-nonsecure-entry ABI

This commit is contained in:
Folkert de Vries 2024-08-15 09:55:56 +02:00
parent 8260678687
commit 02f677372b
3 changed files with 5 additions and 0 deletions

View file

@ -377,6 +377,7 @@ pub enum FnAbi {
AvrNonBlockingInterrupt, AvrNonBlockingInterrupt,
C, C,
CCmseNonsecureCall, CCmseNonsecureCall,
CCmseNonsecureEntry,
CDecl, CDecl,
CDeclUnwind, CDeclUnwind,
CUnwind, CUnwind,
@ -434,6 +435,7 @@ impl FnAbi {
s if *s == sym::avr_dash_interrupt => FnAbi::AvrInterrupt, s if *s == sym::avr_dash_interrupt => FnAbi::AvrInterrupt,
s if *s == sym::avr_dash_non_dash_blocking_dash_interrupt => FnAbi::AvrNonBlockingInterrupt, s if *s == sym::avr_dash_non_dash_blocking_dash_interrupt => FnAbi::AvrNonBlockingInterrupt,
s if *s == sym::C_dash_cmse_dash_nonsecure_dash_call => FnAbi::CCmseNonsecureCall, s if *s == sym::C_dash_cmse_dash_nonsecure_dash_call => FnAbi::CCmseNonsecureCall,
s if *s == sym::C_dash_cmse_dash_nonsecure_dash_entry => FnAbi::CCmseNonsecureEntry,
s if *s == sym::C_dash_unwind => FnAbi::CUnwind, s if *s == sym::C_dash_unwind => FnAbi::CUnwind,
s if *s == sym::C => FnAbi::C, s if *s == sym::C => FnAbi::C,
s if *s == sym::cdecl_dash_unwind => FnAbi::CDeclUnwind, s if *s == sym::cdecl_dash_unwind => FnAbi::CDeclUnwind,
@ -477,6 +479,7 @@ impl FnAbi {
FnAbi::AvrNonBlockingInterrupt => "avr-non-blocking-interrupt", FnAbi::AvrNonBlockingInterrupt => "avr-non-blocking-interrupt",
FnAbi::C => "C", FnAbi::C => "C",
FnAbi::CCmseNonsecureCall => "C-cmse-nonsecure-call", FnAbi::CCmseNonsecureCall => "C-cmse-nonsecure-call",
FnAbi::CCmseNonsecureEntry => "C-cmse-nonsecure-entry",
FnAbi::CDecl => "C-decl", FnAbi::CDecl => "C-decl",
FnAbi::CDeclUnwind => "cdecl-unwind", FnAbi::CDeclUnwind => "cdecl-unwind",
FnAbi::CUnwind => "C-unwind", FnAbi::CUnwind => "C-unwind",

View file

@ -32,6 +32,7 @@ const SUPPORTED_CALLING_CONVENTIONS: &[&str] = &[
"riscv-interrupt-m", "riscv-interrupt-m",
"riscv-interrupt-s", "riscv-interrupt-s",
"C-cmse-nonsecure-call", "C-cmse-nonsecure-call",
"C-cmse-nonsecure-entry",
"wasm", "wasm",
"system", "system",
"system-unwind", "system-unwind",

View file

@ -94,6 +94,7 @@ define_symbols! {
avr_dash_interrupt = "avr-interrupt", avr_dash_interrupt = "avr-interrupt",
avr_dash_non_dash_blocking_dash_interrupt = "avr-non-blocking-interrupt", avr_dash_non_dash_blocking_dash_interrupt = "avr-non-blocking-interrupt",
C_dash_cmse_dash_nonsecure_dash_call = "C-cmse-nonsecure-call", C_dash_cmse_dash_nonsecure_dash_call = "C-cmse-nonsecure-call",
C_dash_cmse_dash_nonsecure_dash_entry = "C-cmse-nonsecure-entry",
C_dash_unwind = "C-unwind", C_dash_unwind = "C-unwind",
cdecl_dash_unwind = "cdecl-unwind", cdecl_dash_unwind = "cdecl-unwind",
fastcall_dash_unwind = "fastcall-unwind", fastcall_dash_unwind = "fastcall-unwind",